From 455fbefbade5d3404669b579731b3edc0232beec Mon Sep 17 00:00:00 2001 From: larann901 Date: Wed, 9 Oct 2024 12:47:16 +0200 Subject: [PATCH 1/3] small change to solve errors with newline --- R/read_mpath.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/R/read_mpath.R b/R/read_mpath.R index dd43d80..a548b9f 100644 --- a/R/read_mpath.R +++ b/R/read_mpath.R @@ -105,6 +105,7 @@ read_mpath <- function( file = file, delim = ";", locale = .mpath_locale, + comment = '\r', # this is the newline, which is used as a comment in the m-Path files show_col_types = FALSE, col_names = TRUE, col_types = type_char @@ -280,7 +281,7 @@ read_meta_data <- function( meta_data <- meta_data |> mutate(type = case_match( .data$typeAnswer, - "basic" ~ "i", + "basic" ~ "?", "int" ~ "i", "string" ~ "c", "stringList" ~ "c", # the lists are read as strings and then converted to their respective types From 7ed72222431ce9018520b867e4586ac9f9c19213 Mon Sep 17 00:00:00 2001 From: larann901 Date: Sat, 12 Oct 2024 14:11:01 +0200 Subject: [PATCH 2/3] write mpath can handle empty strings --- DESCRIPTION | 3 +- NAMESPACE | 5 + R/cast_vec.R | 6 +- R/mpathr-package.R | 3 + R/read_mpath.R | 1 + R/utils-pipe.R | 14 + R/write_mpath.R | 24 +- man/pipe.Rd | 20 + mpathr.Rcheck/00_pkg_src/mpathr/DESCRIPTION | 37 + mpathr.Rcheck/00_pkg_src/mpathr/NAMESPACE | 34 + mpathr.Rcheck/00_pkg_src/mpathr/NEWS.md | 2 + mpathr.Rcheck/00_pkg_src/mpathr/R/cast_vec.R | 58 + mpathr.Rcheck/00_pkg_src/mpathr/R/data.R | 121 + .../00_pkg_src/mpathr/R/mpath_example.R | 45 + .../00_pkg_src/mpathr/R/mpathr-package.R | 35 + .../00_pkg_src/mpathr/R/plot_response_rate.R | 95 + .../00_pkg_src/mpathr/R/read_mpath.R | 305 +++ .../00_pkg_src/mpathr/R/response_rate.R | 108 + .../00_pkg_src/mpathr/R/write_mpath.R | 42 + mpathr.Rcheck/00_pkg_src/mpathr/README.md | 76 + .../00_pkg_src/mpathr/build/vignette.rds | Bin 0 -> 194 bytes .../00_pkg_src/mpathr/data/example_data.rda | Bin 0 -> 63122 bytes mpathr.Rcheck/00_pkg_src/mpathr/inst/CITATION | 10 + mpathr.Rcheck/00_pkg_src/mpathr/inst/WORDLIST | 16 + .../00_pkg_src/mpathr/inst/doc/mpathr.R | 80 + .../00_pkg_src/mpathr/inst/doc/mpathr.Rmd | 177 ++ .../00_pkg_src/mpathr/inst/doc/mpathr.html | 734 ++++++ .../mpathr/inst/extdata/example_basic.csv | 2222 +++++++++++++++++ .../mpathr/inst/extdata/example_meta.csv | 82 + .../mpathr/inst/testdata/test_basic.csv | 4 + .../mpathr/inst/testdata/test_meta.csv | 92 + .../00_pkg_src/mpathr/man/dot-mpath_locale.Rd | 19 + .../00_pkg_src/mpathr/man/example_data.Rd | 130 + .../mpathr/man/figures/README-pressure-1.png | Bin 0 -> 3744 bytes .../mpathr/man/figures/lifecycle-archived.svg | 21 + .../mpathr/man/figures/lifecycle-defunct.svg | 21 + .../man/figures/lifecycle-deprecated.svg | 21 + .../man/figures/lifecycle-experimental.svg | 21 + .../mpathr/man/figures/lifecycle-maturing.svg | 21 + .../man/figures/lifecycle-questioning.svg | 21 + .../man/figures/lifecycle-soft-deprecated.svg | 21 + .../mpathr/man/figures/lifecycle-stable.svg | 29 + .../man/figures/lifecycle-superseded.svg | 21 + .../00_pkg_src/mpathr/man/figures/logo.png | Bin 0 -> 29864 bytes .../00_pkg_src/mpathr/man/figures/logo2.png | Bin 0 -> 29864 bytes .../00_pkg_src/mpathr/man/figures/logo2.svg | 63 + .../mpathr/man/is_opened_in_excel.Rd | 26 + .../00_pkg_src/mpathr/man/mpath_example.Rd | 29 + .../00_pkg_src/mpathr/man/mpathr-package.Rd | 37 + .../mpathr/man/plot_response_rate.Rd | 41 + .../00_pkg_src/mpathr/man/read_meta_data.Rd | 18 + .../00_pkg_src/mpathr/man/read_mpath.Rd | 35 + .../00_pkg_src/mpathr/man/response_rate.Rd | 68 + .../00_pkg_src/mpathr/man/write_mpath.Rd | 30 + .../00_pkg_src/mpathr/tests/spelling.R | 3 + .../00_pkg_src/mpathr/tests/testthat.R | 4 + .../mpathr/tests/testthat/test-cast_vec.R | 84 + .../tests/testthat/test-is_opened_in_excel.R | 22 + .../tests/testthat/test-mpath_example.R | 26 + .../tests/testthat/test-plot_response_rate.R | 54 + .../mpathr/tests/testthat/test-read_mpath.R | 254 ++ .../tests/testthat/test-response_rate.R | 100 + .../00_pkg_src/mpathr/vignettes/mpathr.Rmd | 177 ++ mpathr.Rcheck/00check.log | 67 + mpathr.Rcheck/00install.out | 16 + mpathr.Rcheck/Rdlatex.log | 6 + mpathr.Rcheck/mpathr-Ex.R | 158 ++ mpathr.Rcheck/mpathr-Ex.Rout | 394 +++ mpathr.Rcheck/mpathr-Ex.pdf | Bin 0 -> 53202 bytes mpathr.Rcheck/mpathr-manual.log | 519 ++++ mpathr.Rcheck/mpathr-manual.pdf | Bin 0 -> 139893 bytes mpathr.Rcheck/mpathr/CITATION | 10 + mpathr.Rcheck/mpathr/DESCRIPTION | 38 + mpathr.Rcheck/mpathr/INDEX | 7 + mpathr.Rcheck/mpathr/Meta/Rd.rds | Bin 0 -> 627 bytes mpathr.Rcheck/mpathr/Meta/data.rds | Bin 0 -> 104 bytes mpathr.Rcheck/mpathr/Meta/features.rds | Bin 0 -> 123 bytes mpathr.Rcheck/mpathr/Meta/hsearch.rds | Bin 0 -> 615 bytes mpathr.Rcheck/mpathr/Meta/links.rds | Bin 0 -> 268 bytes mpathr.Rcheck/mpathr/Meta/nsInfo.rds | Bin 0 -> 493 bytes mpathr.Rcheck/mpathr/Meta/package.rds | Bin 0 -> 1461 bytes mpathr.Rcheck/mpathr/Meta/vignette.rds | Bin 0 -> 194 bytes mpathr.Rcheck/mpathr/NAMESPACE | 34 + mpathr.Rcheck/mpathr/NEWS.md | 2 + mpathr.Rcheck/mpathr/R/mpathr | 27 + mpathr.Rcheck/mpathr/R/mpathr.rdb | Bin 0 -> 18917 bytes mpathr.Rcheck/mpathr/R/mpathr.rdx | Bin 0 -> 520 bytes mpathr.Rcheck/mpathr/WORDLIST | 16 + mpathr.Rcheck/mpathr/data/Rdata.rdb | Bin 0 -> 80624 bytes mpathr.Rcheck/mpathr/data/Rdata.rds | Bin 0 -> 86 bytes mpathr.Rcheck/mpathr/data/Rdata.rdx | Bin 0 -> 153 bytes mpathr.Rcheck/mpathr/doc/index.html | 29 + mpathr.Rcheck/mpathr/doc/mpathr.R | 80 + mpathr.Rcheck/mpathr/doc/mpathr.Rmd | 177 ++ mpathr.Rcheck/mpathr/doc/mpathr.html | 734 ++++++ .../mpathr/extdata/example_basic.csv | 2222 +++++++++++++++++ mpathr.Rcheck/mpathr/extdata/example_meta.csv | 82 + mpathr.Rcheck/mpathr/help/AnIndex | 11 + mpathr.Rcheck/mpathr/help/aliases.rds | Bin 0 -> 198 bytes .../mpathr/help/figures/README-pressure-1.png | Bin 0 -> 3744 bytes .../help/figures/lifecycle-archived.svg | 21 + .../mpathr/help/figures/lifecycle-defunct.svg | 21 + .../help/figures/lifecycle-deprecated.svg | 21 + .../help/figures/lifecycle-experimental.svg | 21 + .../help/figures/lifecycle-maturing.svg | 21 + .../help/figures/lifecycle-questioning.svg | 21 + .../figures/lifecycle-soft-deprecated.svg | 21 + .../mpathr/help/figures/lifecycle-stable.svg | 29 + .../help/figures/lifecycle-superseded.svg | 21 + mpathr.Rcheck/mpathr/help/figures/logo.png | Bin 0 -> 29864 bytes mpathr.Rcheck/mpathr/help/figures/logo2.png | Bin 0 -> 29864 bytes mpathr.Rcheck/mpathr/help/figures/logo2.svg | 63 + mpathr.Rcheck/mpathr/help/mpathr.rdb | Bin 0 -> 20155 bytes mpathr.Rcheck/mpathr/help/mpathr.rdx | Bin 0 -> 406 bytes mpathr.Rcheck/mpathr/help/paths.rds | Bin 0 -> 271 bytes mpathr.Rcheck/mpathr/html/00Index.html | 39 + mpathr.Rcheck/mpathr/html/R.css | 130 + mpathr.Rcheck/mpathr/testdata/test_basic.csv | 4 + mpathr.Rcheck/mpathr/testdata/test_meta.csv | 92 + mpathr.Rcheck/tests/spelling.R | 3 + mpathr.Rcheck/tests/spelling.Rout | 25 + mpathr.Rcheck/tests/startup.Rs | 4 + mpathr.Rcheck/tests/testthat.R | 4 + mpathr.Rcheck/tests/testthat.Rout | 26 + mpathr.Rcheck/tests/testthat/test-cast_vec.R | 84 + .../tests/testthat/test-is_opened_in_excel.R | 22 + .../tests/testthat/test-mpath_example.R | 26 + .../tests/testthat/test-plot_response_rate.R | 54 + .../tests/testthat/test-read_mpath.R | 254 ++ .../tests/testthat/test-response_rate.R | 100 + vignettes/mpathr.Rmd | 4 +- 131 files changed, 11617 insertions(+), 11 deletions(-) create mode 100644 R/utils-pipe.R create mode 100644 man/pipe.Rd create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/DESCRIPTION create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/NAMESPACE create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/NEWS.md create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/R/cast_vec.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/R/data.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/R/mpath_example.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/R/mpathr-package.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/R/plot_response_rate.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/R/read_mpath.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/R/response_rate.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/R/write_mpath.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/README.md create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/build/vignette.rds create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/data/example_data.rda create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/inst/CITATION create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/inst/WORDLIST create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/inst/doc/mpathr.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/inst/doc/mpathr.Rmd create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/inst/doc/mpathr.html create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/inst/extdata/example_basic.csv create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/inst/extdata/example_meta.csv create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/inst/testdata/test_basic.csv create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/inst/testdata/test_meta.csv create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/dot-mpath_locale.Rd create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/example_data.Rd create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/figures/README-pressure-1.png create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-archived.svg create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-defunct.svg create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-deprecated.svg create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-experimental.svg create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-maturing.svg create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-questioning.svg create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-soft-deprecated.svg create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-stable.svg create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-superseded.svg create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/figures/logo.png create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/figures/logo2.png create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/figures/logo2.svg create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/is_opened_in_excel.Rd create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/mpath_example.Rd create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/mpathr-package.Rd create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/plot_response_rate.Rd create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/read_meta_data.Rd create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/read_mpath.Rd create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/response_rate.Rd create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/man/write_mpath.Rd create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/tests/spelling.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-cast_vec.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-is_opened_in_excel.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-mpath_example.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-plot_response_rate.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-read_mpath.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-response_rate.R create mode 100644 mpathr.Rcheck/00_pkg_src/mpathr/vignettes/mpathr.Rmd create mode 100644 mpathr.Rcheck/00check.log create mode 100644 mpathr.Rcheck/00install.out create mode 100644 mpathr.Rcheck/Rdlatex.log create mode 100644 mpathr.Rcheck/mpathr-Ex.R create mode 100644 mpathr.Rcheck/mpathr-Ex.Rout create mode 100644 mpathr.Rcheck/mpathr-Ex.pdf create mode 100644 mpathr.Rcheck/mpathr-manual.log create mode 100644 mpathr.Rcheck/mpathr-manual.pdf create mode 100644 mpathr.Rcheck/mpathr/CITATION create mode 100644 mpathr.Rcheck/mpathr/DESCRIPTION create mode 100644 mpathr.Rcheck/mpathr/INDEX create mode 100644 mpathr.Rcheck/mpathr/Meta/Rd.rds create mode 100644 mpathr.Rcheck/mpathr/Meta/data.rds create mode 100644 mpathr.Rcheck/mpathr/Meta/features.rds create mode 100644 mpathr.Rcheck/mpathr/Meta/hsearch.rds create mode 100644 mpathr.Rcheck/mpathr/Meta/links.rds create mode 100644 mpathr.Rcheck/mpathr/Meta/nsInfo.rds create mode 100644 mpathr.Rcheck/mpathr/Meta/package.rds create mode 100644 mpathr.Rcheck/mpathr/Meta/vignette.rds create mode 100644 mpathr.Rcheck/mpathr/NAMESPACE create mode 100644 mpathr.Rcheck/mpathr/NEWS.md create mode 100644 mpathr.Rcheck/mpathr/R/mpathr create mode 100644 mpathr.Rcheck/mpathr/R/mpathr.rdb create mode 100644 mpathr.Rcheck/mpathr/R/mpathr.rdx create mode 100644 mpathr.Rcheck/mpathr/WORDLIST create mode 100644 mpathr.Rcheck/mpathr/data/Rdata.rdb create mode 100644 mpathr.Rcheck/mpathr/data/Rdata.rds create mode 100644 mpathr.Rcheck/mpathr/data/Rdata.rdx create mode 100644 mpathr.Rcheck/mpathr/doc/index.html create mode 100644 mpathr.Rcheck/mpathr/doc/mpathr.R create mode 100644 mpathr.Rcheck/mpathr/doc/mpathr.Rmd create mode 100644 mpathr.Rcheck/mpathr/doc/mpathr.html create mode 100644 mpathr.Rcheck/mpathr/extdata/example_basic.csv create mode 100644 mpathr.Rcheck/mpathr/extdata/example_meta.csv create mode 100644 mpathr.Rcheck/mpathr/help/AnIndex create mode 100644 mpathr.Rcheck/mpathr/help/aliases.rds create mode 100644 mpathr.Rcheck/mpathr/help/figures/README-pressure-1.png create mode 100644 mpathr.Rcheck/mpathr/help/figures/lifecycle-archived.svg create mode 100644 mpathr.Rcheck/mpathr/help/figures/lifecycle-defunct.svg create mode 100644 mpathr.Rcheck/mpathr/help/figures/lifecycle-deprecated.svg create mode 100644 mpathr.Rcheck/mpathr/help/figures/lifecycle-experimental.svg create mode 100644 mpathr.Rcheck/mpathr/help/figures/lifecycle-maturing.svg create mode 100644 mpathr.Rcheck/mpathr/help/figures/lifecycle-questioning.svg create mode 100644 mpathr.Rcheck/mpathr/help/figures/lifecycle-soft-deprecated.svg create mode 100644 mpathr.Rcheck/mpathr/help/figures/lifecycle-stable.svg create mode 100644 mpathr.Rcheck/mpathr/help/figures/lifecycle-superseded.svg create mode 100644 mpathr.Rcheck/mpathr/help/figures/logo.png create mode 100644 mpathr.Rcheck/mpathr/help/figures/logo2.png create mode 100644 mpathr.Rcheck/mpathr/help/figures/logo2.svg create mode 100644 mpathr.Rcheck/mpathr/help/mpathr.rdb create mode 100644 mpathr.Rcheck/mpathr/help/mpathr.rdx create mode 100644 mpathr.Rcheck/mpathr/help/paths.rds create mode 100644 mpathr.Rcheck/mpathr/html/00Index.html create mode 100644 mpathr.Rcheck/mpathr/html/R.css create mode 100644 mpathr.Rcheck/mpathr/testdata/test_basic.csv create mode 100644 mpathr.Rcheck/mpathr/testdata/test_meta.csv create mode 100644 mpathr.Rcheck/tests/spelling.R create mode 100644 mpathr.Rcheck/tests/spelling.Rout create mode 100644 mpathr.Rcheck/tests/startup.Rs create mode 100644 mpathr.Rcheck/tests/testthat.R create mode 100644 mpathr.Rcheck/tests/testthat.Rout create mode 100644 mpathr.Rcheck/tests/testthat/test-cast_vec.R create mode 100644 mpathr.Rcheck/tests/testthat/test-is_opened_in_excel.R create mode 100644 mpathr.Rcheck/tests/testthat/test-mpath_example.R create mode 100644 mpathr.Rcheck/tests/testthat/test-plot_response_rate.R create mode 100644 mpathr.Rcheck/tests/testthat/test-read_mpath.R create mode 100644 mpathr.Rcheck/tests/testthat/test-response_rate.R diff --git a/DESCRIPTION b/DESCRIPTION index 89e7121..8adcdb5 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -35,7 +35,8 @@ Imports: tidyr, rlang, ggplot2, - jsonlite + jsonlite, + magrittr Language: en-US BugReports: https://github.com/m-path-io/mpathr/issues Depends: diff --git a/NAMESPACE b/NAMESPACE index 3816d41..a6631e5 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -1,5 +1,6 @@ # Generated by roxygen2: do not edit by hand +export("%>%") export(mpath_example) export(plot_response_rate) export(read_mpath) @@ -12,6 +13,7 @@ importFrom(dplyr,all_of) importFrom(dplyr,any_of) importFrom(dplyr,arrange) importFrom(dplyr,case_match) +importFrom(dplyr,case_when) importFrom(dplyr,filter) importFrom(dplyr,group_by) importFrom(dplyr,mutate) @@ -22,10 +24,13 @@ importFrom(dplyr,summarise) importFrom(dplyr,summarize) importFrom(dplyr,tibble) importFrom(dplyr,ungroup) +importFrom(dplyr,where) importFrom(ggplot2,aes) importFrom(ggplot2,ggplot) importFrom(jsonlite,fromJSON) +importFrom(jsonlite,toJSON) importFrom(lifecycle,deprecated) +importFrom(magrittr,"%>%") importFrom(rlang,.data) importFrom(rlang,.env) importFrom(rlang,enquo) diff --git a/R/cast_vec.R b/R/cast_vec.R index 910cbd4..1b8ba18 100644 --- a/R/cast_vec.R +++ b/R/cast_vec.R @@ -35,7 +35,11 @@ .to_string <- function(vec) { # In case the file was written back to csv using [write_mpath()], the strings are not in JSON # format and thus do not need conversion. - if (!any(grepl("\"", vec), na.rm = TRUE)) { + if (!any(grepl("\"", vec) & vec != '""')){#, na.rm = TRUE) { + + # turn vec == '""' into "" + vec[vec == '""'] <- "" + return(vec) } diff --git a/R/mpathr-package.R b/R/mpathr-package.R index 4169f16..75addcd 100644 --- a/R/mpathr-package.R +++ b/R/mpathr-package.R @@ -9,6 +9,7 @@ #' @importFrom dplyr any_of #' @importFrom dplyr arrange #' @importFrom dplyr case_match +#' @importFrom dplyr case_when #' @importFrom dplyr filter #' @importFrom dplyr group_by #' @importFrom dplyr mutate @@ -19,9 +20,11 @@ #' @importFrom dplyr summarize #' @importFrom dplyr tibble #' @importFrom dplyr ungroup +#' @importFrom dplyr where #' @importFrom ggplot2 aes #' @importFrom ggplot2 ggplot #' @importFrom jsonlite fromJSON +#' @importFrom jsonlite toJSON #' @importFrom lifecycle deprecated #' @importFrom rlang .data #' @importFrom rlang .env diff --git a/R/read_mpath.R b/R/read_mpath.R index a548b9f..c476d56 100644 --- a/R/read_mpath.R +++ b/R/read_mpath.R @@ -219,6 +219,7 @@ read_meta_data <- function( file = meta_data, delim = ";", locale = .mpath_locale, + escape_double = TRUE, show_col_types = FALSE, col_names = TRUE, col_types = c("cccclll") diff --git a/R/utils-pipe.R b/R/utils-pipe.R new file mode 100644 index 0000000..fd0b1d1 --- /dev/null +++ b/R/utils-pipe.R @@ -0,0 +1,14 @@ +#' Pipe operator +#' +#' See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details. +#' +#' @name %>% +#' @rdname pipe +#' @keywords internal +#' @export +#' @importFrom magrittr %>% +#' @usage lhs \%>\% rhs +#' @param lhs A value or the magrittr placeholder. +#' @param rhs A function call using the magrittr semantics. +#' @return The result of calling `rhs(lhs)`. +NULL diff --git a/R/write_mpath.R b/R/write_mpath.R index 1463b7f..5cfd380 100644 --- a/R/write_mpath.R +++ b/R/write_mpath.R @@ -30,13 +30,23 @@ write_mpath <- function( )) |> ungroup() - # TODO: Escape empty strings, otherwise they are converted to NA - # data <- data |> - # mutate(across( - # .cols = where(is.character), - # .fns = \(x) ifelse(x == "", '\\', x) - # )) + string_cols <- data %>% + select(where(is.character)) %>% + colnames() + + # escape empty strings + data <- data |> + mutate(across( + .cols = where(is.character), + .fns = \(x) { + # find empty vals index + NA_idx = x == "" + # escape empty strings + x <- ifelse(NA_idx, '""', x) + } + )) + # TODO: maybe quote all strings so that we can implement lists in read_mpath for reread data # Write the data to csv - readr::write_csv2(data, file = file) + readr::write_csv2(data, file = file, na = 'NA', escape = 'double') } diff --git a/man/pipe.Rd b/man/pipe.Rd new file mode 100644 index 0000000..a648c29 --- /dev/null +++ b/man/pipe.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils-pipe.R +\name{\%>\%} +\alias{\%>\%} +\title{Pipe operator} +\usage{ +lhs \%>\% rhs +} +\arguments{ +\item{lhs}{A value or the magrittr placeholder.} + +\item{rhs}{A function call using the magrittr semantics.} +} +\value{ +The result of calling \code{rhs(lhs)}. +} +\description{ +See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details. +} +\keyword{internal} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/DESCRIPTION b/mpathr.Rcheck/00_pkg_src/mpathr/DESCRIPTION new file mode 100644 index 0000000..88a3174 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/DESCRIPTION @@ -0,0 +1,37 @@ +Package: mpathr +Title: Easily Handling Data from the ‘m-Path’ Platform +Version: 1.0.0 +Authors@R: c( + person("Merijn", "Mestdagh", email = "merijn.mestdagh@m-path.io", role = c("aut", "cre"), + comment = c(ORCID = "0000-0001-5077-861X")), + person("Lara", "Navarrete", email = "larann901@gmail.com", role = c("aut")), + person("Koen", "Niemeijer", email = "koen.niemeijer@kuleuven.be", role = c("aut"), + comment = c(ORCID = "0000-0002-0816-534X")), + person("m-Path Software", role = c("cph")) + ) +Description: Provides tools for importing and cleaning Experience Sampling Method ('ESM') data + collected via the 'm-Path' platform. The goal is to provide with a few utility + functions to be able to read and perform some common operations in 'ESM' data collected through + the 'm-Path' platform (). Functions include raw data handling, + format standardization, and basic data checks, as well as to calculate the response rate in + data from 'ESM' studies. +License: GPL (>= 3) +URL: https://m-path.io, https://github.com/m-path-io/mpathr +Encoding: UTF-8 +Suggests: knitr, rmarkdown, data.table, spelling, testthat (>= 3.0.0) +Config/testthat/edition: 3 +Imports: cli, dplyr, lifecycle, readr, tidyr, rlang, ggplot2, jsonlite +Language: en-US +BugReports: https://github.com/m-path-io/mpathr/issues +Depends: R (>= 4.0.0) +Roxygen: list(markdown = TRUE) +RoxygenNote: 7.3.2 +LazyData: true +VignetteBuilder: knitr +NeedsCompilation: no +Packaged: 2024-10-09 08:52:03 UTC; laran +Author: Merijn Mestdagh [aut, cre] (), + Lara Navarrete [aut], + Koen Niemeijer [aut] (), + m-Path Software [cph] +Maintainer: Merijn Mestdagh diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/NAMESPACE b/mpathr.Rcheck/00_pkg_src/mpathr/NAMESPACE new file mode 100644 index 0000000..3816d41 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/NAMESPACE @@ -0,0 +1,34 @@ +# Generated by roxygen2: do not edit by hand + +export(mpath_example) +export(plot_response_rate) +export(read_mpath) +export(response_rate) +export(write_mpath) +importFrom(cli,cli_abort) +importFrom(cli,cli_warn) +importFrom(dplyr,across) +importFrom(dplyr,all_of) +importFrom(dplyr,any_of) +importFrom(dplyr,arrange) +importFrom(dplyr,case_match) +importFrom(dplyr,filter) +importFrom(dplyr,group_by) +importFrom(dplyr,mutate) +importFrom(dplyr,n) +importFrom(dplyr,pull) +importFrom(dplyr,select) +importFrom(dplyr,summarise) +importFrom(dplyr,summarize) +importFrom(dplyr,tibble) +importFrom(dplyr,ungroup) +importFrom(ggplot2,aes) +importFrom(ggplot2,ggplot) +importFrom(jsonlite,fromJSON) +importFrom(lifecycle,deprecated) +importFrom(rlang,.data) +importFrom(rlang,.env) +importFrom(rlang,enquo) +importFrom(rlang,quo_name) +importFrom(tidyr,pivot_longer) +importFrom(tidyr,pivot_wider) diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/NEWS.md b/mpathr.Rcheck/00_pkg_src/mpathr/NEWS.md new file mode 100644 index 0000000..346421b --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/NEWS.md @@ -0,0 +1,2 @@ +# mpathr 1.0.0 +* Initial CRAN submission. diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/R/cast_vec.R b/mpathr.Rcheck/00_pkg_src/mpathr/R/cast_vec.R new file mode 100644 index 0000000..81b60aa --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/R/cast_vec.R @@ -0,0 +1,58 @@ +.unlist_col <- function(vec) { + tibble( + .id = seq_along(vec), + vec = vec + ) |> + mutate(vec = strsplit(.data$vec, ",")) |> + tidyr::unnest("vec", keep_empty = TRUE) +} + +.relist_col <- function(data) { + data <- summarise(data, vec = list(.data$vec), .by = ".id") + data$vec +} + +.to_int_list <- function(vec) { + .data <- .unlist_col(vec) + # Try to convert to integers, as they should be able to. However, in rare scenarios the integer + # value is too large for R (integer overflow) in which case we will use double values. + .data$vec <- tryCatch({ + as.integer(.data$vec) + }, warning = function(w) { + if (grepl("NAs introduced by coercion to integer range", conditionMessage(w))) { + as.double(.data$vec) + } + }) + .relist_col(.data) +} + +.to_double_list <- function(vec) { + .data <- .unlist_col(vec) + .data$vec <- as.double(.data$vec) + .relist_col(.data) +} + +.to_string_list <- function(vec) { + .data <- .unlist_col(vec) + .data$vec <- as.character(.data$vec) + .relist_col(.data) +} + +.to_string <- function(vec) { + # In case the file was written back to csv using [write_mpath()], the strings are not in JSON + # format and thus do not need conversion. + if (!any(grepl("\\\\", vec), na.rm = TRUE)) { + return(vec) + } + + unjson <- ifelse(is.na(vec), "null", vec) + unjson <- paste0("[", paste0(unjson, collapse = ","), "]") + unjson <- jsonlite::fromJSON(unjson) + as.character(unjson) +} + +.to_string_list <- function(vec) { + .data <- .unlist_col(vec) + .data$vec <- .to_string(.data$vec) + .relist_col(.data) +} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/R/data.R b/mpathr.Rcheck/00_pkg_src/mpathr/R/data.R new file mode 100644 index 0000000..9448269 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/R/data.R @@ -0,0 +1,121 @@ +#' Example m-path data +#' +#' @description +#' +#' Contains the preprocessed example data for an m-path research study. +#' +#' In the study, 20 participants completed 11 beeps over the course of 10 days. +#' The study consisted of: +#' - An intake questionnaire, that participants answered at the study's start. +#' - A main questionnaire (10 times per day), where participants answered +#' questions about their emotions and context at the time. +#' - An evening questionnaire (once, at the end of the day), +#' about their emotions and activities throughout the day. +#' +#' Each row corresponds to one beep sent during the study. +#' +#' @format +#' A data frame with 1980 rows and 47 columns: +#' \describe{ +#' \item{participant}{Participant identifier.} +#' \item{code}{Code the participants used to sign up for the study.} +#' \item{questionnaire}{The questionnaire that participants answered +#' in that beep (it can be the main or the evening questionnaire).} +#' \item{scheduled}{Time stamp for when the notification was scheduled for, +#' in unix time.} +#' \item{sent}{Time stamp for when the notification was sent, in unix time.} +#' \item{start}{Time stamp for when the notification was answered, +#' in unix time. +#' If the notification was never answered, this value is an NA.} +#' \item{stop}{Time stamp for when the notification was completed, +#' in unix time. +#' If the notification was never answered, this value is an NA.} +#' \item{phone_server_offset}{The difference between the phone time +#' and the server time.} +#' \item{obs_n}{Observation number for each participant. +#' Goes from 1 (first observation), to 110 (last observation of the study).} +#' \item{day_n}{Day number of the study, for the participant. +#' Goes from 1 to 10.} +#' \item{obs_n_day}{Observation number within the day (for each participant). +#' Goes from 1 to 11.} +#' \item{answered}{Logical, whether the beep was answered or not.} +#' \item{bpm_day}{Average heart rate per day. +#' Note that unlike the rest of the variables, +#' this corresponds to simulated data.} +#' \item{gender}{Participant's gender. +#' 1 means 'Male', 2 means 'Female', 3 'Other'.} +#' \item{gender_string}{Participant's gender, as a string.} +#' \item{age}{Participant's age in years.} +#' \item{life_satisfaction}{Composite variable corresponding to participant's +#' life satisfaction according to the Satisfaction With Life Scale (SWLS).} +#' \item{neuroticism}{Composite variable corresponding to participant's +#' neuroticism according to the Big Five Inventory (BFI).} +#' \item{slider_happy}{Participants' self-reported happiness +#' at the time of the beep. +#' From 0 (not happy at all) to 100 (very happy).} +#' \item{slider_sad}{Participants' self-reported sadness +#' at the time of the beep. +#' From 0 (not sad at all) to 100 (very sad).} +#' \item{slider_angry}{Participants' self-reported anger +#' at the time of the beep. +#' From 0 (not angry at all) to 100 (very angry).} +#' \item{slider_relaxed}{Participants' self-reported relaxation +#' at the time of the beep. +#' From 0 (not relaxed at all) to 100 (very relaxed).} +#' \item{slider_anxious}{Participants' self-reported anxiety +#' at the time of the beep. +#' From 0 (not anxious at all) to 100 (very anxious).} +#' \item{slider_energetic}{Participants' self-reported energy +#' at the time of the beep. +#' From 0 (not energetic at all) to 100 (very energetic).} +#' \item{slider_tired}{Participants' self-reported tiredness +#' at the time of the beep. +#' From 0 (not tired at all) to 100 (very tired).} +#' \item{location_index}{Index corresponding to the participant's answer +#' to the question "Where are you now?", +#' from a list of multiple options.} +#' \item{location_string}{Text corresponding to the participant's selected +#' location at the time of the beep.} +#' \item{company_index}{Index corresponding to the participant's answer to the +#' question "With whom are you right now?", from a list of multiple options.} +#' \item{company_string}{Text corresponding to the participant's selected +#' company at the time of the beep.} +#' \item{activity_index}{Index corresponding to the participant's answer to +#' the question "What are you doing now?", from a list of multiple options.} +#' \item{activity_string}{Text corresponding to the participant's selected +#' activity at the time of the beep.} +#' \item{step_count}{Step count between the previous answered beep and the +#' current beep} +#' \item{evening_slider_happy}{Participants' happiness during the day, +#' from 0 (not happy at all) to 100 (very happy).} +#' \item{evening_slider_sad}{Participants' sadness during the day, +#' from 0 (not sad at all) to 100 (very sad).} +#' \item{evening_slider_angry}{Participants' anger during the day, +#' from 0 (not angry at all) to 100 (very angry).} +#' \item{evening_slider_relaxed}{Participants' relaxation during the day, +#' from 0 (not relaxed at all) to 100 (very relaxed).} +#' \item{evening_slider_anxious}{Participants' anxiety during the day, +#' from 0 (not anxious at all) to 100 (very anxious).} +#' \item{evening_slider_energetic}{Participants' energy during the day, +#' from 0 (not energetic at all) to 100 (very energetic).} +#' \item{evening_slider_tired}{Participants' tiredness during the day, +#' from 0 (not tired at all) to 100 (very tired).} +#' \item{evening_stressful}{Participant's answer to whether something +#' stressful had happened during the day. 1 means 'yes', 0 means 'no'.} +#' \item{evening_positive}{Participant's answer to whether something +#' positive had happened during the day. 1 means 'yes', 0 means 'no'.} +#' \item{positive_description}{Explanation of the positive event +#' (if participants responded 'yes' to the previous question).} +#' \item{stressful_description}{Explanation of the stressful event +#' (if participants responded 'yes' to the previous question).} +#' \item{evening_activity_index}{Index corresponding to the participant's +#' answer(s) to the question "What activities did you do today?", +#' from a list of multiple options.} +#' \item{evening_activity_string}{Text corresponding to the participant's +#' selected activities during the day.} +#' \item{delay_start_min}{Delay in minutes between the scheduled beep and the +#' time the participants started the beep.} +#' \item{delay_end_min}{Time in minutes the participants took to fill in +#' the beep (difference between the columns start and stop).} +#' } +"example_data" diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/R/mpath_example.R b/mpathr.Rcheck/00_pkg_src/mpathr/R/mpath_example.R new file mode 100644 index 0000000..c72c731 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/R/mpath_example.R @@ -0,0 +1,45 @@ +#' Get path to m-Path example data +#' +#' This function provides an easy way to access the m-Path example files. +#' +#' @param file the name of the file to be accessed. If `NULL`, the function +#' will return a list of all the example files. +#' +#' @returns a character string with the path to the m-Path example data +#' @export +#' +#' @examples +#' # Example 1: access 'example_basic.csv' data +#' +#' mpath_example('example_basic.csv') # returns the full path to the file +#' 'example_basic.csv' +#' +#' # Example 2: list all the example files +#' +#' mpath_example() # returns the example files as a vector +#' +mpath_example <- function(file = NULL) { + + all_files <- list.files(system.file('extdata', package = "mpathr")) + + # Just return all files, without their directories + if (is.null(file)) { + return(all_files) + } + + data_path <- file.path("extdata", file) + path <- system.file(data_path, package = "mpathr") + + if (!file.exists(path)) { + cli_abort(c( + paste0("File `", file, "` could not be found."), + i = paste0( + "Please select one of the following files: ", + paste0("`", all_files, "`", collapse = ", "), + "." + ) + )) + } + + path +} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/R/mpathr-package.R b/mpathr.Rcheck/00_pkg_src/mpathr/R/mpathr-package.R new file mode 100644 index 0000000..4169f16 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/R/mpathr-package.R @@ -0,0 +1,35 @@ +#' @keywords internal +"_PACKAGE" + +## usethis namespace: start +#' @importFrom cli cli_abort +#' @importFrom cli cli_warn +#' @importFrom dplyr across +#' @importFrom dplyr all_of +#' @importFrom dplyr any_of +#' @importFrom dplyr arrange +#' @importFrom dplyr case_match +#' @importFrom dplyr filter +#' @importFrom dplyr group_by +#' @importFrom dplyr mutate +#' @importFrom dplyr n +#' @importFrom dplyr pull +#' @importFrom dplyr select +#' @importFrom dplyr summarise +#' @importFrom dplyr summarize +#' @importFrom dplyr tibble +#' @importFrom dplyr ungroup +#' @importFrom ggplot2 aes +#' @importFrom ggplot2 ggplot +#' @importFrom jsonlite fromJSON +#' @importFrom lifecycle deprecated +#' @importFrom rlang .data +#' @importFrom rlang .env +#' @importFrom rlang enquo +#' @importFrom rlang quo_name +#' @importFrom tidyr pivot_longer +#' @importFrom tidyr pivot_wider +## usethis namespace: end +NULL + +rlang::on_load(rlang::local_use_cli()) diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/R/plot_response_rate.R b/mpathr.Rcheck/00_pkg_src/mpathr/R/plot_response_rate.R new file mode 100644 index 0000000..8421e18 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/R/plot_response_rate.R @@ -0,0 +1,95 @@ +# this function is used by the function plot_response_rate (below). +response_rate_per_day <- function( + data, + valid_col, + participant_col, + time_col +){ + + data <- data |> + group_by({{ participant_col }}) |> + mutate(day = dplyr::dense_rank({{ time_col }})) |> + ungroup() |> + group_by({{ participant_col }}, .data$day) |> + summarize(response_rate = sum({{ valid_col }}) / n(), .groups = "drop") |> + ungroup() + + data +} + +#' Plots response rate per day (and per participant) +#' +#' @description This function returns a ggplot object with the response rate per day (x axis) and +#' participant (color). Note that instead of using calendar dates, the function returns a plot +#' grouped by the day inside the study for the participant. +#' +#' @param data data frame with data +#' @param valid_col name of the column that stores whether the beep +#' was answered or not +#' @param participant_col name of the column that stores the participant id +#' (or equivalent) +#' @param time_col name of the column that stores the time of the beep +#' +#' @return a ggplot object with the response rate per day (x axis) +#' and participant (color) +#' @export +#' +#' @examples +#' # load data +#' data(example_data) +#' +#' # make plot with plot_response_rate +#' plot_response_rate(data = example_data, +#' time_col = sent, +#' participant_col = participant, +#' valid_col = answered) +#' # The resulting ggplot object can be formatted using ggplot2 functions (see ggplot2 +#' # documentation). +#' +plot_response_rate <- function( + data, + valid_col, + participant_col, # specify participant variable + time_col # specify time variable +){ + + data_plot <- response_rate_per_day( + data = data, + valid_col = {{ valid_col }}, + participant_col = {{ participant_col }}, + time_col = {{ time_col }} + ) + + # turn participant into a factor for plotting purposes + data_plot <- data_plot |> + mutate(participant = as.factor({{ participant_col }})) + + # get n of participants for plotting purposes + num_unique <- data_plot |> + ungroup() |> + summarise(unique = dplyr::n_distinct({{ participant_col }})) |> + pull("unique") + + data_plot |> + ggplot( + aes( + x = .data$day, + y = .data$response_rate, + group = .data$participant, + color = .data$participant, + shape = .data$participant, + linetype = .data$participant + )) + + ggplot2::geom_line() + + ggplot2::geom_point() + + ggplot2::scale_linetype_manual(values = rep( + c("solid", "dashed", "dotted"), + length.out = num_unique + )) + + ggplot2::scale_shape_manual(values = rep(c(3, 8, 15, 16, 17, 18), length.out = num_unique)) + + ggplot2::labs( + title = "Response rate per day", + x = "Date", + y = "Response rate" + ) +} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/R/read_mpath.R b/mpathr.Rcheck/00_pkg_src/mpathr/R/read_mpath.R new file mode 100644 index 0000000..dd43d80 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/R/read_mpath.R @@ -0,0 +1,305 @@ +#' Locale to be used for m-Path data +#' +#' @description +#' Hard coded locale to be used for 'm-Path' data +#' +#' @returns Return a locale to be used in [readr::read_delim()] or friends. +#' @keywords internal +.mpath_locale <- readr::locale( + date_names = "en", + date_format = "%AD", + time_format = "%AT", + decimal_mark = ",", + grouping_mark = ".", + tz = "UTC", + encoding = "UTF-8", + asciify = FALSE +) + +#' Read m-Path data +#' +#' @description `r lifecycle::badge("experimental")` +#' This function reads an 'm-Path' file into a dataframe. +#' +#' @details +#' Note that this function has been tested with the meta data version v.1.1. +#' So it is advised to use that version of the meta data. +#' (In 'm-Path', change the version in 'Export data' > "export version"). +#' +#' @param file A string with the path to the m-Path file +#' @param meta_data A string with the path to the meta data file +#' +#' @returns A \link[tibble]{tibble} with the 'm-Path' data. +#' @export +#' +#' @examples +#' +#' # We can use the function mpath_examples to get the path to the example data +#' basic_path <- mpath_example(file ="example_basic.csv") +#' meta_path <- mpath_example("example_meta.csv") +#' +#' data <- read_mpath(file = basic_path, +#' meta_data = meta_path) +#' +read_mpath <- function( + file, + meta_data +) { + + # Read in the meta data + meta_data <- read_meta_data(meta_data) + + # Read first line to get names of columns (to be saved in col_names) + col_names <- readr::read_lines(file, n_max = 1) + + # but first: check if file was opened by Excel + is_opened_in_excel(col_names) + + # Define the default column names in data files + # These are not included in the metadata file + cols_not_in_metadata <- c( + connectionId = "i", + legacyCode = "c", + code = "c", + alias = "c", + initials = "c", + accountCode = "c", + scheduledBeepId = "i", + sentBeepId = "i", + reminderForOriginalSentBeepId = "i", + questionListName = "c", + timeStampScheduled = "i", + timeStampSent = "i", + timeStampStart = "i", + timeStampStop = "i", + originalTimeStampSent = "i", + timeZoneOffset = "i", + deltaUTC = "n" + ) + + cols_not_in_metadata <- tibble( + columnName = names(cols_not_in_metadata), + type = cols_not_in_metadata + ) + + # Get the column names in the data file + col_names <- strsplit(col_names, ";")[[1]] + + # Get the type of each column in file to specify column types in readr::read_delim + type_char <- meta_data |> + select("columnName", "type") |> + rbind(cols_not_in_metadata) + + type_char <- dplyr::left_join( + x = tibble(columnName = col_names), + y = type_char, + by = "columnName" + ) |> + mutate(type = ifelse(is.na(.data$type), "?", .data$type)) # not in metadata, let R guess the type + + # put the types in one single string (that"s how read_delim expects them) + type_char <- paste0(type_char$type, collapse = "") + + # Read data + data <- suppressWarnings(readr::read_delim( + file = file, + delim = ";", + locale = .mpath_locale, + show_col_types = FALSE, + col_names = TRUE, + col_types = type_char + )) + + # Save potential problems before modifying the data + problems <- readr::problems(data) + + # handle the list columns + ## First, storing which columns have to contain lists: + int_list_cols <- meta_data$columnName[meta_data$typeAnswer == "intList"] + num_list_cols <- meta_data$columnName[meta_data$typeAnswer == "doubleList"] + string_list_cols <- meta_data$columnName[meta_data$typeAnswer == "stringList"] + string_cols <- meta_data$columnName[meta_data$typeAnswer == "string"] + + data <- data |> + mutate(across( + .cols = all_of(int_list_cols), + .fns = .to_int_list + )) |> + mutate(across( + .cols = all_of(num_list_cols), + .fns = .to_double_list + )) |> + mutate(across( + .cols = all_of(string_list_cols), + .fns = .to_string_list + )) |> + mutate(across( + .cols = all_of(string_cols), + .fns = .to_string + )) + + # Warn about other problems when reading in the data, if any + problems <- problems[!grepl("columns", problems$expected), ] + + if (nrow(problems) > 0) { + problems <- paste0( + "In row ", problems$row, + " column ", problems$col, + ", expected ", problems$expected, + " but got ", problems$actual, "." + ) + names(problems) <- rep("x", length(problems)) + + if (length(problems) > 100) { + len <- length(problems) + problems <- problems[1:100] + problems <- c(problems, paste0("... and ", len - 100, " more problems.")) + } + + cli_warn(c( + "There were problems when reading in the data:", + problems + )) + } + + data +} + +#' Check if an m-Path CSV file was opened in Excel +#' +#' @description +#' This function checks if an m-Path data file has previously been opened in Excel, in which case +#' the whole file is wrapped in quotation marks. Actual quotation marks will then also be quoted, +#' which is why we can't simply remove the outer quotes. Also, this function takes a single string +#' as input (the first line of the file) instead of the file itself, because this would mean the +#' file would have to be read twice. One time for this function, and then another time to get the +#' column names. +#' +#' @param line The first line of the file to check if it was opened in Excel. +#' @param call The environment from which the function was called to display in the error message. +#' +#' @returns Returns `TRUE` if the line is opened by Excel, otherwise an error informing the user of +#' this problem. +#' @keywords internal +is_opened_in_excel <- function(line, call = rlang::caller_env()) { + first_char <- substr(line, 1, 1) + if (first_char == "'") { + cli_abort( + c( + "The file was saved and changed by Excel.", + i = "Please download the file from the m-Path website again." + ), + call = call + ) + } + + invisible(TRUE) +} + +#' Read m-Path meta data +#' +#' Internal function to read the meta data file for an m-Path file. +#' +#' @param meta_data A string with the path to the meta data file +#' +#' @returns A \link[tibble]{tibble} with the contents of the meta data file. +#' @keywords internal +read_meta_data <- function( + meta_data +) { + # Check if the first character of the file is not a quote. If it is, this is likely because it was + # opened in Excel and saved again. This is because Excel will treat it as a string which means + # adding quotes both to the entire line as well as inner quotes for the values. This will cause + # issues when reading in the data and should be avoided. + first_line <- readr::read_lines(meta_data, n_max = 1) + is_opened_in_excel(first_line) + + meta_data <- suppressWarnings(readr::read_delim( + file = meta_data, + delim = ";", + locale = .mpath_locale, + show_col_types = FALSE, + col_names = TRUE, + col_types = c("cccclll") + )) + + # Check for warnings with reading in the meta data. There should be none + problems <- readr::problems(meta_data) + if (nrow(problems) > 0) { + problems <- paste0( + "In row ", problems$row, + " column ", problems$col, + ", expected ", problems$expected, + " but got ", problems$actual, "." + ) + names(problems) <- rep("x", length(problems)) + + cli_warn(c( + "There were problems when reading in the meta data:", + problems + )) + } + + # give warnings from last 3 cols of metadata + rows_with_changes <- meta_data |> + pivot_longer("fullQuestion_mixed":"typeAnswer_mixed") |> + filter(.data$value) + + if (nrow(rows_with_changes) > 0){ + rows_with_changes <- rows_with_changes |> + mutate(name = case_match( + .data$name, + "fullQuestion_mixed" ~ "{.fullq Question text}", + "typeQuestion_mixed" ~ "{.typeq Type of question}", + "typeAnswer_mixed" ~ "{.typea Type of answer}" + )) + + # Create a new coloured theme to use in the warning + cli::cli_div( + theme = list( + span.fullq = list(color = "red"), + span.typeq = list(color = "blue"), + span.typea = list(color = "green") + ) + ) + + # Generate the warning messages for the questions + problems <- paste0("In `", rows_with_changes$columnName, "`: ",rows_with_changes$name) + + # Generate bullet points + names(problems) <- rep("*", length(problems)) + + cli_warn(c( + "!" = "The following questions were changed during the study:", + problems + )) + } + + # Create mapping from the values in meta_data$typeAnswer (that specifies how that column should be saved) + # to the values that readr::read_delim expects (i, c, ?...) + meta_data <- meta_data |> + mutate(type = case_match( + .data$typeAnswer, + "basic" ~ "i", + "int" ~ "i", + "string" ~ "c", + "stringList" ~ "c", # the lists are read as strings and then converted to their respective types + "intList" ~ "c", + "doubleList" ~ "c", + "double" ~ "n" + )) + + # Special case for appUsage intList row: it should be read as a double List, even though it is an + # intList + meta_data <- meta_data |> + mutate(typeAnswer = ifelse( + .data$typeQuestion == "appUsage" & .data$typeAnswer == "intList", + "doubleList", + .data$typeAnswer + )) + + # if type is NA (because it is not in type_mapping), then R will guess the type + meta_data[is.na(meta_data$type), "type"] <- "?" + + meta_data +} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/R/response_rate.R b/mpathr.Rcheck/00_pkg_src/mpathr/R/response_rate.R new file mode 100644 index 0000000..a4a8b67 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/R/response_rate.R @@ -0,0 +1,108 @@ +#' Calculate response rate +#' +#' @param data data frame with data +#' @param valid_col name of the column that stores whether the beep +#' was answered or not +#' @param participant_col name of the column that stores the participant id +#' (or equivalent) +#' @param time_col optional: name of the column that stores the time of the +#' beep, as a 'POSIXct' object. +#' @param period_start string representing the starting date to +#' calculate response rates (optional). Accepts dates in the following +#' formats: \code{yyyy-mm-dd} or\code{yyyy/mm/dd}. +#' @param period_end period end to calculate response rates (optional). +#' +#' @returns a data frame with the response rate for each participant, and the number of beeps used to +#' calculate the response rate +#' @export +#' +#' @examples +#' # Example 1: calculate response rates for the whole study +#' # Get example data +#' data(example_data) +#' +#' # Calculate response rate for each participant +#' +#' # We don't specify time_col, period_start or period_end. +#' # Response rates will be based on all the participant's data +#' response_rate <- response_rate(data = example_data, +#' valid_col = answered, +#' participant_col = participant) +#' +#' # Example 2: calculate response rates for a specific time period +#' data(example_data) +#' +#' # Calculate response rate for each participant between dates +#' response_rate <- response_rate(data = example_data, +#' valid_col = answered, +#' participant_col = participant, +#' time_col = sent, +#' period_start = '2024-05-15', +#' period_end = '2024-05-31') +#' +#' # Get participants with a response rate below 0.5 +#' response_rate[response_rate$response_rate < 0.5,] +#' + +response_rate <- function( + data, + valid_col, + participant_col, + time_col = NULL, + period_start = NULL, + period_end = NULL +){ + + valid_col <- enquo(valid_col) + participant_col <- enquo(participant_col) + + if(!missing(time_col)){ + time_col <- enquo(time_col) + } + + # If period_start or end are specified, time_col should also be specified + if(!is.null(period_start) | !is.null(period_end)){ + if(missing(time_col)){ + stop(paste( + "It seems like the period start or end are specified", + "but the time column is not. Please specify a time colum." + )) + } + } + + # filter if a period start was specified + if(!is.null(period_start)){ + data <- data |> + filter(as.Date(!!time_col) >= as.Date(period_start)) + } + + # filter if a period end was specified + if(!is.null(period_end)){ + data <- data |> + filter(as.Date(!!time_col) <= as.Date(period_end)) + } + + # Print information on the period of the response rates. + if (!is.null(period_start) & !is.null(period_end)) { + message(paste("Calculating response rates between date:", + period_start, "and", period_end)) + } else if (!is.null(period_start)) { + message(paste("Calculating response rates starting from date:", + period_start)) + } else if (!is.null(period_end)) { + message(paste("Calculating response rates up to date:", + period_end)) + } else { + message("Calculating response rates for the entire duration of the study.") + } + + # grouping by the variable 'participant_col' and calculating number of beeps and response rate + response_rate <- data |> + group_by(!!participant_col) |> + summarize( + number_of_beeps = n(), + response_rate = sum(!!valid_col) / n() + ) + + response_rate +} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/R/write_mpath.R b/mpathr.Rcheck/00_pkg_src/mpathr/R/write_mpath.R new file mode 100644 index 0000000..1463b7f --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/R/write_mpath.R @@ -0,0 +1,42 @@ +#' Write m-Path data to a CSV file +#' +#' @param x A data frame or tibble to write to disk. +#' @param file File or connection to write to. +#' +#' @returns Returns `x` invisibly. +#' @export +#' +#' @examples +#' +#' data <- read_mpath( +#' mpath_example("example_basic.csv"), +#' mpath_example("example_meta.csv") +#' ) +#' +#' \dontrun{ +#' write_mpath(data, "data.csv") +#' } +write_mpath <- function( + x, + file +) { + + # Collapse list columns to a string with a delimiter of "," + data <- data |> + dplyr::rowwise() |> + mutate(across( + .cols = dplyr::where(is.list), + .fns = \(x) paste0(x, collapse = ",") + )) |> + ungroup() + + # TODO: Escape empty strings, otherwise they are converted to NA + # data <- data |> + # mutate(across( + # .cols = where(is.character), + # .fns = \(x) ifelse(x == "", '\\', x) + # )) + + # Write the data to csv + readr::write_csv2(data, file = file) +} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/README.md b/mpathr.Rcheck/00_pkg_src/mpathr/README.md new file mode 100644 index 0000000..cf0317b --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/README.md @@ -0,0 +1,76 @@ + + + +# mpathr + + + +[![R-CMD-check](https://github.com/m-path-io/mpathr/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/m-path-io/mpathr/actions/workflows/R-CMD-check.yaml) + + +## Overview + +The goal of `mpathr` is to provide with a few utility functions to read +and perform some common operations in data from Experience Sampling +Methodology (ESM) studies collected through the ‘m-Path’ platform +(). The package provides functions to read +data from ‘m-Path’, and to calculate response rate in data from +Experience Sampling studies. + +## Installation + +``` r +install.packages("mpathr") +library(mpathr) +``` + +## Example + +This is a basic example which shows you how to read data gathered from +m-Path into R using the `mpathr` package. For this, we use the example +data included in the package: + +``` r +# loads package +library(mpathr) + +# find paths to example basic and meta data: +basic_path <- mpath_example(file ='example_basic.csv') +meta_path <- mpath_example(file = 'example_meta.csv') + +# read the data +data <- read_mpath( + file = basic_path, + meta_data = meta_path +) + +print(data) +#> # A tibble: 2,221 × 100 +#> connectionId legacyCode code alias initials accountCode scheduledBeepId sentBeepId +#> +#> 1 234609 !9v48@jp7a7 !byyo kjyt abc Ver jp7a7 -1 19355815 +#> 2 234609 !9v48@jp7a7 !byyo kjyt abc Ver jp7a7 28626776 19369681 +#> 3 234609 !9v48@jp7a7 !byyo kjyt abc Ver jp7a7 28626777 19370288 +#> 4 234609 !9v48@jp7a7 !byyo kjyt abc Ver jp7a7 28626781 19375253 +#> 5 234609 !9v48@jp7a7 !byyo kjyt abc Ver jp7a7 28626782 19377280 +#> # ℹ 2,216 more rows +#> # ℹ 92 more variables: reminderForOriginalSentBeepId , questionListName , +#> # questionListLabel , fromProtocolName , timeStampScheduled , timeStampSent , +#> # timeStampStart , timeStampStop , originalTimeStampSent , timeZoneOffset , +#> # deltaUTC , consent_yesno_yesno , gender_multipleChoice_index , +#> # gender_multipleChoice_string , gender_multipleChoice_likert , age_open , +#> # SWLS_intro_basic , SWLS_1_multipleChoice_index , … +``` + +## Getting help + +If you encounter a clear bug or need help getting a function to run, +please file an issue with a minimal reproducible example on +[Github](https://github.com/m-path-io/mpathr/issues). + +## Code of Conduct + +Please note that the mpathr project is released with a [Contributor Code +of +Conduct](https://github.com/m-path-io/mpathr/blob/master/CODE_OF_CONDUCT.md). +By contributing to this project you agree to abide by its terms. diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/build/vignette.rds b/mpathr.Rcheck/00_pkg_src/mpathr/build/vignette.rds new file mode 100644 index 0000000000000000000000000000000000000000..b5b260cf8e68014973b2f683d7761cb3cc3f844c GIT binary patch literal 194 zcmV;z06qU7iwFP!0000028-ZgU|?WkU}0urU}6R`nT3G_8xRWsF(U&D11FH?$}LDN z$tcnb%1uF&VS~t^iE=~LXO!gTphJsT0|5&Yk~-GB#N5DTyVCdTB*K{UCP(07CnNZ>0eM0CCSwXaE2J literal 0 HcmV?d00001 diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/data/example_data.rda b/mpathr.Rcheck/00_pkg_src/mpathr/data/example_data.rda new file mode 100644 index 0000000000000000000000000000000000000000..35772e83c69c9f6313b64c0f74344e150e896422 GIT binary patch literal 63122 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 literal 0 HcmV?d00001 diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/inst/CITATION b/mpathr.Rcheck/00_pkg_src/mpathr/inst/CITATION new file mode 100644 index 0000000..c35d1a0 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/inst/CITATION @@ -0,0 +1,10 @@ +bibentry( + bibtype = "Article", + title = "{m-Path}: an easy-to-use and highly tailorable platform for ecological momentary assessment and intervention in behavioral research and clinical practice", + author = "Merijn Mestdagh, Stijn Verdonck, Maarten Piot, Koen Niemeijer, Ghijs Kilani, Francis Tuerlinckx, Peter Kuppens, Egon Dejonckheere", + journal = "Frontiers in Digital Health", + year = 2023, + volume = 5, + pages = "1-11", + doi = "10.3389/fdgth.2023.1182175" +) diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/inst/WORDLIST b/mpathr.Rcheck/00_pkg_src/mpathr/inst/WORDLIST new file mode 100644 index 0000000..22ae0c1 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/inst/WORDLIST @@ -0,0 +1,16 @@ +BFI +CMD +ESM +Github +ORCID +POSIXct +Path’ +SWLS +csv +ggplot +mpath +preprocess +preprocessed +th +tibble +yyyy diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/inst/doc/mpathr.R b/mpathr.Rcheck/00_pkg_src/mpathr/inst/doc/mpathr.R new file mode 100644 index 0000000..7ef0167 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/inst/doc/mpathr.R @@ -0,0 +1,80 @@ +## ----include = FALSE---------------------------------------------------------- +knitr::opts_chunk$set( + collapse = TRUE, + comment = "#>" +) + +## ----setup-------------------------------------------------------------------- +library(mpathr) + +## ----show m-Path example data------------------------------------------------- +mpath_example() + +## ----use read_mpath----------------------------------------------------------- +# find paths to example basic and meta data: +basic_path <- mpath_example(file = "example_basic.csv") +meta_path <- mpath_example("example_meta.csv") + +# read the data +data <- read_mpath( + file = basic_path, + meta_data = meta_path +) + +## ----write data as csv, eval = FALSE------------------------------------------ +# write_mpath( +# x = data, +# file = "data.csv" +# ) + +## ----write data as an R object, eval = FALSE---------------------------------- +# save( +# data, +# file = 'data.RData' +# ) + +## ----calculate response rate-------------------------------------------------- +example_data + +response_rates <- response_rate( + data = example_data, + valid_col = answered, + participant_col = participant +) + +## ----show low response rates-------------------------------------------------- +response_rates[response_rates$response_rate < 0.5,] + +## ----calculate response rate after 15th of May 2024--------------------------- +response_rates_after_15 <- response_rate( + data = example_data, + valid_col = answered, + participant_col = participant, + time_col = sent, + period_start = '2024-05-15' +) + +## ----show low response rates after 15th of May 2024--------------------------- +response_rates_after_15 + +## ----plot response rate, fig.width=7, fig.height=5---------------------------- +plot_response_rate( + data = example_data, + time_col = sent, + participant_col = participant, + valid_col = answered +) + +## ----customize plot response rate plot, fig.width=7, fig.height=5------------- +library(ggplot2) + +plot_response_rate( + data = example_data, + time_col = sent, + participant_col = participant, + valid_col = answered +) + + theme_minimal() + + ggtitle('Response rate over time') + + xlab('Day in study') + diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/inst/doc/mpathr.Rmd b/mpathr.Rcheck/00_pkg_src/mpathr/inst/doc/mpathr.Rmd new file mode 100644 index 0000000..bc8ffca --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/inst/doc/mpathr.Rmd @@ -0,0 +1,177 @@ +--- +title: "mpathr" +output: rmarkdown::html_vignette +vignette: > + %\VignetteIndexEntry{mpathr} + %\VignetteEngine{knitr::rmarkdown} + %\VignetteEncoding{UTF-8} +--- + + +```{r, include = FALSE} +knitr::opts_chunk$set( + collapse = TRUE, + comment = "#>" +) +``` + +```{r setup} +library(mpathr) +``` + +The main goal of `mpathr` is to provide functions to import data from the m-Path +platform, as well as provide functions for common manipulations for +ESM data. + +## Importing m-Path data + +To show how to import data using `mpathr`, we provide example data within +the package: + +```{r show m-Path example data} +mpath_example() +``` +As shown above, the package comes with an example of the `basic.csv` that can be +exported from the m-Path platform. \n + +To read this data into R, we can use the `read_mpath` function. We will also +need a path to the meta data. + +The main advantage of using `read_mpath`, as opposed to other functions like +`read.csv`, is that `read_mpath` uses the meta data to correctly interpret the +data types. Furthermore it will also automatically convert columns that store +multiple responses into lists. For a response with multiple options like 1,4,6, +`read_mpath` will store a list with each number, which facilitates further +preprocess these responses.\n + +We can obtain the paths to the example basic data and meta data +using the `mpath_example` function: + +```{r use read_mpath} +# find paths to example basic and meta data: +basic_path <- mpath_example(file = "example_basic.csv") +meta_path <- mpath_example("example_meta.csv") + +# read the data +data <- read_mpath( + file = basic_path, + meta_data = meta_path +) +``` + +### Note: saving m-Path data +As explained above, the resulting data frame will contain columns with lists, +which can be problematic when saving the data. To save the data, we suggest +using either `fwrite` from the `data.table` package, or the `save` function. + +If you want to save the data as a 'csv' to use it in another program, use `write_mpath()`. Once +written to csv, you can again use `read_mpath()` to read the data back into R. + +```{r write data as csv, eval = FALSE} +write_mpath( + x = data, + file = "data.csv" +) +``` + +Otherwise, if the data will be used exclusively in R, we suggest saving it as an R object: +```{r write data as an R object, eval = FALSE} +save( + data, + file = 'data.RData' +) +``` + +## Obtaining response rates + +### response_rate function + +Some common operations that are done on Experience Sampling Methodology (ESM) data have to do with +the participants' response rate. We provide a function `response_rate` that +calculates the response_rate per participant for the entire duration of the +study, or for a specific time frame.\n + +This function takes as argument a `valid_col`, that takes a logical column that +stores whether the beep was answered by the participant, or not, as well as a +`participant_col`, that identifies each separate participant. + +We will show how to use this function with the `example_data`, that contains data from the same +study as the `example_basic.csv` file, but after some cleaning.\n + +```{r calculate response rate} +example_data + +response_rates <- response_rate( + data = example_data, + valid_col = answered, + participant_col = participant +) +``` + +The function returns a data frame with:\n + +* The `participant` column, as specified in `participant_col` +* The `number_of_beeps` used to calculate the response rate. +* The `response_rate` column, which is the proportion of valid responses +(specified in `valid_col`) per participant. + +The output of this function can further be used to identify participants with +low response rates: + +```{r show low response rates} +response_rates[response_rates$response_rate < 0.5,] +``` + +We could also be interested in seeing the participants' response rate during +a specific period of time (for example, if we think a participant's compliance +significantly dropped a certain date). In this case, we should supply the +function with the (otherwise optional) argument `time_col`, that should contain +times stored as 'POSIXct' objects, and specify the date period that we are +interested in (in the format 'yyyy-mm-dd' or 'yyyy/mm/dd'): + +```{r calculate response rate after 15th of May 2024} +response_rates_after_15 <- response_rate( + data = example_data, + valid_col = answered, + participant_col = participant, + time_col = sent, + period_start = '2024-05-15' +) +``` + +This will return the participant's response rate after the 15th of May 2024. + +```{r show low response rates after 15th of May 2024} +response_rates_after_15 +``` + +### plot_response_rate function + +We also suggest a way to plot the participant response rates, to identify +patterns like response rates dropping over time. For this, we provide the `plot_response_rate` function. + +```{r plot response rate, fig.width=7, fig.height=5} +plot_response_rate( + data = example_data, + time_col = sent, + participant_col = participant, + valid_col = answered +) +``` +Note that the resulting plot can be further customized using the `ggplot2` +package. + +```{r customize plot response rate plot, fig.width=7, fig.height=5} +library(ggplot2) + +plot_response_rate( + data = example_data, + time_col = sent, + participant_col = participant, + valid_col = answered +) + + theme_minimal() + + ggtitle('Response rate over time') + + xlab('Day in study') +``` + diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/inst/doc/mpathr.html b/mpathr.Rcheck/00_pkg_src/mpathr/inst/doc/mpathr.html new file mode 100644 index 0000000..59c6ea2 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/inst/doc/mpathr.html @@ -0,0 +1,734 @@ + + + + + + + + + + + + + + +mpathr + + + + + + + + + + + + + + + + + + + + + + + + + + +

mpathr

+ + + +
library(mpathr)
+

The main goal of mpathr is to provide functions to +import data from the m-Path platform, as well as provide functions for +common manipulations for ESM data.

+
+

Importing m-Path data

+

To show how to import data using mpathr, we provide +example data within the package:

+
mpath_example()
+#> [1] "example_basic.csv" "example_meta.csv"
+

As shown above, the package comes with an example of the +basic.csv that can be exported from the m-Path platform. +

+

To read this data into R, we can use the read_mpath +function. We will also need a path to the meta data.

+

The main advantage of using read_mpath, as opposed to +other functions like read.csv, is that +read_mpath uses the meta data to correctly interpret the +data types. Furthermore it will also automatically convert columns that +store multiple responses into lists. For a response with multiple +options like 1,4,6, read_mpath will store a list with each +number, which facilitates further preprocess these responses.

+

We can obtain the paths to the example basic data and meta data using +the mpath_example function:

+
# find paths to example basic and meta data:
+basic_path <- mpath_example(file = "example_basic.csv")
+meta_path <- mpath_example("example_meta.csv")
+
+# read the data
+data <- read_mpath(
+  file = basic_path,
+  meta_data = meta_path
+)
+#> Warning: There were problems when reading in the data:
+#> ✖ In row 2 column 66, expected an integer but got 1
+.
+#> ✖ In row 3 column 84, expected an integer but got 1
+.
+#> ✖ In row 4 column 84, expected an integer but got 1
+.
+#> ✖ In row 5 column 84, expected an integer but got 1
+.
+#> ✖ In row 6 column 84, expected an integer but got 1
+.
+#> ✖ In row 7 column 84, expected an integer but got 1
+.
+#> ✖ In row 8 column 84, expected an integer but got 1
+.
+#> ✖ In row 9 column 99, expected an integer but got 1
+.
+#> ✖ In row 10 column 99, expected an integer but got 
+.
+#> ✖ In row 11 column 99, expected an integer but got 
+.
+#> ✖ In row 12 column 99, expected an integer but got 
+.
+#> ✖ In row 13 column 99, expected an integer but got 
+.
+#> ✖ In row 14 column 99, expected an integer but got 
+.
+#> ✖ In row 15 column 99, expected an integer but got 
+.
+#> ✖ In row 16 column 99, expected an integer but got 
+.
+#> ✖ In row 17 column 99, expected an integer but got 
+.
+#> ✖ In row 18 column 99, expected an integer but got 
+.
+#> ✖ In row 19 column 99, expected an integer but got 
+.
+#> ✖ In row 20 column 99, expected an integer but got 
+.
+#> ✖ In row 21 column 99, expected an integer but got 
+.
+#> ✖ In row 22 column 99, expected an integer but got 1
+.
+#> ✖ In row 23 column 99, expected an integer but got 1
+.
+#> ✖ In row 24 column 99, expected an integer but got 
+.
+#> ✖ In row 25 column 99, expected an integer but got 
+.
+#> ✖ In row 26 column 99, expected an integer but got 
+.
+#> ✖ In row 27 column 99, expected an integer but got 
+.
+#> ✖ In row 28 column 99, expected an integer but got 
+.
+#> ✖ In row 29 column 99, expected an integer but got 
+.
+#> ✖ In row 1415 column 19, expected a number but got 
+.
+#> ✖ In row 1416 column 19, expected a number but got 
+.
+#> ✖ In row 1417 column 19, expected a number but got 
+.
+#> ✖ In row 1418 column 19, expected a number but got 
+.
+#> ✖ In row 1419 column 19, expected a number but got 
+.
+#> ✖ In row 1420 column 19, expected a number but got 
+.
+#> ✖ In row 1421 column 19, expected a number but got 
+.
+#> ✖ In row 1422 column 19, expected a number but got 
+.
+#> ✖ In row 1423 column 19, expected a number but got 
+.
+#> ✖ In row 1424 column 19, expected a number but got 
+.
+#> ✖ In row 1425 column 19, expected a number but got 
+.
+#> ✖ In row 1426 column 19, expected a number but got 
+.
+#> ✖ In row 1427 column 19, expected a number but got 
+.
+#> ✖ In row 1428 column 19, expected a number but got 
+.
+#> ✖ In row 1429 column 19, expected a number but got 
+.
+#> ✖ In row 1430 column 19, expected a number but got 
+.
+#> ✖ In row 1431 column 19, expected a number but got 
+.
+#> ✖ In row 1432 column 19, expected a number but got 
+.
+#> ✖ In row 1433 column 19, expected a number but got 
+.
+#> ✖ In row 1434 column 19, expected a number but got 
+.
+#> ✖ In row 1435 column 19, expected a number but got 
+.
+#> ✖ In row 1436 column 19, expected a number but got 
+.
+#> ✖ In row 1437 column 19, expected a number but got 
+.
+#> ✖ In row 1438 column 19, expected a number but got 
+.
+#> ✖ In row 1439 column 19, expected a number but got 
+.
+#> ✖ In row 1440 column 19, expected a number but got 
+.
+#> ✖ In row 1441 column 19, expected a number but got 
+.
+#> ✖ In row 1442 column 19, expected a number but got 
+.
+#> ✖ In row 1443 column 19, expected a number but got 
+.
+#> ✖ In row 1444 column 19, expected a number but got 
+.
+#> ✖ In row 1445 column 19, expected a number but got 
+.
+#> ✖ In row 1446 column 19, expected a number but got 
+.
+#> ✖ In row 1447 column 19, expected a number but got 
+.
+#> ✖ In row 1448 column 19, expected a number but got 
+.
+#> ✖ In row 1449 column 19, expected a number but got 
+.
+#> ✖ In row 1450 column 19, expected a number but got 
+.
+#> ✖ In row 1451 column 19, expected a number but got 
+.
+#> ✖ In row 1452 column 19, expected a number but got 
+.
+#> ✖ In row 1453 column 19, expected a number but got 
+.
+#> ✖ In row 1454 column 19, expected a number but got 
+.
+#> ✖ In row 1455 column 19, expected a number but got 
+.
+#> ✖ In row 1456 column 19, expected a number but got 
+.
+#> ✖ In row 1457 column 19, expected a number but got 
+.
+#> ✖ In row 1458 column 19, expected a number but got 
+.
+#> ✖ In row 1459 column 19, expected a number but got 
+.
+#> ✖ In row 1460 column 19, expected a number but got 
+.
+#> ✖ In row 1461 column 19, expected a number but got 
+.
+#> ✖ In row 1462 column 19, expected a number but got 
+.
+#> ✖ In row 1463 column 19, expected a number but got 
+.
+#> ✖ In row 1464 column 19, expected a number but got 
+.
+#> ✖ In row 1465 column 19, expected a number but got 
+.
+#> ✖ In row 1466 column 19, expected a number but got 
+.
+#> ✖ In row 1467 column 19, expected a number but got 
+.
+#> ✖ In row 1468 column 19, expected a number but got 
+.
+#> ✖ In row 1469 column 19, expected a number but got 
+.
+#> ✖ In row 1470 column 19, expected a number but got 
+.
+#> ✖ In row 1471 column 19, expected a number but got 
+.
+#> ✖ In row 1472 column 19, expected a number but got 
+.
+#> ✖ In row 1473 column 19, expected a number but got 
+.
+#> ✖ In row 1474 column 19, expected a number but got 
+.
+#> ✖ In row 1475 column 19, expected a number but got 
+.
+#> ✖ In row 1476 column 19, expected a number but got 
+.
+#> ✖ In row 1477 column 19, expected a number but got 
+.
+#> ✖ In row 1478 column 19, expected a number but got 
+.
+#> ✖ In row 1479 column 19, expected a number but got 
+.
+#> ✖ In row 1480 column 19, expected a number but got 
+.
+#> ✖ In row 1481 column 19, expected a number but got 
+.
+#> ✖ In row 1482 column 19, expected a number but got 
+.
+#> ✖ In row 1483 column 19, expected a number but got 
+.
+#> ✖ In row 1484 column 19, expected a number but got 
+.
+#> ✖ In row 1485 column 19, expected a number but got 
+.
+#> ✖ In row 1486 column 19, expected a number but got 
+.
+#> ... and 736 more problems.
+
+

Note: saving m-Path data

+

As explained above, the resulting data frame will contain columns +with lists, which can be problematic when saving the data. To save the +data, we suggest using either fwrite from the +data.table package, or the save function.

+

If you want to save the data as a ‘csv’ to use it in another program, +use write_mpath(). Once written to csv, you can again use +read_mpath() to read the data back into R.

+
write_mpath(
+  x = data,
+  file = "data.csv"
+)
+

Otherwise, if the data will be used exclusively in R, we suggest +saving it as an R object:

+
save(
+  data, 
+  file = 'data.RData'
+)
+
+
+
+

Obtaining response rates

+
+

response_rate function

+

Some common operations that are done on Experience Sampling +Methodology (ESM) data have to do with the participants’ response rate. +We provide a function response_rate that calculates the +response_rate per participant for the entire duration of the study, or +for a specific time frame.

+

This function takes as argument a valid_col, that takes +a logical column that stores whether the beep was answered by the +participant, or not, as well as a participant_col, that +identifies each separate participant.

+

We will show how to use this function with the +example_data, that contains data from the same study as the +example_basic.csv file, but after some cleaning.

+
example_data
+#> # A tibble: 1,980 × 47
+#>    participant code       questionnaire  scheduled           sent               
+#>          <int> <chr>      <chr>          <dttm>              <dttm>             
+#>  1           2 !bxxm dqfu main_question… 2024-04-24 08:00:57 2024-04-24 08:00:59
+#>  2           2 !bxxm dqfu main_question… 2024-04-24 09:25:44 2024-04-24 09:25:45
+#>  3           2 !bxxm dqfu main_question… 2024-04-24 11:14:18 2024-04-24 11:14:20
+#>  4           2 !bxxm dqfu main_question… 2024-04-24 12:58:05 2024-04-24 12:58:06
+#>  5           2 !bxxm dqfu main_question… 2024-04-24 14:19:51 2024-04-24 14:19:52
+#>  6           2 !bxxm dqfu main_question… 2024-04-24 15:43:05 2024-04-24 15:43:06
+#>  7           2 !bxxm dqfu main_question… 2024-04-24 17:12:03 2024-04-24 17:12:04
+#>  8           2 !bxxm dqfu main_question… 2024-04-24 18:07:23 2024-04-24 18:07:25
+#>  9           2 !bxxm dqfu main_question… 2024-04-24 20:01:21 2024-04-24 20:01:22
+#> 10           2 !bxxm dqfu main_question… 2024-04-24 21:00:14 2024-04-24 21:00:17
+#> # ℹ 1,970 more rows
+#> # ℹ 42 more variables: start <dttm>, stop <dttm>, phone_server_offset <dbl>,
+#> #   obs_n <int>, day_n <int>, obs_n_day <int>, answered <lgl>, bpm_day <dbl>,
+#> #   gender <int>, gender_string <chr>, age <chr>, life_satisfaction <dbl>,
+#> #   neuroticism <dbl>, slider_happy <int>, slider_sad <int>,
+#> #   slider_angry <int>, slider_relaxed <int>, slider_anxious <int>,
+#> #   slider_energetic <int>, slider_tired <int>, location_index <int>, …
+
+response_rates <- response_rate(
+  data = example_data,
+  valid_col = answered,
+  participant_col = participant
+)
+#> Calculating response rates for the entire duration of the study.
+

The function returns a data frame with:

+
    +
  • The participant column, as specified in +participant_col
  • +
  • The number_of_beeps used to calculate the response +rate.
  • +
  • The response_rate column, which is the proportion of +valid responses (specified in valid_col) per +participant.
  • +
+

The output of this function can further be used to identify +participants with low response rates:

+
response_rates[response_rates$response_rate < 0.5,]
+#> # A tibble: 3 × 3
+#>   participant number_of_beeps response_rate
+#>         <int>           <int>         <dbl>
+#> 1           2             110         0.418
+#> 2          16             110         0.318
+#> 3          20             110         0.436
+

We could also be interested in seeing the participants’ response rate +during a specific period of time (for example, if we think a +participant’s compliance significantly dropped a certain date). In this +case, we should supply the function with the (otherwise optional) +argument time_col, that should contain times stored as +‘POSIXct’ objects, and specify the date period that we are interested in +(in the format ‘yyyy-mm-dd’ or ‘yyyy/mm/dd’):

+
response_rates_after_15 <- response_rate(
+  data = example_data,
+  valid_col = answered,
+  participant_col = participant,
+  time_col = sent,
+  period_start = '2024-05-15'
+)
+#> Calculating response rates starting from date: 2024-05-15
+

This will return the participant’s response rate after the 15th of +May 2024.

+
response_rates_after_15
+#> # A tibble: 5 × 3
+#>   participant number_of_beeps response_rate
+#>         <int>           <int>         <dbl>
+#> 1          16              55        0.0364
+#> 2          17              55        0.691 
+#> 3          18             110        0.818 
+#> 4          19             110        0.636 
+#> 5          20             110        0.436
+
+
+

plot_response_rate function

+

We also suggest a way to plot the participant response rates, to +identify patterns like response rates dropping over time. For this, we +provide the plot_response_rate function.

+
plot_response_rate(
+  data = example_data,
+  time_col = sent,
+  participant_col = participant,
+  valid_col = answered
+)
+

+Note that the resulting plot can be further customized using the +ggplot2 package.

+
library(ggplot2)
+
+plot_response_rate(
+  data = example_data,
+  time_col = sent,
+  participant_col = participant,
+  valid_col = answered
+) +
+  theme_minimal() +
+  ggtitle('Response rate over time') +
+  xlab('Day in study')
+

+
+
+ + + + + + + + + + + diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/inst/extdata/example_basic.csv b/mpathr.Rcheck/00_pkg_src/mpathr/inst/extdata/example_basic.csv new file mode 100644 index 0000000..54384c3 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/inst/extdata/example_basic.csv @@ -0,0 +1,2222 @@ +connectionId;legacyCode;code;alias;initials;accountCode;scheduledBeepId;sentBeepId;reminderForOriginalSentBeepId;questionListName;questionListLabel;fromProtocolName;timeStampScheduled;timeStampSent;timeStampStart;timeStampStop;originalTimeStampSent;timeZoneOffset;deltaUTC;consent_yesno_yesno;gender_multipleChoice_index;gender_multipleChoice_string;gender_multipleChoice_likert;age_open;SWLS_intro_basic;SWLS_1_multipleChoice_index;SWLS_1_multipleChoice_string;SWLS_1_multipleChoice_likert;SWLS_2_multipleChoice_index;SWLS_2_multipleChoice_string;SWLS_2_multipleChoice_likert;SWLS_3_multipleChoice_index;SWLS_3_multipleChoice_string;SWLS_3_multipleChoice_likert;SWLS_4_multipleChoice_index;SWLS_4_multipleChoice_string;SWLS_4_multipleChoice_likert;SWLS_5_multipleChoice_index;SWLS_5_multipleChoice_string;SWLS_5_multipleChoice_likert;BFI_neuroticism_intro_basic;BFI_neuroticism_4_multipleChoice_index;BFI_neuroticism_4_multipleChoice_string;BFI_neuroticism_4_multipleChoice_likert;BFI_neuroticism_9R_multipleChoice_index;BFI_neuroticism_9R_multipleChoice_string;BFI_neuroticism_9R_multipleChoice_likert;BFI_neuroticism_14_multipleChoice_index;BFI_neuroticism_14_multipleChoice_string;BFI_neuroticism_14_multipleChoice_likert;BFI_neuroticism_19_multipleChoice_index;BFI_neuroticism_19_multipleChoice_string;BFI_neuroticism_19_multipleChoice_likert;BFI_neuroticism_24R_multipleChoice_index;BFI_neuroticism_24R_multipleChoice_string;BFI_neuroticism_24R_multipleChoice_likert;BFI_neuroticism_29_multipleChoice_index;BFI_neuroticism_29_multipleChoice_string;BFI_neuroticism_29_multipleChoice_likert;BFI_neuroticism_34R_multipleChoice_index;BFI_neuroticism_34R_multipleChoice_string;BFI_neuroticism_34R_multipleChoice_likert;BFI_neuroticism_39_multipleChoice_index;BFI_neuroticism_39_multipleChoice_string;BFI_neuroticism_39_multipleChoice_likert;intake_outro_basic;slider_happy_sliderNeutralPos;slider_sad_sliderNegPos;slider_angry_sliderNegPos;slider_relaxed_sliderNegPos;slider_anxious_sliderNegPos;slider_energetic_sliderNegPos;slider_tired_sliderNegPos;context_location_multipleChoice_index;context_location_multipleChoice_string;context_location_multipleChoice_likert;context_company_multipleChoice_index;context_company_multipleChoice_string;context_company_multipleChoice_likert;context_activity_multipleChoice_index;context_activity_multipleChoice_string;context_activity_multipleChoice_likert;step_count_steps;main_outro_basic;evening_questionnaire_warning_basic;evening_slider_happy_sliderNeutralPos;evening_slider_sad_sliderNegPos;evening_slider_angry_sliderNegPos;evening_slider_relaxed_sliderNegPos;evening_slider_anxious_sliderNegPos;evening_slider_energetic_sliderNegPos;evening_slider_tired_sliderNegPos;evening_yesno_stressful_yesno;evening_yesno_positive_yesno;positive_description_open;evening_context_activity_multipleChoice_index;evening_context_activity_multipleChoice_string;evening_context_activity_multipleChoice_likert;evening_outro_basic;stressful_description_open +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;-1;19355815;0;"Consent and intake questionnaire";;;0;1713434141;1713434142;1713434250;0;7200;0;1;1;"""Male""";;"""29""";1;6;"""Agree""";6;7;"""Strongly agree""";7;7;"""Strongly agree""";7;6;"""Agree""";6;6;"""Agree""";6;1;1;"""Disagree strongly""";1;4;"""Agree a little""";4;4;"""Agree a little""";4;4;"""Agree a little""";4;4;"""Agree a little""";4;2;"""Disagree a little""";2;4;"""Agree a little""";4;4;"""Agree a little""";4;1 +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626776;19369681;0;main_questionnaire;;mpath_package_study;1713514593;1713514596;1713514602;1713514674;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;0;0;50;0;30;70;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;297072;1 +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626777;19370288;0;main_questionnaire;;mpath_package_study;1713517226;1713517228;1713517231;1713517268;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;0;0;34;0;27;64;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;297295;1 +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626781;19375253;0;main_questionnaire;;mpath_package_study;1713538975;1713538976;1713540267;1713540311;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;0;0;68;0;74;0;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;299983;1 +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626782;19377280;0;main_questionnaire;;mpath_package_study;1713547074;1713547077;1713547204;1713547250;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;0;0;50;0;59;44;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;301284;1 +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626784;19380381;0;main_questionnaire;;mpath_package_study;1713555865;1713555867;1713557320;1713557367;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;0;0;88;0;84;0;4;"""Friend's place """;;3;"""With multiple people I know""";;4;"""Socializing""";;303612;1 +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626785;19382619;0;main_questionnaire;;mpath_package_study;1713561801;1713561803;1713563288;1713563311;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;0;0;79;0;74;0;4;"""Friend's place """;;3;"""With multiple people I know""";;4;"""Socializing""";;303612;1 +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626786;19383355;0;evening_questionnaire;;mpath_package_study;1713564600;1713564601;1713564922;1713564968;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;65;0;0;59;0;58;46;0;1;"""\/""";1,3,4;"""Worked or studied"",""Travelled"",""Socialized""";;1 +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626796;19385191;0;main_questionnaire;;mpath_package_study;1713603802;1713603804;1713605522;1713605555;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;0;0;63;0;59;29;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;305103;1;;;;;;;;;;;;;;; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626795;19387586;0;main_questionnaire;;mpath_package_study;1713612386;1713612388;1713612405;1713612431;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;0;0;72;0;80;10;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;305393;1;;;;;;;;;;;;;;; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626804;19404867;0;main_questionnaire;;mpath_package_study;1713708919;1713708920;1713709041;1713709091;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;0;23;0;59;60;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;317352;1;;;;;;;;;;;;;;; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626828;19433123;0;main_questionnaire;;mpath_package_study;1713868783;1713868787;1713868858;1713868894;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;0;0;29;24;51;50;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;332633;1;;;;;;;;;;;;;;; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626825;19437063;0;main_questionnaire;;mpath_package_study;1713886153;1713886156;1713886590;1713886628;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;0;0;49;0;65;36;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;333858;1;;;;;;;;;;;;;;; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626841;19446543;0;main_questionnaire;;mpath_package_study;1713944024;1713944026;1713944462;1713944497;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;0;0;20;0;24;68;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;338530;1;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;-1;19436433;0;"Consent and intake questionnaire";;;0;1713882772;1713882774;1713882831;0;7200;0;1;1;"""Male""";;"""47""";1;5;"""Slightly agree""";5;5;"""Slightly agree""";5;6;"""Agree""";6;6;"""Agree""";6;4;"""Neither agree nor disagree""";4;1;2;"""Disagree a little""";2;4;"""Agree a little""";4;4;"""Agree a little""";4;2;"""Disagree a little""";2;4;"""Agree a little""";4;1;"""Disagree strongly""";1;4;"""Agree a little""";4;2;"""Disagree a little""";2;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727193;19453471;0;main_questionnaire;;mpath_package_study;1713973385;1713973386;1713974894;1713974930;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;7;4;61;3;69;66;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;90413;1;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727194;19455006;0;main_questionnaire;;mpath_package_study;1713978723;1713978724;1713978761;1713978791;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;2;4;27;34;63;71;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;90843;1;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727195;19456192;0;main_questionnaire;;mpath_package_study;1713982043;1713982045;1713982244;1713982270;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;5;2;79;5;69;57;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;91139;1;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727196;19459833;0;main_questionnaire;;mpath_package_study;1713988881;1713988882;1713988899;1713988924;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;3;4;75;1;29;79;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;91423;1;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727197;19461109;0;main_questionnaire;;mpath_package_study;1713992414;1713992417;1713992554;1713992587;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;2;3;65;0;27;80;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;91624;1;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727198;19462271;0;evening_questionnaire;;mpath_package_study;1713996600;1713996603;1713996619;1713996718;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;70;3;2;62;1;59;43;0;1;"""fun tine with colleagues\n""";1;"""Worked or studied""";;1 +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727199;19478369;0;evening_questionnaire;;mpath_package_study;1714083000;1714083001;1714088536;1714088613;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;67;3;0;54;0;57;59;0;1;"""laughing with kids, boxing, having drinks with friend""";1,2,4,5,6;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Did exercise"",""Rested""";;1 +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727220;19479942;0;main_questionnaire;;mpath_package_study;1714117805;1714117807;1714117816;1714117864;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;4;4;69;5;54;70;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;97875;1;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727216;19484993;0;main_questionnaire;;mpath_package_study;1714141147;1714141150;1714141161;1714141206;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;4;5;43;0;32;80;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;99587;1;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727214;19487794;0;main_questionnaire;;mpath_package_study;1714151742;1714151744;1714151750;1714151785;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;5;49;5;4;16;83;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;100787;1;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727213;19489477;0;main_questionnaire;;mpath_package_study;1714156310;1714156311;1714157547;1714157596;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;41;20;6;45;29;4;"""road""";;3;"""With multiple people I know""";;3;"""Travelling""";;102091;1;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727212;19492101;0;main_questionnaire;;mpath_package_study;1714161851;1714161853;1714163312;1714163346;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;4;6;69;3;69;74;5;"""street""";;1;"""Alone""";;3;"""Travelling""";;105417;1;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727211;19493512;0;main_questionnaire;;mpath_package_study;1714165355;1714165356;1714166678;1714166724;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;2;3;83;3;43;64;6;"""holiday""";;3;"""With multiple people I know""";;8;"""Other""";;105774;1;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727210;19494538;0;evening_questionnaire;;mpath_package_study;1714169400;1714169403;1714170413;1714170485;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;65;6;5;54;4;36;69;1;1;"""holiday with friends""";1,3,4,6;"""Worked or studied"",""Travelled"",""Socialized"",""Rested""";;1;"""traffic in bxl""" +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727231;19495700;0;main_questionnaire;;mpath_package_study;1714205398;1714205400;1714205408;1714205439;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;5;3;76;3;11;77;4;"""holiday""";;1;"""Alone""";;7;"""Resting""";;46;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727230;19496454;0;main_questionnaire;;mpath_package_study;1714209397;1714209398;1714210901;1714210932;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;5;2;87;8;57;73;4;"""holiday""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;1180;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727229;19497565;0;main_questionnaire;;mpath_package_study;1714214148;1714214150;1714215084;1714215113;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;2;3;62;5;33;73;4;"""holiday""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;1455;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727228;19499119;0;main_questionnaire;;mpath_package_study;1714219781;1714219784;1714220099;1714220120;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;7;8;83;3;36;66;4;"""holiday""";;3;"""With multiple people I know""";;7;"""Resting""";;5760;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727227;19500495;0;main_questionnaire;;mpath_package_study;1714226676;1714226677;1714227770;1714227793;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;1;3;80;0;35;68;4;"""holiday""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;9491;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727226;19502032;0;main_questionnaire;;mpath_package_study;1714232791;1714232792;1714233088;1714233193;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;74;8;33;0;15;13;7;"""winkel """;;3;"""With multiple people I know""";;8;"""Other""";;11102;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727225;19502886;0;main_questionnaire;;mpath_package_study;1714235549;1714235553;1714237308;1714237330;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;6;3;77;1;24;70;4;"""holiday""";;3;"""With multiple people I know""";;8;"""Other""";;14370;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727222;19509545;0;main_questionnaire;;mpath_package_study;1714254490;1714254491;1714255471;1714255502;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;5;6;87;3;18;70;4;"""holiday""";;3;"""With multiple people I know""";;7;"""Resting""";;22383;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727221;19509995;0;evening_questionnaire;;mpath_package_study;1714255800;1714255803;1714256095;1714256186;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;81;4;2;65;3;46;52;0;1;"""go kart""";2,3,4,6;"""Engaged in a hobby"",""Travelled"",""Socialized"",""Rested""";;1; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727241;19512170;0;main_questionnaire;;mpath_package_study;1714297103;1714297106;1714298483;1714298503;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;4;5;81;0;23;82;4;"""holiday""";;3;"""With multiple people I know""";;7;"""Resting""";;22695;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727240;19513667;0;main_questionnaire;;mpath_package_study;1714302544;1714302545;1714302823;1714302845;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;1;7;42;1;27;72;4;"""holiday""";;3;"""With multiple people I know""";;7;"""Resting""";;23534;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727238;19515531;0;main_questionnaire;;mpath_package_study;1714311161;1714311163;1714311234;1714311261;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;2;2;62;0;32;72;4;"""holiday""";;3;"""With multiple people I know""";;4;"""Socializing""";;27803;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727234;19521575;0;main_questionnaire;;mpath_package_study;1714333469;1714333471;1714333557;1714333576;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;4;6;60;4;31;82;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;34069;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727233;19523932;0;main_questionnaire;;mpath_package_study;1714338020;1714338021;1714338132;1714338156;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;3;0;78;1;18;85;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;34122;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727232;19525086;0;evening_questionnaire;;mpath_package_study;1714342200;1714342202;1714342243;1714342283;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;68;2;3;77;2;48;48;0;1;"""friends n family""";1,3,4,6;"""Worked or studied"",""Travelled"",""Socialized"",""Rested""";;1; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727249;19530649;0;main_questionnaire;;mpath_package_study;1714398203;1714398205;1714398215;1714398238;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;3;6;71;2;51;71;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;36503;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727270;19561419;0;main_questionnaire;;mpath_package_study;1714578046;1714578047;1714579260;1714579277;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;3;6;66;5;57;24;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;53451;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727267;19566946;0;main_questionnaire;;mpath_package_study;1714595182;1714595184;1714596504;1714596537;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;39;8;90;7;58;70;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;55618;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727266;19568639;0;main_questionnaire;;mpath_package_study;1714600599;1714600602;1714601188;1714601214;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;2;2;68;0;55;65;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;55717;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727265;19568852;0;evening_questionnaire;;mpath_package_study;1714601400;1714601401;1714601612;1714601707;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;81;2;5;69;2;40;67;0;1;"""my kids were good at selling stuff at the fair""";1,2,4,3;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Travelled""";;1; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727285;19571105;0;main_questionnaire;;mpath_package_study;1714642790;1714642792;1714642844;1714642866;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;6;63;51;6;60;4;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;57383;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727284;19572159;0;main_questionnaire;;mpath_package_study;1714649309;1714649311;1714650796;1714650813;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;2;3;60;5;39;8;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;57585;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727283;19572795;0;main_questionnaire;;mpath_package_study;1714652611;1714652613;1714653540;1714653561;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;2;53;37;2;43;14;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;57613;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727279;19578166;0;main_questionnaire;;mpath_package_study;1714676097;1714676099;1714676857;1714676881;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;14;9;39;4;69;23;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;61275;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727278;19580263;0;main_questionnaire;;mpath_package_study;1714681325;1714681328;1714681334;1714681381;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;0;0;26;0;63;16;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;61574;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727277;19581804;0;main_questionnaire;;mpath_package_study;1714685489;1714685490;1714685514;1714685538;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;6;5;76;3;52;19;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;61809;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727276;19582169;0;evening_questionnaire;;mpath_package_study;1714687800;1714687802;1714687883;1714687933;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;47;2;6;38;4;64;44;0;0;;1,4,6;"""Worked or studied"",""Socialized"",""Rested""";;1; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727296;19584094;0;main_questionnaire;;mpath_package_study;1714727006;1714727009;1714728725;1714728749;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;5;65;6;4;74;19;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;63575;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727294;19586291;0;main_questionnaire;;mpath_package_study;1714740744;1714740746;1714741857;1714741881;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;5;8;76;0;46;16;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;64717;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727293;19586902;0;main_questionnaire;;mpath_package_study;1714744144;1714744146;1714744181;1714744200;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;8;36;12;2;35;68;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;64759;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727290;19590644;0;main_questionnaire;;mpath_package_study;1714760523;1714760524;1714760552;1714760588;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;3;1;79;0;65;12;7;"""restaurant""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;67594;1;;;;;;;;;;;;;;;; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727289;19593278;0;main_questionnaire;;mpath_package_study;1714767943;1714767945;1714768279;1714768302;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;8;4;100;0;61;7;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;68175;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;-1;19353911;0;"Consent and intake questionnaire";;;0;1713423013;1713423015;1713423099;0;7200;0;1;1;"""Male""";;"""50""";1;4;"""Neither agree nor disagree""";4;5;"""Slightly agree""";5;5;"""Slightly agree""";5;4;"""Neither agree nor disagree""";4;2;"""Disagree""";2;1;4;"""Agree a little""";4;3;"""Neither agree nor disagree""";3;4;"""Agree a little""";4;5;"""Agree strongly""";5;2;"""Disagree a little""";2;4;"""Agree a little""";4;3;"""Neither agree nor disagree""";3;3;"""Neither agree nor disagree""";3;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625127;19370712;0;main_questionnaire;;mpath_package_study;1713518710;1713518711;1713518721;1713518766;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;20;0;43;17;54;38;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625128;19372026;0;main_questionnaire;;mpath_package_study;1713524844;1713524847;1713524900;1713524930;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;40;10;39;11;38;45;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625129;19372891;0;main_questionnaire;;mpath_package_study;1713529075;1713529077;1713529089;1713529114;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;23;0;42;0;53;25;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625130;19374586;0;main_questionnaire;;mpath_package_study;1713536713;1713536714;1713536720;1713536749;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;28;0;25;20;36;60;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625131;19375319;0;main_questionnaire;;mpath_package_study;1713539401;1713539404;1713539420;1713539448;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;24;6;21;10;43;55;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625132;19377379;0;main_questionnaire;;mpath_package_study;1713547675;1713547676;1713547727;1713547754;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;18;0;41;15;48;46;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625133;19378938;0;main_questionnaire;;mpath_package_study;1713552747;1713552749;1713552973;1713553000;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;20;4;27;11;42;40;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625135;19382397;0;main_questionnaire;;mpath_package_study;1713560433;1713560435;1713561276;1713561306;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;27;4;58;5;33;63;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625147;19384437;0;main_questionnaire;;mpath_package_study;1713600896;1713600899;1713602018;1713602055;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;26;2;64;0;45;47;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625146;19385752;0;main_questionnaire;;mpath_package_study;1713606230;1713606231;1713606390;1713606662;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;20;0;29;12;42;43;3;"""Home""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625145;19386746;0;main_questionnaire;;mpath_package_study;1713609599;1713609600;1713610307;1713610369;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;26;0;47;10;41;19;4;"""to shop""";;2;"""With one person I know""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625144;19388776;0;main_questionnaire;;mpath_package_study;1713617683;1713617686;1713619059;1713619101;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;23;0;31;18;31;29;5;"""to football """;;3;"""With multiple people I know""";;4;"""Socializing""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625140;19393899;0;main_questionnaire;;mpath_package_study;1713636936;1713636939;1713637148;1713637173;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;17;0;30;5;44;34;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625157;19400953;0;main_questionnaire;;mpath_package_study;1713692338;1713692339;1713692384;1713692427;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;25;17;35;4;67;17;6;"""cycling """;;1;"""Alone""";;5;"""Exercising""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625155;19403513;0;main_questionnaire;;mpath_package_study;1713702713;1713702715;1713703549;1713703572;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;18;1;53;2;37;72;4;"""cycling """;;1;"""Alone""";;5;"""Exercising""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625169;19414798;0;main_questionnaire;;mpath_package_study;1713772954;1713772956;1713773333;1713773372;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;30;10;31;17;45;47;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625167;19417204;0;main_questionnaire;;mpath_package_study;1713783683;1713783686;1713783696;1713783733;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;26;6;24;14;35;23;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625166;19418397;0;main_questionnaire;;mpath_package_study;1713789562;1713789565;1713789577;1713789600;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;27;16;24;19;39;33;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625165;19419334;0;main_questionnaire;;mpath_package_study;1713793910;1713793913;1713793944;1713793974;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;21;7;34;12;45;52;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625164;19420513;0;main_questionnaire;;mpath_package_study;1713798283;1713798284;1713798302;1713798327;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;32;0;35;17;44;22;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625163;19422655;0;main_questionnaire;;mpath_package_study;1713805652;1713805654;1713805678;1713805704;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;34;8;30;10;37;27;3;"""Home""";;2;"""With one person I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625162;19424492;0;main_questionnaire;;mpath_package_study;1713811597;1713811600;1713811770;1713811800;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;30;9;41;18;48;14;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625160;19428824;0;main_questionnaire;;mpath_package_study;1713821333;1713821336;1713821349;1713821372;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;25;7;36;9;39;26;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625178;19433239;0;main_questionnaire;;mpath_package_study;1713869207;1713869210;1713869228;1713869254;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;14;8;35;6;53;31;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625177;19434512;0;main_questionnaire;;mpath_package_study;1713875178;1713875180;1713875192;1713875214;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;24;8;30;12;39;52;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625176;19436220;0;main_questionnaire;;mpath_package_study;1713882088;1713882089;1713882682;1713882706;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;24;5;32;12;42;48;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625175;19436944;0;main_questionnaire;;mpath_package_study;1713885357;1713885361;1713885390;1713885409;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;27;12;28;9;35;54;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625172;19441937;0;main_questionnaire;;mpath_package_study;1713900659;1713900662;1713901948;1713901991;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;17;8;32;9;38;58;7;"""away""";;2;"""With one person I know""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625171;19444175;0;main_questionnaire;;mpath_package_study;1713906102;1713906103;1713907131;1713907165;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;10;0;55;6;20;58;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625191;19446563;0;main_questionnaire;;mpath_package_study;1713944612;1713944615;1713944670;1713944690;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;20;0;27;4;63;40;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625190;19448405;0;main_questionnaire;;mpath_package_study;1713951967;1713951970;1713951991;1713952013;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;23;4;39;7;37;26;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625189;19449069;0;main_questionnaire;;mpath_package_study;1713955026;1713955027;1713955047;1713956825;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;22;0;25;23;42;53;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625188;19450721;0;main_questionnaire;;mpath_package_study;1713962719;1713962721;1713963346;1713963371;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;19;0;37;7;30;47;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625186;19453584;0;main_questionnaire;;mpath_package_study;1713974026;1713974028;1713974686;1713974713;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;21;0;31;7;31;38;3;"""Home""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625185;19454303;0;main_questionnaire;;mpath_package_study;1713976736;1713976738;1713976761;1713976784;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;23;3;46;21;43;40;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625184;19457319;0;main_questionnaire;;mpath_package_study;1713985080;1713985083;1713985450;1713985479;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;34;0;40;7;34;50;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625183;19458823;0;main_questionnaire;;mpath_package_study;1713987059;1713987061;1713987117;1713987148;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;33;0;27;5;35;24;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625181;19462263;0;evening_questionnaire;;mpath_package_study;1713996600;1713996603;1713997398;1713997434;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;48;26;0;33;10;44;46;0;0;;1,6;"""Worked or studied"",""Rested""";;1; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625201;19464742;0;main_questionnaire;;mpath_package_study;1714035779;1714035782;1714035978;1714036009;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;27;0;35;3;55;50;1;"""Work""";;1;"""Alone""";;5;"""Exercising""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625200;19465976;0;main_questionnaire;;mpath_package_study;1714042119;1714042122;1714042134;1714042160;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;24;0;26;6;51;58;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625199;19467355;0;main_questionnaire;;mpath_package_study;1714048432;1714048433;1714049372;1714049394;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;22;2;28;8;39;53;1;"""Work""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625198;19468429;0;main_questionnaire;;mpath_package_study;1714053407;1714053409;1714054999;1714055021;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;26;0;44;10;47;39;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625196;19471783;0;main_questionnaire;;mpath_package_study;1714065771;1714065772;1714066198;1714066228;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;25;0;33;5;54;46;1;"""Work""";;1;"""Alone""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625195;19473610;0;main_questionnaire;;mpath_package_study;1714070775;1714070777;1714072513;1714072542;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;25;0;55;9;51;61;5;"""cycling """;;1;"""Alone""";;5;"""Exercising""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625194;19475060;0;main_questionnaire;;mpath_package_study;1714073558;1714073561;1714075183;1714075208;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;24;0;24;11;49;64;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625193;19477529;0;main_questionnaire;;mpath_package_study;1714079499;1714079500;1714081059;1714081082;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;19;0;65;7;40;61;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625192;19478361;0;evening_questionnaire;;mpath_package_study;1714083000;1714083001;1714083433;1714083512;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;58;21;0;43;11;52;49;0;1;"""good conversations, getting some work done""";1,2,5,6,4;"""Worked or studied"",""Engaged in a hobby"",""Did exercise"",""Rested"",""Socialized""";;1; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625213;19479964;0;main_questionnaire;;mpath_package_study;1714118124;1714118127;1714119782;1714119824;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;30;0;34;6;47;33;1;"""Work""";;1;"""Alone""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625211;19482655;0;main_questionnaire;;mpath_package_study;1714130722;1714130726;1714130739;1714130772;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;17;0;38;9;50;36;1;"""Work""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625207;19487203;0;main_questionnaire;;mpath_package_study;1714150004;1714150005;1714150798;1714150825;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;22;0;21;18;44;27;3;"""Home""";;1;"""Alone""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625206;19489795;0;main_questionnaire;;mpath_package_study;1714157576;1714157577;1714157590;1714157611;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;21;0;34;6;49;31;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625205;19492360;0;main_questionnaire;;mpath_package_study;1714163331;1714163335;1714163348;1714163372;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;20;0;42;10;40;39;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625204;19494093;0;main_questionnaire;;mpath_package_study;1714167417;1714167419;1714167985;1714168005;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;17;0;46;12;38;48;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625203;19494530;0;evening_questionnaire;;mpath_package_study;1714169400;1714169403;1714172047;1714172109;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;53;30;0;34;10;54;35;0;1;"""lunch conversation""";1,4,6,2;"""Worked or studied"",""Socialized"",""Rested"",""Engaged in a hobby""";;1; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625224;19495694;0;main_questionnaire;;mpath_package_study;1714205187;1714205189;1714205212;1714205236;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;33;0;22;7;33;70;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625222;19497809;0;main_questionnaire;;mpath_package_study;1714215238;1714215240;1714216642;1714216686;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;24;0;48;14;56;46;4;"""away""";;3;"""With multiple people I know""";;4;"""Socializing""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625231;19515728;0;main_questionnaire;;mpath_package_study;1714312420;1714312423;1714312454;1714312483;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;20;0;48;6;38;66;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625230;19517282;0;main_questionnaire;;mpath_package_study;1714318809;1714318810;1714318865;1714318893;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;24;1;65;12;25;79;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625229;19518389;0;main_questionnaire;;mpath_package_study;1714323180;1714323181;1714323923;1714323948;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;11;0;58;11;26;70;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625228;19519916;0;main_questionnaire;;mpath_package_study;1714329675;1714329677;1714329706;1714329855;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;23;0;32;8;49;36;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625227;19522616;0;main_questionnaire;;mpath_package_study;1714335819;1714335820;1714336916;1714336949;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;34;22;32;10;47;35;4;"""away""";;3;"""With multiple people I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625225;19525078;0;evening_questionnaire;;mpath_package_study;1714342200;1714342202;1714344190;1714344261;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;56;17;8;55;10;54;37;1;1;"""sports""";2,4,5,6;"""Engaged in a hobby"",""Socialized"",""Did exercise"",""Rested""";;1;"""family interaction not going well""" +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;-1;19326266;0;"Consent and intake questionnaire";;;0;1713260319;1713260321;1713260426;0;7200;0;1;1;"""Male""";;"""32""";1;6;"""Agree""";6;6;"""Agree""";6;6;"""Agree""";6;7;"""Strongly agree""";7;5;"""Slightly agree""";5;1;2;"""Disagree a little""";2;4;"""Agree a little""";4;4;"""Agree a little""";4;2;"""Disagree a little""";2;4;"""Agree a little""";4;4;"""Agree a little""";4;4;"""Agree a little""";4;4;"""Agree a little""";4;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28585991;19339259;0;main_questionnaire;;mpath_package_study;1713339940;1713339943;1713340275;1713340378;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;0;0;76;19;41;77;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;35830;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28585992;19340739;0;main_questionnaire;;mpath_package_study;1713346798;1713346799;1713346806;1713346863;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;53;0;35;4;29;87;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;39097;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28585993;19341454;0;main_questionnaire;;mpath_package_study;1713350517;1713350520;1713350530;1713350567;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;2;0;64;22;44;73;1;"""Work""";;2;"""With one person I know""";;4;"""Socializing""";;39249;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28585994;19342911;0;main_questionnaire;;mpath_package_study;1713357310;1713357312;1713357327;1713357369;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;0;0;85;0;78;64;4;"""Alma""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;39887;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28585995;19343728;0;main_questionnaire;;mpath_package_study;1713361179;1713361182;1713361191;1713361234;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;0;1;25;1;45;59;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;39695;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28585996;19345467;0;main_questionnaire;;mpath_package_study;1713368447;1713368449;1713368464;1713368595;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;2;0;36;41;35;63;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;38578;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28585997;19346535;0;main_questionnaire;;mpath_package_study;1713372398;1713372401;1713372427;1713372436;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;68;18;87;63;77;42;3;"""Home""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;35557;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28585998;19348776;0;main_questionnaire;;mpath_package_study;1713379690;1713379693;1713379700;1713379730;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;35;24;0;0;0;95;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;39658;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28585999;19350339;0;main_questionnaire;;mpath_package_study;1713383372;1713383375;1713383380;1713383411;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;0;3;2;0;2;91;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;39749;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586000;19352821;0;main_questionnaire;;mpath_package_study;1713389871;1713389873;1713389887;1713390082;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;2;0;73;1;11;100;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;39884;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586012;19354578;0;main_questionnaire;;mpath_package_study;1713428905;1713428908;1713428920;1713428950;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;6;3;54;2;6;98;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;39997;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586011;19355814;0;main_questionnaire;;mpath_package_study;1713434140;1713434141;1713434148;1713434169;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;2;1;71;1;50;66;3;"""Home""";;2;"""With one person I know""";;1;"""Working or studying""";;40640;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586010;19356404;0;main_questionnaire;;mpath_package_study;1713436266;1713436268;1713437888;1713437898;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;40;39;35;26;28;32;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;40638;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586009;19358105;0;main_questionnaire;;mpath_package_study;1713444000;1713444002;1713444275;1713444283;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;64;52;20;22;63;91;3;"""Home""";;3;"""With multiple people I know""";;3;"""Travelling""";;40634;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586008;19358899;0;main_questionnaire;;mpath_package_study;1713448087;1713448088;1713448881;1713448889;0;7200;-2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;23;45;52;53;38;39;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;40433;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586007;19360778;0;main_questionnaire;;mpath_package_study;1713455495;1713455497;1713455774;1713455789;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;31;13;47;5;66;6;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;37109;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586005;19363422;0;main_questionnaire;;mpath_package_study;1713464633;1713464635;1713465214;1713465221;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;89;62;64;62;59;57;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;38486;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586004;19365141;0;main_questionnaire;;mpath_package_study;1713468766;1713468768;1713469201;1713469225;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;97;0;100;2;5;"""woodworking""";;4;"""With one or more people I don't know""";;2;"""Engaging in a hobby""";;39320;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586003;19367935;0;main_questionnaire;;mpath_package_study;1713477242;1713477245;1713477284;1713477308;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;5;0;88;4;89;3;5;"""woodworking""";;1;"""Alone""";;2;"""Engaging in a hobby""";;40266;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586002;19368263;0;evening_questionnaire;;mpath_package_study;1713478200;1713478203;1713478447;1713478590;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;83;0;0;74;3;40;70;1;1;"""hobby""";1,2,4,6;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Rested""";;1;"""many meetings""" +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586023;19369695;0;main_questionnaire;;mpath_package_study;1713514810;1713514811;1713514820;1713514859;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;21;0;53;1;0;100;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;38232;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586022;19370830;0;main_questionnaire;;mpath_package_study;1713519363;1713519367;1713519400;1713519423;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;2;0;60;0;0;64;1;"""Work""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;38990;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586021;19371585;0;main_questionnaire;;mpath_package_study;1713523233;1713523235;1713524874;1713524899;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;0;0;70;2;73;80;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;38685;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586020;19372828;0;main_questionnaire;;mpath_package_study;1713528615;1713528618;1713528911;1713528932;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;2;0;40;1;90;29;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;38489;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586019;19374310;0;main_questionnaire;;mpath_package_study;1713535390;1713535392;1713535398;1713535430;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;23;0;76;3;100;3;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;39316;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586018;19375310;0;main_questionnaire;;mpath_package_study;1713539339;1713539340;1713539365;1713539377;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;3;0;62;2;31;54;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;39574;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586017;19376745;0;main_questionnaire;;mpath_package_study;1713545586;1713545589;1713546467;1713546494;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;5;97;0;62;5;6;"""gas station""";;1;"""Alone""";;8;"""Other""";;41434;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586016;19378439;0;main_questionnaire;;mpath_package_study;1713551278;1713551282;1713552211;1713552252;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;0;0;73;0;32;77;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;41899;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586015;19381113;0;main_questionnaire;;mpath_package_study;1713556921;1713556922;1713556928;1713556964;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;3;0;100;0;67;54;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;42248;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586014;19382481;0;main_questionnaire;;mpath_package_study;1713561044;1713561045;1713561056;1713561105;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;100;0;20;80;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;42401;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586033;19385432;0;main_questionnaire;;mpath_package_study;1713604342;1713604344;1713604401;1713604440;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;80;0;70;25;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;42609;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586032;19387516;0;main_questionnaire;;mpath_package_study;1713612037;1713612038;1713612055;1713612079;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;4;1;73;5;22;85;1;"""Work""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;43009;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586031;19388413;0;main_questionnaire;;mpath_package_study;1713615603;1713615606;1713616865;1713616890;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;4;0;98;5;39;80;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;42645;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586030;19389952;0;main_questionnaire;;mpath_package_study;1713622731;1713622734;1713622874;1713622905;0;7200;-2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;18;74;3;73;27;3;"""Home""";;1;"""Alone""";;8;"""Other""";;41600;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586028;19392274;0;main_questionnaire;;mpath_package_study;1713631542;1713631544;1713631732;1713631756;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;0;2;100;1;71;5;7;"""playground""";;4;"""With one or more people I don't know""";;4;"""Socializing""";;42727;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586027;19394200;0;main_questionnaire;;mpath_package_study;1713637967;1713637970;1713637979;1713638012;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;6;0;36;0;2;73;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;43977;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586026;19395558;0;main_questionnaire;;mpath_package_study;1713641466;1713641468;1713641481;1713641581;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;93;0;36;61;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;43614;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586044;19400958;0;main_questionnaire;;mpath_package_study;1713692492;1713692493;1713692545;1713692572;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;12;0;64;4;0;81;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;43985;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586043;19401795;0;main_questionnaire;;mpath_package_study;1713695706;1713695707;1713695709;1713695760;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;0;2;63;0;26;75;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;43728;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586042;19403300;0;main_questionnaire;;mpath_package_study;1713701369;1713701372;1713701716;1713701734;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;14;0;96;2;87;0;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;42738;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586041;19404596;0;main_questionnaire;;mpath_package_study;1713707866;1713707869;1713708619;1713708647;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;85;0;53;82;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;43042;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586040;19405774;0;main_questionnaire;;mpath_package_study;1713712633;1713712636;1713712640;1713712655;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;0;0;7;6;24;86;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;43184;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586039;19407719;0;main_questionnaire;;mpath_package_study;1713719635;1713719637;1713721301;1713721329;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;7;0;8;0;5;97;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;45032;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586038;19409016;0;main_questionnaire;;mpath_package_study;1713725843;1713725847;1713726275;1713726304;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;80;76;6;16;13;93;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;45384;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586037;19411229;0;main_questionnaire;;mpath_package_study;1713730358;1713730360;1713730368;1713730388;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;0;0;67;1;43;39;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;45525;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586036;19412681;0;main_questionnaire;;mpath_package_study;1713734404;1713734408;1713734673;1713734708;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;2;0;100;0;49;84;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;45595;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586056;19414434;0;main_questionnaire;;mpath_package_study;1713771656;1713771658;1713771667;1713771691;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;37;0;7;3;0;100;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;40611;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586055;19415886;0;main_questionnaire;;mpath_package_study;1713777821;1713777824;1713777836;1713777851;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;8;8;27;22;14;25;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;40956;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586054;19417234;0;main_questionnaire;;mpath_package_study;1713783876;1713783880;1713783889;1713783908;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;3;3;48;0;40;45;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;41287;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586053;19418409;0;main_questionnaire;;mpath_package_study;1713789653;1713789656;1713790015;1713790046;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;4;8;59;37;21;90;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;41463;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586052;19419862;0;main_questionnaire;;mpath_package_study;1713795611;1713795614;1713795629;1713795642;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;11;82;17;78;73;75;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;41489;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586051;19420561;0;main_questionnaire;;mpath_package_study;1713798410;1713798412;1713798449;1713798470;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;1;0;88;0;50;41;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;41607;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586050;19421877;0;main_questionnaire;;mpath_package_study;1713803719;1713803720;1713803732;1713803754;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;2;3;72;3;67;20;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;41607;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586049;19424385;0;main_questionnaire;;mpath_package_study;1713811284;1713811286;1713811305;1713811327;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;14;0;73;1;63;11;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;43743;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586048;19427480;0;main_questionnaire;;mpath_package_study;1713817531;1713817534;1713817544;1713817573;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;0;3;67;0;0;74;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;44295;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586047;19428793;0;main_questionnaire;;mpath_package_study;1713821002;1713821005;1713821009;1713821033;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;2;5;92;15;61;11;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;44392;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586067;19430759;0;main_questionnaire;;mpath_package_study;1713858816;1713858817;1713859042;1713859056;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;0;2;3;0;1;2;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;45025;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586066;19432345;0;main_questionnaire;;mpath_package_study;1713864812;1713864813;1713865312;1713865343;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;5;0;87;1;73;30;1;"""Work""";;1;"""Alone""";;8;"""Other""";;45207;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586065;19433046;0;main_questionnaire;;mpath_package_study;1713868326;1713868328;1713868348;1713868363;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;5;1;73;0;48;64;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;45237;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586064;19434581;0;main_questionnaire;;mpath_package_study;1713875570;1713875572;1713875587;1713875601;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;0;0;64;5;51;32;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;46046;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586063;19435597;0;main_questionnaire;;mpath_package_study;1713880279;1713880281;1713880307;1713880330;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;0;0;75;2;81;4;1;"""Work""";;1;"""Alone""";;3;"""Travelling""";;46540;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586062;19436930;0;main_questionnaire;;mpath_package_study;1713885240;1713885244;1713885250;1713885266;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;4;2;46;10;13;97;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;47006;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586060;19440759;0;main_questionnaire;;mpath_package_study;1713898388;1713898389;1713898440;1713898443;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;34;35;38;38;38;39;4;"""gas station""";;3;"""With multiple people I know""";;3;"""Travelling""";;47563;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586059;19442974;0;main_questionnaire;;mpath_package_study;1713903411;1713903413;1713903422;1713903445;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;0;0;0;0;100;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;48053;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586058;19444419;0;main_questionnaire;;mpath_package_study;1713907455;1713907457;1713907553;1713907577;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;3;7;0;0;0;100;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;48119;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586078;19446569;0;main_questionnaire;;mpath_package_study;1713944735;1713944738;1713944747;1713944773;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;4;2;50;4;30;70;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;45971;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586077;19448392;0;main_questionnaire;;mpath_package_study;1713951892;1713951894;1713952481;1713952502;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;4;0;0;5;51;90;1;"""Work""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;50463;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586076;19449614;0;main_questionnaire;;mpath_package_study;1713957411;1713957413;1713957430;1713957448;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;5;6;61;4;45;36;1;"""Work""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;49466;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586075;19450286;0;main_questionnaire;;mpath_package_study;1713960260;1713960263;1713960333;1713960338;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;31;43;46;45;41;38;4;"""gas station""";;4;"""With one or more people I don't know""";;8;"""Other""";;40196;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586074;19451918;0;main_questionnaire;;mpath_package_study;1713967313;1713967316;1713967324;1713967388;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;8;0;76;0;84;19;1;"""Work""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;41020;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586073;19452992;0;main_questionnaire;;mpath_package_study;1713971175;1713971177;1713971226;1713971266;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;0;0;70;0;56;36;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;41020;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586072;19454331;0;main_questionnaire;;mpath_package_study;1713976839;1713976843;1713977307;1713977322;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;44;51;47;48;39;37;4;"""gas station""";;2;"""With one person I know""";;3;"""Travelling""";;44100;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586071;19456819;0;main_questionnaire;;mpath_package_study;1713983527;1713983528;1713983533;1713983562;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;100;0;73;54;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;45654;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586070;19460003;0;main_questionnaire;;mpath_package_study;1713989943;1713989944;1713989963;1713989988;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;0;0;21;63;41;61;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;46921;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586069;19461833;0;main_questionnaire;;mpath_package_study;1713994777;1713994780;1713994784;1713994816;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;5;0;44;0;55;88;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;47131;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586089;19464049;0;main_questionnaire;;mpath_package_study;1714032111;1714032112;1714032289;1714032295;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;35;25;38;42;43;38;4;"""gas station""";;3;"""With multiple people I know""";;3;"""Travelling""";;47223;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586088;19465279;0;main_questionnaire;;mpath_package_study;1714038438;1714038440;1714038556;1714038596;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;0;0;25;30;42;80;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;49307;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586087;19465902;0;main_questionnaire;;mpath_package_study;1714041673;1714041674;1714042036;1714042071;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;0;4;64;0;69;3;7;"""bike""";;1;"""Alone""";;3;"""Travelling""";;51845;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586086;19467297;0;main_questionnaire;;mpath_package_study;1714048036;1714048038;1714048043;1714048066;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;1;2;70;0;58;63;4;"""bike""";;1;"""Alone""";;3;"""Travelling""";;54367;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586085;19468150;0;main_questionnaire;;mpath_package_study;1714052052;1714052055;1714052087;1714052103;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;40;26;42;33;39;40;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;55778;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586084;19470164;0;main_questionnaire;;mpath_package_study;1714059756;1714059757;1714059770;1714059783;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;40;14;6;17;19;32;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;55778;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586083;19471752;0;main_questionnaire;;mpath_package_study;1714065663;1714065666;1714065782;1714065812;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;18;4;35;0;4;94;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;58170;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586082;19472874;0;main_questionnaire;;mpath_package_study;1714068897;1714068899;1714068908;1714068943;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;56;0;45;1;1;95;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;58367;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586081;19476194;0;main_questionnaire;;mpath_package_study;1714076439;1714076440;1714076460;1714076470;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;67;65;66;67;69;70;4;"""bike""";;3;"""With multiple people I know""";;3;"""Travelling""";;58670;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586100;19480266;0;main_questionnaire;;mpath_package_study;1714118601;1714118602;1714119405;1714119413;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;68;49;8;3;17;7;4;"""bike""";;3;"""With multiple people I know""";;3;"""Travelling""";;58926;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586099;19481494;0;main_questionnaire;;mpath_package_study;1714124830;1714124831;1714124838;1714124845;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;29;35;37;34;35;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;59544;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586098;19482543;0;main_questionnaire;;mpath_package_study;1714129999;1714130002;1714131105;1714131114;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;67;64;62;63;63;61;4;"""bike""";;2;"""With one person I know""";;3;"""Travelling""";;59544;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586097;19483463;0;main_questionnaire;;mpath_package_study;1714134890;1714134891;1714135121;1714135128;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;67;58;65;65;70;68;4;"""bike""";;3;"""With multiple people I know""";;8;"""Other""";;59771;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586095;19485925;0;main_questionnaire;;mpath_package_study;1714144673;1714144675;1714144682;1714144691;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;58;55;50;50;51;51;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;59860;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586094;19487686;0;main_questionnaire;;mpath_package_study;1714151376;1714151379;1714152596;1714152607;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;41;37;39;36;34;37;3;"""Home""";;4;"""With one or more people I don't know""";;2;"""Engaging in a hobby""";;62412;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586093;19488858;0;main_questionnaire;;mpath_package_study;1714154554;1714154556;1714154568;1714154587;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;100;100;0;1;1;98;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;62568;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586092;19491443;0;main_questionnaire;;mpath_package_study;1714161058;1714161059;1714161076;1714161101;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;0;4;1;1;0;100;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;63722;1;;;;;;;;;;;;;;;; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586091;19493753;0;main_questionnaire;;mpath_package_study;1714166603;1714166606;1714166842;1714166864;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;44;0;79;10;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;63976;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;-1;19451371;0;"Consent and intake questionnaire";;;0;1713965471;1713965472;1713965619;0;7200;0;1;2;"""Female""";;"""26""";1;5;"""Slightly agree""";5;6;"""Agree""";6;5;"""Slightly agree""";5;5;"""Slightly agree""";5;6;"""Agree""";6;1;2;"""Disagree a little""";2;4;"""Agree a little""";4;4;"""Agree a little""";4;4;"""Agree a little""";4;3;"""Neither agree nor disagree""";3;4;"""Agree a little""";4;5;"""Agree strongly""";5;2;"""Disagree a little""";2;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752960;19463754;0;main_questionnaire;;mpath_package_study;1714031532;1714031533;1714032320;1714032394;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;5;0;100;8;52;51;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;102339;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752961;19465081;0;main_questionnaire;;mpath_package_study;1714036866;1714036867;1714036879;1714036915;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;6;0;80;8;81;19;3;"""Home""";;3;"""With multiple people I know""";;5;"""Exercising""";;102389;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752962;19466235;0;main_questionnaire;;mpath_package_study;1714043001;1714043004;1714043017;1714043041;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;7;0;75;9;76;11;3;"""Home""";;3;"""With multiple people I know""";;1;"""Working or studying""";;102480;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752963;19467266;0;main_questionnaire;;mpath_package_study;1714047824;1714047826;1714047840;1714047879;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;7;10;73;9;70;25;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;102547;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752964;19468748;0;main_questionnaire;;mpath_package_study;1714053973;1714053975;1714054030;1714054178;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;6;0;71;12;50;28;3;"""Home""";;3;"""With multiple people I know""";;1;"""Working or studying""";;102586;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752965;19469791;0;main_questionnaire;;mpath_package_study;1714058174;1714058177;1714058272;1714058304;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;3;0;73;9;71;22;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;102645;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752966;19471789;0;main_questionnaire;;mpath_package_study;1714065799;1714065800;1714065817;1714065841;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;15;0;73;10;74;16;3;"""Home""";;3;"""With multiple people I know""";;1;"""Working or studying""";;102904;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752967;19473403;0;main_questionnaire;;mpath_package_study;1714069860;1714069863;1714069902;1714069965;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;8;24;40;18;80;24;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;102904;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752968;19476255;0;main_questionnaire;;mpath_package_study;1714076902;1714076904;1714076922;1714076956;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;25;4;57;11;48;63;3;"""Home""";;3;"""With multiple people I know""";;5;"""Exercising""";;102956;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752969;19478024;0;main_questionnaire;;mpath_package_study;1714081663;1714081666;1714081973;1714082009;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;17;0;89;11;10;80;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;102994;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752970;19478370;0;evening_questionnaire;;mpath_package_study;1714083000;1714083001;1714083012;1714083082;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;80;10;0;75;10;70;21;0;0;;1,2,5;"""Worked or studied"",""Engaged in a hobby"",""Did exercise""";;1; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752981;19479937;0;main_questionnaire;;mpath_package_study;1714117630;1714117632;1714117649;1714117689;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;27;11;21;50;54;55;4;"""On the road""";;1;"""Alone""";;3;"""Travelling""";;439;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752980;19481520;0;main_questionnaire;;mpath_package_study;1714125078;1714125079;1714125092;1714125129;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;12;0;74;11;60;30;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;2876;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752979;19482047;0;main_questionnaire;;mpath_package_study;1714127535;1714127537;1714129051;1714129074;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;8;0;76;12;72;17;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;3104;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752978;19483607;0;main_questionnaire;;mpath_package_study;1714135703;1714135705;1714135722;1714135750;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;6;0;70;6;71;20;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;3140;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752977;19484847;0;main_questionnaire;;mpath_package_study;1714140354;1714140358;1714140368;1714140407;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;25;0;71;12;60;25;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;3409;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752976;19485896;0;main_questionnaire;;mpath_package_study;1714144390;1714144391;1714145212;1714145235;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;9;0;67;7;68;17;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;4861;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752974;19489819;0;main_questionnaire;;mpath_package_study;1714157701;1714157703;1714157718;1714157745;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;14;0;69;19;76;16;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;7486;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752973;19491431;0;main_questionnaire;;mpath_package_study;1714160964;1714160965;1714160976;1714161005;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;16;0;80;6;60;31;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;7532;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752972;19493704;0;main_questionnaire;;mpath_package_study;1714166394;1714166397;1714166409;1714166489;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;0;0;82;5;80;20;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;7532;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752971;19494539;0;evening_questionnaire;;mpath_package_study;1714169400;1714169403;1714169419;1714169561;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;78;15;0;73;18;76;25;1;1;"""Watching Wonka! """;1,2,3;"""Worked or studied"",""Engaged in a hobby"",""Travelled""";;1;"""A tiring meeting """ +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752992;19495567;0;main_questionnaire;;mpath_package_study;1714203059;1714203061;1714203070;1714203108;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;5;0;76;15;18;56;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;7584;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752991;19496657;0;main_questionnaire;;mpath_package_study;1714211207;1714211210;1714211225;1714211264;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;10;0;80;14;78;12;4;"""On the road""";;3;"""With multiple people I know""";;3;"""Travelling""";;7695;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752990;19497762;0;main_questionnaire;;mpath_package_study;1714215136;1714215140;1714215155;1714215200;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;7;0;47;36;84;15;5;"""City""";;4;"""With one or more people I don't know""";;8;"""Other""";;9474;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752989;19499484;0;main_questionnaire;;mpath_package_study;1714222032;1714222035;1714222060;1714222101;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;10;0;71;8;67;30;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;10883;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752988;19500194;0;main_questionnaire;;mpath_package_study;1714225262;1714225265;1714225299;1714225339;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;12;0;76;7;50;50;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;10922;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752987;19502120;0;main_questionnaire;;mpath_package_study;1714233336;1714233338;1714233442;1714233471;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;7;0;80;6;74;11;3;"""Home""";;3;"""With multiple people I know""";;5;"""Exercising""";;10969;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752986;19503186;0;main_questionnaire;;mpath_package_study;1714236945;1714236948;1714236960;1714237001;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;15;0;75;6;66;22;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;10969;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752984;19507349;0;main_questionnaire;;mpath_package_study;1714248531;1714248533;1714248543;1714248578;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;7;0;83;9;51;50;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;11020;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752983;19509562;0;main_questionnaire;;mpath_package_study;1714254652;1714254655;1714254665;1714254752;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;6;0;82;11;18;78;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;11042;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752982;19509996;0;evening_questionnaire;;mpath_package_study;1714255800;1714255803;1714255812;1714255881;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;78;12;0;65;23;74;25;0;1;"""Veel buitentijd""";2,3,4,5,6;"""Engaged in a hobby"",""Travelled"",""Socialized"",""Did exercise"",""Rested""";;1; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753003;19511180;0;main_questionnaire;;mpath_package_study;1714290715;1714290716;1714290724;1714290743;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;6;0;78;9;49;47;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;11120;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753002;19512189;0;main_questionnaire;;mpath_package_study;1714297347;1714297348;1714297373;1714297427;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;10;0;80;9;66;29;5;"""On the road""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;11570;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753001;19513066;0;main_questionnaire;;mpath_package_study;1714300375;1714300378;1714300416;1714300444;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;22;7;72;7;72;17;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;11986;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753000;19514803;0;main_questionnaire;;mpath_package_study;1714307813;1714307814;1714307865;1714307945;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;7;0;71;17;68;28;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;12746;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752998;19516977;0;main_questionnaire;;mpath_package_study;1714317779;1714317781;1714317801;1714317832;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;4;0;89;13;37;69;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;12775;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752997;19518316;0;main_questionnaire;;mpath_package_study;1714322753;1714322755;1714322772;1714322794;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;16;0;73;8;69;25;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;12775;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752996;19519914;0;main_questionnaire;;mpath_package_study;1714329663;1714329665;1714331318;1714331341;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;14;0;73;8;75;24;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;12793;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752995;19522650;0;main_questionnaire;;mpath_package_study;1714336041;1714336042;1714336348;1714336384;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;6;0;87;7;59;39;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;12793;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752994;19524521;0;main_questionnaire;;mpath_package_study;1714340072;1714340075;1714340134;1714340198;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;6;0;81;6;51;55;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;12793;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752993;19525087;0;evening_questionnaire;;mpath_package_study;1714342200;1714342202;1714342226;1714342309;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;74;9;0;77;7;69;20;0;0;;2,3,4,6;"""Engaged in a hobby"",""Travelled"",""Socialized"",""Rested""";;1; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753014;19527019;0;main_questionnaire;;mpath_package_study;1714378707;1714378709;1714378720;1714378751;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;6;0;65;5;28;76;3;"""Home""";;2;"""With one person I know""";;5;"""Exercising""";;12889;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753013;19527806;0;main_questionnaire;;mpath_package_study;1714382272;1714382273;1714382358;1714382400;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;11;0;72;11;90;13;3;"""Home""";;3;"""With multiple people I know""";;5;"""Exercising""";;12889;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753011;19529902;0;main_questionnaire;;mpath_package_study;1714394239;1714394240;1714394298;1714394341;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;6;0;68;2;75;24;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;13095;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753010;19531113;0;main_questionnaire;;mpath_package_study;1714399736;1714399738;1714400287;1714400311;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;5;0;77;6;48;51;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;13130;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753009;19532145;0;main_questionnaire;;mpath_package_study;1714404113;1714404115;1714404156;1714404179;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;10;0;79;3;61;33;3;"""Home""";;3;"""With multiple people I know""";;1;"""Working or studying""";;13130;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753008;19533131;0;main_questionnaire;;mpath_package_study;1714408595;1714408597;1714408629;1714408660;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;18;9;48;52;47;17;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;13130;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753007;19535556;0;main_questionnaire;;mpath_package_study;1714416114;1714416115;1714416952;1714416986;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;19;0;74;3;71;33;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;13183;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753006;19537694;0;main_questionnaire;;mpath_package_study;1714419871;1714419874;1714419887;1714419905;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;11;0;75;5;73;14;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;13236;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753005;19540119;0;main_questionnaire;;mpath_package_study;1714426082;1714426083;1714426194;1714426239;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;8;0;82;7;11;76;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;13251;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753004;19540791;0;evening_questionnaire;;mpath_package_study;1714428600;1714428602;1714428625;1714428793;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;73;11;0;76;18;71;21;1;0;;1,2,5,4,6;"""Worked or studied"",""Engaged in a hobby"",""Did exercise"",""Socialized"",""Rested""";;1;"""Stressful information """ +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753025;19542238;0;main_questionnaire;;mpath_package_study;1714463490;1714463491;1714464594;1714464618;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;15;0;55;15;79;25;5;"""On the road""";;1;"""Alone""";;3;"""Travelling""";;13693;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753024;19543290;0;main_questionnaire;;mpath_package_study;1714469327;1714469330;1714469345;1714469362;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;11;0;77;7;78;10;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;16456;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753023;19544324;0;main_questionnaire;;mpath_package_study;1714475246;1714475249;1714475330;1714475389;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;6;0;75;15;74;13;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;16736;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753022;19545363;0;main_questionnaire;;mpath_package_study;1714481725;1714481727;1714482110;1714482150;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;10;0;82;7;45;66;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;16883;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753021;19546101;0;main_questionnaire;;mpath_package_study;1714485489;1714485490;1714485514;1714485540;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;15;0;75;10;60;20;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;16883;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753020;19547577;0;main_questionnaire;;mpath_package_study;1714491446;1714491448;1714491464;1714491485;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;8;0;67;10;61;21;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;17157;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753019;19548362;0;main_questionnaire;;mpath_package_study;1714495689;1714495692;1714497027;1714497050;0;7200;-15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;8;0;81;0;80;8;5;"""On the road""";;1;"""Alone""";;3;"""Travelling""";;17939;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753018;19550623;0;main_questionnaire;;mpath_package_study;1714503184;1714503185;1714503196;1714503216;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;14;0;72;17;63;13;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;19937;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753017;19552764;0;main_questionnaire;;mpath_package_study;1714507966;1714507967;1714507973;1714508000;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;18;0;79;6;57;36;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;19971;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753016;19554409;0;main_questionnaire;;mpath_package_study;1714512613;1714512615;1714512636;1714512659;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;16;0;88;6;47;50;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;19997;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753015;19554918;0;evening_questionnaire;;mpath_package_study;1714515000;1714515003;1714515030;1714515100;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;78;7;0;73;7;75;27;0;1;"""Playing the piano outside in the sun""";1,2,3,4;"""Worked or studied"",""Engaged in a hobby"",""Travelled"",""Socialized""";;1; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753036;19556414;0;main_questionnaire;;mpath_package_study;1714551102;1714551103;1714551114;1714551157;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;11;0;61;47;91;9;3;"""Home""";;1;"""Alone""";;8;"""Other""";;20105;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753035;19557165;0;main_questionnaire;;mpath_package_study;1714554957;1714554958;1714554973;1714555007;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;9;0;80;7;91;12;6;"""Park""";;2;"""With one person I know""";;5;"""Exercising""";;25344;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753034;19558226;0;main_questionnaire;;mpath_package_study;1714561419;1714561420;1714561442;1714561471;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;1;0;74;4;86;7;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;26270;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753033;19558992;0;main_questionnaire;;mpath_package_study;1714566199;1714566201;1714566225;1714566293;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;4;0;79;4;81;16;6;"""Park""";;3;"""With multiple people I know""";;5;"""Exercising""";;29699;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753032;19559902;0;main_questionnaire;;mpath_package_study;1714571606;1714571608;1714571688;1714571718;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;5;0;79;3;68;28;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;31168;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753031;19561396;0;main_questionnaire;;mpath_package_study;1714577972;1714577974;1714578604;1714578648;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;1;0;79;6;76;11;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;31227;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753030;19562125;0;main_questionnaire;;mpath_package_study;1714581764;1714581765;1714582044;1714582096;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;9;0;87;0;74;24;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;31428;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753029;19564375;0;main_questionnaire;;mpath_package_study;1714589105;1714589108;1714589120;1714589154;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;5;0;79;10;75;25;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;31428;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753028;19566957;0;main_questionnaire;;mpath_package_study;1714595301;1714595302;1714595381;1714595401;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;5;0;81;8;70;20;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;31529;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753027;19568232;0;main_questionnaire;;mpath_package_study;1714598679;1714598681;1714598692;1714598721;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;10;0;85;3;64;30;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;31610;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753026;19568853;0;evening_questionnaire;;mpath_package_study;1714601400;1714601401;1714601415;1714601506;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;81;8;0;79;7;82;19;0;1;"""Started running again + a lot of sunshine today""";2,4,5,6;"""Engaged in a hobby"",""Socialized"",""Did exercise"",""Rested""";;1; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753047;19569972;0;main_questionnaire;;mpath_package_study;1714636708;1714636711;1714637481;1714637519;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;23;0;67;23;82;12;5;"""On the road""";;1;"""Alone""";;3;"""Travelling""";;33578;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753045;19572097;0;main_questionnaire;;mpath_package_study;1714648892;1714648896;1714648907;1714648926;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;20;0;82;4;74;18;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;35999;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753044;19573029;0;main_questionnaire;;mpath_package_study;1714654638;1714654640;1714654650;1714654675;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;10;0;81;8;66;19;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;37143;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753043;19573963;0;main_questionnaire;;mpath_package_study;1714658723;1714658725;1714658967;1714658997;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;15;0;80;11;67;28;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;37143;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753041;19576308;0;main_questionnaire;;mpath_package_study;1714669365;1714669366;1714669377;1714669398;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;7;0;68;26;79;25;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;37456;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753040;19577560;0;main_questionnaire;;mpath_package_study;1714674406;1714674409;1714674421;1714674446;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;8;7;82;9;77;26;7;"""bar""";;3;"""With multiple people I know""";;4;"""Socializing""";;37868;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753039;19579509;0;main_questionnaire;;mpath_package_study;1714679446;1714679448;1714679782;1714679826;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;11;0;82;8;65;26;7;"""Train""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;39490;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753038;19581932;0;main_questionnaire;;mpath_package_study;1714686938;1714686941;1714687005;1714687030;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;7;0;79;5;47;51;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;41538;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753037;19582170;0;evening_questionnaire;;mpath_package_study;1714687800;1714687802;1714687828;1714687997;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;79;9;0;79;14;74;15;0;1;"""Fun game night at Het Strand""";1,2,3,4;"""Worked or studied"",""Engaged in a hobby"",""Travelled"",""Socialized""";;1; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753058;19583274;0;main_questionnaire;;mpath_package_study;1714721708;1714721709;1714721947;1714721976;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;11;10;63;13;56;45;4;"""On the road""";;1;"""Alone""";;3;"""Travelling""";;41842;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753057;19584433;0;main_questionnaire;;mpath_package_study;1714729396;1714729397;1714729441;1714729500;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;23;0;79;26;52;42;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;44460;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753056;19584899;0;main_questionnaire;;mpath_package_study;1714732238;1714732239;1714732863;1714732888;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;9;0;66;28;67;31;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;44460;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753055;19586188;0;main_questionnaire;;mpath_package_study;1714739922;1714739925;1714740162;1714740276;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;13;0;62;20;59;26;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;45068;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753052;19589014;0;main_questionnaire;;mpath_package_study;1714753839;1714753841;1714754160;1714754185;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;11;0;73;13;65;28;1;"""Work""";;1;"""Alone""";;8;"""Other""";;45897;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753051;19590547;0;main_questionnaire;;mpath_package_study;1714759923;1714759925;1714759937;1714759976;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;21;0;82;10;50;50;7;"""Bus""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;47874;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753050;19592455;0;main_questionnaire;;mpath_package_study;1714765565;1714765568;1714765614;1714765653;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;25;0;80;7;47;54;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;48357;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753049;19594834;0;main_questionnaire;;mpath_package_study;1714772254;1714772255;1714773603;1714773632;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;14;0;87;7;31;71;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;48400;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753048;19595142;0;evening_questionnaire;;mpath_package_study;1714774200;1714774202;1714774222;1714774292;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;77;19;0;80;14;72;26;1;0;;1,2,3;"""Worked or studied"",""Engaged in a hobby"",""Travelled""";;1;"""Had to finish a lot of things for different people in a limited amount of time""" +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753069;19595985;0;main_questionnaire;;mpath_package_study;1714809459;1714809460;1714810228;1714810259;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;13;0;79;5;22;80;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;48471;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753068;19597039;0;main_questionnaire;;mpath_package_study;1714815108;1714815111;1714815179;1714815203;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;4;0;55;10;80;8;5;"""On the road""";;1;"""Alone""";;5;"""Exercising""";;53233;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753067;19597960;0;main_questionnaire;;mpath_package_study;1714819255;1714819258;1714819265;1714819291;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;14;0;68;23;76;23;3;"""Home""";;1;"""Alone""";;8;"""Other""";;53264;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753066;19599348;0;main_questionnaire;;mpath_package_study;1714824942;1714824944;1714824967;1714824998;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;11;12;62;36;60;38;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;56632;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753062;19603627;0;main_questionnaire;;mpath_package_study;1714845730;1714845732;1714846173;1714846211;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;10;0;71;1;81;9;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;59717;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753061;19606035;0;main_questionnaire;;mpath_package_study;1714852871;1714852874;1714853498;1714853527;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;9;0;75;6;71;23;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;59717;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753060;19607801;0;main_questionnaire;;mpath_package_study;1714858444;1714858446;1714858522;1714858549;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;8;0;86;8;50;41;3;"""Home""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;59717;1;;;;;;;;;;;;;;;; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753059;19608234;0;evening_questionnaire;;mpath_package_study;1714860600;1714860602;1714860616;1714860705;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;72;12;0;72;17;74;24;0;1;"""Fun workshop""";2,3,4,5;"""Engaged in a hobby"",""Travelled"",""Socialized"",""Did exercise""";;1; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;-1;19356508;0;"Consent and intake questionnaire";;;0;1713436870;1713436873;1713436973;0;7200;2;1;2;"""Female""";;"""25""";1;6;"""Agree""";6;6;"""Agree""";6;6;"""Agree""";6;6;"""Agree""";6;7;"""Strongly agree""";7;1;2;"""Disagree a little""";2;2;"""Disagree a little""";2;4;"""Agree a little""";4;4;"""Agree a little""";4;2;"""Disagree a little""";2;2;"""Disagree a little""";2;2;"""Disagree a little""";2;4;"""Agree a little""";4;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629015;19370829;0;main_questionnaire;;mpath_package_study;1713519262;1713519264;1713519540;1713519574;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;21;1;87;10;69;34;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;13366;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629016;19372052;0;main_questionnaire;;mpath_package_study;1713525016;1713525019;1713525029;1713525064;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;14;14;45;30;46;55;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;13742;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629017;19373010;0;main_questionnaire;;mpath_package_study;1713529532;1713529533;1713529544;1713529566;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;4;5;35;56;46;60;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;13742;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629018;19373833;0;main_questionnaire;;mpath_package_study;1713533840;1713533842;1713534978;1713534995;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;40;36;56;62;64;42;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;13742;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629020;19376579;0;main_questionnaire;;mpath_package_study;1713544963;1713544965;1713544973;1713545669;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;56;51;37;63;41;64;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;13742;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629021;19378197;0;main_questionnaire;;mpath_package_study;1713549886;1713549887;1713549974;1713550003;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;40;40;62;27;57;62;3;"""Home""";;1;"""Alone""";;8;"""Other""";;13742;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629022;19381106;0;main_questionnaire;;mpath_package_study;1713556909;1713556910;1713556973;1713556992;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;24;15;69;24;68;24;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;13865;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629024;19383356;0;evening_questionnaire;;mpath_package_study;1713564600;1713564601;1713564625;1713564725;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;66;22;9;36;42;50;41;1;1;"""my boyfriend took me out for pizza""";1,2,5,4;"""Worked or studied"",""Engaged in a hobby"",""Did exercise"",""Socialized""";;1;"""I was stressing about some of my research results""" +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629032;19388476;0;main_questionnaire;;mpath_package_study;1713616016;1713616017;1713616023;1713616047;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;28;11;54;30;51;54;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;13865;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629031;19389485;0;main_questionnaire;;mpath_package_study;1713620592;1713620595;1713621081;1713621112;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;30;13;58;19;48;58;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;13865;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629029;19392772;0;main_questionnaire;;mpath_package_study;1713632518;1713632519;1713632534;1713632559;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;27;2;56;21;31;66;4;"""train""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;13865;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629027;19396766;0;main_questionnaire;;mpath_package_study;1713644575;1713644578;1713645209;1713645229;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;43;11;54;43;28;63;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;13865;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629026;19398063;0;main_questionnaire;;mpath_package_study;1713647750;1713647752;1713647761;1713647782;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;24;17;58;28;59;21;3;"""Home""";;1;"""Alone""";;8;"""Other""";;13865;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629025;19398875;0;evening_questionnaire;;mpath_package_study;1713651000;1713651001;1713651080;1713651104;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;65;28;10;55;19;45;71;0;0;;3,4,6;"""Travelled"",""Socialized"",""Rested""";;1; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629045;19400739;0;main_questionnaire;;mpath_package_study;1713690903;1713690906;1713691192;1713691217;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;29;17;56;26;45;51;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;13865;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629044;19402376;0;main_questionnaire;;mpath_package_study;1713697581;1713697584;1713697758;1713697773;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;22;14;61;25;53;59;3;"""Home""";;2;"""With one person I know""";;5;"""Exercising""";;13865;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629042;19404338;0;main_questionnaire;;mpath_package_study;1713706406;1713706409;1713706419;1713706436;0;7200;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;29;18;59;24;29;73;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;13884;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629041;19405847;0;main_questionnaire;;mpath_package_study;1713713396;1713713397;1713714391;1713714412;0;7200;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;6;13;73;11;53;60;5;"""leuven""";;1;"""Alone""";;3;"""Travelling""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629040;19407060;0;main_questionnaire;;mpath_package_study;1713717638;1713717639;1713717859;1713717879;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;11;8;59;23;60;9;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629039;19408939;0;main_questionnaire;;mpath_package_study;1713725395;1713725396;1713726535;1713726558;0;7200;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;19;11;59;18;39;74;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629038;19411193;0;main_questionnaire;;mpath_package_study;1713730075;1713730077;1713730718;1713730737;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;12;10;63;26;33;67;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629037;19412721;0;main_questionnaire;;mpath_package_study;1713734803;1713734805;1713736511;1713736528;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;16;9;60;14;28;64;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629036;19413472;0;evening_questionnaire;;mpath_package_study;1713737400;1713737404;1713737487;1713737543;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;71;15;10;60;14;60;66;0;1;"""my boyfriend and I made a very nice walk. he liked the food I made""";3,4,6;"""Travelled"",""Socialized"",""Rested""";;1; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629057;19414800;0;main_questionnaire;;mpath_package_study;1713772992;1713772993;1713774018;1713774039;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;20;14;73;24;34;72;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629056;19416126;0;main_questionnaire;;mpath_package_study;1713779975;1713779977;1713781153;1713781183;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;23;8;29;50;53;26;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629055;19416854;0;main_questionnaire;;mpath_package_study;1713782726;1713782729;1713784144;1713784161;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;30;15;40;71;56;58;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629054;19418043;0;main_questionnaire;;mpath_package_study;1713787478;1713787481;1713787812;1713787824;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;32;32;25;57;36;54;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629053;19419697;0;main_questionnaire;;mpath_package_study;1713795045;1713795049;1713795368;1713795393;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;36;7;57;64;50;52;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629052;19420500;0;main_questionnaire;;mpath_package_study;1713798140;1713798141;1713798948;1713798962;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;22;15;20;23;23;73;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629051;19422836;0;main_questionnaire;;mpath_package_study;1713806684;1713806686;1713807043;1713807060;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;18;9;20;39;25;80;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629050;19424696;0;main_questionnaire;;mpath_package_study;1713812180;1713812183;1713812836;1713812856;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;19;12;62;25;60;23;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629049;19426460;0;main_questionnaire;;mpath_package_study;1713815430;1713815432;1713816762;1713816784;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;4;2;75;9;36;65;6;"""quick""";;2;"""With one person I know""";;6;"""Eating or drinking""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629048;19429032;0;main_questionnaire;;mpath_package_study;1713821447;1713821448;1713823202;1713823224;0;7200;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;20;19;34;17;47;85;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629047;19429556;0;evening_questionnaire;;mpath_package_study;1713823800;1713823801;1713825158;1713825187;0;7200;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;57;13;14;39;50;53;68;0;0;;1,3,4,6;"""Worked or studied"",""Travelled"",""Socialized"",""Rested""";;1; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629066;19433268;0;main_questionnaire;;mpath_package_study;1713869329;1713869331;1713869379;1713869397;0;7200;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;10;9;24;65;35;72;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629064;19435609;0;main_questionnaire;;mpath_package_study;1713880312;1713880315;1713880577;1713880590;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;25;13;54;69;56;40;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629063;19437477;0;main_questionnaire;;mpath_package_study;1713887752;1713887757;1713887766;1713887784;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;16;14;31;53;42;56;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629058;19445120;0;evening_questionnaire;;mpath_package_study;1713910200;1713910201;1713915504;1713915524;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;70;33;31;64;53;55;67;0;0;;1,4,6;"""Worked or studied"",""Socialized"",""Rested""";;1; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629079;19447031;0;main_questionnaire;;mpath_package_study;1713947284;1713947287;1713947922;1713947941;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;18;9;45;45;27;62;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629078;19448389;0;main_questionnaire;;mpath_package_study;1713951882;1713951885;1713952426;1713952440;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;36;23;59;66;35;70;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629077;19449679;0;main_questionnaire;;mpath_package_study;1713957840;1713957841;1713957871;1713957891;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;17;14;25;10;23;81;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629076;19450308;0;main_questionnaire;;mpath_package_study;1713960436;1713960437;1713961665;1713961681;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;27;9;26;39;38;70;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629075;19452029;0;main_questionnaire;;mpath_package_study;1713967879;1713967881;1713969348;1713969365;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;27;7;49;38;57;46;1;"""Work""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629074;19453347;0;main_questionnaire;;mpath_package_study;1713972822;1713972824;1713972830;1713972847;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;18;6;57;20;68;20;1;"""Work""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629072;19456906;0;main_questionnaire;;mpath_package_study;1713983861;1713983863;1713983935;1713983953;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;30;8;67;25;69;17;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629070;19461367;0;main_questionnaire;;mpath_package_study;1713993136;1713993137;1713993525;1713993538;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;29;11;61;12;60;14;4;"""leuven""";;3;"""With multiple people I know""";;4;"""Socializing""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629069;19462265;0;evening_questionnaire;;mpath_package_study;1713996600;1713996603;1713997096;1713997147;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;58;15;0;48;13;55;61;0;1;"""I got dinner from a friend""";1,4,3;"""Worked or studied"",""Socialized"",""Travelled""";;1; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629089;19465282;0;main_questionnaire;;mpath_package_study;1714038466;1714038467;1714038870;1714038887;0;7200;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;19;11;40;47;29;56;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629088;19466454;0;main_questionnaire;;mpath_package_study;1714044167;1714044168;1714044175;1714044187;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;21;9;55;15;56;59;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629085;19470303;0;main_questionnaire;;mpath_package_study;1714060534;1714060537;1714060553;1714060565;0;7200;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;36;25;34;20;52;67;3;"""Home""";;2;"""With one person I know""";;1;"""Working or studying""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629084;19471778;0;main_questionnaire;;mpath_package_study;1714065738;1714065739;1714065807;1714065824;0;7200;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;19;17;55;29;54;55;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629083;19473574;0;main_questionnaire;;mpath_package_study;1714070619;1714070620;1714070749;1714070768;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;15;2;66;28;67;45;6;"""train""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629082;19476052;0;main_questionnaire;;mpath_package_study;1714076075;1714076077;1714076298;1714076355;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;14;15;73;13;60;32;7;"""restaurant""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629081;19477503;0;main_questionnaire;;mpath_package_study;1714079242;1714079243;1714079388;1714079400;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;24;16;60;32;72;44;5;"""restaurant""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;14105;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629080;19478363;0;evening_questionnaire;;mpath_package_study;1714083000;1714083001;1714083035;1714083071;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;67;13;11;66;10;69;18;0;1;"""I had good results and my friends were fun""";1,3,4;"""Worked or studied"",""Travelled"",""Socialized""";;1; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629101;19480264;0;main_questionnaire;;mpath_package_study;1714118451;1714118454;1714119616;1714119638;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;28;12;73;11;29;74;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;14118;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629100;19481150;0;main_questionnaire;;mpath_package_study;1714122780;1714122783;1714122924;1714122939;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;9;7;73;3;49;73;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;14118;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629099;19482085;0;main_questionnaire;;mpath_package_study;1714127776;1714127779;1714128615;1714128627;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;22;17;32;59;53;36;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;14148;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629098;19483530;0;main_questionnaire;;mpath_package_study;1714135201;1714135204;1714135910;1714135924;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;21;5;26;56;59;17;1;"""Work""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;14302;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629097;19485082;0;main_questionnaire;;mpath_package_study;1714141386;1714141388;1714142093;1714142104;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;23;18;64;24;71;34;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;14302;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629094;19488945;0;main_questionnaire;;mpath_package_study;1714155259;1714155262;1714156498;1714156514;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;21;18;71;18;80;17;4;"""leuven""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;14686;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629093;19491465;0;main_questionnaire;;mpath_package_study;1714161259;1714161263;1714161998;1714162010;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;12;13;73;9;60;9;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;14741;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629092;19493539;0;main_questionnaire;;mpath_package_study;1714165513;1714165514;1714165521;1714165534;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;18;2;16;61;34;75;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;14741;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629091;19494532;0;evening_questionnaire;;mpath_package_study;1714169400;1714169403;1714179355;1714179376;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;70;20;10;80;17;76;72;0;0;;1,2,5,6;"""Worked or studied"",""Engaged in a hobby"",""Did exercise"",""Rested""";;1; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629111;19496599;0;main_questionnaire;;mpath_package_study;1714210620;1714210623;1714210688;1714210703;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;27;28;73;27;38;77;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;14788;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629110;19498359;0;main_questionnaire;;mpath_package_study;1714216788;1714216791;1714216866;1714216880;0;7200;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;14;13;66;19;44;59;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;14788;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629106;19503502;0;main_questionnaire;;mpath_package_study;1714237508;1714237509;1714238102;1714238117;0;7200;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;22;14;67;16;64;72;4;"""leuven""";;3;"""With multiple people I know""";;4;"""Socializing""";;14949;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629122;19512032;0;main_questionnaire;;mpath_package_study;1714296113;1714296114;1714297423;1714297441;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;17;18;71;21;67;62;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;14967;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629121;19513289;0;main_questionnaire;;mpath_package_study;1714301791;1714301792;1714302010;1714302024;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;34;19;65;17;62;40;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;14967;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629117;19518465;0;main_questionnaire;;mpath_package_study;1714323453;1714323454;1714323606;1714323631;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;15;14;72;16;72;22;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;15134;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629116;19519901;0;main_questionnaire;;mpath_package_study;1714329580;1714329583;1714329785;1714329798;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;16;14;72;14;69;21;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;15134;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629114;19524554;0;main_questionnaire;;mpath_package_study;1714340309;1714340311;1714340415;1714340465;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;8;8;66;19;60;19;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;15134;1;;;;;;;;;;;;;;;; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629113;19525080;0;evening_questionnaire;;mpath_package_study;1714342200;1714342202;1714342208;1714342224;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;64;25;16;63;12;68;27;0;0;;4,6;"""Socialized"",""Rested""";;1; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;-1;19316588;0;"Consent and intake questionnaire";;;0;1713198101;1713201702;1713201849;0;10800;0;1;1;"""Male""";;"""25""";1;6;"""Agree""";6;6;"""Agree""";6;5;"""Slightly agree""";5;6;"""Agree""";6;4;"""Neither agree nor disagree""";4;1;2;"""Disagree a little""";2;4;"""Agree a little""";4;4;"""Agree a little""";4;3;"""Neither agree nor disagree""";3;3;"""Neither agree nor disagree""";3;3;"""Neither agree nor disagree""";3;5;"""Agree strongly""";5;2;"""Disagree a little""";2;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573897;19325268;0;main_questionnaire;;mpath_package_study;1713260716;1713260718;1713261384;1713261457;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;35;55;55;67;40;64;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;69667;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573899;19327922;0;main_questionnaire;;mpath_package_study;1713271533;1713271535;1713271689;1713271719;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;20;6;40;53;33;61;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;69707;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573900;19329162;0;main_questionnaire;;mpath_package_study;1713277659;1713277662;1713277752;1713277776;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;15;50;29;83;38;74;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;69718;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573901;19329813;0;main_questionnaire;;mpath_package_study;1713280008;1713280011;1713280416;1713280449;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;8;38;24;84;29;63;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573902;19330954;0;main_questionnaire;;mpath_package_study;1713285134;1713285135;1713285417;1713285438;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;17;19;71;43;56;31;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;69775;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573904;19334019;0;main_questionnaire;;mpath_package_study;1713295827;1713295830;1713296370;1713296399;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;48;21;67;59;52;68;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;69998;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573905;19336758;0;main_questionnaire;;mpath_package_study;1713304132;1713304135;1713304160;1713304219;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;32;80;29;50;9;82;4;"""Restaurant""";;2;"""With one person I know""";;6;"""Eating or drinking""";;71359;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573906;19337472;0;evening_questionnaire;;mpath_package_study;1713305400;1713305403;1713306378;1713306492;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;49;38;61;51;70;30;62;1;1;"""Had a nice reading session""";1,6,2;"""Worked or studied"",""Rested"",""Engaged in a hobby""";;1;"""Rented an airbnb which turned out to be small and way overcrowded - but ut was around 180 euros.""" +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573917;19338924;0;main_questionnaire;;mpath_package_study;1713339291;1713339293;1713339300;1713339328;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;16;46;60;37;13;82;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;73641;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573914;19342297;0;main_questionnaire;;mpath_package_study;1713357872;1713357874;1713357917;1713357941;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;45;25;53;58;29;72;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;73654;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573911;19346139;0;main_questionnaire;;mpath_package_study;1713374759;1713374762;1713374829;1713374857;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;20;14;39;23;39;33;3;"""Home""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;73718;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573910;19347204;0;main_questionnaire;;mpath_package_study;1713377972;1713377975;1713378843;1713378872;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;6;11;62;39;55;47;3;"""Home""";;4;"""With one or more people I don't know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573909;19349400;0;main_questionnaire;;mpath_package_study;1713384314;1713384317;1713385227;1713385251;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;20;16;65;36;72;67;4;"""Restaurant""";;2;"""With one person I know""";;6;"""Eating or drinking""";;74786;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573907;19352390;0;evening_questionnaire;;mpath_package_study;1713391800;1713391801;1713394690;1713394736;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;55;21;24;55;51;35;63;0;1;"""Went to a restaurant with my girlfriend""";1,2,6,4;"""Worked or studied"",""Engaged in a hobby"",""Rested"",""Socialized""";;1; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573926;19356143;0;main_questionnaire;;mpath_package_study;1713438629;1713438632;1713438659;1713438685;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;23;36;63;43;33;62;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;75219;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573925;19357085;0;main_questionnaire;;mpath_package_study;1713442987;1713442989;1713443042;1713443074;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;18;50;37;58;43;68;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573924;19358199;0;main_questionnaire;;mpath_package_study;1713448113;1713448114;1713448121;1713448148;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;51;44;27;64;42;65;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;75231;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573923;19359242;0;main_questionnaire;;mpath_package_study;1713452627;1713452629;1713453174;1713453196;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;32;62;34;34;55;66;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;75294;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573922;19360842;0;main_questionnaire;;mpath_package_study;1713459520;1713459521;1713460018;1713460039;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;0;55;27;61;68;64;4;"""Restaurant""";;2;"""With one person I know""";;6;"""Eating or drinking""";;76969;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573921;19362674;0;main_questionnaire;;mpath_package_study;1713466610;1713466611;1713467411;1713467445;0;10800;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;19;21;26;59;30;61;4;"""Restaurant""";;2;"""With one person I know""";;3;"""Travelling""";;78556;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573920;19363845;0;main_questionnaire;;mpath_package_study;1713469326;1713469328;1713469855;1713469873;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;16;17;75;23;29;62;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;79018;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573919;19366416;0;main_questionnaire;;mpath_package_study;1713475818;1713475819;1713475889;1713475919;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;9;48;45;69;22;62;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573918;19367425;0;evening_questionnaire;;mpath_package_study;1713478200;1713478201;1713478220;1713478282;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;51;10;38;53;65;30;67;1;1;"""Nice restaurant and bar with my girlfriend""";1,2,4,6;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Rested""";;1;"""Organizing a funeral""" +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573937;19371149;0;main_questionnaire;;mpath_package_study;1713524533;1713524536;1713525950;1713525970;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;16;30;9;83;15;95;3;"""Home""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;80354;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573936;19371971;0;main_questionnaire;;mpath_package_study;1713528113;1713528115;1713528399;1713528535;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;10;51;23;75;39;80;3;"""Home""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;80369;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573935;19373316;0;main_questionnaire;;mpath_package_study;1713535169;1713535171;1713535446;1713535469;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;1;16;43;49;40;66;3;"""Home""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573934;19374631;0;main_questionnaire;;mpath_package_study;1713540547;1713540551;1713540566;1713540589;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;36;19;74;41;21;78;3;"""Home""";;4;"""With one or more people I don't know""";;7;"""Resting""";;80414;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573933;19375736;0;main_questionnaire;;mpath_package_study;1713545125;1713545127;1713545132;1713545152;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;0;8;38;9;31;98;3;"""Home""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573932;19377269;0;main_questionnaire;;mpath_package_study;1713550561;1713550564;1713551915;1713551933;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;15;20;64;48;23;82;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;80494;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573931;19379580;0;main_questionnaire;;mpath_package_study;1713557353;1713557356;1713557479;1713557510;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;21;23;21;39;20;74;4;"""Restaurant""";;2;"""With one person I know""";;3;"""Travelling""";;82372;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573930;19381164;0;main_questionnaire;;mpath_package_study;1713561058;1713561059;1713562297;1713562315;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;16;24;23;51;0;100;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;83482;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573929;19382473;0;evening_questionnaire;;mpath_package_study;1713564600;1713564602;1713565247;1713565301;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;36;13;57;21;77;8;100;0;1;"""Spending time with my girlfriend""";1,2,4,6;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Rested""";;1; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573950;19384101;0;main_questionnaire;;mpath_package_study;1713600314;1713600315;1713601670;1713601718;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;17;43;18;35;19;80;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;83536;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573949;19384434;0;main_questionnaire;;mpath_package_study;1713604432;1713604433;1713605088;1713605110;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;53;9;28;43;21;91;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573946;19389206;0;main_questionnaire;;mpath_package_study;1713622659;1713622661;1713622862;1713622883;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;5;17;38;68;9;82;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573944;19391409;0;main_questionnaire;;mpath_package_study;1713632317;1713632319;1713632334;1713632354;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;18;86;42;77;7;89;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;83616;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573943;19393285;0;main_questionnaire;;mpath_package_study;1713639101;1713639104;1713639935;1713639968;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;2;47;43;45;31;100;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573942;19394317;0;main_questionnaire;;mpath_package_study;1713642331;1713642334;1713643148;1713643165;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;4;58;25;41;0;100;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;83631;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573941;19396573;0;main_questionnaire;;mpath_package_study;1713647240;1713647242;1713648836;1713648855;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;20;39;58;37;15;100;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;83662;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573940;19397965;0;evening_questionnaire;;mpath_package_study;1713651000;1713651002;1713658014;1713658062;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;49;10;51;32;39;7;96;1;1;"""Spended time with my girlfriend""";2,4,6;"""Engaged in a hobby"",""Socialized"",""Rested""";;1;"""I got sick""" +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573959;19400971;0;main_questionnaire;;mpath_package_study;1713696277;1713696278;1713696569;1713696593;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;39;67;45;54;9;100;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;83695;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573957;19404107;0;main_questionnaire;;mpath_package_study;1713708925;1713708928;1713709108;1713709133;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;0;7;47;9;49;58;4;"""Restaurant""";;2;"""With one person I know""";;4;"""Socializing""";;88171;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573956;19404790;0;main_questionnaire;;mpath_package_study;1713712120;1713712121;1713712153;1713712182;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;0;6;76;38;52;32;5;"""seaside""";;2;"""With one person I know""";;4;"""Socializing""";;88954;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573955;19406639;0;main_questionnaire;;mpath_package_study;1713719578;1713719579;1713719595;1713719616;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;1;13;47;8;68;63;4;"""Restaurant""";;2;"""With one person I know""";;6;"""Eating or drinking""";;90683;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573954;19407770;0;main_questionnaire;;mpath_package_study;1713723654;1713723658;1713725311;1713725330;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;6;13;61;13;51;70;4;"""Restaurant""";;2;"""With one person I know""";;6;"""Eating or drinking""";;90926;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573953;19409671;0;main_questionnaire;;mpath_package_study;1713730253;1713730256;1713730285;1713730306;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;39;10;64;67;36;87;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;91935;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573952;19411225;0;main_questionnaire;;mpath_package_study;1713733935;1713733938;1713734120;1713734141;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;56;35;62;72;47;72;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;91945;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573951;19412550;0;evening_questionnaire;;mpath_package_study;1713737400;1713737403;1713739626;1713739688;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;78;46;36;54;40;21;82;1;1;"""Met some nice people""";2,3,4,6;"""Engaged in a hobby"",""Travelled"",""Socialized"",""Rested""";;1;"""Airbnb host was disrespectful""" +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573972;19414064;0;main_questionnaire;;mpath_package_study;1713771469;1713771471;1713771485;1713771519;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;75;28;43;56;16;76;3;"""Home""";;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573970;19415986;0;main_questionnaire;;mpath_package_study;1713782128;1713782130;1713782144;1713782168;0;10800;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;61;100;7;50;0;72;6;"""airport""";;1;"""Alone""";;3;"""Travelling""";;2212;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573967;19420867;0;main_questionnaire;;mpath_package_study;1713799885;1713799887;1713801278;1713801299;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;52;49;10;32;12;91;3;"""Home""";;1;"""Alone""";;3;"""Travelling""";;5672;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573965;19424244;0;main_questionnaire;;mpath_package_study;1713810731;1713810733;1713810756;1713810774;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;31;71;57;57;4;100;3;"""Home""";;1;"""Alone""";;8;"""Other""";;6672;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573964;19427267;0;main_questionnaire;;mpath_package_study;1713816693;1713816696;1713816855;1713817136;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;30;64;49;63;8;100;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573982;19432426;0;main_questionnaire;;mpath_package_study;1713865464;1713865466;1713866280;1713866310;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;20;20;60;35;10;95;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573981;19433716;0;main_questionnaire;;mpath_package_study;1713871382;1713871383;1713871476;1713871499;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;48;21;61;39;17;88;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573979;19435566;0;main_questionnaire;;mpath_package_study;1713880132;1713880133;1713880916;1713880939;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;21;14;66;19;45;82;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573977;19438084;0;main_questionnaire;;mpath_package_study;1713890132;1713890136;1713890573;1713890591;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;7;20;58;44;36;81;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;6685;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573976;19440507;0;main_questionnaire;;mpath_package_study;1713897303;1713897304;1713897431;1713897451;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;26;9;68;43;24;88;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;6699;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573975;19442927;0;main_questionnaire;;mpath_package_study;1713903121;1713903122;1713903145;1713903168;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;64;10;61;20;51;59;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573974;19444725;0;main_questionnaire;;mpath_package_study;1713908301;1713908305;1713908324;1713908345;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;13;10;60;26;68;49;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573973;19445114;0;evening_questionnaire;;mpath_package_study;1713910200;1713910201;1713910417;1713910496;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;63;13;34;71;40;32;70;1;1;"""Had a generally good day if playing and reading""";6,2;"""Rested"",""Engaged in a hobby""";;1;"""Unjustly stupid message from our former airbnb host""" +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573994;19446985;0;main_questionnaire;;mpath_package_study;1713946206;1713946209;1713946386;1713946406;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;36;62;33;51;39;87;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;95;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573991;19450836;0;main_questionnaire;;mpath_package_study;1713963536;1713963538;1713964382;1713964403;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;47;11;54;61;15;95;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573987;19456138;0;main_questionnaire;;mpath_package_study;1713981635;1713981637;1713982916;1713982937;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;37;60;26;47;14;100;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;134;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573984;19462259;0;evening_questionnaire;;mpath_package_study;1713996600;1713996603;1714006263;1714006289;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;48;33;18;68;45;20;100;0;0;;6,2;"""Rested"",""Engaged in a hobby""";;1; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28574003;19466524;0;main_questionnaire;;mpath_package_study;1714044576;1714044579;1714045229;1714045248;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;35;26;15;54;13;88;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;169;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28574002;19467262;0;main_questionnaire;;mpath_package_study;1714047810;1714047814;1714049392;1714049413;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;15;13;60;46;36;76;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28574001;19468446;0;main_questionnaire;;mpath_package_study;1714053462;1714053464;1714053472;1714053492;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;38;19;66;47;16;93;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28574000;19470244;0;main_questionnaire;;mpath_package_study;1714060196;1714060199;1714060216;1714060233;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;25;43;42;55;42;70;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;188;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573999;19471801;0;main_questionnaire;;mpath_package_study;1714065876;1714065879;1714065947;1714065967;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;24;20;61;70;46;51;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573998;19473478;0;main_questionnaire;;mpath_package_study;1714070240;1714070242;1714070822;1714070846;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;10;57;45;59;10;3;"""Home""";;1;"""Alone""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573997;19475121;0;main_questionnaire;;mpath_package_study;1714073834;1714073836;1714073849;1714073876;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;9;9;47;42;51;18;7;"""Store""";;1;"""Alone""";;8;"""Other""";;653;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573996;19477905;0;main_questionnaire;;mpath_package_study;1714080635;1714080637;1714080852;1714080870;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;38;39;50;69;53;71;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;1517;1;;;;;;;;;;;;;;;; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573995;19478357;0;evening_questionnaire;;mpath_package_study;1714083000;1714083001;1714083310;1714083349;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;50;24;8;47;55;27;78;0;0;;6,2;"""Rested"",""Engaged in a hobby""";;1; +234455;;;ejiroghene;eji;jp7a7;-1;19343296;0;"Consent and intake questionnaire";;;0;1713358978;1713358982;1713359152;0;7200;3;1;1;"""Male""";;"""28""";1;6;"""Agree""";6;5;"""Slightly agree""";5;5;"""Slightly agree""";5;2;"""Disagree""";2;1;"""Strongly disagree""";1;1;1;"""Disagree strongly""";1;3;"""Neither agree nor disagree""";3;5;"""Agree strongly""";5;3;"""Neither agree nor disagree""";3;5;"""Agree strongly""";5;2;"""Disagree a little""";2;4;"""Agree a little""";4;3;"""Neither agree nor disagree""";3;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +234455;;;ejiroghene;eji;jp7a7;28610323;19357740;0;main_questionnaire;;mpath_package_study;1713442229;1713442231;1713442393;1713442462;0;7200;4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;0;0;50;32;75;22;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234455;;;ejiroghene;eji;jp7a7;28610333;19381373;0;main_questionnaire;;mpath_package_study;1713558595;1713558596;1713559216;1713559245;0;7200;4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;19;0;13;9;25;91;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234455;;;ejiroghene;eji;jp7a7;28610331;19383352;0;evening_questionnaire;;mpath_package_study;1713564600;1713564601;1713571766;1713571885;0;7200;4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;54;49;20;15;20;54;53;0;1;"""went for drinks with my coworkers """;1,4,5;"""Worked or studied"",""Socialized"",""Did exercise""";;1; +234455;;;ejiroghene;eji;jp7a7;28610351;19385564;0;main_questionnaire;;mpath_package_study;1713604833;1713604835;1713605246;1713605322;0;7200;4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;30;21;70;60;50;55;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +234455;;;ejiroghene;eji;jp7a7;28610349;19388752;0;main_questionnaire;;mpath_package_study;1713617512;1713617513;1713618504;1713618558;0;7200;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;0;0;76;56;59;61;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +234455;;;ejiroghene;eji;jp7a7;28610370;19419201;0;main_questionnaire;;mpath_package_study;1713793125;1713793127;1713793820;1713793854;0;7200;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;23;0;56;38;53;44;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234455;;;ejiroghene;eji;jp7a7;28610395;19448349;0;main_questionnaire;;mpath_package_study;1713951440;1713951443;1713952978;1713953479;0;7200;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;20;11;44;65;70;44;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234455;;;ejiroghene;eji;jp7a7;28610393;19450664;0;main_questionnaire;;mpath_package_study;1713962437;1713962439;1713963322;1713963396;0;7200;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;6;0;54;55;60;44;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234455;;;ejiroghene;eji;jp7a7;28610417;19481434;0;main_questionnaire;;mpath_package_study;1714124257;1714124259;1714124854;1714124891;0;7200;6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;0;5;45;57;60;40;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;-1;19353329;0;"Consent and intake questionnaire";;;0;1713392282;1713392282;1713392659;0;7200;0;1;2;"""Female""";;"""34""";1;6;"""Agree""";6;5;"""Slightly agree""";5;5;"""Slightly agree""";5;5;"""Slightly agree""";5;4;"""Neither agree nor disagree""";4;1;2;"""Disagree a little""";2;4;"""Agree a little""";4;4;"""Agree a little""";4;4;"""Agree a little""";4;5;"""Agree strongly""";5;3;"""Neither agree nor disagree""";3;4;"""Agree a little""";4;2;"""Disagree a little""";2;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624320;19368265;0;evening_questionnaire;;mpath_package_study;1713478200;1713478203;1713481621;1713481774;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;51;24;35;52;13;51;51;1;1;"""seeing my husband""";1,6;"""Worked or studied"",""Rested""";;1;"""kid that screams a lot and don't listen""" +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624322;19382501;0;main_questionnaire;;mpath_package_study;1713561257;1713561260;1713562844;1713563075;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;33;34;51;21;22;68;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;39100;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624321;19383353;0;evening_questionnaire;;mpath_package_study;1713564600;1713564601;1713565283;1713565447;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;51;29;30;56;24;41;68;0;0;;1;"""Worked or studied""";;1; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624341;19385548;0;main_questionnaire;;mpath_package_study;1713604596;1713604599;1713605670;1713605698;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;24;20;52;25;45;29;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;39275;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624339;19388648;0;main_questionnaire;;mpath_package_study;1713616921;1713616924;1713617068;1713617096;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;26;3;56;14;51;12;3;"""Home""";;1;"""Alone""";;5;"""Exercising""";;39589;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624337;19390882;0;main_questionnaire;;mpath_package_study;1713626100;1713626101;1713626903;1713626956;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;26;25;48;14;22;71;4;"""speeltuin""";;2;"""With one person I know""";;8;"""Other""";;40285;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624336;19392393;0;main_questionnaire;;mpath_package_study;1713632129;1713632131;1713632249;1713632282;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;18;23;29;8;38;59;4;"""speeltuin""";;2;"""With one person I know""";;8;"""Other""";;40640;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624333;19398088;0;main_questionnaire;;mpath_package_study;1713647982;1713647986;1713648056;1713648083;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;44;27;52;18;34;68;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;41080;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624332;19398872;0;evening_questionnaire;;mpath_package_study;1713651000;1713651001;1713654421;1713654483;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;52;25;32;36;17;33;67;0;1;"""seen best friend""";4;"""Socialized""";;1; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624351;19402026;0;main_questionnaire;;mpath_package_study;1713696889;1713696892;1713697427;1713697458;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;27;17;58;11;53;45;5;"""Chiro camp son""";;2;"""With one person I know""";;4;"""Socializing""";;41395;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624350;19403322;0;main_questionnaire;;mpath_package_study;1713701501;1713701503;1713701635;1713701666;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;25;10;65;10;63;35;6;"""lunch bar""";;2;"""With one person I know""";;6;"""Eating or drinking""";;41645;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624347;19407789;0;main_questionnaire;;mpath_package_study;1713720278;1713720279;1713721980;1713722008;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;32;23;55;14;57;39;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;42412;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624345;19411204;0;main_questionnaire;;mpath_package_study;1713730181;1713730183;1713730763;1713730798;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;45;1;38;20;42;72;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;42516;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624344;19413065;0;main_questionnaire;;mpath_package_study;1713736033;1713736034;1713736061;1713736091;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;14;12;38;12;24;76;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;42532;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624343;19413469;0;evening_questionnaire;;mpath_package_study;1713737400;1713737404;1713737929;1713737999;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;57;19;21;42;13;45;51;0;1;"""son is happy and not angry today :)""";2,4,6,3;"""Engaged in a hobby"",""Socialized"",""Rested"",""Travelled""";;1; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624361;19418239;0;main_questionnaire;;mpath_package_study;1713788638;1713788640;1713789826;1713789852;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;18;8;41;9;58;27;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;42795;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624359;19421217;0;main_questionnaire;;mpath_package_study;1713801284;1713801287;1713801734;1713801753;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;12;10;47;8;48;45;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;42874;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624358;19422734;0;main_questionnaire;;mpath_package_study;1713806134;1713806137;1713806972;1713815822;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;20;10;36;7;37;73;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;43038;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624356;19427212;0;main_questionnaire;;mpath_package_study;1713816245;1713816246;1713817735;1713817766;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;19;26;22;7;41;48;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;43054;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624355;19429225;0;main_questionnaire;;mpath_package_study;1713822797;1713822800;1713823437;1713823460;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;8;8;58;11;37;72;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;43198;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624354;19429553;0;evening_questionnaire;;mpath_package_study;1713823800;1713823801;1713823934;1713823964;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;49;16;14;34;12;44;43;0;0;;1,4,6;"""Worked or studied"",""Socialized"",""Rested""";;1; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624375;19430763;0;main_questionnaire;;mpath_package_study;1713858857;1713858859;1713860021;1713860046;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;15;20;64;10;67;34;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;43535;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624374;19432373;0;main_questionnaire;;mpath_package_study;1713865005;1713865006;1713865715;1713865733;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;11;17;44;13;64;41;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;43535;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624373;19433206;0;main_questionnaire;;mpath_package_study;1713869114;1713869116;1713870124;1713870714;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;12;16;46;15;68;13;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;43535;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624372;19434406;0;main_questionnaire;;mpath_package_study;1713874457;1713874458;1713875289;1713875312;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;9;14;30;9;55;36;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;43600;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624369;19438842;0;main_questionnaire;;mpath_package_study;1713892396;1713892397;1713892412;1713892491;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;24;10;53;13;67;36;7;"""world padel tour """;;2;"""With one person I know""";;4;"""Socializing""";;44076;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624368;19439886;0;main_questionnaire;;mpath_package_study;1713895512;1713895514;1713895644;1713895682;0;7200;-101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;14;7;73;5;68;45;6;"""world padel tour """;;3;"""With multiple people I know""";;4;"""Socializing""";;44299;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624367;19442847;0;main_questionnaire;;mpath_package_study;1713902485;1713902487;1713902853;1713902885;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;6;4;89;1;63;32;6;"""world padel tour """;;3;"""With multiple people I know""";;4;"""Socializing""";;44519;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624365;19445117;0;evening_questionnaire;;mpath_package_study;1713910200;1713910201;1713910329;1713910374;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;61;17;11;46;10;48;45;0;1;"""padel match world tour""";1,4;"""Worked or studied"",""Socialized""";;1; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624386;19446583;0;main_questionnaire;;mpath_package_study;1713945086;1713945088;1713946424;1713946458;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;24;15;57;9;36;70;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;44947;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624385;19447892;0;main_questionnaire;;mpath_package_study;1713949257;1713949258;1713950205;1713950228;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;16;11;46;9;54;43;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;44969;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624384;19449663;0;main_questionnaire;;mpath_package_study;1713957736;1713957737;1713958322;1713958347;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;14;5;52;11;64;38;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;45266;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624382;19452215;0;main_questionnaire;;mpath_package_study;1713968536;1713968537;1713969029;1713969071;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;12;22;28;14;54;51;7;"""dans rehearsel daughter""";;3;"""With multiple people I know""";;8;"""Other""";;45580;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624380;19455036;0;main_questionnaire;;mpath_package_study;1713978882;1713978883;1713979282;1713979325;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;17;11;33;12;39;62;7;"""heardresser with kids""";;3;"""With multiple people I know""";;8;"""Other""";;46374;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624379;19457288;0;main_questionnaire;;mpath_package_study;1713985001;1713985004;1713985613;1713985659;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;15;6;39;3;48;61;7;"""restaurant """;;3;"""With multiple people I know""";;6;"""Eating or drinking""";;46636;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624378;19459999;0;main_questionnaire;;mpath_package_study;1713989938;1713989941;1713990064;1713990085;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;13;25;53;17;48;46;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;46894;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624377;19461397;0;main_questionnaire;;mpath_package_study;1713993302;1713993309;1713993543;1713993562;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;14;8;44;4;43;49;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;46979;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624394;19467196;0;main_questionnaire;;mpath_package_study;1714047527;1714047528;1714047880;1714047903;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;10;15;43;5;69;28;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;47162;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624392;19470256;0;main_questionnaire;;mpath_package_study;1714060262;1714060263;1714060363;1714060380;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;11;18;21;14;56;46;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;47368;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624391;19470894;0;main_questionnaire;;mpath_package_study;1714062853;1714062854;1714062936;1714062977;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;14;11;40;14;48;50;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;47622;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624390;19473454;0;main_questionnaire;;mpath_package_study;1714070100;1714070102;1714070389;1714070411;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;12;11;50;9;59;44;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;47799;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624388;19477701;0;main_questionnaire;;mpath_package_study;1714080450;1714080454;1714081782;1714081818;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;15;6;48;9;47;46;7;"""padel""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;48133;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624387;19478360;0;evening_questionnaire;;mpath_package_study;1714083000;1714083001;1714083281;1714083320;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;51;13;19;42;17;53;49;0;0;;1,2,4;"""Worked or studied"",""Engaged in a hobby"",""Socialized""";;1; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624408;19479932;0;main_questionnaire;;mpath_package_study;1714117248;1714117249;1714117794;1714117817;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;10;13;31;12;45;55;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;48541;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624407;19481052;0;main_questionnaire;;mpath_package_study;1714122435;1714122437;1714122753;1714122772;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;14;7;54;11;68;29;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;48813;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624406;19482111;0;main_questionnaire;;mpath_package_study;1714127900;1714127904;1714127947;1714127968;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;10;10;56;16;55;44;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;48813;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624404;19484870;0;main_questionnaire;;mpath_package_study;1714140491;1714140492;1714141764;1714141782;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;9;10;40;22;53;44;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;48924;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624403;19486366;0;main_questionnaire;;mpath_package_study;1714146788;1714146790;1714147123;1714147141;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;20;16;42;9;50;37;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;48924;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624402;19487568;0;main_questionnaire;;mpath_package_study;1714150806;1714150808;1714151816;1714151832;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;20;25;39;14;51;43;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;48924;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624401;19489545;0;main_questionnaire;;mpath_package_study;1714156623;1714156626;1714156687;1714156728;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;5;28;38;25;59;44;1;"""Work""";;1;"""Alone""";;3;"""Travelling""";;49031;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624400;19491248;0;main_questionnaire;;mpath_package_study;1714160113;1714160115;1714160450;1714160479;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;13;13;46;6;49;48;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;49031;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624398;19494529;0;evening_questionnaire;;mpath_package_study;1714169400;1714169403;1714171023;1714171093;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;46;13;18;39;8;53;47;1;1;"""it is Friday!""";1;"""Worked or studied""";;1;"""over hours working due to late meeting etc""" +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624419;19495580;0;main_questionnaire;;mpath_package_study;1714204277;1714204280;1714205253;1714205280;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;20;34;41;11;36;70;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;49320;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624418;19496738;0;main_questionnaire;;mpath_package_study;1714211903;1714211906;1714212688;1714212728;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;12;15;57;14;58;42;7;"""dans show daughter""";;3;"""With multiple people I know""";;8;"""Other""";;49784;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624414;19502068;0;main_questionnaire;;mpath_package_study;1714233009;1714233012;1714233103;1714233134;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;21;13;52;7;68;29;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;461;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624413;19503066;0;main_questionnaire;;mpath_package_study;1714236367;1714236369;1714236738;1714236759;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;10;11;41;4;55;37;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;551;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624412;19504976;0;main_questionnaire;;mpath_package_study;1714244358;1714244361;1714244410;1714244455;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;13;25;49;9;40;29;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;758;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624411;19507319;0;main_questionnaire;;mpath_package_study;1714248310;1714248312;1714248445;1714248486;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;2;15;44;21;63;52;7;"""brussels""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;875;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624410;19509532;0;main_questionnaire;;mpath_package_study;1714254366;1714254367;1714254382;1714254420;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;13;13;63;7;48;47;4;"""brussels""";;3;"""With multiple people I know""";;4;"""Socializing""";;896;1;;;;;;;;;;;;;;;; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624409;19509986;0;evening_questionnaire;;mpath_package_study;1714255800;1714255803;1714257067;1714257110;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;67;19;4;56;15;58;51;1;1;"""daughter show""";2,4;"""Engaged in a hobby"",""Socialized""";;1;"""too much plans""" +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;-1;19373212;0;"Consent and intake questionnaire";;;0;1713530789;1713530790;1713532099;0;7200;0;1;2;"""Female""";;"""29""";1;3;"""Slightly disagree""";3;3;"""Slightly disagree""";3;5;"""Slightly agree""";5;6;"""Agree""";6;5;"""Slightly agree""";5;1;4;"""Agree a little""";4;2;"""Disagree a little""";2;4;"""Agree a little""";4;5;"""Agree strongly""";5;3;"""Neither agree nor disagree""";3;5;"""Agree strongly""";5;3;"""Neither agree nor disagree""";3;4;"""Agree a little""";4;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653613;19384415;0;main_questionnaire;;mpath_package_study;1713600019;1713600022;1713600049;1713600107;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1;0;47;0;0;100;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;76624;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653614;19385427;0;main_questionnaire;;mpath_package_study;1713604254;1713604256;1713604271;1713604308;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;46;43;0;100;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;76646;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653615;19386831;0;main_questionnaire;;mpath_package_study;1713609914;1713609915;1713611462;1713611532;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;1;4;26;55;28;82;4;"""walking """;;2;"""With one person I know""";;4;"""Socializing""";;78837;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653616;19388750;0;main_questionnaire;;mpath_package_study;1713617497;1713617498;1713617519;1713617546;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;26;33;66;68;71;35;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;79757;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653617;19389866;0;main_questionnaire;;mpath_package_study;1713622250;1713622253;1713624006;1713624034;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;11;11;47;68;25;70;4;"""walking """;;3;"""With multiple people I know""";;8;"""Other""";;80160;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653618;19390928;0;main_questionnaire;;mpath_package_study;1713626358;1713626359;1713626471;1713626488;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;29;57;36;18;13;60;4;"""walking """;;3;"""With multiple people I know""";;8;"""Other""";;83146;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653619;19392790;0;main_questionnaire;;mpath_package_study;1713631646;1713632608;1713633140;1713633176;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;8;21;10;49;55;84;4;"""walking """;;3;"""With multiple people I know""";;4;"""Socializing""";;81542;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653620;19393896;0;main_questionnaire;;mpath_package_study;1713636919;1713636921;1713637425;1713637469;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;59;44;10;100;12;93;5;"""Restaurant """;;3;"""With multiple people I know""";;6;"""Eating or drinking""";;85666;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653621;19396609;0;main_questionnaire;;mpath_package_study;1713644037;1713644040;1713644966;1713644990;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;73;82;18;69;21;74;3;"""Home""";;1;"""Alone""";;8;"""Other""";;89672;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653622;19398489;0;main_questionnaire;;mpath_package_study;1713649697;1713649698;1713649704;1713649743;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;14;4;69;66;41;20;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;89858;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653623;19398877;0;evening_questionnaire;;mpath_package_study;1713651000;1713651001;1713651018;1713651105;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;77;7;13;12;82;51;79;0;1;"""spent the day with my friend """;2,4,6,5;"""Engaged in a hobby"",""Socialized"",""Rested"",""Did exercise""";;1; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653634;19399892;0;main_questionnaire;;mpath_package_study;1713686857;1713686858;1713687017;1713687042;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;72;22;30;98;19;98;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;86869;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653633;19401001;0;main_questionnaire;;mpath_package_study;1713693105;1713693107;1713693115;1713693145;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;26;24;22;78;19;82;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;86973;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653632;19401997;0;main_questionnaire;;mpath_package_study;1713696725;1713696727;1713696808;1713696842;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;22;13;22;65;18;74;6;"""In the car """;;1;"""Alone""";;8;"""Other""";;88332;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653630;19404329;0;main_questionnaire;;mpath_package_study;1713706314;1713706315;1713707291;1713707309;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;13;55;7;72;24;61;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;89999;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653629;19406023;0;main_questionnaire;;mpath_package_study;1713713984;1713713988;1713713999;1713714022;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;22;14;39;63;6;100;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;90250;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653628;19406982;0;main_questionnaire;;mpath_package_study;1713717298;1713717300;1713717481;1713717528;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;97;24;7;31;32;7;"""Train """;;1;"""Alone""";;3;"""Travelling""";;90861;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653627;19408407;0;main_questionnaire;;mpath_package_study;1713722976;1713722978;1713723855;1713723879;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;32;59;30;64;27;20;7;"""Gym""";;4;"""With one or more people I don't know""";;5;"""Exercising""";;92116;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653626;19411416;0;main_questionnaire;;mpath_package_study;1713731363;1713731365;1713731679;1713731732;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;16;19;11;80;79;72;7;"""outside """;;1;"""Alone""";;3;"""Travelling""";;92423;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653625;19413132;0;main_questionnaire;;mpath_package_study;1713736687;1713736689;1713737266;1713737286;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;29;14;52;60;63;51;3;"""Home""";;1;"""Alone""";;8;"""Other""";;96367;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653624;19413475;0;evening_questionnaire;;mpath_package_study;1713737400;1713737404;1713737905;1713737935;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;75;11;11;72;53;62;65;0;0;;2,3,5,6,4;"""Engaged in a hobby"",""Travelled"",""Did exercise"",""Rested"",""Socialized""";;1; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653645;19414829;0;main_questionnaire;;mpath_package_study;1713773390;1713773392;1713774162;1713774190;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;23;18;18;34;41;67;3;"""Home""";;4;"""With one or more people I don't know""";;8;"""Other""";;89807;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653644;19416025;0;main_questionnaire;;mpath_package_study;1713778976;1713778979;1713779124;1713779143;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;66;49;43;72;80;23;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;91384;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653643;19416985;0;main_questionnaire;;mpath_package_study;1713783402;1713783403;1713783409;1713783429;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;27;25;75;18;17;14;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;91347;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653642;19418547;0;main_questionnaire;;mpath_package_study;1713790777;1713790779;1713791912;1713791926;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;19;8;13;6;37;34;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;90310;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653641;19419158;0;main_questionnaire;;mpath_package_study;1713792953;1713792956;1713793689;1713793710;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;12;22;62;13;7;7;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;90007;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653640;19420611;0;main_questionnaire;;mpath_package_study;1713798856;1713798857;1713799556;1713799568;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;10;41;21;44;17;56;1;"""Work""";;1;"""Alone""";;8;"""Other""";;87622;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653639;19422208;0;main_questionnaire;;mpath_package_study;1713804848;1713804850;1713804968;1713804978;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;32;17;59;22;22;44;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;86541;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653638;19423975;0;main_questionnaire;;mpath_package_study;1713810395;1713810398;1713810607;1713810630;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;16;53;10;56;17;51;7;"""Store """;;1;"""Alone""";;8;"""Other""";;87657;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653637;19426453;0;main_questionnaire;;mpath_package_study;1713815363;1713815365;1713815557;1713815590;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;18;66;15;64;55;10;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;87842;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653635;19429559;0;evening_questionnaire;;mpath_package_study;1713823800;1713823801;1713823945;1713823978;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;60;16;20;75;58;64;55;0;0;;1,5;"""Worked or studied"",""Did exercise""";;1; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653655;19431891;0;main_questionnaire;;mpath_package_study;1713862997;1713863000;1713863005;1713863024;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;13;37;24;41;5;30;3;"""Home""";;1;"""Alone""";;8;"""Other""";;90465;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653654;19433226;0;main_questionnaire;;mpath_package_study;1713869170;1713869174;1713869572;1713869590;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;54;25;54;21;59;35;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;89614;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653653;19434706;0;main_questionnaire;;mpath_package_study;1713876186;1713876188;1713876191;1713876215;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;27;37;55;46;25;54;1;"""Work""";;3;"""With multiple people I know""";;8;"""Other""";;89632;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653652;19435670;0;main_questionnaire;;mpath_package_study;1713880675;1713880677;1713880694;1713880715;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;19;16;13;8;11;19;1;"""Work""";;3;"""With multiple people I know""";;4;"""Socializing""";;90418;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653651;19436885;0;main_questionnaire;;mpath_package_study;1713884849;1713884854;1713884866;1713884881;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;59;48;46;63;31;53;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;90265;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653650;19438061;0;main_questionnaire;;mpath_package_study;1713890032;1713890035;1713890198;1713890213;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;56;46;25;52;52;68;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;90289;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653649;19440184;0;main_questionnaire;;mpath_package_study;1713896810;1713896814;1713896874;1713896906;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;23;10;0;50;21;21;6;"""outside """;;1;"""Alone""";;2;"""Engaging in a hobby""";;91182;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653648;19442090;0;main_questionnaire;;mpath_package_study;1713901270;1713901272;1713901284;1713901301;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;29;31;24;79;51;71;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;95335;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653647;19444682;0;main_questionnaire;;mpath_package_study;1713908234;1713908237;1713909479;1713909498;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;10;7;28;55;50;11;4;"""Gym""";;3;"""With multiple people I know""";;5;"""Exercising""";;95587;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653646;19445123;0;evening_questionnaire;;mpath_package_study;1713910200;1713910201;1713910226;1713910265;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;59;17;19;56;19;50;25;0;0;;1,2,5;"""Worked or studied"",""Engaged in a hobby"",""Did exercise""";;1; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653666;19448256;0;main_questionnaire;;mpath_package_study;1713950972;1713950975;1713951113;1713951158;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;28;25;64;50;39;68;6;"""outside """;;1;"""Alone""";;8;"""Other""";;77953;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653664;19450604;0;main_questionnaire;;mpath_package_study;1713962160;1713962163;1713962172;1713962197;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;11;16;57;23;58;33;1;"""Work""";;3;"""With multiple people I know""";;4;"""Socializing""";;80607;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653662;19453049;0;main_questionnaire;;mpath_package_study;1713971675;1713971678;1713972016;1713972031;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;23;20;19;68;45;14;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;81603;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653661;19454280;0;main_questionnaire;;mpath_package_study;1713976646;1713976648;1713976683;1713976698;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;60;66;26;55;23;62;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;81603;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653659;19458931;0;main_questionnaire;;mpath_package_study;1713987359;1713987360;1713987477;1713987525;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;23;74;70;86;75;78;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;88453;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653658;19461267;0;main_questionnaire;;mpath_package_study;1713992469;1713992472;1713992476;1713995153;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;25;24;35;33;24;33;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;91760;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653657;19462267;0;evening_questionnaire;;mpath_package_study;1713996600;1713996603;1713996663;1713996686;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;71;20;11;48;44;44;18;0;0;;1,2,4;"""Worked or studied"",""Engaged in a hobby"",""Socialized""";;1; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653677;19465103;0;main_questionnaire;;mpath_package_study;1714037110;1714037112;1714037246;1714037275;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;17;66;10;54;27;61;6;"""outside """;;1;"""Alone""";;3;"""Travelling""";;92205;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653676;19465806;0;main_questionnaire;;mpath_package_study;1714041077;1714041078;1714041081;1714041104;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;6;59;56;71;33;48;6;"""outside """;;1;"""Alone""";;3;"""Travelling""";;94628;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653674;19469005;0;main_questionnaire;;mpath_package_study;1714055014;1714055016;1714055020;1714055047;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;43;13;37;12;8;35;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;95986;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653673;19469803;0;main_questionnaire;;mpath_package_study;1714058276;1714058278;1714058287;1714058341;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;69;76;25;48;14;43;6;"""outside """;;1;"""Alone""";;8;"""Other""";;96476;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653671;19472831;0;main_questionnaire;;mpath_package_study;1714068549;1714068551;1714068663;1714068681;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;59;17;74;73;61;28;4;"""Gym""";;3;"""With multiple people I know""";;5;"""Exercising""";;97615;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653670;19476213;0;main_questionnaire;;mpath_package_study;1714076588;1714076589;1714076596;1714076616;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;58;84;7;69;20;2;6;"""outside """;;1;"""Alone""";;8;"""Other""";;98943;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653669;19477508;0;main_questionnaire;;mpath_package_study;1714079338;1714079340;1714079779;1714079812;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;25;60;18;64;24;52;3;"""Home""";;1;"""Alone""";;4;"""Socializing""";;100119;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653668;19478365;0;evening_questionnaire;;mpath_package_study;1714083000;1714083001;1714083007;1714083056;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;43;56;31;38;46;46;22;1;0;;1,2,4,5;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Did exercise""";;1;"""Doctors visit """ +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653689;19479931;0;main_questionnaire;;mpath_package_study;1714117067;1714117069;1714117099;1714117128;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;24;20;32;7;5;100;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;79826;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653688;19481410;0;main_questionnaire;;mpath_package_study;1714124012;1714124015;1714124170;1714124191;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;77;94;17;88;19;67;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;82092;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653687;19482612;0;main_questionnaire;;mpath_package_study;1714130445;1714130447;1714130454;1714130473;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;52;48;21;59;18;52;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;82116;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653686;19483610;0;main_questionnaire;;mpath_package_study;1714135723;1714135726;1714135733;1714135747;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;53;40;24;57;32;63;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;82126;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653685;19484971;0;main_questionnaire;;mpath_package_study;1714141017;1714141018;1714141556;1714141621;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;4;6;70;27;61;65;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;83443;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653684;19486308;0;main_questionnaire;;mpath_package_study;1714146388;1714146389;1714146412;1714146443;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;18;0;57;0;5;43;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;84049;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653683;19487272;0;main_questionnaire;;mpath_package_study;1714150205;1714150207;1714150214;1714150245;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;13;10;34;63;22;44;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;84049;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653682;19489474;0;main_questionnaire;;mpath_package_study;1714156272;1714156275;1714156279;1714156302;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;33;65;59;63;35;27;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;84197;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653680;19494010;0;main_questionnaire;;mpath_package_study;1714167110;1714167112;1714167256;1714167273;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;31;17;4;8;63;7;4;"""Gym""";;3;"""With multiple people I know""";;5;"""Exercising""";;85594;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653679;19494535;0;evening_questionnaire;;mpath_package_study;1714169400;1714169403;1714170625;1714170648;0;7200;-2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;63;25;13;46;64;57;77;0;0;;1,3,4,5,6;"""Worked or studied"",""Travelled"",""Socialized"",""Did exercise"",""Rested""";;1; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653700;19495569;0;main_questionnaire;;mpath_package_study;1714203165;1714203166;1714203182;1714203386;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;13;0;0;27;0;88;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;87773;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653699;19496661;0;main_questionnaire;;mpath_package_study;1714211252;1714211255;1714211545;1714211561;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;43;43;5;83;82;47;3;"""Home""";;1;"""Alone""";;8;"""Other""";;87873;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653698;19497730;0;main_questionnaire;;mpath_package_study;1714215007;1714215009;1714215012;1714215027;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;49;11;11;61;59;37;6;"""outside """;;1;"""Alone""";;8;"""Other""";;89385;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653697;19499313;0;main_questionnaire;;mpath_package_study;1714221036;1714221038;1714221297;1714225551;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;20;4;81;20;100;20;6;"""outside """;;2;"""With one person I know""";;3;"""Travelling""";;90112;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653696;19500220;0;main_questionnaire;;mpath_package_study;1714225439;1714225442;1714225571;1714225610;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;10;18;67;60;72;6;6;"""outside """;;2;"""With one person I know""";;3;"""Travelling""";;90112;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653695;19501872;0;main_questionnaire;;mpath_package_study;1714231914;1714231915;1714233038;1714233110;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;9;5;76;8;27;68;7;"""friends """;;3;"""With multiple people I know""";;4;"""Socializing""";;91981;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653694;19502892;0;main_questionnaire;;mpath_package_study;1714235570;1714235571;1714236135;1714236162;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;11;7;86;25;35;70;5;"""friends """;;3;"""With multiple people I know""";;4;"""Socializing""";;92020;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653693;19504622;0;main_questionnaire;;mpath_package_study;1714242494;1714242496;1714242585;1714242606;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;10;74;61;72;83;8;6;"""outside """;;1;"""Alone""";;8;"""Other""";;92109;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653692;19507316;0;main_questionnaire;;mpath_package_study;1714248297;1714248299;1714248304;1714248340;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;11;2;80;33;62;21;5;"""friends """;;3;"""With multiple people I know""";;4;"""Socializing""";;96012;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653691;19509041;0;main_questionnaire;;mpath_package_study;1714252528;1714252529;1714252540;1714252574;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;36;23;70;52;79;51;5;"""friends """;;3;"""With multiple people I know""";;4;"""Socializing""";;96060;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653690;19509991;0;evening_questionnaire;;mpath_package_study;1714255800;1714255803;1714257386;1714257471;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;84;1;10;59;53;77;59;0;1;"""visiting friends from\nlong time """;4,3;"""Socialized"",""Travelled""";;1; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653711;19511331;0;main_questionnaire;;mpath_package_study;1714292189;1714292191;1714293635;1714293666;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;74;49;82;66;26;82;5;"""friends """;;2;"""With one person I know""";;7;"""Resting""";;74451;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653710;19512083;0;main_questionnaire;;mpath_package_study;1714296519;1714296520;1714296526;1714296545;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;73;19;24;55;10;95;6;"""outside """;;1;"""Alone""";;7;"""Resting""";;74451;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653709;19513115;0;main_questionnaire;;mpath_package_study;1714300775;1714300778;1714300784;1714300806;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;85;67;9;86;23;85;7;"""store """;;2;"""With one person I know""";;8;"""Other""";;75451;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653708;19514483;0;main_questionnaire;;mpath_package_study;1714305697;1714305701;1714307110;1714308910;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;3;28;77;18;72;18;6;"""outside """;;1;"""Alone""";;8;"""Other""";;80322;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653707;19516114;0;main_questionnaire;;mpath_package_study;1714314291;1714314294;1714315117;1714315140;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;0;0;51;59;63;13;6;"""outside """;;2;"""With one person I know""";;6;"""Eating or drinking""";;81193;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653706;19516864;0;main_questionnaire;;mpath_package_study;1714317040;1714317042;1714318266;1714318386;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;49;0;71;51;60;25;7;"""car """;;2;"""With one person I know""";;3;"""Travelling""";;81206;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653704;19519472;0;main_questionnaire;;mpath_package_study;1714327450;1714327453;1714329087;1714329102;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;79;18;5;82;50;77;3;"""Home""";;1;"""Alone""";;8;"""Other""";;81667;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653703;19522647;0;main_questionnaire;;mpath_package_study;1714336027;1714336030;1714337323;1714337348;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;79;16;2;74;1;82;6;"""outside """;;1;"""Alone""";;8;"""Other""";;81835;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653702;19523957;0;main_questionnaire;;mpath_package_study;1714338139;1714338142;1714338148;1714338171;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;81;30;12;87;39;71;6;"""outside """;;1;"""Alone""";;8;"""Other""";;83233;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653701;19525083;0;evening_questionnaire;;mpath_package_study;1714342200;1714342202;1714342581;1714342624;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;76;72;45;33;66;55;78;0;0;;2,3,4;"""Engaged in a hobby"",""Travelled"",""Socialized""";;1; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653722;19527026;0;main_questionnaire;;mpath_package_study;1714378837;1714378839;1714380043;1714380069;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;83;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;84805;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653721;19527867;0;main_questionnaire;;mpath_package_study;1714382833;1714382835;1714383824;1714383856;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;10;22;10;57;31;81;3;"""Home""";;1;"""Alone""";;8;"""Other""";;84805;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653720;19528741;0;main_questionnaire;;mpath_package_study;1714388216;1714388219;1714388225;1714388240;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;9;6;0;59;4;82;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;86234;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653719;19529723;0;main_questionnaire;;mpath_package_study;1714393100;1714393102;1714394062;1714394085;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;12;11;36;49;53;23;1;"""Work""";;2;"""With one person I know""";;6;"""Eating or drinking""";;86831;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653718;19530760;0;main_questionnaire;;mpath_package_study;1714398966;1714398969;1714398981;1714401392;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;17;61;13;46;40;53;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;88817;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653716;19533669;0;main_questionnaire;;mpath_package_study;1714410425;1714410428;1714410431;1714410465;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;36;50;22;77;24;83;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;88909;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653715;19535047;0;main_questionnaire;;mpath_package_study;1714415364;1714415365;1714415853;1714415879;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;38;45;30;60;59;29;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;89912;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653714;19538370;0;main_questionnaire;;mpath_package_study;1714420897;1714420900;1714420905;1714420935;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;24;21;13;75;48;83;4;"""car """;;1;"""Alone""";;3;"""Travelling""";;90373;1;;;;;;;;;;;;;;;; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653712;19540787;0;evening_questionnaire;;mpath_package_study;1714428600;1714428602;1714428611;1714428708;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;80;8;0;10;67;41;89;1;1;"""seeing my boyfriend """;1,3;"""Worked or studied"",""Travelled""";;1;"""driving """ +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;-1;19373254;0;"Consent and intake questionnaire";;;0;1713530950;1713530951;1713531009;0;7200;0;1;1;"""Male""";;"""24""";1;6;"""Agree""";6;6;"""Agree""";6;5;"""Slightly agree""";5;5;"""Slightly agree""";5;6;"""Agree""";6;1;4;"""Agree a little""";4;4;"""Agree a little""";4;1;"""Disagree strongly""";1;5;"""Agree strongly""";5;4;"""Agree a little""";4;2;"""Disagree a little""";2;5;"""Agree strongly""";5;2;"""Disagree a little""";2;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653267;19384161;0;main_questionnaire;;mpath_package_study;1713599179;1713599181;1713599189;1713599227;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;63;0;28;60;42;57;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;165256;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653269;19387403;0;main_questionnaire;;mpath_package_study;1713611493;1713611496;1713611508;1713611532;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;40;0;60;46;62;43;3;"""Home""";;1;"""Alone""";;3;"""Travelling""";;165267;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653271;19390032;0;main_questionnaire;;mpath_package_study;1713622840;1713622843;1713622851;1713622868;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;31;0;66;34;84;36;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;168423;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653272;19391079;0;main_questionnaire;;mpath_package_study;1713627035;1713627036;1713628462;1713628479;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;25;0;79;77;81;33;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;168435;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653273;19392151;0;main_questionnaire;;mpath_package_study;1713631057;1713631058;1713631085;1713631113;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;48;1;61;79;17;33;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;168435;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653274;19393937;0;main_questionnaire;;mpath_package_study;1713637131;1713637133;1713637375;1713637397;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;36;0;64;49;11;16;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;168435;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653275;19395763;0;main_questionnaire;;mpath_package_study;1713642370;1713642373;1713642417;1713642442;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;14;0;60;38;54;12;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;168526;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653277;19398876;0;evening_questionnaire;;mpath_package_study;1713651000;1713651001;1713651132;1713651177;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;64;39;0;48;76;43;57;0;1;"""Package arrived """;2,6;"""Engaged in a hobby"",""Rested""";;1; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653288;19399657;0;main_questionnaire;;mpath_package_study;1713685504;1713685505;1713685516;1713685544;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;54;0;39;52;2;80;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;168571;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653285;19403667;0;main_questionnaire;;mpath_package_study;1713703690;1713703692;1713703731;1713703757;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;34;0;25;49;6;70;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;168571;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653284;19404417;0;main_questionnaire;;mpath_package_study;1713706898;1713706901;1713707823;1713707839;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;27;0;36;41;29;59;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;168801;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653283;19405716;0;main_questionnaire;;mpath_package_study;1713712070;1713712071;1713712790;1713712805;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;31;0;38;72;30;42;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;168819;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653282;19407028;0;main_questionnaire;;mpath_package_study;1713717507;1713717510;1713717715;1713717734;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;79;0;39;77;30;62;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;168832;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653281;19408809;0;main_questionnaire;;mpath_package_study;1713724657;1713724658;1713725009;1713725029;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;30;0;38;76;38;33;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;168832;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653280;19410412;0;main_questionnaire;;mpath_package_study;1713729380;1713729381;1713729405;1713729435;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;25;0;23;26;80;11;4;"""Train Station """;;1;"""Alone""";;3;"""Travelling""";;169851;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653279;19413070;0;main_questionnaire;;mpath_package_study;1713736113;1713736115;1713736816;1713736846;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;22;0;46;27;69;6;5;"""Concert Venue""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;171152;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653278;19413474;0;evening_questionnaire;;mpath_package_study;1713737400;1713737404;1713737705;1713737734;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;50;39;0;39;58;58;38;0;1;"""concert """;2,3,6;"""Engaged in a hobby"",""Travelled"",""Rested""";;1; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653299;19414806;0;main_questionnaire;;mpath_package_study;1713773065;1713773068;1713773074;1713773098;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;32;0;35;74;52;24;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;172791;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653298;19416122;0;main_questionnaire;;mpath_package_study;1713779959;1713779962;1713780001;1713780021;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;23;0;68;51;61;20;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;173590;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653297;19416918;0;main_questionnaire;;mpath_package_study;1713783042;1713783043;1713783141;1713783174;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;33;0;33;36;57;32;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;174070;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653296;19418394;0;main_questionnaire;;mpath_package_study;1713789524;1713789525;1713789534;1713789555;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;26;0;61;78;63;21;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;175242;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653295;19419247;0;main_questionnaire;;mpath_package_study;1713793398;1713793401;1713793450;1713793469;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;22;0;68;61;65;23;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;177128;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653294;19420883;0;main_questionnaire;;mpath_package_study;1713799966;1713799969;1713800648;1713800665;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;64;0;29;75;43;28;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;177799;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653293;19421885;0;main_questionnaire;;mpath_package_study;1713803739;1713803743;1713803782;1713803801;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;31;0;67;60;63;21;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;178447;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653292;19424569;0;main_questionnaire;;mpath_package_study;1713811789;1713811792;1713811883;1713811964;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;18;0;70;31;57;25;6;"""Friend's home""";;3;"""With multiple people I know""";;8;"""Other""";;179910;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653291;19426475;0;main_questionnaire;;mpath_package_study;1713815566;1713815568;1713815599;1713815833;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;32;0;48;18;59;24;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;180147;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653290;19429198;0;main_questionnaire;;mpath_package_study;1713822508;1713822510;1713822637;1713822661;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;13;0;25;27;80;23;4;"""Concert Venue""";;1;"""Alone""";;2;"""Engaging in a hobby""";;181100;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653289;19429558;0;evening_questionnaire;;mpath_package_study;1713823800;1713823801;1713823809;1713823845;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;68;25;0;31;51;73;31;0;1;"""Concert""";1,2,3,4,6;"""Worked or studied"",""Engaged in a hobby"",""Travelled"",""Socialized"",""Rested""";;1; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653310;19431136;0;main_questionnaire;;mpath_package_study;1713859229;1713859237;1713859686;1713859712;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;63;0;29;55;32;62;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;181714;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653309;19432503;0;main_questionnaire;;mpath_package_study;1713866185;1713866186;1713866192;1713866209;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;28;0;34;61;24;69;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;181714;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653308;19433165;0;main_questionnaire;;mpath_package_study;1713868989;1713868990;1713869564;1713869582;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;20;0;61;32;50;32;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;182076;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653307;19434807;0;main_questionnaire;;mpath_package_study;1713876873;1713876876;1713877095;1713877117;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;31;0;39;36;41;19;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;183713;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653306;19435513;0;main_questionnaire;;mpath_package_study;1713879926;1713879928;1713879935;1713879955;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;34;0;28;76;42;62;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;183983;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653305;19437488;0;main_questionnaire;;mpath_package_study;1713887815;1713887819;1713887825;1713887845;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;29;0;53;67;14;92;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;184007;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653304;19438438;0;main_questionnaire;;mpath_package_study;1713891423;1713891426;1713891591;1713891610;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;63;0;33;52;26;70;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;184022;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653303;19440146;0;main_questionnaire;;mpath_package_study;1713896628;1713896632;1713896647;1713896671;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;33;0;65;54;65;24;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;184022;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653302;19441977;0;main_questionnaire;;mpath_package_study;1713900901;1713900903;1713901134;1713901152;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;33;0;31;75;32;29;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;185121;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653301;19443899;0;main_questionnaire;;mpath_package_study;1713906004;1713906020;1713906031;1713906056;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;31;0;44;26;64;31;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;185148;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653300;19445122;0;evening_questionnaire;;mpath_package_study;1713910200;1713910201;1713910304;1713910386;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;49;43;0;67;68;45;64;1;1;"""Possible new apartment next year""";1,2,4,6;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Rested""";;1;"""Illness (sinus infection)""" +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653320;19448020;0;main_questionnaire;;mpath_package_study;1713949754;1713949755;1713949796;1713949817;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;28;0;24;78;33;67;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;185292;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653319;19449202;0;main_questionnaire;;mpath_package_study;1713955650;1713955653;1713955957;1713955972;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;31;0;39;75;35;28;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;185543;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653318;19450594;0;main_questionnaire;;mpath_package_study;1713962092;1713962093;1713962426;1713962456;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;37;0;37;62;34;33;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;185623;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653317;19452185;0;main_questionnaire;;mpath_package_study;1713968407;1713968408;1713968418;1713968431;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;28;0;36;69;33;31;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;186050;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653316;19452986;0;main_questionnaire;;mpath_package_study;1713971141;1713971144;1713971309;1713971329;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;44;0;73;70;29;21;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;186144;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653315;19455174;0;main_questionnaire;;mpath_package_study;1713979651;1713979654;1713979660;1713979677;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;43;0;51;16;56;32;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;186296;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653314;19456358;0;main_questionnaire;;mpath_package_study;1713982846;1713982848;1713983184;1713983212;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;34;0;67;19;56;25;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;186296;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653313;19459042;0;main_questionnaire;;mpath_package_study;1713987872;1713987874;1713987910;1713987925;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;65;0;34;79;34;66;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;186468;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653312;19461550;0;main_questionnaire;;mpath_package_study;1713994133;1713994135;1713995031;1713995052;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;29;0;65;35;60;37;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;187510;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653311;19462266;0;evening_questionnaire;;mpath_package_study;1713996600;1713996603;1713996705;1713996748;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;39;58;0;41;72;44;61;1;0;;1,2,4,3,6;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Travelled"",""Rested""";;1;"""illness """ +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653331;19464749;0;main_questionnaire;;mpath_package_study;1714035897;1714035900;1714036375;1714036394;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;31;0;25;62;32;65;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;188609;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653330;19465821;0;main_questionnaire;;mpath_package_study;1714041191;1714041194;1714041596;1714041612;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;29;0;40;76;46;28;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;189448;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653329;19467339;0;main_questionnaire;;mpath_package_study;1714048289;1714048290;1714048446;1714048460;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;37;0;29;71;37;24;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;191083;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653328;19468146;0;main_questionnaire;;mpath_package_study;1714052027;1714052028;1714052080;1714052095;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;36;0;44;76;37;21;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;192187;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653327;19469849;0;main_questionnaire;;mpath_package_study;1714058643;1714058644;1714058727;1714058745;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;54;0;38;71;55;25;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;194575;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653326;19471048;0;main_questionnaire;;mpath_package_study;1714063411;1714063413;1714063461;1714063483;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;43;0;45;74;13;81;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;194667;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653325;19472760;0;main_questionnaire;;mpath_package_study;1714068010;1714068014;1714068031;1714068050;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;26;0;34;66;34;71;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;194667;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653324;19475317;0;main_questionnaire;;mpath_package_study;1714074811;1714074813;1714074824;1714074840;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;56;0;33;64;15;75;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;194794;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653323;19477465;0;main_questionnaire;;mpath_package_study;1714079066;1714079069;1714079080;1714079111;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;22;0;36;20;34;51;3;"""Home""";;1;"""Alone""";;5;"""Exercising""";;198806;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653322;19478364;0;evening_questionnaire;;mpath_package_study;1714083000;1714083001;1714083015;1714083036;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;54;41;25;47;73;25;78;0;0;;1,2,5,6;"""Worked or studied"",""Engaged in a hobby"",""Did exercise"",""Rested""";;1; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653342;19481308;0;main_questionnaire;;mpath_package_study;1714123571;1714123572;1714123600;1714123615;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;67;0;23;76;35;65;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;204634;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653341;19482446;0;main_questionnaire;;mpath_package_study;1714129399;1714129400;1714129407;1714129424;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;65;0;20;75;32;65;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;204644;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653340;19483699;0;main_questionnaire;;mpath_package_study;1714136315;1714136317;1714136324;1714136342;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;54;0;36;57;24;69;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;205777;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653339;19484891;0;main_questionnaire;;mpath_package_study;1714140631;1714140633;1714140647;1714140672;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;67;0;37;77;31;82;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;205845;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653338;19485882;0;main_questionnaire;;mpath_package_study;1714144237;1714144239;1714145513;1714145529;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;70;0;30;75;30;76;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;205866;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653336;19488885;0;main_questionnaire;;mpath_package_study;1714154761;1714154763;1714154808;1714154827;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;78;0;15;77;22;49;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;206149;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653335;19492156;0;main_questionnaire;;mpath_package_study;1714162266;1714162267;1714162275;1714162294;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;52;0;32;75;29;65;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;206376;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653334;19493555;0;main_questionnaire;;mpath_package_study;1714165682;1714165684;1714166707;1714166722;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;70;0;25;81;24;87;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;206391;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653333;19494533;0;evening_questionnaire;;mpath_package_study;1714169400;1714169403;1714169411;1714169430;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;35;69;0;26;65;31;74;0;0;;1,2,4,6;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Rested""";;1; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653333;19494533;0;evening_questionnaire;;mpath_package_study;1714169400;1714169403;1714169531;1714169557;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;29;65;0;30;69;24;68;0;0;;1,3,6;"""Worked or studied"",""Travelled"",""Rested""";;1; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653351;19499135;0;main_questionnaire;;mpath_package_study;1714219843;1714219845;1714220277;1714220299;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;61;0;15;63;29;56;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;209832;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653350;19500600;0;main_questionnaire;;mpath_package_study;1714227178;1714227180;1714227298;1714227313;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;69;0;28;75;24;78;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;209877;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653349;19501547;0;main_questionnaire;;mpath_package_study;1714230809;1714230810;1714230827;1714230843;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;69;0;26;79;32;97;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;209904;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653348;19503682;0;main_questionnaire;;mpath_package_study;1714238534;1714238535;1714239026;1714239040;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;74;0;17;65;16;89;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;210901;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653347;19504876;0;main_questionnaire;;mpath_package_study;1714243730;1714243733;1714243760;1714243783;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;24;3;28;57;62;31;4;"""Concert Venue""";;1;"""Alone""";;2;"""Engaging in a hobby""";;211336;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653345;19509147;0;main_questionnaire;;mpath_package_study;1714253151;1714253152;1714253760;1714253784;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;67;4;20;83;35;81;4;"""Concert Venue""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;211767;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653344;19509990;0;evening_questionnaire;;mpath_package_study;1714255800;1714255803;1714255980;1714255999;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;32;84;0;21;68;23;83;0;0;;6,2;"""Rested"",""Engaged in a hobby""";;1; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653364;19512056;0;main_questionnaire;;mpath_package_study;1714296292;1714296293;1714297084;1714297112;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;87;10;23;72;30;81;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;212385;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653363;19513270;0;main_questionnaire;;mpath_package_study;1714301666;1714301667;1714301675;1714301694;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;64;0;31;63;24;72;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;212395;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653362;19514765;0;main_questionnaire;;mpath_package_study;1714307509;1714307511;1714308624;1714308637;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;65;3;35;78;28;83;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;213688;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653361;19515937;0;main_questionnaire;;mpath_package_study;1714313431;1714313433;1714314244;1714314265;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;29;0;31;64;28;61;7;"""tennis club""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;214477;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653360;19516772;0;main_questionnaire;;mpath_package_study;1714316420;1714316423;1714316433;1714316456;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;31;0;41;76;33;67;6;"""tennis club""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;214558;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653358;19519655;0;main_questionnaire;;mpath_package_study;1714328420;1714328422;1714328908;1714328927;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;62;0;37;60;36;74;7;"""cafe""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;218239;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653357;19522687;0;main_questionnaire;;mpath_package_study;1714336200;1714336203;1714336331;1714336347;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;71;0;16;75;27;71;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;219747;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653356;19523965;0;main_questionnaire;;mpath_package_study;1714338187;1714338188;1714338327;1714338344;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;67;0;33;72;35;67;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;219790;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653355;19525081;0;evening_questionnaire;;mpath_package_study;1714342200;1714342202;1714342315;1714342332;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;31;73;0;31;61;30;76;0;0;;2,3,4,6;"""Engaged in a hobby"",""Travelled"",""Socialized"",""Rested""";;1; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653376;19526667;0;main_questionnaire;;mpath_package_study;1714376413;1714376416;1714378086;1714378102;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;59;0;28;67;20;71;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;221557;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653375;19527820;0;main_questionnaire;;mpath_package_study;1714382414;1714382416;1714383716;1714383738;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;68;0;22;78;21;68;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;221557;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653373;19529939;0;main_questionnaire;;mpath_package_study;1714394382;1714394383;1714394468;1714394486;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;63;0;20;91;28;71;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;221557;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653372;19531075;0;main_questionnaire;;mpath_package_study;1714399442;1714399445;1714399479;1714399496;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;66;1;35;71;41;58;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;222598;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653371;19532379;0;main_questionnaire;;mpath_package_study;1714404850;1714404851;1714404918;1714404929;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;68;0;35;85;34;56;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;222604;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653370;19533935;0;main_questionnaire;;mpath_package_study;1714411789;1714411792;1714411816;1714412510;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;49;0;27;81;31;65;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;223483;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653369;19534822;0;main_questionnaire;;mpath_package_study;1714413708;1714413710;1714414066;1714414080;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;58;0;22;72;35;63;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;223483;1;;;;;;;;;;;;;;;; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653367;19540362;0;main_questionnaire;;mpath_package_study;1714426401;1714426404;1714426409;1714426471;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;64;0;71;79;34;60;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;225086;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;-1;19375712;0;"Consent and intake questionnaire";;;0;1713541382;1713541382;1713541527;0;7200;0;1;1;"""Male""";;"""26""";1;6;"""Agree""";6;7;"""Strongly agree""";7;6;"""Agree""";6;7;"""Strongly agree""";7;2;"""Disagree""";2;1;1;"""Disagree strongly""";1;4;"""Agree a little""";4;3;"""Neither agree nor disagree""";3;4;"""Agree a little""";4;5;"""Agree strongly""";5;2;"""Disagree a little""";2;3;"""Neither agree nor disagree""";3;4;"""Agree a little""";4;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658245;19384461;0;main_questionnaire;;mpath_package_study;1713601577;1713601578;1713601584;1713601657;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;35;13;63;26;68;57;3;"""Home""";;1;"""Alone""";;8;"""Other""";;44563;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658246;19385796;0;main_questionnaire;;mpath_package_study;1713606810;1713606812;1713606818;1713606863;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;21;25;61;26;47;55;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;44563;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658247;19387331;0;main_questionnaire;;mpath_package_study;1713611131;1713611134;1713611138;1713611175;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;26;29;62;34;50;32;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;44563;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658248;19388370;0;main_questionnaire;;mpath_package_study;1713615288;1713615291;1713615590;1713615618;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;18;20;86;17;90;35;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;44706;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658249;19390118;0;main_questionnaire;;mpath_package_study;1713623284;1713623285;1713624484;1713624525;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;26;25;75;24;49;54;3;"""Home""";;1;"""Alone""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658250;19390987;0;main_questionnaire;;mpath_package_study;1713626931;1713626932;1713626943;1713626972;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;19;20;70;24;66;42;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658251;19392331;0;main_questionnaire;;mpath_package_study;1713631864;1713631866;1713631869;1713631906;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;35;19;61;29;35;59;3;"""Home""";;1;"""Alone""";;8;"""Other""";;45810;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658252;19394396;0;main_questionnaire;;mpath_package_study;1713639314;1713639315;1713639323;1713639345;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;25;25;59;29;63;40;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;46032;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658253;19395837;0;main_questionnaire;;mpath_package_study;1713642926;1713642929;1713642934;1713642965;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;20;21;64;34;53;47;3;"""Home""";;1;"""Alone""";;8;"""Other""";;46273;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658254;19398414;0;main_questionnaire;;mpath_package_study;1713649262;1713649265;1713649272;1713649299;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;13;3;75;31;90;42;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;46484;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658255;19398878;0;evening_questionnaire;;mpath_package_study;1713651000;1713651001;1713651005;1713651067;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;81;30;10;82;17;69;34;0;1;"""lekker gegeten""";1,6;"""Worked or studied"",""Rested""";;1; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658266;19399900;0;main_questionnaire;;mpath_package_study;1713686993;1713686994;1713688189;1713688247;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;23;16;62;32;45;58;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;46772;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658265;19400888;0;main_questionnaire;;mpath_package_study;1713691719;1713691723;1713691885;1713691943;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;21;21;74;30;63;40;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;46772;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658264;19402030;0;main_questionnaire;;mpath_package_study;1713696926;1713696929;1713696941;1713696980;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;31;16;62;28;63;40;3;"""Home""";;1;"""Alone""";;8;"""Other""";;46772;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658263;19403400;0;main_questionnaire;;mpath_package_study;1713702152;1713702154;1713702340;1713702371;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;5;11;61;33;62;37;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;46772;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658262;19404587;0;main_questionnaire;;mpath_package_study;1713707806;1713707808;1713707814;1713707837;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;19;16;57;37;77;37;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;47333;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658261;19406277;0;main_questionnaire;;mpath_package_study;1713715026;1713715029;1713716058;1713716085;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;33;8;72;39;35;75;3;"""Home""";;1;"""Alone""";;8;"""Other""";;47872;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658260;19407626;0;main_questionnaire;;mpath_package_study;1713719239;1713719241;1713719246;1713719273;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;13;1;67;16;61;46;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;47995;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658259;19408942;0;main_questionnaire;;mpath_package_study;1713725409;1713725411;1713725419;1713725443;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;14;5;85;11;64;38;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;48302;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658258;19410383;0;main_questionnaire;;mpath_package_study;1713729059;1713729061;1713729069;1713729090;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;15;1;62;34;71;42;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;48503;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658257;19412738;0;main_questionnaire;;mpath_package_study;1713734973;1713734975;1713734982;1713735006;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;17;9;60;38;83;44;3;"""Home""";;2;"""With one person I know""";;1;"""Working or studying""";;48575;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658256;19413476;0;evening_questionnaire;;mpath_package_study;1713737400;1713737404;1713737409;1713737481;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;67;4;6;59;32;56;59;1;1;"""mooi weer""";1,6,2;"""Worked or studied"",""Rested"",""Engaged in a hobby""";;1;"""malaise""" +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658276;19415829;0;main_questionnaire;;mpath_package_study;1713777375;1713777376;1713777379;1713777411;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;28;8;63;30;63;33;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;48704;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658275;19417344;0;main_questionnaire;;mpath_package_study;1713784488;1713784489;1713784494;1713784518;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;38;0;59;41;65;40;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;48724;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658274;19418502;0;main_questionnaire;;mpath_package_study;1713790345;1713790347;1713790596;1713790618;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;16;7;61;41;81;23;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;48850;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658273;19419674;0;main_questionnaire;;mpath_package_study;1713794914;1713794917;1713796000;1713796019;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;17;15;62;35;74;21;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658272;19420629;0;main_questionnaire;;mpath_package_study;1713799013;1713799015;1713799070;1713799090;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;17;6;60;9;88;21;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;114;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658271;19422871;0;main_questionnaire;;mpath_package_study;1713806967;1713806969;1713807339;1713807358;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;21;10;63;34;31;47;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;204;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658270;19424349;0;main_questionnaire;;mpath_package_study;1713811154;1713811156;1713811163;1713811190;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;39;19;29;60;49;71;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;216;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658269;19427321;0;main_questionnaire;;mpath_package_study;1713816934;1713816936;1713816945;1713816969;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;45;28;60;38;81;39;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;304;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658268;19429161;0;main_questionnaire;;mpath_package_study;1713822200;1713822202;1713822735;1713822757;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;36;37;44;42;77;50;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;460;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658267;19429560;0;evening_questionnaire;;mpath_package_study;1713823800;1713823801;1713823806;1713823848;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;71;38;28;60;41;69;33;1;0;;1;"""Worked or studied""";;1;"""deadline""" +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658288;19431199;0;main_questionnaire;;mpath_package_study;1713860285;1713860289;1713860294;1713860321;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;23;6;61;41;72;37;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;548;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658287;19432334;0;main_questionnaire;;mpath_package_study;1713864667;1713864669;1713864678;1713864701;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;26;20;23;80;51;54;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;786;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658286;19433309;0;main_questionnaire;;mpath_package_study;1713869574;1713869577;1713870103;1713870124;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;35;4;35;81;49;65;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;2311;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658285;19434719;0;main_questionnaire;;mpath_package_study;1713876269;1713876270;1713877019;1713877085;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;27;22;51;74;34;66;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;2521;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658282;19438383;0;main_questionnaire;;mpath_package_study;1713891188;1713891192;1713891212;1713891245;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;11;9;26;17;82;13;1;"""Work""";;3;"""With multiple people I know""";;4;"""Socializing""";;2740;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658281;19439896;0;main_questionnaire;;mpath_package_study;1713895563;1713895564;1713895571;1713895589;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;6;4;98;11;100;0;1;"""Work""";;3;"""With multiple people I know""";;4;"""Socializing""";;5289;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658280;19442208;0;main_questionnaire;;mpath_package_study;1713902031;1713902032;1713902036;1713902061;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;9;8;91;6;59;55;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;5399;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658279;19444439;0;main_questionnaire;;mpath_package_study;1713907668;1713907670;1713907772;1713907790;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;2;4;90;8;49;53;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;5469;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658278;19445124;0;evening_questionnaire;;mpath_package_study;1713910200;1713910201;1713910248;1713910364;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;70;23;11;19;58;60;43;1;1;"""talk with nice collegues""";1,3,6,4;"""Worked or studied"",""Travelled"",""Rested"",""Socialized""";;1;"""slides were not finalized""" +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658298;19448015;0;main_questionnaire;;mpath_package_study;1713949714;1713949715;1713949824;1713949844;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;27;20;50;58;76;13;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;5717;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658297;19449110;0;main_questionnaire;;mpath_package_study;1713955242;1713955243;1713956474;1713956495;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;18;10;81;10;84;14;3;"""Home""";;1;"""Alone""";;4;"""Socializing""";;6573;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658296;19450287;0;main_questionnaire;;mpath_package_study;1713960262;1713960263;1713960456;1713960474;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;9;3;99;8;93;5;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;6597;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658295;19452108;0;main_questionnaire;;mpath_package_study;1713968222;1713968224;1713968377;1713968394;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;12;9;92;12;81;12;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;8038;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658294;19453356;0;main_questionnaire;;mpath_package_study;1713972875;1713972876;1713972895;1713972910;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;11;4;96;6;93;11;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;8114;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658292;19457077;0;main_questionnaire;;mpath_package_study;1713984415;1713984418;1713984422;1713984448;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;35;25;77;8;61;43;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;10735;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658291;19459828;0;main_questionnaire;;mpath_package_study;1713988853;1713988854;1713989409;1713989441;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;12;14;70;14;65;17;3;"""Home""";;1;"""Alone""";;4;"""Socializing""";;11086;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658290;19461830;0;main_questionnaire;;mpath_package_study;1713994741;1713994744;1713994835;1713994863;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;13;13;66;22;51;20;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;11086;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658289;19462268;0;evening_questionnaire;;mpath_package_study;1713996600;1713996603;1713996611;1713996692;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;84;12;11;91;12;92;12;0;1;"""I was preparing for my trip""";1,3,4,6;"""Worked or studied"",""Travelled"",""Socialized"",""Rested""";;1; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658310;19463736;0;main_questionnaire;;mpath_package_study;1714031101;1714031102;1714031407;1714031442;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;13;7;82;7;68;41;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;11123;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658309;19465189;0;main_questionnaire;;mpath_package_study;1714037477;1714037479;1714037485;1714037509;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;31;22;79;13;53;52;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;11123;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658308;19466036;0;main_questionnaire;;mpath_package_study;1714042461;1714042464;1714042533;1714042553;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;6;11;87;10;70;33;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;11123;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658307;19467346;0;main_questionnaire;;mpath_package_study;1714048351;1714048354;1714048358;1714048370;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;4;3;90;13;90;6;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;11389;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658306;19468884;0;main_questionnaire;;mpath_package_study;1714054647;1714054648;1714054654;1714054670;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;10;9;90;10;53;49;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;11446;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658305;19469842;0;main_questionnaire;;mpath_package_study;1714058595;1714058597;1714059205;1714059217;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;11;9;83;10;85;12;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;11539;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658304;19470918;0;main_questionnaire;;mpath_package_study;1714062950;1714062952;1714062960;1714063028;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;13;11;86;13;87;16;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;11539;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658303;19473759;0;main_questionnaire;;mpath_package_study;1714071363;1714071366;1714071373;1714071404;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;47;12;67;16;68;38;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;12126;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658302;19475260;0;main_questionnaire;;mpath_package_study;1714074373;1714074376;1714074385;1714074422;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;42;8;81;23;65;38;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;12221;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658301;19478047;0;main_questionnaire;;mpath_package_study;1714081971;1714081972;1714081980;1714081994;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;15;13;87;14;72;30;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;13031;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658300;19478366;0;evening_questionnaire;;mpath_package_study;1714083000;1714083001;1714083435;1714083456;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;85;12;14;78;16;85;16;0;0;;1,6;"""Worked or studied"",""Rested""";;1; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658320;19480932;0;main_questionnaire;;mpath_package_study;1714122017;1714122020;1714122025;1714122051;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;65;66;20;58;63;50;3;"""Home""";;1;"""Alone""";;8;"""Other""";;13901;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658319;19482064;0;main_questionnaire;;mpath_package_study;1714127655;1714127658;1714127993;1714128020;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;16;19;81;15;80;11;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;13925;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658318;19483379;0;main_questionnaire;;mpath_package_study;1714134484;1714134485;1714135068;1714135091;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;13;12;81;16;81;9;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;14311;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658317;19485059;0;main_questionnaire;;mpath_package_study;1714141239;1714141241;1714142722;1714145652;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;11;18;82;15;83;12;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658316;19485944;0;main_questionnaire;;mpath_package_study;1714144796;1714144797;1714145656;1714145682;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;15;16;87;15;83;13;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658315;19487106;0;main_questionnaire;;mpath_package_study;1714149655;1714149658;1714149677;1714149703;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;22;30;12;11;81;17;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;15000;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658314;19489498;0;main_questionnaire;;mpath_package_study;1714156387;1714156388;1714158180;1714159230;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;19;21;29;47;38;33;4;"""ikea""";;1;"""Alone""";;3;"""Travelling""";;16292;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658313;19491381;0;main_questionnaire;;mpath_package_study;1714160626;1714160627;1714160926;1714160942;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;22;27;17;18;25;47;4;"""ikea""";;1;"""Alone""";;4;"""Socializing""";;16292;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658312;19494132;0;main_questionnaire;;mpath_package_study;1714167655;1714167656;1714168427;1714168443;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;15;10;85;15;85;14;3;"""Home""";;2;"""With one person I know""";;5;"""Exercising""";;17899;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658311;19494536;0;evening_questionnaire;;mpath_package_study;1714169400;1714169403;1714169412;1714170078;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;77;19;41;35;13;79;18;1;0;;1,2,3,4,6;"""Worked or studied"",""Engaged in a hobby"",""Travelled"",""Socialized"",""Rested""";;1;"""""" +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658332;19495581;0;main_questionnaire;;mpath_package_study;1714204288;1714204289;1714204294;1714204322;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;14;15;72;15;64;41;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;18187;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658331;19496665;0;main_questionnaire;;mpath_package_study;1714211268;1714211270;1714211308;1714211327;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;14;53;18;66;81;21;3;"""Home""";;1;"""Alone""";;8;"""Other""";;18187;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658330;19497880;0;main_questionnaire;;mpath_package_study;1714215563;1714215564;1714215718;1714215735;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;9;9;93;18;70;18;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;18919;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658328;19500618;0;main_questionnaire;;mpath_package_study;1714227250;1714227251;1714227258;1714227284;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;13;23;85;11;94;17;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;20298;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658326;19502739;0;main_questionnaire;;mpath_package_study;1714235405;1714235408;1714236173;1714236192;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;17;12;18;18;90;15;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;21307;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658325;19504535;0;main_questionnaire;;mpath_package_study;1714242059;1714242060;1714242109;1714242122;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;16;15;86;14;87;21;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;22020;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658324;19506400;0;main_questionnaire;;mpath_package_study;1714246535;1714246538;1714246546;1714246562;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;17;22;79;18;90;20;3;"""Home""";;1;"""Alone""";;5;"""Exercising""";;22095;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658323;19509108;0;main_questionnaire;;mpath_package_study;1714252908;1714252909;1714253000;1714253014;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;13;13;91;15;91;17;3;"""Home""";;1;"""Alone""";;5;"""Exercising""";;22095;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658322;19509992;0;evening_questionnaire;;mpath_package_study;1714255800;1714255803;1714255816;1714255841;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;87;18;18;92;16;88;18;0;1;"""gaan eten""";1,5,6;"""Worked or studied"",""Did exercise"",""Rested""";;1; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658343;19511353;0;main_questionnaire;;mpath_package_study;1714292739;1714292742;1714292747;1714292772;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;15;14;79;14;84;39;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;22587;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658342;19512086;0;main_questionnaire;;mpath_package_study;1714296548;1714296550;1714297992;1714298020;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;14;14;81;13;78;15;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;22587;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658341;19513634;0;main_questionnaire;;mpath_package_study;1714302395;1714302396;1714302400;1714302413;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;16;12;84;12;80;5;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;22587;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658340;19514610;0;main_questionnaire;;mpath_package_study;1714306414;1714306415;1714306430;1714306468;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;14;14;83;29;68;21;5;"""oma""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;22861;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658339;19515565;0;main_questionnaire;;mpath_package_study;1714311380;1714311383;1714312024;1714312042;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;12;14;89;13;81;20;5;"""oma""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658337;19518374;0;main_questionnaire;;mpath_package_study;1714323064;1714323066;1714323251;1714323415;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;16;9;15;12;65;20;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;24205;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658336;19519717;0;main_questionnaire;;mpath_package_study;1714328726;1714328728;1714329326;1714329364;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;40;37;56;27;43;28;3;"""Home""";;1;"""Alone""";;8;"""Other""";;24520;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658335;19521707;0;main_questionnaire;;mpath_package_study;1714334287;1714334290;1714334296;1714334319;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;16;9;69;15;68;41;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;24748;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658333;19525084;0;evening_questionnaire;;mpath_package_study;1714342200;1714342202;1714342207;1714342264;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;78;18;9;83;20;86;15;1;1;"""verjaardag oma""";4,3,6,2;"""Socialized"",""Travelled"",""Rested"",""Engaged in a hobby""";;1;"""onvriendelijke persoon""" +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658354;19526977;0;main_questionnaire;;mpath_package_study;1714378066;1714378068;1714378075;1714378100;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;19;8;66;21;71;37;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;24904;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658353;19527844;0;main_questionnaire;;mpath_package_study;1714382627;1714382628;1714382634;1714382654;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;23;16;62;24;60;45;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;24904;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658352;19529035;0;main_questionnaire;;mpath_package_study;1714389613;1714389614;1714389636;1714389655;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;39;10;81;18;58;51;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;25109;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658351;19529681;0;main_questionnaire;;mpath_package_study;1714392819;1714392820;1714393208;1714393223;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;13;11;82;13;84;14;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;25150;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658350;19531140;0;main_questionnaire;;mpath_package_study;1714399849;1714399852;1714399857;1714399869;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;12;11;93;14;89;12;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;25860;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658349;19532195;0;main_questionnaire;;mpath_package_study;1714404593;1714404594;1714404599;1714404609;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;8;13;79;10;82;11;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;25948;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658348;19533831;0;main_questionnaire;;mpath_package_study;1714411013;1714411015;1714411120;1714411144;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;15;18;84;15;77;15;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;26109;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658347;19534910;0;main_questionnaire;;mpath_package_study;1714414506;1714414509;1714415934;1714415949;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;17;13;90;14;86;15;3;"""Home""";;2;"""With one person I know""";;5;"""Exercising""";;27054;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658345;19539900;0;main_questionnaire;;mpath_package_study;1714425007;1714425009;1714425012;1714425026;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;13;14;80;15;88;18;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;27790;1;;;;;;;;;;;;;;;; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658344;19540788;0;evening_questionnaire;;mpath_package_study;1714428600;1714428602;1714428615;1714428695;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;73;22;17;79;15;85;17;1;1;"""visit grandparents""";1,2,6,5,4;"""Worked or studied"",""Engaged in a hobby"",""Rested"",""Did exercise"",""Socialized""";;1;"""dad not happy""" +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;-1;19392974;0;"Consent and intake questionnaire";;;0;1713633367;1713633370;1713633454;0;7200;0;1;2;"""Female""";;"""23""";1;2;"""Disagree""";2;2;"""Disagree""";2;3;"""Slightly disagree""";3;1;"""Strongly disagree""";1;1;"""Strongly disagree""";1;1;1;"""Disagree strongly""";1;4;"""Agree a little""";4;2;"""Disagree a little""";2;4;"""Agree a little""";4;4;"""Agree a little""";4;2;"""Disagree a little""";2;3;"""Neither agree nor disagree""";3;2;"""Disagree a little""";2;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676286;19399918;0;main_questionnaire;;mpath_package_study;1713687739;1713687741;1713688014;1713688045;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;0;0;82;64;0;100;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;103194;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676288;19402043;0;main_questionnaire;;mpath_package_study;1713697011;1713697012;1713697524;1713697542;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;0;0;15;71;57;1;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;103295;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676289;19403323;0;main_questionnaire;;mpath_package_study;1713701521;1713701524;1713702055;1713702069;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;3;0;66;0;72;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;103336;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676290;19404609;0;main_questionnaire;;mpath_package_study;1713707930;1713707931;1713707940;1713707964;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;0;0;79;40;0;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;103558;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676291;19405991;0;main_questionnaire;;mpath_package_study;1713713761;1713713762;1713713771;1713713804;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;0;0;11;84;63;0;3;"""Home""";;1;"""Alone""";;8;"""Other""";;103663;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676292;19407063;0;main_questionnaire;;mpath_package_study;1713717675;1713717676;1713717728;1713717757;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;0;0;68;0;74;0;4;"""gym""";;2;"""With one person I know""";;5;"""Exercising""";;104556;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676293;19408663;0;main_questionnaire;;mpath_package_study;1713724079;1713724082;1713725827;1713725845;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;0;0;87;0;11;76;4;"""gym""";;3;"""With multiple people I know""";;5;"""Exercising""";;104671;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676294;19411216;0;main_questionnaire;;mpath_package_study;1713730288;1713730289;1713730735;1713730781;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;0;0;91;0;49;0;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;105155;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676295;19412949;0;main_questionnaire;;mpath_package_study;1713735253;1713735256;1713735268;1713735290;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;0;0;81;0;12;73;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;105206;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676296;19413473;0;evening_questionnaire;;mpath_package_study;1713737400;1713737404;1713737559;1713737611;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;74;0;0;60;38;62;21;1;1;"""went to the gym""";1,2,3,4,5,6;"""Worked or studied"",""Engaged in a hobby"",""Travelled"",""Socialized"",""Did exercise"",""Rested""";;1;"""missed the bus""" +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676307;19414870;0;main_questionnaire;;mpath_package_study;1713774014;1713774015;1713774636;1713774669;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;0;0;58;60;0;74;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;105557;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676306;19416103;0;main_questionnaire;;mpath_package_study;1713779789;1713779792;1713779804;1713779825;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;0;0;60;78;0;73;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;106193;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676304;19418160;0;main_questionnaire;;mpath_package_study;1713788362;1713788363;1713790108;1713790156;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;0;0;31;71;0;86;2;"""School""";;1;"""Alone""";;1;"""Working or studying""";;106784;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676302;19420734;0;main_questionnaire;;mpath_package_study;1713799768;1713799769;1713800003;1713800053;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;0;0;81;0;60;0;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;107543;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676301;19421915;0;main_questionnaire;;mpath_package_study;1713803868;1713803869;1713803913;1713803928;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;1;0;62;0;74;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;109282;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676300;19423699;0;main_questionnaire;;mpath_package_study;1713809169;1713809170;1713809182;1713809332;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;0;2;61;0;70;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676299;19427300;0;main_questionnaire;;mpath_package_study;1713816892;1713816893;1713817082;1713817112;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;0;0;96;0;20;72;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;109326;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676298;19429193;0;main_questionnaire;;mpath_package_study;1713822480;1713822482;1713822490;1713822512;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;0;0;82;0;49;91;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676297;19429557;0;evening_questionnaire;;mpath_package_study;1713823800;1713823801;1713823809;1713823882;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;73;0;0;64;71;60;81;0;1;"""met friends""";1,2,4,6;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Rested""";;1; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676318;19431202;0;main_questionnaire;;mpath_package_study;1713860296;1713860298;1713860572;1713860597;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;70;0;24;86;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;109491;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676317;19432444;0;main_questionnaire;;mpath_package_study;1713865602;1713865605;1713866204;1713866267;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;0;0;0;37;0;74;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;110296;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676316;19433547;0;main_questionnaire;;mpath_package_study;1713870172;1713870174;1713871177;1713871200;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;0;26;80;66;48;0;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;110435;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676315;19434594;0;main_questionnaire;;mpath_package_study;1713875654;1713875656;1713875665;1713875700;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;0;0;66;60;79;70;1;"""Work""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676314;19435373;0;main_questionnaire;;mpath_package_study;1713879167;1713879170;1713880875;1713880890;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;0;0;49;78;83;25;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;111755;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676313;19437417;0;main_questionnaire;;mpath_package_study;1713887388;1713887391;1713888372;1713888418;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;0;0;0;88;49;0;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;112180;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676311;19439890;0;main_questionnaire;;mpath_package_study;1713895531;1713895533;1713896769;1713896787;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;41;68;12;7;65;0;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;112360;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676310;19443122;0;main_questionnaire;;mpath_package_study;1713903974;1713903977;1713904531;1713904551;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;0;0;77;0;57;72;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;114440;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676308;19445121;0;evening_questionnaire;;mpath_package_study;1713910200;1713910201;1713910224;1713910330;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;77;56;0;0;60;74;55;0;1;"""did progress on my thesis""";1,3,4,6;"""Worked or studied"",""Travelled"",""Socialized"",""Rested""";;1; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676329;19446978;0;main_questionnaire;;mpath_package_study;1713946077;1713946079;1713947466;1713947514;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;0;0;68;62;0;86;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;114664;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676328;19448423;0;main_questionnaire;;mpath_package_study;1713952105;1713952106;1713952177;1713952204;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;0;0;32;72;42;66;3;"""Home""";;1;"""Alone""";;8;"""Other""";;114730;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676325;19452010;0;main_questionnaire;;mpath_package_study;1713967834;1713967836;1713968378;1713968396;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;0;0;75;100;65;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;114964;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676323;19454180;0;main_questionnaire;;mpath_package_study;1713976238;1713976240;1713976376;1713976400;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;0;0;0;77;0;42;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;115557;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676322;19456930;0;main_questionnaire;;mpath_package_study;1713983942;1713983946;1713984622;1713984648;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;0;0;69;69;57;73;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;117468;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676321;19458971;0;main_questionnaire;;mpath_package_study;1713987578;1713987579;1713988093;1713988108;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;0;0;62;0;66;0;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676320;19461288;0;main_questionnaire;;mpath_package_study;1713992688;1713992691;1713993610;1713993625;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;0;0;0;56;0;84;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;119990;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676319;19462269;0;evening_questionnaire;;mpath_package_study;1713996600;1713996603;1713996690;1713996762;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;68;12;54;16;80;0;73;1;0;;1,3,4,6;"""Worked or studied"",""Travelled"",""Socialized"",""Rested""";;1;"""I had a lot of work and struggled to reach my goals for the day """ +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676339;19465067;0;main_questionnaire;;mpath_package_study;1714036750;1714036752;1714037941;1714037980;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;0;0;65;66;30;60;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;120516;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676337;19467183;0;main_questionnaire;;mpath_package_study;1714047419;1714047422;1714047458;1714047481;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;74;72;0;86;0;78;3;"""Home""";;1;"""Alone""";;8;"""Other""";;122379;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676336;19468300;0;main_questionnaire;;mpath_package_study;1714052773;1714052777;1714052862;1714052905;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;0;0;78;0;35;0;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;123063;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676335;19469684;0;main_questionnaire;;mpath_package_study;1714057358;1714057360;1714059024;1714059038;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;0;0;36;78;60;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;123806;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676334;19471672;0;main_questionnaire;;mpath_package_study;1714065155;1714065158;1714065778;1714065819;0;7200;-9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;0;0;66;0;57;0;5;"""train station""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;124895;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676333;19472770;0;main_questionnaire;;mpath_package_study;1714068080;1714068084;1714068088;1714068150;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;0;0;59;0;68;31;6;"""train""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;125379;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676332;19475967;0;main_questionnaire;;mpath_package_study;1714075334;1714075337;1714076305;1714076334;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;0;0;50;0;56;66;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;126516;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676331;19477482;0;main_questionnaire;;mpath_package_study;1714079119;1714079121;1714079205;1714079269;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;66;0;0;66;49;73;5;"""train""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;127737;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676330;19478367;0;evening_questionnaire;;mpath_package_study;1714083000;1714083001;1714083044;1714083179;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;66;0;59;37;69;67;69;1;0;;1,3,4,6;"""Worked or studied"",""Travelled"",""Socialized"",""Rested""";;1;"""I was helping a participant find his way to entering the building, and the doors were locked so we couldn't go in""" +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676351;19480320;0;main_questionnaire;;mpath_package_study;1714119544;1714119545;1714120345;1714120377;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;0;0;48;65;44;100;3;"""Home""";;1;"""Alone""";;8;"""Other""";;129654;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676350;19481147;0;main_questionnaire;;mpath_package_study;1714122735;1714122737;1714124009;1714124039;0;7200;-2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;0;0;65;19;77;0;7;"""outside""";;1;"""Alone""";;3;"""Travelling""";;129730;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676349;19482148;0;main_questionnaire;;mpath_package_study;1714128199;1714128201;1714128407;1714128424;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;0;0;0;75;70;0;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;130560;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676348;19483297;0;main_questionnaire;;mpath_package_study;1714133774;1714133777;1714133905;1714133929;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;0;0;44;18;59;36;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;130854;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676347;19485113;0;main_questionnaire;;mpath_package_study;1714141535;1714141538;1714142369;1714142396;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;0;0;60;0;63;36;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;130932;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676346;19486005;0;main_questionnaire;;mpath_package_study;1714145242;1714145244;1714145649;1714145661;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;0;0;71;43;74;0;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;131621;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676344;19489736;0;main_questionnaire;;mpath_package_study;1714157342;1714157343;1714157454;1714157500;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;0;0;65;70;62;35;7;"""gym""";;1;"""Alone""";;5;"""Exercising""";;134695;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676343;19491299;0;main_questionnaire;;mpath_package_study;1714160351;1714160352;1714160642;1714160665;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;0;0;71;40;62;29;4;"""gym""";;2;"""With one person I know""";;5;"""Exercising""";;134755;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676342;19493547;0;main_questionnaire;;mpath_package_study;1714165579;1714165581;1714165713;1714165738;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;59;79;50;43;36;68;4;"""gym""";;2;"""With one person I know""";;5;"""Exercising""";;134831;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676341;19494534;0;evening_questionnaire;;mpath_package_study;1714169400;1714169403;1714170049;1714170089;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;15;63;76;0;77;81;34;1;0;;1,3,5,4,6;"""Worked or studied"",""Travelled"",""Did exercise"",""Socialized"",""Rested""";;1;"""had a lot of work""" +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676362;19495585;0;main_questionnaire;;mpath_package_study;1714204798;1714204800;1714205563;1714205609;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;38;0;29;59;0;75;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;136465;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676359;19499269;0;main_questionnaire;;mpath_package_study;1714220857;1714220858;1714221993;1714222019;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;55;17;5;69;1;88;7;"""library""";;2;"""With one person I know""";;1;"""Working or studying""";;137223;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676356;19503642;0;main_questionnaire;;mpath_package_study;1714238283;1714238286;1714238525;1714238572;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;60;0;69;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;139889;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676355;19504694;0;main_questionnaire;;mpath_package_study;1714242617;1714242619;1714242624;1714242663;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;36;63;48;68;15;80;7;"""supermarket""";;4;"""With one or more people I don't know""";;8;"""Other""";;141628;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676354;19506624;0;main_questionnaire;;mpath_package_study;1714247995;1714247998;1714248010;1714248032;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;0;0;32;64;24;92;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;143436;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676353;19509453;0;main_questionnaire;;mpath_package_study;1714253684;1714253685;1714253693;1714253747;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;0;0;72;32;0;74;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676372;19512284;0;main_questionnaire;;mpath_package_study;1714298245;1714298248;1714298718;1714298743;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;0;0;59;64;0;80;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;143679;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676371;19513081;0;main_questionnaire;;mpath_package_study;1714300493;1714300494;1714302022;1714302040;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;54;61;4;85;44;70;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;143732;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676370;19514774;0;main_questionnaire;;mpath_package_study;1714307562;1714307565;1714307946;1714307995;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;28;0;74;50;58;40;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;143815;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676369;19515714;0;main_questionnaire;;mpath_package_study;1714312256;1714312259;1714312603;1714318284;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;0;0;70;33;63;37;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;144050;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676368;19517443;0;main_questionnaire;;mpath_package_study;1714319769;1714319770;1714320156;1714320177;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;0;0;68;40;73;30;3;"""Home""";;1;"""Alone""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676367;19518137;0;main_questionnaire;;mpath_package_study;1714321923;1714321924;1714322357;1714322480;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;0;0;64;69;55;11;7;"""bus""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;144610;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676366;19519998;0;main_questionnaire;;mpath_package_study;1714330111;1714330114;1714330174;1714330230;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;0;0;88;57;41;59;4;"""bus""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;146398;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676365;19522406;0;main_questionnaire;;mpath_package_study;1714334585;1714334587;1714335098;1714335119;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;0;0;31;66;63;23;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;146874;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676364;19523970;0;main_questionnaire;;mpath_package_study;1714338249;1714338252;1714338662;1714338693;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;0;0;70;35;64;24;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;146904;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676363;19525082;0;evening_questionnaire;;mpath_package_study;1714342200;1714342202;1714342709;1714342836;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;61;58;59;70;59;8;69;0;1;"""coded a cool R function :)""";6,1,3,4,5;"""Rested"",""Worked or studied"",""Travelled"",""Socialized"",""Did exercise""";;1; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676383;19528016;0;main_questionnaire;;mpath_package_study;1714383707;1714383709;1714383719;1714383740;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;0;0;67;0;65;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;147295;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676382;19528880;0;main_questionnaire;;mpath_package_study;1714388538;1714388541;1714389510;1714389531;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;0;0;65;0;54;67;2;"""School""";;2;"""With one person I know""";;1;"""Working or studying""";;147809;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676379;19532629;0;main_questionnaire;;mpath_package_study;1714406357;1714406359;1714406373;1714406420;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;0;0;51;29;71;30;2;"""School""";;2;"""With one person I know""";;1;"""Working or studying""";;148928;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676378;19533319;0;main_questionnaire;;mpath_package_study;1714409483;1714409486;1714410643;1714410671;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;0;0;67;40;63;15;2;"""School""";;2;"""With one person I know""";;1;"""Working or studying""";;148987;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676377;19534838;0;main_questionnaire;;mpath_package_study;1714413897;1714413900;1714413909;1714413972;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;0;0;61;69;31;60;2;"""School""";;2;"""With one person I know""";;1;"""Working or studying""";;149034;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676376;19537744;0;main_questionnaire;;mpath_package_study;1714420199;1714420203;1714420753;1714420820;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;0;58;0;52;2;3;"""Home""";;1;"""Alone""";;8;"""Other""";;149950;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676374;19540786;0;evening_questionnaire;;mpath_package_study;1714428600;1714428602;1714428615;1714428864;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;60;65;35;57;58;46;40;1;0;;1,4,6;"""Worked or studied"",""Socialized"",""Rested""";;1;"""spent a lot of hours stuck while working on a project""" +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676394;19543099;0;main_questionnaire;;mpath_package_study;1714468130;1714468133;1714468249;1714468290;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;51;0;1;71;69;23;3;"""Home""";;1;"""Alone""";;8;"""Other""";;150586;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676393;19544004;0;main_questionnaire;;mpath_package_study;1714473644;1714473646;1714474756;1714474810;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;99;74;0;76;0;69;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;151222;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676392;19545071;0;main_questionnaire;;mpath_package_study;1714479488;1714479489;1714480616;1714480665;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;0;0;72;0;63;30;1;"""Work""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;151554;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676391;19546375;0;main_questionnaire;;mpath_package_study;1714485929;1714485931;1714485955;1714486000;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;44;45;57;0;60;37;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;152085;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676390;19547175;0;main_questionnaire;;mpath_package_study;1714489620;1714489623;1714489630;1714489648;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;0;0;64;0;57;14;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;152265;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676389;19548880;0;main_questionnaire;;mpath_package_study;1714497709;1714497713;1714497745;1714497764;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;6;85;0;68;0;44;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;152514;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676388;19549891;0;main_questionnaire;;mpath_package_study;1714500962;1714500965;1714500974;1714501035;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;14;57;72;70;3;77;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676387;19552064;0;main_questionnaire;;mpath_package_study;1714506301;1714506304;1714506310;1714506343;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;0;0;0;64;52;30;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676386;19554198;0;main_questionnaire;;mpath_package_study;1714511767;1714511768;1714511783;1714515010;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;22;8;66;35;41;60;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676385;19554915;0;evening_questionnaire;;mpath_package_study;1714515000;1714515003;1714515013;1714515075;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;55;68;70;19;69;65;15;1;0;;1,4,6;"""Worked or studied"",""Socialized"",""Rested""";;1;"""I got stuck with my code for a very long time""" +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;-1;19413800;0;"Consent and intake questionnaire";;;0;1713741081;1713741082;1713741210;0;7200;0;1;1;"""Male""";;"""34""";1;6;"""Agree""";6;6;"""Agree""";6;5;"""Slightly agree""";5;6;"""Agree""";6;5;"""Slightly agree""";5;1;2;"""Disagree a little""";2;5;"""Agree strongly""";5;2;"""Disagree a little""";2;2;"""Disagree a little""";2;4;"""Agree a little""";4;2;"""Disagree a little""";2;5;"""Agree strongly""";5;1;"""Disagree strongly""";1;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694519;19414859;0;main_questionnaire;;mpath_package_study;1713773868;1713773870;1713774080;1713774133;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;18;1;70;20;81;13;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;2879;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694520;19415902;0;main_questionnaire;;mpath_package_study;1713777982;1713777985;1713779747;1713779765;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;7;14;68;15;76;12;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;3011;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694521;19417293;0;main_questionnaire;;mpath_package_study;1713784185;1713784188;1713784460;1713784480;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;11;7;71;11;73;8;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;3123;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694522;19418505;0;main_questionnaire;;mpath_package_study;1713790359;1713790362;1713791044;1713791062;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;10;10;65;14;85;14;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;3123;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694523;19419749;0;main_questionnaire;;mpath_package_study;1713795277;1713795279;1713796564;1713796658;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;10;5;77;5;76;13;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;3190;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694526;19424455;0;main_questionnaire;;mpath_package_study;1713811491;1713811492;1713811764;1713811790;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;10;4;74;7;73;14;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;3472;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694527;19426389;0;main_questionnaire;;mpath_package_study;1713814996;1713814998;1713815862;1713816509;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;24;10;69;18;74;12;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;3691;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694529;19429561;0;evening_questionnaire;;mpath_package_study;1713823800;1713823801;1713823861;1713823886;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;74;16;3;71;16;79;12;0;0;;1,4;"""Worked or studied"",""Socialized""";;1; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694540;19431222;0;main_questionnaire;;mpath_package_study;1713860821;1713860823;1713861651;1713861700;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;5;4;76;17;68;22;2;"""School""";;1;"""Alone""";;8;"""Other""";;4067;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694539;19432510;0;main_questionnaire;;mpath_package_study;1713866226;1713866229;1713867819;1713867840;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;9;5;76;18;65;18;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;4175;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694538;19433334;0;main_questionnaire;;mpath_package_study;1713869675;1713869677;1713870359;1713870384;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;4;3;79;14;77;8;4;"""en route""";;1;"""Alone""";;5;"""Exercising""";;4313;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694535;19436932;0;main_questionnaire;;mpath_package_study;1713885262;1713885265;1713885682;1713885699;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;19;23;70;22;78;14;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;4341;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694533;19440156;0;main_questionnaire;;mpath_package_study;1713896695;1713896697;1713896754;1713896778;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;23;19;62;7;79;16;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;4732;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694532;19442981;0;main_questionnaire;;mpath_package_study;1713903467;1713903468;1713903494;1713903514;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;7;3;78;11;77;19;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;5268;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694531;19444180;0;main_questionnaire;;mpath_package_study;1713906150;1713906151;1713906180;1713906198;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;16;6;74;13;74;12;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;5352;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694530;19445125;0;evening_questionnaire;;mpath_package_study;1713910200;1713910201;1713911264;1713911300;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;73;13;3;78;6;82;13;0;0;;1,5;"""Worked or studied"",""Did exercise""";;1; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694550;19448329;0;main_questionnaire;;mpath_package_study;1713951155;1713951158;1713951255;1713951277;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;13;5;87;7;81;12;4;"""en route""";;3;"""With multiple people I know""";;3;"""Travelling""";;5890;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694549;19449190;0;main_questionnaire;;mpath_package_study;1713955569;1713955571;1713956504;1713956592;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;12;6;80;7;81;8;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;5890;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694548;19450635;0;main_questionnaire;;mpath_package_study;1713962260;1713962263;1713963272;1713963286;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;9;4;89;7;86;9;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;5890;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694547;19452239;0;main_questionnaire;;mpath_package_study;1713968680;1713968681;1713968751;1713968775;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;8;4;84;10;80;22;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;5890;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694546;19453091;0;main_questionnaire;;mpath_package_study;1713971898;1713971899;1713972766;1713972784;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;10;2;81;13;80;20;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;5890;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694545;19454530;0;main_questionnaire;;mpath_package_study;1713977491;1713977492;1713978166;1713978273;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;9;2;82;8;79;12;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;5890;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694544;19456260;0;main_questionnaire;;mpath_package_study;1713982465;1713982466;1713982722;1713982744;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;18;3;78;16;73;22;4;"""en route""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;5890;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694543;19459654;0;main_questionnaire;;mpath_package_study;1713988804;1713988808;1713989448;1713989490;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;16;5;71;6;78;29;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;5984;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694541;19462270;0;evening_questionnaire;;mpath_package_study;1713996600;1713996603;1713999699;1713999732;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;88;19;5;77;13;87;12;0;0;;1,5;"""Worked or studied"",""Did exercise""";;1; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694562;19464088;0;main_questionnaire;;mpath_package_study;1714032762;1714032764;1714032773;1714032795;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;13;5;81;16;77;24;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;105;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694561;19464872;0;main_questionnaire;;mpath_package_study;1714036181;1714036183;1714037576;1714037606;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;11;4;80;12;65;29;4;"""en route""";;3;"""With multiple people I know""";;3;"""Travelling""";;347;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694560;19465843;0;main_questionnaire;;mpath_package_study;1714041368;1714041370;1714042323;1714042339;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;11;5;76;13;73;25;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;347;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694559;19467103;0;main_questionnaire;;mpath_package_study;1714046954;1714046955;1714047073;1714047103;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;5;3;72;14;70;29;4;"""en route""";;1;"""Alone""";;3;"""Travelling""";;347;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694558;19468262;0;main_questionnaire;;mpath_package_study;1714052568;1714052571;1714053977;1714053994;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;10;2;87;11;72;30;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;347;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694557;19470342;0;main_questionnaire;;mpath_package_study;1714060752;1714060754;1714061678;1714061713;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;17;5;80;12;63;24;1;"""Work""";;1;"""Alone""";;3;"""Travelling""";;347;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694556;19471809;0;main_questionnaire;;mpath_package_study;1714065974;1714065976;1714066092;1714066110;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;13;8;73;11;68;23;3;"""Home""";;1;"""Alone""";;8;"""Other""";;347;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694555;19473719;0;main_questionnaire;;mpath_package_study;1714071183;1714071185;1714071901;1714071925;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;18;7;68;20;61;43;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;347;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694554;19475138;0;main_questionnaire;;mpath_package_study;1714073913;1714073915;1714075310;1714075347;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;21;10;71;14;66;34;3;"""Home""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;381;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694553;19477446;0;main_questionnaire;;mpath_package_study;1714078943;1714078945;1714079481;1714079515;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;11;5;70;27;72;29;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;381;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694552;19478368;0;evening_questionnaire;;mpath_package_study;1714083000;1714083001;1714086261;1714086282;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;74;17;4;71;22;72;32;0;0;;1,5;"""Worked or studied"",""Did exercise""";;1; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694573;19480325;0;main_questionnaire;;mpath_package_study;1714119776;1714119777;1714120732;1714120750;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;27;14;68;19;62;39;3;"""Home""";;1;"""Alone""";;8;"""Other""";;879;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694572;19481405;0;main_questionnaire;;mpath_package_study;1714123981;1714123984;1714124193;1714124244;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;20;4;77;12;68;35;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;879;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694571;19482669;0;main_questionnaire;;mpath_package_study;1714130830;1714130831;1714131991;1714132011;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;26;8;72;15;63;39;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;1082;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694570;19483366;0;main_questionnaire;;mpath_package_study;1714134401;1714134403;1714135070;1714135086;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;14;7;72;7;64;29;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;1101;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694569;19484329;0;main_questionnaire;;mpath_package_study;1714138990;1714138992;1714139518;1714139534;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;12;4;70;12;61;35;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;1101;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694568;19486348;0;main_questionnaire;;mpath_package_study;1714146609;1714146610;1714147018;1714147043;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;24;11;70;16;64;32;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;1257;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694567;19487664;0;main_questionnaire;;mpath_package_study;1714151274;1714151275;1714151874;1714151906;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;28;6;79;13;64;39;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;1342;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694566;19489107;0;main_questionnaire;;mpath_package_study;1714156077;1714156080;1714157082;1714157137;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;22;13;72;11;63;30;4;"""en route""";;1;"""Alone""";;5;"""Exercising""";;1356;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694564;19494274;0;main_questionnaire;;mpath_package_study;1714168578;1714168580;1714169020;1714169168;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;14;4;91;8;83;15;3;"""Home""";;1;"""Alone""";;8;"""Other""";;1356;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694563;19494537;0;evening_questionnaire;;mpath_package_study;1714169400;1714169403;1714170130;1714170195;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;74;28;6;73;10;68;30;0;0;;1,5;"""Worked or studied"",""Did exercise""";;1; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694584;19495682;0;main_questionnaire;;mpath_package_study;1714204913;1714204914;1714205171;1714205185;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;33;19;66;24;68;35;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;1356;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694582;19498381;0;main_questionnaire;;mpath_package_study;1714216902;1714216904;1714218396;1714218429;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;11;2;77;8;71;12;5;"""theater """;;4;"""With one or more people I don't know""";;8;"""Other""";;1549;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694580;19500765;0;main_questionnaire;;mpath_package_study;1714227866;1714227869;1714228411;1714228443;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;12;3;87;4;87;11;5;"""theater """;;3;"""With multiple people I know""";;4;"""Socializing""";;1549;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694578;19503139;0;main_questionnaire;;mpath_package_study;1714236670;1714236673;1714236840;1714236870;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;18;4;73;6;72;22;4;"""en route""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;1549;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694576;19506491;0;main_questionnaire;;mpath_package_study;1714246960;1714246961;1714247058;1714247080;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;11;10;71;10;70;29;4;"""en route""";;2;"""With one person I know""";;3;"""Travelling""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694592;19514696;0;main_questionnaire;;mpath_package_study;1714307062;1714307065;1714307082;1714307119;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;13;6;82;10;40;75;4;"""en route""";;1;"""Alone""";;3;"""Travelling""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694590;19517391;0;main_questionnaire;;mpath_package_study;1714319478;1714319481;1714319866;1714319885;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;12;5;79;6;54;45;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694588;19520107;0;main_questionnaire;;mpath_package_study;1714330724;1714330725;1714330912;1714330946;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;9;4;80;9;52;48;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694587;19521578;0;main_questionnaire;;mpath_package_study;1714333478;1714333480;1714333495;1714333532;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;12;5;70;14;37;61;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694586;19524547;0;main_questionnaire;;mpath_package_study;1714340265;1714340266;1714340340;1714340359;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;14;6;73;17;54;48;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694585;19525085;0;evening_questionnaire;;mpath_package_study;1714342200;1714342202;1714342445;1714342484;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;79;11;5;74;9;34;58;0;0;;4,6;"""Socialized"",""Rested""";;1; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694606;19526676;0;main_questionnaire;;mpath_package_study;1714376943;1714376944;1714377151;1714377181;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;8;6;67;12;62;34;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694605;19527668;0;main_questionnaire;;mpath_package_study;1714381651;1714381654;1714381701;1714381743;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;8;3;83;11;79;13;4;"""en route""";;1;"""Alone""";;3;"""Travelling""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694604;19529100;0;main_questionnaire;;mpath_package_study;1714390148;1714390150;1714390254;1714390391;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;6;4;77;12;76;11;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694602;19530559;0;main_questionnaire;;mpath_package_study;1714397601;1714397602;1714398762;1714398826;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;7;4;79;18;76;14;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694601;19532180;0;main_questionnaire;;mpath_package_study;1714404367;1714404370;1714404959;1714405170;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;11;3;81;16;72;17;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694600;19533902;0;main_questionnaire;;mpath_package_study;1714411576;1714411579;1714411893;1714411913;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;15;7;79;15;77;23;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694599;19535930;0;main_questionnaire;;mpath_package_study;1714417180;1714417183;1714417765;1714417804;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;23;13;68;15;72;23;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694598;19538608;0;main_questionnaire;;mpath_package_study;1714422363;1714422366;1714422591;1714422612;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;18;7;72;25;68;32;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694597;19540358;0;main_questionnaire;;mpath_package_study;1714426362;1714426365;1714426464;1714426487;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;31;6;69;21;69;40;4;"""en route""";;1;"""Alone""";;3;"""Travelling""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694596;19540789;0;evening_questionnaire;;mpath_package_study;1714428600;1714428602;1714428661;1714428691;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;78;13;2;72;10;78;21;0;0;;1;"""Worked or studied""";;1; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694617;19542511;0;main_questionnaire;;mpath_package_study;1714465105;1714465106;1714465213;1714465233;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;30;14;61;23;45;61;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694611;19548495;0;main_questionnaire;;mpath_package_study;1714496346;1714496348;1714496428;1714496460;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;12;7;75;22;73;11;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694610;19549889;0;main_questionnaire;;mpath_package_study;1714500936;1714500937;1714501009;1714501047;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;10;4;75;13;77;15;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694609;19552027;0;main_questionnaire;;mpath_package_study;1714506097;1714506098;1714506165;1714506190;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;12;10;66;17;70;14;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694608;19554598;0;main_questionnaire;;mpath_package_study;1714513649;1714513652;1714514768;1714514798;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;17;8;78;16;78;18;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694607;19554916;0;evening_questionnaire;;mpath_package_study;1714515000;1714515003;1714515538;1714515571;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;75;12;13;71;8;76;25;1;0;;1,4;"""Worked or studied"",""Socialized""";;1;"""bad sleep""" +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694627;19557060;0;main_questionnaire;;mpath_package_study;1714554547;1714554549;1714555330;1714555375;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;15;7;70;11;76;11;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694626;19557986;0;main_questionnaire;;mpath_package_study;1714560210;1714560212;1714561791;1714561847;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;12;5;89;11;82;18;6;"""playground """;;2;"""With one person I know""";;4;"""Socializing""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694625;19559091;0;main_questionnaire;;mpath_package_study;1714566734;1714566735;1714567128;1714567160;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;11;3;95;8;84;13;5;"""playground """;;3;"""With multiple people I know""";;4;"""Socializing""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694624;19559943;0;main_questionnaire;;mpath_package_study;1714571966;1714571967;1714572016;1714572039;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;11;7;95;9;87;8;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694623;19561345;0;main_questionnaire;;mpath_package_study;1714577665;1714577666;1714578476;1714578501;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;8;5;86;7;82;13;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694622;19562150;0;main_questionnaire;;mpath_package_study;1714581825;1714581828;1714582349;1714582371;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;11;6;65;11;78;31;4;"""en route""";;1;"""Alone""";;5;"""Exercising""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694621;19564271;0;main_questionnaire;;mpath_package_study;1714588806;1714588808;1714588820;1714588856;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;12;6;81;19;83;15;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694620;19565944;0;main_questionnaire;;mpath_package_study;1714591845;1714591847;1714592221;1714592260;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;11;11;84;13;83;13;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694619;19568499;0;main_questionnaire;;mpath_package_study;1714599324;1714599325;1714599344;1714599367;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;17;7;89;9;86;16;3;"""Home""";;1;"""Alone""";;8;"""Other""";;1587;1;;;;;;;;;;;;;;;; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694618;19568851;0;evening_questionnaire;;mpath_package_study;1714601400;1714601401;1714602838;1714602865;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;82;5;2;88;9;80;11;0;0;;1,4,5,6;"""Worked or studied"",""Socialized"",""Did exercise"",""Rested""";;1; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;-1;19599414;0;"Consent and intake questionnaire";;;0;1714825592;1714825594;1714825685;0;7200;0;1;2;"""Female""";;"""25""";1;4;"""Neither agree nor disagree""";4;3;"""Slightly disagree""";3;3;"""Slightly disagree""";3;4;"""Neither agree nor disagree""";4;2;"""Disagree""";2;1;3;"""Neither agree nor disagree""";3;3;"""Neither agree nor disagree""";3;4;"""Agree a little""";4;5;"""Agree strongly""";5;3;"""Neither agree nor disagree""";3;4;"""Agree a little""";4;4;"""Agree a little""";4;4;"""Agree a little""";4;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921675;19609389;0;main_questionnaire;;mpath_package_study;1714896034;1714896035;1714896833;1714896931;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;86;29;29;57;21;81;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;33455;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921676;19610043;0;main_questionnaire;;mpath_package_study;1714900877;1714900878;1714901000;1714901035;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;71;21;50;63;48;62;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;33397;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921678;19612030;0;main_questionnaire;;mpath_package_study;1714911578;1714911580;1714913253;1714914963;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;49;59;20;69;57;48;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;33986;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921679;19612866;0;main_questionnaire;;mpath_package_study;1714917323;1714917325;1714918572;1714918615;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;58;67;13;82;53;60;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;33986;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921680;19614023;0;main_questionnaire;;mpath_package_study;1714923600;1714923602;1714923906;1714923931;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;50;27;71;40;75;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;34818;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921681;19615181;0;main_questionnaire;;mpath_package_study;1714929224;1714929227;1714930101;1714930128;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;36;45;65;60;50;50;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;34596;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921682;19616216;0;main_questionnaire;;mpath_package_study;1714935564;1714935566;1714935613;1714935636;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;32;11;64;54;56;46;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;30595;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921683;19618214;0;main_questionnaire;;mpath_package_study;1714940754;1714940755;1714941497;1714941521;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;52;4;59;48;20;80;3;"""Home""";;1;"""Alone""";;8;"""Other""";;29480;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921684;19619736;0;main_questionnaire;;mpath_package_study;1714945399;1714945402;1714945605;1714945626;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;41;0;67;38;42;82;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;29480;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921696;19621585;0;main_questionnaire;;mpath_package_study;1714983250;1714983252;1714984481;1714984506;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;44;29;37;71;25;76;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;28452;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921694;19623294;0;main_questionnaire;;mpath_package_study;1714994074;1714994077;1714994516;1714994535;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;38;48;44;67;51;50;2;"""School""";;2;"""With one person I know""";;1;"""Working or studying""";;29749;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921693;19624003;0;main_questionnaire;;mpath_package_study;1714998722;1714998723;1714998840;1714998862;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;47;55;30;64;43;60;2;"""School""";;2;"""With one person I know""";;1;"""Working or studying""";;29744;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921692;19624569;0;main_questionnaire;;mpath_package_study;1715002339;1715002341;1715002530;1715002547;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;42;37;59;61;59;63;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;29739;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921691;19625797;0;main_questionnaire;;mpath_package_study;1715009105;1715009106;1715009123;1715009152;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;37;30;61;43;52;53;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;30374;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921690;19626569;0;main_questionnaire;;mpath_package_study;1715013558;1715013559;1715013682;1715013701;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;40;26;68;45;55;49;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;30880;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921688;19630782;0;main_questionnaire;;mpath_package_study;1715026219;1715026220;1715026914;1715026940;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;23;51;58;32;63;46;4;"""gym""";;3;"""With multiple people I know""";;5;"""Exercising""";;32823;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921687;19632307;0;main_questionnaire;;mpath_package_study;1715032078;1715032080;1715032939;1715032962;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;22;0;78;54;63;40;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;34670;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921707;19634028;0;main_questionnaire;;mpath_package_study;1715069873;1715069875;1715070180;1715070206;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;37;9;41;82;23;78;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;29917;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921706;19634530;0;main_questionnaire;;mpath_package_study;1715072431;1715072434;1715073985;1715074011;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;29;7;30;82;52;65;2;"""School""";;1;"""Alone""";;1;"""Working or studying""";;30308;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921705;19635271;0;main_questionnaire;;mpath_package_study;1715078106;1715078109;1715078243;1715078279;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;38;3;51;55;53;56;2;"""School""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;28724;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921704;19636487;0;main_questionnaire;;mpath_package_study;1715086573;1715086575;1715086582;1715086612;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;28;19;55;54;64;37;5;"""park""";;1;"""Alone""";;6;"""Eating or drinking""";;29021;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921700;19640367;0;main_questionnaire;;mpath_package_study;1715105540;1715105543;1715106480;1715106511;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;46;0;87;28;67;52;5;"""park""";;1;"""Alone""";;3;"""Travelling""";;31079;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921699;19642048;0;main_questionnaire;;mpath_package_study;1715110513;1715110516;1715111308;1715111325;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;31;0;79;45;63;49;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;31238;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921698;19644347;0;main_questionnaire;;mpath_package_study;1715118023;1715118026;1715118156;1715118173;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;24;6;80;43;58;61;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;31254;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921697;19644651;0;evening_questionnaire;;mpath_package_study;1715119800;1715119802;1715120306;1715120373;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;65;24;14;36;67;59;39;0;1;"""I met a friend for coffee""";1,2,4,6;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Rested""";;1; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921718;19646397;0;main_questionnaire;;mpath_package_study;1715156647;1715156650;1715156654;1715156677;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;52;0;50;52;38;71;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;31267;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921716;19647583;0;main_questionnaire;;mpath_package_study;1715164350;1715164351;1715164355;1715164374;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;43;1;43;54;70;27;2;"""School""";;1;"""Alone""";;1;"""Working or studying""";;31754;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921715;19648812;0;main_questionnaire;;mpath_package_study;1715172575;1715172576;1715173602;1715174008;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;22;5;70;34;50;36;6;"""cafe""";;3;"""With multiple people I know""";;4;"""Socializing""";;32315;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921714;19649706;0;main_questionnaire;;mpath_package_study;1715177351;1715177354;1715177383;1715181377;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;29;0;64;44;75;36;2;"""School""";;1;"""Alone""";;1;"""Working or studying""";;31327;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921709;19657020;0;main_questionnaire;;mpath_package_study;1715203394;1715203397;1715204777;1715204805;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;23;0;82;47;78;47;5;"""gym""";;2;"""With one person I know""";;5;"""Exercising""";;32590;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921708;19657603;0;evening_questionnaire;;mpath_package_study;1715206200;1715206202;1715206207;1715206265;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;71;20;12;56;42;77;41;0;1;"""bumped into a friend I hadn\u2019t seen in a long time""";1,2,5,4,6;"""Worked or studied"",""Engaged in a hobby"",""Did exercise"",""Socialized"",""Rested""";;1; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921728;19659790;0;main_questionnaire;;mpath_package_study;1715245485;1715245488;1715246421;1715246449;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;49;0;65;58;57;43;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;31151;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921727;19660825;0;main_questionnaire;;mpath_package_study;1715252693;1715252695;1715253419;1715253443;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;15;39;29;65;57;40;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;31127;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921726;19661490;0;main_questionnaire;;mpath_package_study;1715256888;1715256889;1715256946;1715256969;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;30;41;18;76;52;49;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;31123;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921725;19662255;0;main_questionnaire;;mpath_package_study;1715262015;1715262017;1715263395;1715263767;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;28;0;41;71;60;33;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;31121;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921724;19663536;0;main_questionnaire;;mpath_package_study;1715268612;1715268617;1715270396;1715270416;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;52;28;41;84;34;74;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;31120;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921723;19664440;0;main_questionnaire;;mpath_package_study;1715273389;1715273392;1715274201;1715274228;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;39;35;40;64;49;49;7;"""supermarket""";;1;"""Alone""";;8;"""Other""";;32026;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921722;19666523;0;main_questionnaire;;mpath_package_study;1715280752;1715280754;1715282226;1715282246;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;7;33;72;47;66;49;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;33333;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921720;19669976;0;main_questionnaire;;mpath_package_study;1715290533;1715290535;1715290545;1715290568;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;20;3;77;46;68;52;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;37678;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921719;19670306;0;evening_questionnaire;;mpath_package_study;1715292600;1715293302;1715293312;1715293361;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;62;30;42;55;63;66;53;1;1;"""spontaneous dinner with a friend""";1,4,6,5;"""Worked or studied"",""Socialized"",""Rested"",""Did exercise""";;1;"""got feedback for my thesis""" +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921738;19673062;0;main_questionnaire;;mpath_package_study;1715337175;1715337176;1715337180;1715337199;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;8;9;50;67;66;44;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;34496;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921736;19675325;0;main_questionnaire;;mpath_package_study;1715351122;1715351123;1715351131;1715351153;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;31;25;31;78;35;72;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;34877;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921735;19675783;0;main_questionnaire;;mpath_package_study;1715353576;1715353579;1715353847;1715353870;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;42;33;37;79;11;84;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;34877;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921734;19676750;0;main_questionnaire;;mpath_package_study;1715359146;1715359149;1715360087;1715360110;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;33;23;42;63;17;87;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;34877;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921733;19678749;0;main_questionnaire;;mpath_package_study;1715366559;1715366561;1715366818;1715366859;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;39;0;75;50;63;45;7;"""park""";;1;"""Alone""";;6;"""Eating or drinking""";;35679;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921730;19682687;0;evening_questionnaire;;mpath_package_study;1715379000;1715379001;1715381561;1715381611;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;53;36;30;49;85;58;74;0;1;"""saw friends""";1,4,6;"""Worked or studied"",""Socialized"",""Rested""";;1; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921750;19684326;0;main_questionnaire;;mpath_package_study;1715418040;1715418044;1715419391;1715419419;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;19;9;86;25;48;44;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;36002;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921749;19685515;0;main_questionnaire;;mpath_package_study;1715425353;1715425354;1715425361;1715425382;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;26;50;27;81;50;47;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;36002;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921747;19687113;0;main_questionnaire;;mpath_package_study;1715435922;1715435923;1715436026;1715436041;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;5;2;72;44;81;27;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;38225;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921746;19688095;0;main_questionnaire;;mpath_package_study;1715441439;1715441440;1715441450;1715441472;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;66;24;36;66;62;43;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;38225;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921745;19688981;0;main_questionnaire;;mpath_package_study;1715446292;1715446294;1715446339;1715446359;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;25;11;42;79;56;30;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;38225;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921744;19689977;0;main_questionnaire;;mpath_package_study;1715451190;1715451193;1715451365;1715451385;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;33;23;40;67;77;42;5;"""park""";;1;"""Alone""";;5;"""Exercising""";;38294;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921742;19693996;0;main_questionnaire;;mpath_package_study;1715463794;1715463795;1715463817;1715463833;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;35;5;69;38;52;44;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;40511;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921741;19694424;0;evening_questionnaire;;mpath_package_study;1715465400;1715465402;1715466163;1715466207;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;55;36;16;31;82;71;46;0;1;"""cycled to a new park""";1,5,4,6;"""Worked or studied"",""Did exercise"",""Socialized"",""Rested""";;1; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921762;19695781;0;main_questionnaire;;mpath_package_study;1715501203;1715501205;1715501457;1715501482;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;46;10;72;40;75;35;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;40501;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921759;19698134;0;main_questionnaire;;mpath_package_study;1715517213;1715517216;1715518113;1715518189;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;12;0;84;28;76;17;7;"""cafe""";;2;"""With one person I know""";;4;"""Socializing""";;39743;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921758;19699025;0;main_questionnaire;;mpath_package_study;1715523444;1715523446;1715523600;1715523622;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;17;0;89;38;88;11;4;"""cafe""";;2;"""With one person I know""";;4;"""Socializing""";;38114;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921757;19699968;0;main_questionnaire;;mpath_package_study;1715529559;1715529560;1715529570;1715529589;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;8;0;86;35;81;13;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;37057;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921756;19700496;0;main_questionnaire;;mpath_package_study;1715531738;1715531739;1715531751;1715531791;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;0;0;89;24;90;16;3;"""Home""";;1;"""Alone""";;4;"""Socializing""";;36797;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921754;19703129;0;main_questionnaire;;mpath_package_study;1715543212;1715543213;1715544685;1715544703;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;2;0;76;49;78;28;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921753;19705225;0;main_questionnaire;;mpath_package_study;1715549314;1715549315;1715551095;1715551115;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;6;0;47;65;63;41;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921772;19708156;0;main_questionnaire;;mpath_package_study;1715594369;1715594372;1715594376;1715594396;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;33;22;39;75;69;37;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921771;19708453;0;main_questionnaire;;mpath_package_study;1715596355;1715596358;1715596929;1715597862;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;9;11;33;78;67;53;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921770;19709490;0;main_questionnaire;;mpath_package_study;1715602554;1715602555;1715604336;1715604358;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;16;0;43;66;80;16;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921769;19710541;0;main_questionnaire;;mpath_package_study;1715609951;1715609953;1715610267;1715610290;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;36;10;25;83;71;33;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921768;19711126;0;main_questionnaire;;mpath_package_study;1715613802;1715613803;1715613808;1715613831;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;43;29;25;85;54;41;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921767;19711908;0;main_questionnaire;;mpath_package_study;1715618390;1715618393;1715619609;1715619630;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;39;31;54;64;79;35;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921763;19718210;0;evening_questionnaire;;mpath_package_study;1715638200;1715638201;1715638213;1715638252;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;50;20;18;30;86;71;38;0;1;"""submitted my thesis """;1,6;"""Worked or studied"",""Rested""";;1; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921783;19720418;0;main_questionnaire;;mpath_package_study;1715679422;1715679424;1715679434;1715679479;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;11;6;81;7;82;18;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921780;19722500;0;main_questionnaire;;mpath_package_study;1715694374;1715694375;1715694383;1715694425;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;3;0;94;13;85;16;4;"""cafe""";;3;"""With multiple people I know""";;4;"""Socializing""";;1823;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921779;19723616;0;main_questionnaire;;mpath_package_study;1715701007;1715701009;1715701665;1715701689;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;5;0;92;0;76;23;4;"""cafe""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;3431;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921778;19724710;0;main_questionnaire;;mpath_package_study;1715707309;1715707311;1715708864;1715708910;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;70;60;46;38;67;39;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;5010;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921776;19727405;0;main_questionnaire;;mpath_package_study;1715716153;1715716154;1715717479;1715717497;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;69;61;73;24;33;63;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;5010;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921775;19729397;0;main_questionnaire;;mpath_package_study;1715721956;1715721957;1715721963;1715721981;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;33;73;7;35;73;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;5010;1;;;;;;;;;;;;;;;; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921774;19729971;0;evening_questionnaire;;mpath_package_study;1715724600;1715724601;1715724609;1715724651;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;68;33;31;96;22;97;14;0;1;"""enjoyed time in the sun""";4,6;"""Socialized"",""Rested""";;1; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;-1;19662018;0;"Consent and intake questionnaire";;;0;1715260326;1715260327;1715260455;0;7200;0;1;2;"""Female""";;"""24""";1;6;"""Agree""";6;6;"""Agree""";6;7;"""Strongly agree""";7;7;"""Strongly agree""";7;3;"""Slightly disagree""";3;1;2;"""Disagree a little""";2;2;"""Disagree a little""";2;5;"""Agree strongly""";5;5;"""Agree strongly""";5;2;"""Disagree a little""";2;4;"""Agree a little""";4;3;"""Neither agree nor disagree""";3;4;"""Agree a little""";4;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001145;19671993;0;main_questionnaire;;mpath_package_study;1715329800;1715329803;1715330592;1715330657;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;70;87;29;76;22;50;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;124;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001146;19672534;0;main_questionnaire;;mpath_package_study;1715333430;1715333432;1715333438;1715333468;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;34;54;32;43;71;29;3;"""Home""";;1;"""Alone""";;8;"""Other""";;178;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001147;19673178;0;main_questionnaire;;mpath_package_study;1715337978;1715337980;1715337987;1715338014;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;27;21;30;80;66;18;2;"""School""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;2070;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001148;19674099;0;main_questionnaire;;mpath_package_study;1715343362;1715343365;1715343375;1715343399;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;36;0;24;78;39;19;2;"""School""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;2029;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001149;19675340;0;main_questionnaire;;mpath_package_study;1715351250;1715351251;1715351261;1715351299;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;33;19;65;60;16;65;2;"""School""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;2776;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001150;19676158;0;main_questionnaire;;mpath_package_study;1715355921;1715355922;1715355929;1715355953;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;16;0;74;30;94;16;2;"""School""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;2826;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001151;19676953;0;main_questionnaire;;mpath_package_study;1715360294;1715360296;1715362038;1715362068;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;52;87;14;81;18;80;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;4775;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001153;19680784;0;main_questionnaire;;mpath_package_study;1715372243;1715372247;1715372254;1715372281;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;44;83;27;54;71;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;4938;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001155;19682688;0;evening_questionnaire;;mpath_package_study;1715379000;1715379001;1715387146;1715387222;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;50;63;79;57;67;50;80;1;1;"""finished a big assignment """;1,6;"""Worked or studied"",""Rested""";;1;"""argument with my partner """ +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001160;19688977;0;main_questionnaire;;mpath_package_study;1715446275;1715446279;1715446531;1715446564;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;22;7;84;3;10;91;3;"""Home""";;3;"""With multiple people I know""";;4;"""Socializing""";;4776;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001159;19690168;0;main_questionnaire;;mpath_package_study;1715452422;1715452425;1715452463;1715452505;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;11;17;85;7;82;32;4;"""Car""";;3;"""With multiple people I know""";;8;"""Other""";;4817;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001158;19691432;0;main_questionnaire;;mpath_package_study;1715456298;1715456301;1715456859;1715456888;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;5;4;92;9;90;11;5;"""restaurant """;;3;"""With multiple people I know""";;6;"""Eating or drinking""";;5019;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001157;19694024;0;main_questionnaire;;mpath_package_study;1715464115;1715464118;1715464131;1715464222;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;16;4;89;8;68;70;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;5334;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001156;19694425;0;evening_questionnaire;;mpath_package_study;1715465400;1715465402;1715465412;1715465450;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;91;9;0;68;20;68;92;0;1;"""mom\u2019s birthday """;4,6,3;"""Socialized"",""Rested"",""Travelled""";;1; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001177;19695641;0;main_questionnaire;;mpath_package_study;1715499922;1715499924;1715499930;1715499958;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;13;0;81;21;48;61;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001176;19696426;0;main_questionnaire;;mpath_package_study;1715507060;1715507061;1715508591;1715508612;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;12;0;57;31;72;25;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;145;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001175;19697114;0;main_questionnaire;;mpath_package_study;1715511357;1715511358;1715511366;1715511386;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;22;0;41;59;42;27;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;250;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001174;19698240;0;main_questionnaire;;mpath_package_study;1715518343;1715518346;1715518907;1715518928;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;55;12;55;71;52;22;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;250;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001173;19698927;0;main_questionnaire;;mpath_package_study;1715522513;1715522515;1715523439;1715523460;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;32;0;38;59;51;24;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;250;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001172;19699946;0;main_questionnaire;;mpath_package_study;1715529401;1715529404;1715529517;1715529535;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;20;0;47;17;60;25;3;"""Home""";;1;"""Alone""";;8;"""Other""";;174;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001170;19701819;0;main_questionnaire;;mpath_package_study;1715538848;1715538849;1715539080;1715539104;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;21;4;33;6;45;14;6;"""wedding""";;3;"""With multiple people I know""";;4;"""Socializing""";;650;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001188;19707270;0;main_questionnaire;;mpath_package_study;1715585948;1715585951;1715585981;1715586017;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;33;0;40;9;16;90;3;"""Home""";;1;"""Alone""";;8;"""Other""";;967;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001187;19707818;0;main_questionnaire;;mpath_package_study;1715590855;1715590857;1715590860;1715590879;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;34;0;35;35;27;88;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;758;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001186;19708896;0;main_questionnaire;;mpath_package_study;1715599007;1715599008;1715599208;1715599229;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;22;0;35;64;39;70;3;"""Home""";;1;"""Alone""";;8;"""Other""";;1674;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001185;19709604;0;main_questionnaire;;mpath_package_study;1715603689;1715603690;1715603953;1715603975;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;45;0;37;35;52;77;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;1451;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001184;19710434;0;main_questionnaire;;mpath_package_study;1715609004;1715609008;1715609078;1715609100;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;19;0;44;39;67;27;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;1476;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001182;19712449;0;main_questionnaire;;mpath_package_study;1715621393;1715621397;1715621401;1715621450;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;12;5;39;32;41;84;3;"""Home""";;1;"""Alone""";;8;"""Other""";;2592;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001181;19713400;0;main_questionnaire;;mpath_package_study;1715624938;1715624942;1715625566;1715625586;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;42;0;82;31;16;81;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;2601;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001180;19716457;0;main_questionnaire;;mpath_package_study;1715631877;1715631879;1715631893;1715631924;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;22;10;34;27;15;72;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;0;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001178;19718211;0;evening_questionnaire;;mpath_package_study;1715638200;1715638201;1715638205;1715638249;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;78;25;18;50;34;57;67;1;1;"""got really good feedback """;1,4,6;"""Worked or studied"",""Socialized"",""Rested""";;1;"""gave a presentation""" +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001179;19717964;0;main_questionnaire;;mpath_package_study;1715636992;1715637010;1715638256;1715638284;0;7200;-216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;9;1;85;11;65;35;3;"""Home""";;2;"""With one person I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001199;19719573;0;main_questionnaire;;mpath_package_study;1715672886;1715672889;1715673432;1715673473;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;16;0;79;4;67;77;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;22;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001193;19724336;0;main_questionnaire;;mpath_package_study;1715705458;1715705459;1715705643;1715705671;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;21;0;62;21;73;28;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;224;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001209;19731870;0;main_questionnaire;;mpath_package_study;1715764795;1715764798;1715764805;1715764855;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;28;3;69;20;27;82;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;762;1;;;;;;;;;;;;;;;; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001208;19732588;0;main_questionnaire;;mpath_package_study;1715770453;1715770457;1715770465;1715770504;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;15;6;55;34;9;62;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;881;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;-1;19664708;0;"Consent and intake questionnaire";;;0;1715274091;1715274092;1715274142;0;7200;0;1;2;"""Female""";;"""23""";1;2;"""Disagree""";2;2;"""Disagree""";2;1;"""Strongly disagree""";1;1;"""Strongly disagree""";1;1;"""Strongly disagree""";1;1;3;"""Neither agree nor disagree""";3;2;"""Disagree a little""";2;3;"""Neither agree nor disagree""";3;4;"""Agree a little""";4;1;"""Disagree strongly""";1;4;"""Agree a little""";4;5;"""Agree strongly""";5;4;"""Agree a little""";4;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005395;19671663;0;main_questionnaire;;mpath_package_study;1715326717;1715326720;1715327413;1715327439;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;15;0;65;78;0;88;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;23270;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005396;19672613;0;main_questionnaire;;mpath_package_study;1715334395;1715334396;1715334408;1715334453;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;0;0;63;64;73;0;4;"""outside""";;1;"""Alone""";;3;"""Travelling""";;25038;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005397;19673091;0;main_questionnaire;;mpath_package_study;1715337408;1715337409;1715337729;1715337748;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;0;0;60;47;59;28;2;"""School""";;4;"""With one or more people I don't know""";;1;"""Working or studying""";;26057;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005398;19674075;0;main_questionnaire;;mpath_package_study;1715343239;1715343240;1715343507;1715343531;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;0;58;24;52;71;19;2;"""School""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005399;19675082;0;main_questionnaire;;mpath_package_study;1715349604;1715349615;1715349750;1715349863;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;0;0;62;23;59;23;2;"""School""";;2;"""With one person I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005400;19675788;0;main_questionnaire;;mpath_package_study;1715353631;1715353633;1715354135;1715354163;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;0;0;55;43;75;0;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;27419;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005401;19676898;0;main_questionnaire;;mpath_package_study;1715359898;1715359901;1715360024;1715360044;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;0;0;69;0;57;62;2;"""School""";;2;"""With one person I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005402;19678188;0;main_questionnaire;;mpath_package_study;1715364151;1715364154;1715364242;1715364258;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;0;2;68;57;30;72;2;"""School""";;2;"""With one person I know""";;1;"""Working or studying""";;27505;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005403;19680054;0;main_questionnaire;;mpath_package_study;1715370802;1715370805;1715372221;1715372243;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;0;0;69;58;64;64;3;"""Home""";;1;"""Alone""";;8;"""Other""";;28277;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005404;19681911;0;main_questionnaire;;mpath_package_study;1715375397;1715375398;1715375975;1715376014;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;0;0;81;33;14;70;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;28320;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005405;19682689;0;evening_questionnaire;;mpath_package_study;1715379000;1715379001;1715380224;1715380289;0;7200;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;65;7;25;57;49;66;25;0;1;"""met a friend""";1,3,4,2,6;"""Worked or studied"",""Travelled"",""Socialized"",""Engaged in a hobby"",""Rested""";;1; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005416;19683841;0;main_questionnaire;;mpath_package_study;1715413798;1715413801;1715414421;1715414474;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;14;0;76;0;7;87;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;28578;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005415;19684415;0;main_questionnaire;;mpath_package_study;1715418704;1715418706;1715420070;1715420096;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;0;0;72;50;26;71;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;28603;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005414;19685614;0;main_questionnaire;;mpath_package_study;1715426595;1715426598;1715426605;1715426628;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;0;0;63;11;52;72;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;28701;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005413;19686148;0;main_questionnaire;;mpath_package_study;1715429064;1715429065;1715429092;1715429142;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;0;0;61;43;0;60;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;28725;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005412;19687110;0;main_questionnaire;;mpath_package_study;1715435905;1715435907;1715437242;1715437257;0;7200;-2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;0;0;65;0;53;37;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;28764;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005411;19688244;0;main_questionnaire;;mpath_package_study;1715442533;1715442537;1715442694;1715442722;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;0;0;62;0;56;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;28852;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005409;19689919;0;main_questionnaire;;mpath_package_study;1715450505;1715450509;1715452202;1715452220;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;0;0;60;4;85;7;5;"""supermarket""";;4;"""With one or more people I don't know""";;8;"""Other""";;30658;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005407;19693591;0;main_questionnaire;;mpath_package_study;1715462245;1715462248;1715462411;1715462429;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;14;28;0;67;0;51;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;32581;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005406;19694426;0;evening_questionnaire;;mpath_package_study;1715465400;1715465402;1715467161;1715467253;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;57;3;12;88;47;14;9;0;1;"""spent some time reading in the sun""";1,2,4,6;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Rested""";;1; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005426;19696369;0;main_questionnaire;;mpath_package_study;1715506326;1715506328;1715506331;1715506366;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;0;0;62;19;43;62;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;32812;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005424;19698087;0;main_questionnaire;;mpath_package_study;1715516987;1715516988;1715516998;1715517014;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;5;0;57;0;8;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;32950;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005423;19698820;0;main_questionnaire;;mpath_package_study;1715522257;1715522260;1715523162;1715523183;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;4;2;71;0;69;21;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005422;19699890;0;main_questionnaire;;mpath_package_study;1715528773;1715528777;1715529293;1715529314;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;0;8;73;16;65;44;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;33078;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005421;19700461;0;main_questionnaire;;mpath_package_study;1715531522;1715531524;1715531531;1715531547;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;0;0;55;0;62;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;33134;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005420;19701631;0;main_questionnaire;;mpath_package_study;1715537556;1715537559;1715537568;1715537600;0;7200;-2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;2;31;0;34;55;3;"""Home""";;1;"""Alone""";;8;"""Other""";;33203;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005419;19703828;0;main_questionnaire;;mpath_package_study;1715544187;1715544189;1715544574;1715544605;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;0;0;85;0;0;30;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;40465;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005418;19705228;0;main_questionnaire;;mpath_package_study;1715549337;1715549340;1715549879;1715549897;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;8;60;0;38;68;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005417;19705949;0;evening_questionnaire;;mpath_package_study;1715551800;1715552189;1715552439;1715552484;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;79;0;0;86;0;78;22;0;1;"""Read a book outside in the sun""";2,1,5,6;"""Engaged in a hobby"",""Worked or studied"",""Did exercise"",""Rested""";;1; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005438;19707267;0;main_questionnaire;;mpath_package_study;1715585676;1715585677;1715587264;1715587290;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;0;0;83;0;0;100;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;40649;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005437;19708128;0;main_questionnaire;;mpath_package_study;1715594036;1715594040;1715594376;1715594403;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;0;0;67;4;67;62;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;40734;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005436;19708853;0;main_questionnaire;;mpath_package_study;1715598682;1715598686;1715598698;1715598713;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;3;2;70;4;61;70;2;"""School""";;2;"""With one person I know""";;1;"""Working or studying""";;41202;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005435;19709459;0;main_questionnaire;;mpath_package_study;1715602326;1715602327;1715602336;1715602356;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;2;0;81;0;56;51;2;"""School""";;2;"""With one person I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005434;19710121;0;main_questionnaire;;mpath_package_study;1715607529;1715607532;1715607545;1715607599;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;0;4;67;0;54;1;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005433;19711373;0;main_questionnaire;;mpath_package_study;1715615600;1715615603;1715615996;1715616023;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;0;0;65;0;60;78;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005432;19711993;0;main_questionnaire;;mpath_package_study;1715618931;1715618933;1715619060;1715619328;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;0;0;67;52;32;52;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005431;19713917;0;main_questionnaire;;mpath_package_study;1715626019;1715626020;1715626594;1715626623;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;4;6;79;37;62;29;4;"""outside""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;43076;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005430;19716476;0;main_questionnaire;;mpath_package_study;1715632055;1715632059;1715632252;1715632276;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;1;1;37;55;40;4;"""outside""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;43721;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005429;19717465;0;main_questionnaire;;mpath_package_study;1715634477;1715634478;1715635614;1715635628;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;7;2;84;0;61;0;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;44877;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005428;19718212;0;evening_questionnaire;;mpath_package_study;1715638200;1715638201;1715638207;1715638285;0;7200;-215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;80;0;0;73;0;76;21;1;1;"""made a lot of progress on thesis""";1,3,5,6,2;"""Worked or studied"",""Travelled"",""Did exercise"",""Rested"",""Engaged in a hobby""";;1;"""Had some trouble with a website and it was very hard to contact support""" +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005448;19720259;0;main_questionnaire;;mpath_package_study;1715678020;1715678027;1715678037;1715678059;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;2;0;80;36;5;89;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;45064;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005447;19721237;0;main_questionnaire;;mpath_package_study;1715685611;1715685614;1715686615;1715686681;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;3;0;58;3;55;3;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;45184;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005446;19721864;0;main_questionnaire;;mpath_package_study;1715689069;1715689071;1715689455;1715689469;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;4;86;9;96;8;59;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;45220;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005445;19722845;0;main_questionnaire;;mpath_package_study;1715696199;1715696204;1715696224;1715696248;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;3;0;70;1;69;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;45304;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005443;19724164;0;main_questionnaire;;mpath_package_study;1715704356;1715704359;1715704369;1715704386;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;0;0;77;0;63;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;45398;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005442;19725569;0;main_questionnaire;;mpath_package_study;1715709644;1715709647;1715710137;1715710153;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;0;0;73;1;62;5;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;45983;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005441;19728090;0;main_questionnaire;;mpath_package_study;1715717495;1715717496;1715717752;1715717766;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;2;0;78;61;42;0;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;46110;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005440;19729665;0;main_questionnaire;;mpath_package_study;1715722443;1715722445;1715722459;1715722563;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;0;0;85;0;64;61;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005439;19729973;0;evening_questionnaire;;mpath_package_study;1715724600;1715724601;1715724645;1715724712;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;78;0;0;39;82;58;23;1;0;;1,2,4,6;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Rested""";;1;"""I had trouble submitting an assignment because instructions were very vague and ambiguous """ +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005459;19731744;0;main_questionnaire;;mpath_package_study;1715763718;1715763721;1715765451;1715765487;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;0;0;58;0;46;88;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;46434;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005458;19732857;0;main_questionnaire;;mpath_package_study;1715772549;1715772551;1715773439;1715773467;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;0;0;72;35;61;63;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;46503;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005457;19733671;0;main_questionnaire;;mpath_package_study;1715777291;1715777294;1715777303;1715777323;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;2;0;70;0;67;0;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005456;19734206;0;main_questionnaire;;mpath_package_study;1715781230;1715781231;1715781914;1715781931;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;0;0;81;0;59;0;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005455;19735382;0;main_questionnaire;;mpath_package_study;1715788577;1715788578;1715790018;1715790035;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;3;0;98;0;67;0;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;46553;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005452;19740209;0;main_questionnaire;;mpath_package_study;1715803590;1715803591;1715803997;1715804013;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;0;0;70;0;58;40;6;"""gym""";;2;"""With one person I know""";;5;"""Exercising""";;48078;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005451;19741855;0;main_questionnaire;;mpath_package_study;1715810043;1715810184;1715810527;1715810559;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;0;1;70;0;45;0;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;49505;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005450;19742118;0;evening_questionnaire;;mpath_package_study;1715811000;1715811144;1715811152;1715811201;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;78;0;0;60;34;60;0;0;1;"""submitted my master thesis!""";1,2,4,5,6;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Did exercise"",""Rested""";;1; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005469;19744853;0;main_questionnaire;;mpath_package_study;1715857655;1715857658;1715858091;1715858110;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;0;2;67;4;2;57;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;50654;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005468;19745574;0;main_questionnaire;;mpath_package_study;1715862424;1715862426;1715862434;1715862460;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;5;0;61;0;70;11;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005467;19746151;0;main_questionnaire;;mpath_package_study;1715866551;1715866554;1715867512;1715867538;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;1;0;73;39;18;50;2;"""School""";;2;"""With one person I know""";;1;"""Working or studying""";;50833;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005466;19747213;0;main_questionnaire;;mpath_package_study;1715872886;1715872888;1715873658;1715873678;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;0;52;0;57;10;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;51405;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005465;19748464;0;main_questionnaire;;mpath_package_study;1715879813;1715879815;1715880060;1715880090;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;0;1;69;0;60;18;3;"""Home""";;1;"""Alone""";;4;"""Socializing""";;51518;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005462;19752986;0;main_questionnaire;;mpath_package_study;1715894743;1715894744;1715895224;1715895246;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;3;2;59;0;65;54;3;"""Home""";;1;"""Alone""";;4;"""Socializing""";;52919;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005461;19753616;0;evening_questionnaire;;mpath_package_study;1715897400;1715897402;1715898463;1715898526;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;70;0;0;69;45;59;56;1;1;"""submitted an important assignment """;3,1,4,6,2;"""Travelled"",""Worked or studied"",""Socialized"",""Rested"",""Engaged in a hobby""";;1;"""found a mistake in my analysis and I will have to redo it tomorrow """ +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005479;19757157;0;main_questionnaire;;mpath_package_study;1715949128;1715949131;1715949880;1715949892;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;2;0;64;4;0;59;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;58875;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005478;19757750;0;main_questionnaire;;mpath_package_study;1715953359;1715953360;1715954619;1715954659;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;0;0;58;62;79;0;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;59014;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005476;19759885;0;main_questionnaire;;mpath_package_study;1715965259;1715965262;1715965343;1715965363;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;3;0;48;52;52;35;1;"""Work""";;1;"""Alone""";;1;"""Working or studying""";;59333;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005475;19760990;0;main_questionnaire;;mpath_package_study;1715969757;1715969761;1715970109;1715970149;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;0;3;58;0;53;0;3;"""Home""";;1;"""Alone""";;2;"""Engaging in a hobby""";;59911;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005474;19763265;0;main_questionnaire;;mpath_package_study;1715977386;1715977389;1715977845;1715977877;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;0;25;67;0;63;64;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005473;19764645;0;main_questionnaire;;mpath_package_study;1715982101;1715982102;1715982113;1715983573;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;0;0;71;0;71;3;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005472;19764975;0;evening_questionnaire;;mpath_package_study;1715983800;1715983802;1715983817;1715983865;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;54;41;86;39;68;26;0;0;;2,1,4,6;"""Engaged in a hobby"",""Worked or studied"",""Socialized"",""Rested""";;1; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005493;19766095;0;main_questionnaire;;mpath_package_study;1716019375;1716019377;1716020881;1716020909;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;59;0;58;59;0;90;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;60417;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005492;19766695;0;main_questionnaire;;mpath_package_study;1716024281;1716024285;1716024297;1716024315;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;3;0;66;0;0;74;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;60493;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005491;19767644;0;main_questionnaire;;mpath_package_study;1716029418;1716029420;1716029441;1716029462;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;0;0;66;0;61;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005489;19769568;0;main_questionnaire;;mpath_package_study;1716040303;1716040304;1716040503;1716040525;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;0;0;60;0;57;0;4;"""gym""";;3;"""With multiple people I know""";;5;"""Exercising""";;61907;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005488;19770639;0;main_questionnaire;;mpath_package_study;1716046535;1716046538;1716046974;1716046996;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;0;0;54;61;46;53;3;"""Home""";;1;"""Alone""";;8;"""Other""";;63322;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005487;19771859;0;main_questionnaire;;mpath_package_study;1716052250;1716052252;1716052286;1716052302;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;5;0;63;4;56;63;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;63423;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005486;19772689;0;main_questionnaire;;mpath_package_study;1716056436;1716056442;1716057703;1716057742;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;0;29;14;55;0;59;3;"""Home""";;1;"""Alone""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005485;19774776;0;main_questionnaire;;mpath_package_study;1716062559;1716062562;1716063138;1716063161;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;5;8;31;0;53;66;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005484;19776442;0;main_questionnaire;;mpath_package_study;1716068103;1716068184;1716068196;1716068214;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;0;0;54;0;51;82;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005483;19776897;0;evening_questionnaire;;mpath_package_study;1716070200;1716070202;1716070323;1716070351;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;78;0;22;65;0;54;0;0;1;"""met friends I hadn't seen in a long time""";1,2,4,5,6;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Did exercise"",""Rested""";;1; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005501;19780707;0;main_questionnaire;;mpath_package_study;1716123399;1716123401;1716124043;1716124059;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;0;0;53;0;58;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;63740;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005500;19781125;0;main_questionnaire;;mpath_package_study;1716126062;1716126064;1716126501;1716126513;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;10;0;62;0;57;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;63812;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005499;19781937;0;main_questionnaire;;mpath_package_study;1716131134;1716131136;1716131444;1716131459;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;0;23;66;0;59;34;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;63882;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005497;19784142;0;main_questionnaire;;mpath_package_study;1716144405;1716144409;1716145820;1716145837;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;0;0;62;16;51;39;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;64033;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005496;19785362;0;main_questionnaire;;mpath_package_study;1716147874;1716147877;1716147894;1716149158;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;0;0;40;0;58;0;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005495;19787624;0;main_questionnaire;;mpath_package_study;1716154858;1716154861;1716155042;1716155062;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;0;0;58;0;60;0;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;-1;19732206;0;"Consent and intake questionnaire";;;0;1715767360;1715767361;1715767504;0;7200;0;1;1;"""Male""";;"""58""";1;6;"""Agree""";6;6;"""Agree""";6;6;"""Agree""";6;5;"""Slightly agree""";5;5;"""Slightly agree""";5;1;1;"""Disagree strongly""";1;5;"""Agree strongly""";5;3;"""Neither agree nor disagree""";3;2;"""Disagree a little""";2;2;"""Disagree a little""";2;2;"""Disagree a little""";2;2;"""Disagree a little""";2;4;"""Agree a little""";4;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087467;19743348;0;main_questionnaire;;mpath_package_study;1715846347;1715846348;1715846656;1715846751;0;7200;-136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;60;24;79;28;27;26;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087472;19747535;0;main_questionnaire;;mpath_package_study;1715875043;1715875046;1715875209;1715875253;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;32;20;64;17;77;31;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087474;19749499;0;main_questionnaire;;mpath_package_study;1715884073;1715884077;1715884805;1715884868;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;16;12;62;11;83;27;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087476;19752948;0;main_questionnaire;;mpath_package_study;1715894271;1715894274;1715894485;1715894535;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;14;9;61;15;53;61;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087488;19755032;0;main_questionnaire;;mpath_package_study;1715933817;1715933818;1715934650;1715934702;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;18;10;68;11;40;17;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087487;19755499;0;main_questionnaire;;mpath_package_study;1715938081;1715938085;1715938371;1715938406;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;15;8;46;9;49;25;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087486;19756382;0;main_questionnaire;;mpath_package_study;1715944245;1715944246;1715944989;1715945031;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;45;19;30;22;22;21;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087485;19756980;0;main_questionnaire;;mpath_package_study;1715947935;1715947937;1715948728;1715948769;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;22;33;38;22;15;51;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087481;19761058;0;main_questionnaire;;mpath_package_study;1715970411;1715970412;1715971345;1715971383;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;4;12;25;11;49;59;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087480;19763238;0;main_questionnaire;;mpath_package_study;1715977025;1715977028;1715977511;1715977610;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;11;0;96;0;61;15;4;"""in the mountains """;;2;"""With one person I know""";;5;"""Exercising""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087479;19764342;0;main_questionnaire;;mpath_package_study;1715980974;1715980976;1715982005;1715982042;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;8;4;51;2;28;68;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087478;19764977;0;evening_questionnaire;;mpath_package_study;1715983800;1715983802;1715984168;1715984280;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;73;10;5;40;20;57;65;1;1;"""this afternoon begin the weekend """;1,2,5,6;"""Worked or studied"",""Engaged in a hobby"",""Did exercise"",""Rested""";;1;"""my heater didn't work properly""" +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087499;19766124;0;main_questionnaire;;mpath_package_study;1716020497;1716020499;1716021405;1716021455;0;7200;-2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;7;5;38;37;63;19;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087498;19766907;0;main_questionnaire;;mpath_package_study;1716025448;1716025449;1716026935;1716026992;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;22;19;36;34;31;53;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087495;19769782;0;main_questionnaire;;mpath_package_study;1716041547;1716041548;1716042025;1716042054;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;6;23;13;12;53;41;3;"""Home""";;2;"""With one person I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087494;19770790;0;main_questionnaire;;mpath_package_study;1716047843;1716047847;1716049553;1716049588;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;10;4;31;6;50;39;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087492;19772600;0;main_questionnaire;;mpath_package_study;1716055729;1716055733;1716057334;1716057366;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;17;0;78;4;56;47;4;"""in the mountains """;;2;"""With one person I know""";;5;"""Exercising""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087491;19774882;0;main_questionnaire;;mpath_package_study;1716063558;1716063560;1716064466;1716064514;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;7;0;77;10;69;19;5;"""with friends""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087490;19776006;0;main_questionnaire;;mpath_package_study;1716066910;1716066914;1716067447;1716067490;0;7200;-47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;7;15;72;6;67;24;5;"""with friends""";;3;"""With multiple people I know""";;4;"""Socializing""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087489;19776899;0;evening_questionnaire;;mpath_package_study;1716070200;1716070202;1716070817;1716070940;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;88;5;6;51;12;46;25;0;1;"""i built a wall., hiking for a while and spent time with friends.""";1,2,4;"""Worked or studied"",""Engaged in a hobby"",""Socialized""";;1; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087510;19778108;0;main_questionnaire;;mpath_package_study;1716106577;1716106580;1716107897;1716107935;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;9;5;74;0;16;54;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087509;19778683;0;main_questionnaire;;mpath_package_study;1716111044;1716111047;1716112489;1716112527;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;3;4;79;7;42;62;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087508;19779447;0;main_questionnaire;;mpath_package_study;1716115863;1716115865;1716116880;1716116915;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;12;12;84;7;58;20;4;"""in the mountains """;;3;"""With multiple people I know""";;4;"""Socializing""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087506;19781087;0;main_questionnaire;;mpath_package_study;1716125580;1716125582;1716125743;1716125794;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;3;4;78;9;52;40;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087505;19782291;0;main_questionnaire;;mpath_package_study;1716133718;1716133722;1716133915;1716133946;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;0;0;83;7;44;24;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087504;19782756;0;main_questionnaire;;mpath_package_study;1716136306;1716136308;1716136318;1716136352;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;2;0;84;7;43;18;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087503;19784184;0;main_questionnaire;;mpath_package_study;1716144839;1716144841;1716145530;1716145570;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;8;4;66;7;45;9;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087502;19785292;0;main_questionnaire;;mpath_package_study;1716147152;1716147155;1716148180;1716148213;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;0;8;58;0;64;18;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087501;19787634;0;main_questionnaire;;mpath_package_study;1716155109;1716155111;1716155812;1716155843;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;1;1;71;1;47;50;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087500;19788036;0;evening_questionnaire;;mpath_package_study;1716156600;1716156602;1716157274;1716157357;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;90;7;3;71;5;54;17;0;1;"""i have gone outside to do activities with neighbours. """;1,2,4,6;"""Worked or studied"",""Engaged in a hobby"",""Socialized"",""Rested""";;1; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087521;19789224;0;main_questionnaire;;mpath_package_study;1716190424;1716190427;1716191698;1716191748;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;26;5;72;8;26;22;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087519;19791001;0;main_questionnaire;;mpath_package_study;1716203951;1716203953;1716204839;1716204866;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;10;18;17;17;72;19;3;"""Home""";;2;"""With one person I know""";;5;"""Exercising""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087518;19791542;0;main_questionnaire;;mpath_package_study;1716206804;1716206807;1716207161;1716207192;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;9;0;75;3;71;8;4;"""in the mountains """;;2;"""With one person I know""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087517;19792303;0;main_questionnaire;;mpath_package_study;1716212279;1716212282;1716212926;1716212950;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;11;0;56;0;59;3;4;"""in the mountains """;;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087515;19794472;0;main_questionnaire;;mpath_package_study;1716225374;1716225375;1716225494;1716225541;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;3;0;75;1;48;49;6;"""travelling """;;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087514;19795394;0;main_questionnaire;;mpath_package_study;1716228490;1716228494;1716228914;1716228951;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;7;2;78;12;46;16;5;"""travelling """;;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087512;19799367;0;main_questionnaire;;mpath_package_study;1716239364;1716239365;1716239390;1716239427;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;7;0;60;10;33;47;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087511;19800155;0;evening_questionnaire;;mpath_package_study;1716243000;1716243003;1716243424;1716243588;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;90;5;0;70;10;64;28;0;1;"""i did a short walk around the little village with gorgeous views of The Pyrinees.""";1,2,3,6,5,4;"""Worked or studied"",""Engaged in a hobby"",""Travelled"",""Rested"",""Did exercise"",""Socialized""";;1; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087532;19801254;0;main_questionnaire;;mpath_package_study;1716276839;1716276843;1716277178;1716277223;0;7200;-15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;50;13;72;11;39;30;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087531;19802179;0;main_questionnaire;;mpath_package_study;1716283592;1716283594;1716284156;1716284190;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;40;7;72;13;23;74;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087530;19803025;0;main_questionnaire;;mpath_package_study;1716289332;1716289333;1716289850;1716289885;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;35;10;65;14;60;32;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087529;19803690;0;main_questionnaire;;mpath_package_study;1716293628;1716293631;1716295283;1716295313;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;21;5;74;16;47;65;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087528;19804515;0;main_questionnaire;;mpath_package_study;1716299517;1716299518;1716299529;1716299558;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;21;17;72;22;67;29;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087527;19805426;0;main_questionnaire;;mpath_package_study;1716305070;1716305072;1716305523;1716305553;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;17;9;77;11;50;48;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087526;19806338;0;main_questionnaire;;mpath_package_study;1716310408;1716310409;1716311830;1716311850;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;23;9;38;8;51;74;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087525;19808093;0;main_questionnaire;;mpath_package_study;1716317219;1716317223;1716318553;1716318590;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;10;15;85;8;50;65;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087524;19809190;0;main_questionnaire;;mpath_package_study;1716320488;1716320490;1716322210;1716322244;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;19;3;85;8;54;69;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087523;19810862;0;main_questionnaire;;mpath_package_study;1716325456;1716325458;1716326607;1716326637;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;5;3;90;3;46;48;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087522;19811665;0;evening_questionnaire;;mpath_package_study;1716329400;1716329401;1716329895;1716329963;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;57;14;10;52;17;46;66;0;0;;1,6;"""Worked or studied"",""Rested""";;1; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087543;19813056;0;main_questionnaire;;mpath_package_study;1716365748;1716365749;1716365784;1716365821;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;19;11;83;12;70;11;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087542;19813464;0;main_questionnaire;;mpath_package_study;1716368486;1716368488;1716368674;1716368703;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;18;15;49;12;47;42;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087540;19815258;0;main_questionnaire;;mpath_package_study;1716381874;1716381880;1716382856;1716382886;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;13;13;44;22;45;54;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087539;19816042;0;main_questionnaire;;mpath_package_study;1716386999;1716387003;1716387920;1716387948;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;14;6;71;10;48;44;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087538;19816964;0;main_questionnaire;;mpath_package_study;1716392722;1716392727;1716392754;1716392806;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;23;6;53;13;65;37;7;"""walking""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087537;19817482;0;main_questionnaire;;mpath_package_study;1716395798;1716395802;1716397465;1716397522;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;3;7;64;26;87;32;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087536;19818810;0;main_questionnaire;;mpath_package_study;1716401434;1716401436;1716401745;1716401794;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;9;5;78;14;85;13;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087535;19821633;0;main_questionnaire;;mpath_package_study;1716409297;1716409298;1716409890;1716409928;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;7;4;76;6;63;34;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087534;19823221;0;main_questionnaire;;mpath_package_study;1716414838;1716414840;1716414900;1716414930;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;0;0;85;0;31;86;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087533;19823445;0;evening_questionnaire;;mpath_package_study;1716415800;1716415801;1716417120;1716417224;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;85;10;7;66;7;62;71;1;1;"""I spent some happy time with friends and family .""";1,2,6;"""Worked or studied"",""Engaged in a hobby"",""Rested""";;1;"""some tasks to do in my work""" +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087554;19824767;0;main_questionnaire;;mpath_package_study;1716451363;1716451365;1716452741;1716452772;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;11;11;48;17;71;5;5;"""travelling """;;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087553;19825416;0;main_questionnaire;;mpath_package_study;1716457410;1716457411;1716457618;1716457684;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;6;6;55;1;66;12;5;"""travelling """;;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087551;19827053;0;main_questionnaire;;mpath_package_study;1716468698;1716468701;1716468799;1716468836;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;8;3;60;9;53;13;5;"""travelling """;;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087550;19827759;0;main_questionnaire;;mpath_package_study;1716473415;1716473418;1716473818;1716473856;0;7200;-6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;0;6;81;4;77;31;5;"""travelling """;;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087549;19828752;0;main_questionnaire;;mpath_package_study;1716479588;1716479590;1716480921;1716480954;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;3;0;67;3;58;17;5;"""travelling """;;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087548;19829739;0;main_questionnaire;;mpath_package_study;1716484989;1716484990;1716485086;1716485115;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;4;0;76;2;68;56;5;"""travelling """;;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087547;19830943;0;main_questionnaire;;mpath_package_study;1716489516;1716489519;1716489936;1716489967;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;11;22;50;8;44;61;5;"""travelling """;;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087546;19832586;0;main_questionnaire;;mpath_package_study;1716495262;1716495264;1716495565;1716495625;0;7200;-2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;9;11;84;3;33;72;7;"""restaurant """;;2;"""With one person I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087544;19834403;0;evening_questionnaire;;mpath_package_study;1716502200;1716502202;1716503447;1716503617;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;91;0;2;72;1;66;31;0;1;"""I start some days on holiday. I have gone abroad for some days.""";3,6,2;"""Travelled"",""Rested"",""Engaged in a hobby""";;1; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087565;19835659;0;main_questionnaire;;mpath_package_study;1716539201;1716539204;1716539626;1716539674;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;3;9;83;12;79;12;7;"""hotel""";;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087564;19836287;0;main_questionnaire;;mpath_package_study;1716544149;1716544150;1716544333;1716544365;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;0;1;83;11;74;19;6;"""travelling """;;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087563;19836703;0;main_questionnaire;;mpath_package_study;1716546823;1716546826;1716547030;1716547125;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;9;6;80;6;77;11;7;"""visiting a city""";;2;"""With one person I know""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087562;19837714;0;main_questionnaire;;mpath_package_study;1716553477;1716553480;1716553511;1716553538;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;0;0;83;0;81;37;6;"""visiting a city""";;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087561;19838648;0;main_questionnaire;;mpath_package_study;1716559834;1716559836;1716560239;1716560290;0;7200;-40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;10;8;50;9;58;42;6;"""visiting a city""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087560;19839255;0;main_questionnaire;;mpath_package_study;1716563249;1716563250;1716563464;1716563501;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;2;0;76;0;64;50;6;"""visiting a city""";;4;"""With one or more people I don't know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087559;19840594;0;main_questionnaire;;mpath_package_study;1716571682;1716571684;1716572229;1716572274;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;4;7;84;0;40;70;6;"""visiting a city""";;4;"""With one or more people I don't know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087558;19841678;0;main_questionnaire;;mpath_package_study;1716576465;1716576467;1716577204;1716577246;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;0;0;82;8;42;72;6;"""visiting a city""";;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087557;19842576;0;main_questionnaire;;mpath_package_study;1716579624;1716579627;1716580171;1716580199;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;0;0;82;1;38;82;4;"""hotel""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087556;19844159;0;main_questionnaire;;mpath_package_study;1716585181;1716585182;1716585202;1716585259;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;1;6;95;0;16;91;7;"""restaurant """;;2;"""With one person I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087555;19844910;0;evening_questionnaire;;mpath_package_study;1716588600;1716588602;1716588617;1716588708;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;93;0;6;88;6;65;85;0;1;"""i visited new places in a city """;2,3;"""Engaged in a hobby"",""Travelled""";;1; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087576;19845690;0;main_questionnaire;;mpath_package_study;1716623474;1716623476;1716624400;1716624440;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;11;10;88;7;71;21;4;"""hotel""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087575;19846426;0;main_questionnaire;;mpath_package_study;1716630285;1716630288;1716631542;1716631585;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;2;5;93;0;85;7;6;"""visiting a city""";;2;"""With one person I know""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087574;19846997;0;main_questionnaire;;mpath_package_study;1716633506;1716633507;1716633881;1716633908;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;0;3;82;0;79;6;6;"""visiting a city""";;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087573;19848377;0;main_questionnaire;;mpath_package_study;1716641452;1716641455;1716641531;1716641563;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;3;0;81;4;83;23;6;"""visiting a city""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087572;19848848;0;main_questionnaire;;mpath_package_study;1716644400;1716644402;1716644677;1716644714;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;0;0;75;0;82;17;6;"""visiting a city""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087571;19849774;0;main_questionnaire;;mpath_package_study;1716650743;1716650745;1716651087;1716651124;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;20;4;72;5;79;31;6;"""visiting a city""";;3;"""With multiple people I know""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087570;19850559;0;main_questionnaire;;mpath_package_study;1716655525;1716655526;1716656075;1716656110;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;1;0;60;10;65;44;6;"""visiting a city""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087569;19851911;0;main_questionnaire;;mpath_package_study;1716663143;1716663144;1716663802;1716663837;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;4;3;84;9;25;88;4;"""hotel""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087568;19853429;0;main_questionnaire;;mpath_package_study;1716667472;1716667474;1716668446;1716668499;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;3;97;6;93;35;5;"""restaurant """;;3;"""With multiple people I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087567;19854688;0;main_questionnaire;;mpath_package_study;1716672098;1716672101;1716673267;1716673293;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;4;0;91;0;83;29;6;"""visiting a city""";;3;"""With multiple people I know""";;4;"""Socializing""";;0;1;;;;;;;;;;;;;;;; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087566;19855396;0;evening_questionnaire;;mpath_package_study;1716675000;1716675003;1716675181;1716675273;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;93;1;0;75;2;83;34;0;1;"""I have spent my day with my family \n""";2,3,4;"""Engaged in a hobby"",""Travelled"",""Socialized""";;1; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;-1;19742573;0;"Consent and intake questionnaire";;;0;1715817664;1715818029;1715818445;0;7200;0;1;2;"""Female""";;"""49""";1;2;"""Disagree""";2;3;"""Slightly disagree""";3;4;"""Neither agree nor disagree""";4;3;"""Slightly disagree""";3;2;"""Disagree""";2;1;1;"""Disagree strongly""";1;3;"""Neither agree nor disagree""";3;4;"""Agree a little""";4;4;"""Agree a little""";4;3;"""Neither agree nor disagree""";3;3;"""Neither agree nor disagree""";3;1;"""Disagree strongly""";1;2;"""Disagree a little""";2;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102501;19755361;0;main_questionnaire;;mpath_package_study;1715936661;1715936664;1715937074;1715937156;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;22;0;50;55;25;10;1;"""Work""";;2;"""With one person I know""";;1;"""Working or studying""";;36544;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102504;19758188;0;main_questionnaire;;mpath_package_study;1715956091;1715956094;1715956739;1715956792;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;60;10;100;40;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102505;19759053;0;main_questionnaire;;mpath_package_study;1715961227;1715961228;1715962035;1715962093;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;26;36;100;14;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102507;19761458;0;main_questionnaire;;mpath_package_study;1715971966;1715971967;1715972093;1715972156;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;70;10;100;16;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;0;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102508;19763299;0;main_questionnaire;;mpath_package_study;1715977784;1715977786;1715978302;1715978349;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;90;0;81;47;3;"""Home""";;2;"""With one person I know""";;5;"""Exercising""";;41622;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102509;19764635;0;main_questionnaire;;mpath_package_study;1715981988;1715981990;1715983547;1715983601;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;83;0;34;100;3;"""Home""";;2;"""With one person I know""";;8;"""Other""";;41691;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102520;19766705;0;main_questionnaire;;mpath_package_study;1716024397;1716024401;1716024733;1716024798;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;10;0;91;0;80;0;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102519;19767575;0;main_questionnaire;;mpath_package_study;1716028920;1716028923;1716029440;1716029499;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;12;0;70;3;78;5;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102518;19768790;0;main_questionnaire;;mpath_package_study;1716034954;1716034956;1716035683;1716035730;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;11;0;81;8;77;10;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;41718;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102517;19769557;0;main_questionnaire;;mpath_package_study;1716040200;1716040201;1716041105;1716041165;0;7200;-7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;10;0;75;6;65;27;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;41844;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102516;19770383;0;main_questionnaire;;mpath_package_study;1716044924;1716044927;1716046248;1716046294;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;13;0;88;6;41;60;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;41864;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102515;19771418;0;main_questionnaire;;mpath_package_study;1716050798;1716050801;1716051944;1716052006;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;85;0;41;59;3;"""Home""";;2;"""With one person I know""";;1;"""Working or studying""";;41889;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102514;19772731;0;main_questionnaire;;mpath_package_study;1716056867;1716056870;1716057346;1716057407;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;60;2;100;0;4;"""in a natural spot""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;43431;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102512;19776129;0;main_questionnaire;;mpath_package_study;1716067660;1716067786;1716068013;1716068059;0;7200;-117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;100;0;51;29;5;"""friends' house""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;45212;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102511;19776900;0;evening_questionnaire;;mpath_package_study;1716070200;1716070202;1716070769;1716070842;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;100;0;0;100;0;53;34;0;0;;4,5,6,1,2;"""Socialized"",""Did exercise"",""Rested"",""Worked or studied"",""Engaged in a hobby""";;1; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102528;19781182;0;main_questionnaire;;mpath_package_study;1716126803;1716126805;1716127815;1716127852;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;8;0;83;0;80;6;3;"""Home""";;2;"""With one person I know""";;4;"""Socializing""";;6362;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102525;19783894;0;main_questionnaire;;mpath_package_study;1716142227;1716142230;1716142274;1716142310;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;4;0;100;0;14;10;3;"""Home""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102523;19787611;0;main_questionnaire;;mpath_package_study;1716154660;1716154663;1716155811;1716155843;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;100;0;51;32;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;6417;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102522;19788037;0;evening_questionnaire;;mpath_package_study;1716156600;1716156602;1716165064;1716165420;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;90;0;0;100;0;6;85;0;1;"""Enjoyed socializing, walking\n\n and resting in a lovely sunday""";2,4,5,6;"""Engaged in a hobby"",""Socialized"",""Did exercise"",""Rested""";;1; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102542;19790198;0;main_questionnaire;;mpath_package_study;1716197436;1716197439;1716198817;1716198855;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;23;0;82;0;90;0;3;"""Home""";;2;"""With one person I know""";;6;"""Eating or drinking""";;6444;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102541;19790691;0;main_questionnaire;;mpath_package_study;1716201749;1716201752;1716202611;1716202642;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;84;0;100;0;3;"""Home""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;6511;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102540;19791565;0;main_questionnaire;;mpath_package_study;1716207019;1716207020;1716207202;1716207252;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;80;5;94;11;5;"""in a natural spot""";;2;"""With one person I know""";;2;"""Engaging in a hobby""";;9853;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102539;19792368;0;main_questionnaire;;mpath_package_study;1716212980;1716212984;1716214223;1716214257;0;7200;-6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;11;0;78;0;71;4;5;"""in a natural spot""";;2;"""With one person I know""";;4;"""Socializing""";;13126;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102537;19794475;0;main_questionnaire;;mpath_package_study;1716225414;1716225416;1716226997;1716227072;0;7200;-12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;14;2;89;13;69;8;6;"""on the road""";;2;"""With one person I know""";;3;"""Travelling""";;46;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102536;19795449;0;main_questionnaire;;mpath_package_study;1716228960;1716228962;1716228993;1716229063;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;15;0;100;0;61;13;6;"""on the road""";;2;"""With one person I know""";;3;"""Travelling""";;46;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102534;19799915;0;main_questionnaire;;mpath_package_study;1716242198;1716242200;1716242255;1716242294;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;13;1;58;8;24;67;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;389;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102533;19800156;0;evening_questionnaire;;mpath_package_study;1716243000;1716243003;1716243277;1716243337;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;100;3;0;81;0;100;0;0;0;;2,3,4,5,6;"""Engaged in a hobby"",""Travelled"",""Socialized"",""Did exercise"",""Rested""";;1; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102553;19802029;0;main_questionnaire;;mpath_package_study;1716282039;1716282041;1716283431;1716283493;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;67;2;68;65;52;92;7;"""on the way to work""";;1;"""Alone""";;3;"""Travelling""";;604;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102552;19803143;0;main_questionnaire;;mpath_package_study;1716290543;1716290545;1716290970;1716291005;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;48;0;20;70;100;35;1;"""Work""";;3;"""With multiple people I know""";;1;"""Working or studying""";;2541;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102546;19809167;0;main_questionnaire;;mpath_package_study;1716320304;1716320306;1716320723;1716320781;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;67;68;18;64;67;61;7;"""on the way home from work""";;1;"""Alone""";;3;"""Travelling""";;5784;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102545;19810913;0;main_questionnaire;;mpath_package_study;1716325929;1716325932;1716326586;1716326636;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;47;53;70;61;60;69;5;"""on the way home from work""";;1;"""Alone""";;3;"""Travelling""";;10531;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102544;19811666;0;evening_questionnaire;;mpath_package_study;1716329400;1716329401;1716329964;1716330178;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;45;54;60;22;60;32;69;1;1;"""Only very briefly met a very good old friend""";1,3,4;"""Worked or studied"",""Travelled"",""Socialized""";;1;"""Bad day at work \n\n""" +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102565;19813062;0;main_questionnaire;;mpath_package_study;1716366192;1716366194;1716366413;1716366469;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;34;18;19;36;76;60;5;"""on the way home from work""";;1;"""Alone""";;3;"""Travelling""";;11909;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102557;19821672;0;main_questionnaire;;mpath_package_study;1716409770;1716409774;1716409846;1716409886;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;50;13;34;61;38;61;3;"""Home""";;3;"""With multiple people I know""";;8;"""Other""";;16512;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102556;19822852;0;main_questionnaire;;mpath_package_study;1716413309;1716413311;1716414405;1716414461;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;21;6;62;54;15;74;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;16526;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102555;19823446;0;evening_questionnaire;;mpath_package_study;1716415800;1716415801;1716417114;1716417455;0;7200;-2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;70;12;7;27;40;32;71;1;1;"""nice people and family made my (birth)day much better :)""";1,3,4,6;"""Worked or studied"",""Travelled"",""Socialized"",""Rested""";;1;"""basat day at work\n""" +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102576;19824790;0;main_questionnaire;;mpath_package_study;1716452044;1716452045;1716452736;1716452778;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;43;35;100;9;7;"""at the airport""";;2;"""With one person I know""";;3;"""Travelling""";;17976;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102575;19825251;0;main_questionnaire;;mpath_package_study;1716455708;1716455711;1716456717;1716456756;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;3;0;39;54;85;35;4;"""at the airport""";;2;"""With one person I know""";;3;"""Travelling""";;19339;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102572;19827868;0;main_questionnaire;;mpath_package_study;1716474491;1716474493;1716474583;1716474632;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;73;0;91;6;7;"""in a restaurant""";;2;"""With one person I know""";;6;"""Eating or drinking""";;22065;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102571;19828344;0;main_questionnaire;;mpath_package_study;1716476991;1716476994;1716477022;1716477079;0;7200;-11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;9;18;84;0;73;33;7;"""hotel""";;2;"""With one person I know""";;8;"""Other""";;22087;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102570;19829744;0;main_questionnaire;;mpath_package_study;1716485066;1716485069;1716485075;1716485120;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;3;90;2;77;58;7;"""visiting Rome """;;2;"""With one person I know""";;3;"""Travelling""";;26934;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102569;19830907;0;main_questionnaire;;mpath_package_study;1716489092;1716489093;1716489943;1716489985;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;33;79;0;30;66;6;"""visiting Rome """;;2;"""With one person I know""";;3;"""Travelling""";;31512;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102568;19831924;0;main_questionnaire;;mpath_package_study;1716492877;1716492880;1716494036;1716494084;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;38;81;0;13;79;6;"""visiting Rome """;;2;"""With one person I know""";;7;"""Resting""";;33915;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102567;19833742;0;main_questionnaire;;mpath_package_study;1716499113;1716499116;1716499183;1716499244;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;28;94;0;35;70;7;"""in a restaurant""";;2;"""With one person I know""";;6;"""Eating or drinking""";;35322;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102566;19834404;0;evening_questionnaire;;mpath_package_study;1716502200;1716502202;1716503064;1716503428;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;100;1;1;100;0;18;95;1;1;"""Started holidays, travelled to Rome, visited lots of beautiful places and enjoyed it a lot!!\n""";3,2,4,6;"""Travelled"",""Engaged in a hobby"",""Socialized"",""Rested""";;1;"""Received a message from insurances saying they'd increase prices and was ignored by waitress for a long time in a restaurant...\nbut being on holidays, all ok!""" +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102587;19835612;0;main_questionnaire;;mpath_package_study;1716537650;1716537651;1716538792;1716538841;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;3;0;100;2;100;1;7;""" hotel""";;2;"""With one person I know""";;8;"""Other""";;35920;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102586;19836095;0;main_questionnaire;;mpath_package_study;1716542168;1716542169;1716542210;1716542239;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;85;0;100;1;6;"""visiting Rome """;;2;"""With one person I know""";;8;"""Other""";;36983;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102585;19836676;0;main_questionnaire;;mpath_package_study;1716546619;1716546622;1716547101;1716547124;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;100;0;99;0;6;"""visiting Rome """;;2;"""With one person I know""";;8;"""Other""";;42045;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102584;19837602;0;main_questionnaire;;mpath_package_study;1716552612;1716552615;1716552657;1716552716;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;100;0;100;14;6;"""visiting Rome """;;2;"""With one person I know""";;8;"""Other""";;45837;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102583;19838343;0;main_questionnaire;;mpath_package_study;1716558049;1716558052;1716558060;1716558107;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;91;4;72;55;6;"""visiting Rome """;;2;"""With one person I know""";;6;"""Eating or drinking""";;50735;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102582;19839217;0;main_questionnaire;;mpath_package_study;1716562950;1716562952;1716563368;1716563447;0;7200;-7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;9;12;77;2;55;39;6;"""visiting Rome """;;2;"""With one person I know""";;8;"""Other""";;51228;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102581;19840524;0;main_questionnaire;;mpath_package_study;1716570844;1716570847;1716571332;1716571393;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;70;0;38;74;5;"""in a restaurant""";;2;"""With one person I know""";;7;"""Resting""";;51344;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102580;19841694;0;main_questionnaire;;mpath_package_study;1716576707;1716576709;1716577257;1716578384;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;1;0;90;0;33;75;6;"""visiting Rome """;;2;"""With one person I know""";;8;"""Other""";;51979;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102579;19842538;0;main_questionnaire;;mpath_package_study;1716579332;1716579335;1716580147;1716580173;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;82;0;13;78;4;""" hotel""";;2;"""With one person I know""";;7;"""Resting""";;54288;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102578;19844257;0;main_questionnaire;;mpath_package_study;1716585510;1716585513;1716585537;1716585624;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;12;4;93;2;11;93;5;"""in a restaurant""";;2;"""With one person I know""";;6;"""Eating or drinking""";;55189;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102577;19844911;0;evening_questionnaire;;mpath_package_study;1716588600;1716588602;1716588685;1716588844;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;85;3;14;79;12;66;59;1;1;"""The rest of the day was great: visited museums, nice walk arouns the city, all good!""";2,3,4,5,6;"""Engaged in a hobby"",""Travelled"",""Socialized"",""Did exercise"",""Rested""";;1;"""my boss contacted me to ask something about work""" +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102598;19845863;0;main_questionnaire;;mpath_package_study;1716625025;1716625026;1716625289;1716625334;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;95;0;82;13;4;""" hotel""";;2;"""With one person I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102597;19846254;0;main_questionnaire;;mpath_package_study;1716628738;1716628739;1716629098;1716629147;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;3;0;92;11;86;13;6;"""visiting Rome """;;2;"""With one person I know""";;8;"""Other""";;59434;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102596;19847401;0;main_questionnaire;;mpath_package_study;1716635567;1716635570;1716636052;1716636107;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;84;0;71;12;6;"""visiting Rome """;;2;"""With one person I know""";;8;"""Other""";;65426;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102594;19849042;0;main_questionnaire;;mpath_package_study;1716645607;1716645609;1716645631;1716645690;0;7200;-2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;9;9;80;5;60;26;6;"""visiting Rome """;;2;"""With one person I know""";;8;"""Other""";;70482;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102593;19850022;0;main_questionnaire;;mpath_package_study;1716652333;1716652335;1716653436;1716653485;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;100;0;100;18;5;"""in a restaurant""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;74130;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102591;19851738;0;main_questionnaire;;mpath_package_study;1716661791;1716661793;1716663205;1716663238;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;100;0;75;25;4;""" hotel""";;2;"""With one person I know""";;7;"""Resting""";;76515;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102590;19852935;0;main_questionnaire;;mpath_package_study;1716667039;1716667042;1716668383;1716668408;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;84;0;60;42;5;"""in a restaurant""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;77075;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102588;19855397;0;evening_questionnaire;;mpath_package_study;1716675000;1716675003;1716675215;1716675509;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;100;0;0;100;0;65;60;0;1;"""I had the best birthday surprise I could expect! \nMy two daughters showed up by surprise while I was visiting Rome with my husband. The trip to Rome was already an incredible b'day present and them coming made it just the best present ever.""";2,4,6;"""Engaged in a hobby"",""Socialized"",""Rested""";;1; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102608;19856829;0;main_questionnaire;;mpath_package_study;1716715284;1716715285;1716715605;1716716072;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;100;0;100;3;6;"""visiting Rome """;;3;"""With multiple people I know""";;6;"""Eating or drinking""";;84319;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102606;19858699;0;main_questionnaire;;mpath_package_study;1716726547;1716726549;1716726586;1716726629;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;71;20;88;70;6;"""visiting Rome """;;3;"""With multiple people I know""";;8;"""Other""";;94643;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102604;19860469;0;main_questionnaire;;mpath_package_study;1716738815;1716738818;1716739236;1716739300;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;35;62;11;41;57;6;"""visiting Rome """;;3;"""With multiple people I know""";;8;"""Other""";;97224;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102603;19861273;0;main_questionnaire;;mpath_package_study;1716743287;1716743288;1716743686;1716743719;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;5;28;72;10;23;82;6;"""visiting Rome """;;3;"""With multiple people I know""";;8;"""Other""";;98831;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102600;19864770;0;main_questionnaire;;mpath_package_study;1716757312;1716757315;1716757371;1716757419;0;7200;-2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;10;15;85;4;5;95;5;"""in a restaurant""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;102673;1;;;;;;;;;;;;;;;; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102599;19865619;0;evening_questionnaire;;mpath_package_study;1716761400;1716761401;1716765873;1716766273;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;86;14;79;90;4;7;87;1;1;"""Still made it to visit new places and share lovely time in family. Went to a lovely restaurant and enjoyed it a lot.""";4,2;"""Socialized"",""Engaged in a hobby""";;1;"""We stopped for a quick coffee that resulted eternal, got a wrong route that made us loose a lot of time, got wrong tickets for an attraction and nearly didn't get there on time.""" +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;-1;19839001;0;"Consent and intake questionnaire";;;0;1716562539;1716562541;1716562679;0;7200;0;1;2;"""Female""";;"""19""";1;5;"""Slightly agree""";5;6;"""Agree""";6;7;"""Strongly agree""";7;7;"""Strongly agree""";7;3;"""Slightly disagree""";3;1;1;"""Disagree strongly""";1;4;"""Agree a little""";4;4;"""Agree a little""";4;1;"""Disagree strongly""";1;5;"""Agree strongly""";5;1;"""Disagree strongly""";1;4;"""Agree a little""";4;4;"""Agree a little""";4;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225629;19845689;0;main_questionnaire;;mpath_package_study;1716623455;1716623457;1716623468;1716623571;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;11;0;100;40;19;80;4;"""Metro""";;1;"""Alone""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225631;19846966;0;main_questionnaire;;mpath_package_study;1716633288;1716633291;1716633433;1716633524;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;0;0;71;20;49;62;5;"""Airport""";;1;"""Alone""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225632;19848356;0;main_questionnaire;;mpath_package_study;1716641185;1716641186;1716642677;1716642727;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;0;0;53;29;74;60;6;"""Roma""";;1;"""Alone""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225633;19848929;0;main_questionnaire;;mpath_package_study;1716645240;1716645241;1716645647;1716645679;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;0;0;26;59;65;61;6;"""Roma""";;1;"""Alone""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225634;19850014;0;main_questionnaire;;mpath_package_study;1716652299;1716652301;1716652365;1716652395;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;1;73;59;63;6;"""Roma""";;1;"""Alone""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225639;19855398;0;evening_questionnaire;;mpath_package_study;1716675000;1716675003;1716675228;1716675366;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;100;19;0;56;56;53;70;1;1;"""meet my mum in Rome!!""";3,4,6;"""Travelled"",""Socialized"",""Rested""";;1;"""getting to a new city and orienting myself""" +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225650;19856395;0;main_questionnaire;;mpath_package_study;1716710560;1716710561;1716710740;1716710785;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;0;0;87;0;22;71;6;"""Roma""";;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225649;19856826;0;main_questionnaire;;mpath_package_study;1716715275;1716715276;1716715472;1716715513;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;36;37;49;25;6;"""Roma""";;3;"""With multiple people I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225648;19857494;0;main_questionnaire;;mpath_package_study;1716719499;1716719500;1716719695;1716719750;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;11;0;25;0;0;33;6;"""Roma""";;3;"""With multiple people I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225647;19858778;0;main_questionnaire;;mpath_package_study;1716727121;1716727122;1716728786;1716728810;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;0;0;27;21;57;30;6;"""Roma""";;3;"""With multiple people I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225646;19859586;0;main_questionnaire;;mpath_package_study;1716732883;1716732884;1716733110;1716733188;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;0;0;42;14;18;31;6;"""Roma""";;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225643;19862173;0;main_questionnaire;;mpath_package_study;1716748709;1716748711;1716748724;1716748753;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;22;0;0;37;2;100;6;"""Roma""";;3;"""With multiple people I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225642;19863876;0;main_questionnaire;;mpath_package_study;1716754982;1716754984;1716755527;1716755579;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;0;0;64;21;0;72;3;"""Home""";;3;"""With multiple people I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225641;19865314;0;main_questionnaire;;mpath_package_study;1716760206;1716760277;1716760290;1716760334;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;15;0;24;8;0;78;6;"""Roma""";;3;"""With multiple people I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225661;19866930;0;main_questionnaire;;mpath_package_study;1716798589;1716798591;1716798798;1716798879;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;10;0;33;0;0;100;7;"""transport """;;1;"""Alone""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225660;19867465;0;main_questionnaire;;mpath_package_study;1716802845;1716802846;1716802992;1716803020;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;0;0;79;0;0;100;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225659;19868086;0;main_questionnaire;;mpath_package_study;1716807725;1716807728;1716807969;1716807993;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;0;67;0;0;85;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225656;19870146;0;main_questionnaire;;mpath_package_study;1716822353;1716822354;1716822977;1716823012;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;27;0;69;0;2;80;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225651;19876278;0;evening_questionnaire;;mpath_package_study;1716847800;1716847803;1716848071;1716848117;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;74;13;0;73;19;0;78;0;0;;1,3,6;"""Worked or studied"",""Travelled"",""Rested""";;1; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225671;19878278;0;main_questionnaire;;mpath_package_study;1716889784;1716889787;1716891273;1716891396;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;0;0;37;17;0;27;2;"""School""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225669;19879676;0;main_questionnaire;;mpath_package_study;1716900210;1716900212;1716900231;1716900281;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;52;23;0;34;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225664;19884869;0;main_questionnaire;;mpath_package_study;1716927504;1716927507;1716929016;1716929049;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;37;0;100;28;56;6;"""transport """;;1;"""Alone""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225662;19886522;0;evening_questionnaire;;mpath_package_study;1716934200;1716934202;1716935852;1716935990;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;62;0;9;0;100;12;30;1;0;;1,4;"""Worked or studied"",""Socialized""";;1;"""I got up late, then had an oral presentation in uni, then had very little time to get to an interview and had to drive to get there. Also had very little time to have lunch.""" +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225683;19887764;0;main_questionnaire;;mpath_package_study;1716970138;1716970141;1716971585;1716971646;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;6;0;100;0;0;77;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225682;19888307;0;main_questionnaire;;mpath_package_study;1716975059;1716975061;1716975636;1716975665;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;0;0;32;26;67;0;6;"""transport """;;1;"""Alone""";;2;"""Engaging in a hobby""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225673;19897311;0;evening_questionnaire;;mpath_package_study;1717020600;1717020601;1717021571;1717021629;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;83;2;0;0;44;34;62;0;1;"""volunteered helping turtles!""";2,1,4;"""Engaged in a hobby"",""Worked or studied"",""Socialized""";;1; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225693;19899243;0;main_questionnaire;;mpath_package_study;1717063170;1717063173;1717063238;1717063280;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;0;0;0;29;33;57;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225692;19899647;0;main_questionnaire;;mpath_package_study;1717066054;1717066056;1717066234;1717066276;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;0;23;58;29;72;20;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225691;19900338;0;main_questionnaire;;mpath_package_study;1717070730;1717070731;1717071035;1717071085;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;0;0;54;21;34;0;6;"""transport """;;1;"""Alone""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225690;19900932;0;main_questionnaire;;mpath_package_study;1717076141;1717076143;1717077203;1717077243;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;0;0;30;13;74;26;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225689;19902160;0;main_questionnaire;;mpath_package_study;1717084516;1717084517;1717085437;1717085472;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;0;0;37;18;41;11;2;"""School""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225688;19902867;0;main_questionnaire;;mpath_package_study;1717088975;1717088977;1717089559;1717089617;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;0;33;70;0;0;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225687;19903895;0;main_questionnaire;;mpath_package_study;1717093980;1717093983;1717093992;1717094020;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;10;7;7;67;39;40;6;"""transport """;;2;"""With one person I know""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225686;19904875;0;main_questionnaire;;mpath_package_study;1717098802;1717098804;1717099223;1717099262;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;7;5;64;37;53;47;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225703;19909443;0;main_questionnaire;;mpath_package_study;1717153620;1717153621;1717154166;1717154217;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;36;36;37;90;26;56;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225700;19911584;0;main_questionnaire;;mpath_package_study;1717171129;1717171132;1717172197;1717172407;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;23;11;0;66;66;61;2;"""School""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225698;19913005;0;main_questionnaire;;mpath_package_study;1717179024;1717179025;1717179891;1717179938;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;32;5;61;3;41;33;3;"""Home""";;1;"""Alone""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225696;19915759;0;main_questionnaire;;mpath_package_study;1717189803;1717189806;1717190722;1717190770;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;0;0;32;0;35;0;6;"""transport """;;1;"""Alone""";;5;"""Exercising""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225713;19919816;0;main_questionnaire;;mpath_package_study;1717245884;1717245886;1717247200;1717247224;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;2;0;54;23;48;0;3;"""Home""";;2;"""With one person I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225708;19923748;0;main_questionnaire;;mpath_package_study;1717271279;1717271281;1717271707;1717271728;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;0;55;0;53;0;65;3;"""Home""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225722;19930236;0;main_questionnaire;;mpath_package_study;1717343985;1717343987;1717344714;1717344751;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;0;0;65;45;41;28;3;"""Home""";;3;"""With multiple people I know""";;7;"""Resting""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225718;19933953;0;main_questionnaire;;mpath_package_study;1717363733;1717363736;1717364585;1717364659;0;7200;-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;0;0;78;74;68;24;3;"""Home""";;3;"""With multiple people I know""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225717;19934457;0;evening_questionnaire;;mpath_package_study;1717366200;1717366203;1717366299;1717366373;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;80;0;0;42;63;45;51;0;0;;6,1;"""Rested"",""Worked or studied""";;1; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225737;19936244;0;main_questionnaire;;mpath_package_study;1717405813;1717405816;1717407090;1717407117;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;0;0;71;32;0;58;3;"""Home""";;1;"""Alone""";;6;"""Eating or drinking""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225736;19936720;0;main_questionnaire;;mpath_package_study;1717411917;1717411920;1717412053;1717412087;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;0;0;60;28;0;50;2;"""School""";;1;"""Alone""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225735;19937539;0;main_questionnaire;;mpath_package_study;1717418705;1717418707;1717418713;1717418732;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;0;0;53;31;68;0;2;"""School""";;3;"""With multiple people I know""";;1;"""Working or studying""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225733;19938598;0;main_questionnaire;;mpath_package_study;1717427266;1717427269;1717428047;1717428081;0;7200;-8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;0;0;31;50;68;11;6;"""transport """;;1;"""Alone""";;3;"""Travelling""";;0;1;;;;;;;;;;;;;;;; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225728;19943467;0;evening_questionnaire;;mpath_package_study;1717452600;1717452601;1717452682;1717452831;0;7200;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;85;0;0;76;68;33;34;1;0;;1,4,6;"""Worked or studied"",""Socialized"",""Rested""";;1;"""I was late to go to work""" +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626778;19371766;0;main_questionnaire;;mpath_package_study;1713524085;1713524088;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626779;19373078;0;main_questionnaire;;mpath_package_study;1713529957;1713529959;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626780;19374068;0;main_questionnaire;;mpath_package_study;1713535174;1713535175;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626783;19378258;0;main_questionnaire;;mpath_package_study;1713550317;1713550320;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626797;19384158;0;main_questionnaire;;mpath_package_study;1713598877;1713598880;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626794;19388812;0;main_questionnaire;;mpath_package_study;1713617839;1713617842;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626793;19389365;0;main_questionnaire;;mpath_package_study;1713619945;1713619948;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626792;19391241;0;main_questionnaire;;mpath_package_study;1713627804;1713627808;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626791;19392440;0;main_questionnaire;;mpath_package_study;1713630909;1713632345;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626790;19394036;0;main_questionnaire;;mpath_package_study;1713637418;1713637421;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626789;19395796;0;main_questionnaire;;mpath_package_study;1713642617;1713642619;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626788;19397929;0;main_questionnaire;;mpath_package_study;1713647024;1713647026;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626787;19398874;0;evening_questionnaire;;mpath_package_study;1713651000;1713651001;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626808;19399917;0;main_questionnaire;;mpath_package_study;1713687716;1713687717;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626807;19400622;0;main_questionnaire;;mpath_package_study;1713690599;1713690600;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626806;19401817;0;main_questionnaire;;mpath_package_study;1713695843;1713695844;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626805;19403230;0;main_questionnaire;;mpath_package_study;1713700929;1713700932;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626803;19405943;0;main_questionnaire;;mpath_package_study;1713713416;1713713419;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626802;19407172;0;main_questionnaire;;mpath_package_study;1713718112;1713718113;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626801;19408976;0;main_questionnaire;;mpath_package_study;1713725590;1713725592;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626800;19410217;0;main_questionnaire;;mpath_package_study;1713728313;1713728314;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626799;19413050;0;main_questionnaire;;mpath_package_study;1713735761;1713735764;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626798;19413471;0;evening_questionnaire;;mpath_package_study;1713737400;1713737404;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626819;19414797;0;main_questionnaire;;mpath_package_study;1713772951;1713772953;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626818;19415610;0;main_questionnaire;;mpath_package_study;1713776765;1713776768;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626817;19417018;0;main_questionnaire;;mpath_package_study;1713783562;1713783565;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626816;19418259;0;main_questionnaire;;mpath_package_study;1713788781;1713788783;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626815;19419231;0;main_questionnaire;;mpath_package_study;1713793321;1713793323;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626814;19420592;0;main_questionnaire;;mpath_package_study;1713798729;1713798731;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626813;19421808;0;main_questionnaire;;mpath_package_study;1713803466;1713803468;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626812;19423827;0;main_questionnaire;;mpath_package_study;1713809846;1713809849;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626811;19427318;0;main_questionnaire;;mpath_package_study;1713816920;1713816921;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626810;19428616;0;main_questionnaire;;mpath_package_study;1713820002;1713820004;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626809;19429555;0;evening_questionnaire;;mpath_package_study;1713823800;1713823801;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626830;19431234;0;main_questionnaire;;mpath_package_study;1713860954;1713860955;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626829;19432437;0;main_questionnaire;;mpath_package_study;1713865519;1713865522;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626827;19434538;0;main_questionnaire;;mpath_package_study;1713875374;1713875377;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626826;19435591;0;main_questionnaire;;mpath_package_study;1713880247;1713880250;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626824;19438485;0;main_questionnaire;;mpath_package_study;1713891593;1713891594;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626823;19440690;0;main_questionnaire;;mpath_package_study;1713898077;1713898081;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626822;19442870;0;main_questionnaire;;mpath_package_study;1713902669;1713902671;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626821;19444789;0;main_questionnaire;;mpath_package_study;1713908855;1713908858;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626820;19445119;0;evening_questionnaire;;mpath_package_study;1713910200;1713910201;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626840;19448363;0;main_questionnaire;;mpath_package_study;1713951582;1713951583;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626839;19449491;0;main_questionnaire;;mpath_package_study;1713956610;1713956612;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626838;19450700;0;main_questionnaire;;mpath_package_study;1713962654;1713962655;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626837;19451940;0;main_questionnaire;;mpath_package_study;1713967433;1713967435;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626836;19453377;0;main_questionnaire;;mpath_package_study;1713973017;1713973019;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626835;19455167;0;main_questionnaire;;mpath_package_study;1713979584;1713979587;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626834;19456284;0;main_questionnaire;;mpath_package_study;1713982603;1713982604;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626833;19459945;0;main_questionnaire;;mpath_package_study;1713989606;1713989609;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626832;19461302;0;main_questionnaire;;mpath_package_study;1713992707;1713992709;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626831;19462264;0;evening_questionnaire;;mpath_package_study;1713996600;1713996603;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626852;19463726;0;main_questionnaire;;mpath_package_study;1714030769;1714030771;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626851;19465056;0;main_questionnaire;;mpath_package_study;1714036661;1714036664;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626850;19466306;0;main_questionnaire;;mpath_package_study;1714043436;1714043438;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626849;19467478;0;main_questionnaire;;mpath_package_study;1714049120;1714049121;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626848;19468112;0;main_questionnaire;;mpath_package_study;1714051828;1714051830;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626847;19469768;0;main_questionnaire;;mpath_package_study;1714058039;1714058040;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626846;19471176;0;main_questionnaire;;mpath_package_study;1714063847;1714063848;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626845;19473819;0;main_questionnaire;;mpath_package_study;1714071581;1714071583;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626844;19476211;0;main_questionnaire;;mpath_package_study;1714076577;1714076580;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626843;19477502;0;main_questionnaire;;mpath_package_study;1714079240;1714079243;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626842;19478362;0;evening_questionnaire;;mpath_package_study;1714083000;1714083001;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626863;19479923;0;main_questionnaire;;mpath_package_study;1714116723;1714116725;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626862;19481438;0;main_questionnaire;;mpath_package_study;1714124332;1714124334;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626861;19482205;0;main_questionnaire;;mpath_package_study;1714128545;1714128546;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626860;19483399;0;main_questionnaire;;mpath_package_study;1714134591;1714134594;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626859;19484974;0;main_questionnaire;;mpath_package_study;1714141038;1714141039;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626858;19486379;0;main_questionnaire;;mpath_package_study;1714146858;1714146861;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626857;19487385;0;main_questionnaire;;mpath_package_study;1714150679;1714150681;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626856;19489631;0;main_questionnaire;;mpath_package_study;1714157004;1714157005;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626855;19492115;0;main_questionnaire;;mpath_package_study;1714161959;1714161960;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626854;19493749;0;main_questionnaire;;mpath_package_study;1714166591;1714166594;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626853;19494531;0;evening_questionnaire;;mpath_package_study;1714169400;1714169403;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626874;19495575;0;main_questionnaire;;mpath_package_study;1714203431;1714203434;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626873;19496520;0;main_questionnaire;;mpath_package_study;1714210090;1714210091;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626872;19497554;0;main_questionnaire;;mpath_package_study;1714214035;1714214038;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626871;19499048;0;main_questionnaire;;mpath_package_study;1714219286;1714219287;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626870;19500731;0;main_questionnaire;;mpath_package_study;1714227681;1714227682;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626869;19501925;0;main_questionnaire;;mpath_package_study;1714232260;1714232261;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626868;19503623;0;main_questionnaire;;mpath_package_study;1714238154;1714238156;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626867;19504385;0;main_questionnaire;;mpath_package_study;1714241436;1714241439;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626866;19506417;0;main_questionnaire;;mpath_package_study;1714246598;1714246600;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626865;19509630;0;main_questionnaire;;mpath_package_study;1714255037;1714255038;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626864;19509988;0;evening_questionnaire;;mpath_package_study;1714255800;1714255803;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626885;19511342;0;main_questionnaire;;mpath_package_study;1714292417;1714292420;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626884;19512016;0;main_questionnaire;;mpath_package_study;1714295965;1714295966;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626883;19513062;0;main_questionnaire;;mpath_package_study;1714300326;1714300327;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626882;19514521;0;main_questionnaire;;mpath_package_study;1714305968;1714305972;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626881;19515747;0;main_questionnaire;;mpath_package_study;1714312535;1714312538;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626880;19516823;0;main_questionnaire;;mpath_package_study;1714316669;1714316672;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626879;19518807;0;main_questionnaire;;mpath_package_study;1714324403;1714324404;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626878;19519442;0;main_questionnaire;;mpath_package_study;1714327206;1714327207;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626877;19521647;0;main_questionnaire;;mpath_package_study;1714333958;1714333960;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626876;19524229;0;main_questionnaire;;mpath_package_study;1714339602;1714339603;;;;7200; +234609;!9v48@jp7a7;"!byyo kjyt";abc;Ver;jp7a7;28626875;19525079;0;evening_questionnaire;;mpath_package_study;1714342200;1714342202;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727188;19446956;0;main_questionnaire;;mpath_package_study;1713945657;1713945659;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727189;19448236;0;main_questionnaire;;mpath_package_study;1713950744;1713950745;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727190;19449591;0;main_questionnaire;;mpath_package_study;1713957258;1713957260;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727191;19450827;0;main_questionnaire;;mpath_package_study;1713963485;1713963486;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727192;19452131;0;main_questionnaire;;mpath_package_study;1713968391;1713968392;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727209;19464112;0;main_questionnaire;;mpath_package_study;1714033252;1714033254;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727208;19465235;0;main_questionnaire;;mpath_package_study;1714038002;1714038004;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727207;19466479;0;main_questionnaire;;mpath_package_study;1714044315;1714044318;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727206;19467189;0;main_questionnaire;;mpath_package_study;1714047484;1714047486;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727205;19468191;0;main_questionnaire;;mpath_package_study;1714052287;1714052288;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727204;19469810;0;main_questionnaire;;mpath_package_study;1714058330;1714058333;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727203;19471576;0;main_questionnaire;;mpath_package_study;1714064753;1714064755;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727202;19472819;0;main_questionnaire;;mpath_package_study;1714068462;1714068463;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727201;19475074;0;main_questionnaire;;mpath_package_study;1714073657;1714073659;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727200;19477902;0;main_questionnaire;;mpath_package_study;1714080629;1714080631;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727219;19481423;0;main_questionnaire;;mpath_package_study;1714124132;1714124133;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727218;19482160;0;main_questionnaire;;mpath_package_study;1714128269;1714128271;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727217;19483174;0;main_questionnaire;;mpath_package_study;1714132875;1714132878;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727215;19486264;0;main_questionnaire;;mpath_package_study;1714146009;1714146010;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727224;19504624;0;main_questionnaire;;mpath_package_study;1714242504;1714242505;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727223;19507373;0;main_questionnaire;;mpath_package_study;1714248708;1714248709;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727242;19511354;0;main_questionnaire;;mpath_package_study;1714292758;1714292760;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727239;19514689;0;main_questionnaire;;mpath_package_study;1714307018;1714307020;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727237;19517015;0;main_questionnaire;;mpath_package_study;1714318002;1714318006;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727236;19518479;0;main_questionnaire;;mpath_package_study;1714323533;1714323536;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727235;19519543;0;main_questionnaire;;mpath_package_study;1714327999;1714328001;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727253;19526968;0;main_questionnaire;;mpath_package_study;1714377942;1714377945;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727252;19528028;0;main_questionnaire;;mpath_package_study;1714383900;1714383903;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727251;19528553;0;main_questionnaire;;mpath_package_study;1714386784;1714386787;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727250;19529962;0;main_questionnaire;;mpath_package_study;1714394529;1714394531;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727248;19532152;0;main_questionnaire;;mpath_package_study;1714404147;1714404149;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727247;19533343;0;main_questionnaire;;mpath_package_study;1714409635;1714409636;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727246;19535429;0;main_questionnaire;;mpath_package_study;1714415616;1714415619;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727245;19537487;0;main_questionnaire;;mpath_package_study;1714419111;1714419113;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727244;19540518;0;main_questionnaire;;mpath_package_study;1714427684;1714427685;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727243;19540790;0;evening_questionnaire;;mpath_package_study;1714428600;1714428602;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727264;19542242;0;main_questionnaire;;mpath_package_study;1714463552;1714463554;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727263;19543272;0;main_questionnaire;;mpath_package_study;1714469119;1714469121;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727262;19544303;0;main_questionnaire;;mpath_package_study;1714475121;1714475125;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727261;19545096;0;main_questionnaire;;mpath_package_study;1714479777;1714479779;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727260;19546019;0;main_questionnaire;;mpath_package_study;1714485015;1714485016;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727259;19547267;0;main_questionnaire;;mpath_package_study;1714490116;1714490117;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727258;19548372;0;main_questionnaire;;mpath_package_study;1714495764;1714495765;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727257;19549814;0;main_questionnaire;;mpath_package_study;1714500299;1714500302;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727256;19552080;0;main_questionnaire;;mpath_package_study;1714506360;1714506362;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727255;19554072;0;main_questionnaire;;mpath_package_study;1714511270;1714511271;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727254;19554917;0;evening_questionnaire;;mpath_package_study;1714515000;1714515003;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727275;19556113;0;main_questionnaire;;mpath_package_study;1714549183;1714549186;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727274;19557071;0;main_questionnaire;;mpath_package_study;1714554596;1714554598;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727273;19558321;0;main_questionnaire;;mpath_package_study;1714562101;1714562104;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727272;19558949;0;main_questionnaire;;mpath_package_study;1714565821;1714565822;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727271;19559753;0;main_questionnaire;;mpath_package_study;1714570476;1714570477;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727269;19562088;0;main_questionnaire;;mpath_package_study;1714581570;1714581573;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727268;19564592;0;main_questionnaire;;mpath_package_study;1714589768;1714589771;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727286;19569962;0;main_questionnaire;;mpath_package_study;1714636435;1714636437;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727282;19573483;0;main_questionnaire;;mpath_package_study;1714656716;1714656717;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727281;19575260;0;main_questionnaire;;mpath_package_study;1714664907;1714664908;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727280;19576530;0;main_questionnaire;;mpath_package_study;1714670921;1714670922;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727297;19583593;0;main_questionnaire;;mpath_package_study;1714724722;1714724724;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727295;19584918;0;main_questionnaire;;mpath_package_study;1714732411;1714732412;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727292;19588458;0;main_questionnaire;;mpath_package_study;1714751019;1714751022;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727291;19589547;0;main_questionnaire;;mpath_package_study;1714755900;1714755901;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727288;19594594;0;main_questionnaire;;mpath_package_study;1714771712;1714771714;;;;7200; +235458;!5bm5@jp7a7;"!bxxm dqfu";peterk;pet;jp7a7;28727287;19595141;0;evening_questionnaire;;mpath_package_study;1714774200;1714774202;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625126;19369371;0;main_questionnaire;;mpath_package_study;1713513165;1713513168;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625134;19380284;0;main_questionnaire;;mpath_package_study;1713555567;1713555568;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625136;19383354;0;evening_questionnaire;;mpath_package_study;1713564600;1713564601;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625143;19389560;0;main_questionnaire;;mpath_package_study;1713620999;1713621000;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625142;19390785;0;main_questionnaire;;mpath_package_study;1713625298;1713625300;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625141;19392410;0;main_questionnaire;;mpath_package_study;1713630965;1713632201;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625139;19396654;0;main_questionnaire;;mpath_package_study;1713644343;1713644344;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625138;19398133;0;main_questionnaire;;mpath_package_study;1713648273;1713648275;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625137;19398873;0;evening_questionnaire;;mpath_package_study;1713651000;1713651001;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625158;19399663;0;main_questionnaire;;mpath_package_study;1713686154;1713686155;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625156;19401861;0;main_questionnaire;;mpath_package_study;1713696103;1713696104;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625154;19405036;0;main_questionnaire;;mpath_package_study;1713709646;1713709647;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625153;19406127;0;main_questionnaire;;mpath_package_study;1713714345;1713714348;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625152;19407781;0;main_questionnaire;;mpath_package_study;1713720143;1713720146;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625151;19408803;0;main_questionnaire;;mpath_package_study;1713724634;1713724637;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625150;19411268;0;main_questionnaire;;mpath_package_study;1713730570;1713730572;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625149;19413072;0;main_questionnaire;;mpath_package_study;1713736134;1713736137;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625148;19413470;0;evening_questionnaire;;mpath_package_study;1713737400;1713737404;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625168;19416067;0;main_questionnaire;;mpath_package_study;1713779339;1713779341;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625161;19426177;0;main_questionnaire;;mpath_package_study;1713814349;1713814351;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625159;19429554;0;evening_questionnaire;;mpath_package_study;1713823800;1713823801;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625180;19430772;0;main_questionnaire;;mpath_package_study;1713859139;1713859141;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625179;19432388;0;main_questionnaire;;mpath_package_study;1713865125;1713865126;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625174;19438787;0;main_questionnaire;;mpath_package_study;1713892147;1713892150;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625173;19440789;0;main_questionnaire;;mpath_package_study;1713898526;1713898527;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625170;19445118;0;evening_questionnaire;;mpath_package_study;1713910200;1713910201;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625187;19451510;0;main_questionnaire;;mpath_package_study;1713966310;1713966313;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625182;19461952;0;main_questionnaire;;mpath_package_study;1713995563;1713995566;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625202;19464114;0;main_questionnaire;;mpath_package_study;1714033265;1714033266;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625197;19470195;0;main_questionnaire;;mpath_package_study;1714059935;1714059936;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625212;19481511;0;main_questionnaire;;mpath_package_study;1714125010;1714125014;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625210;19483483;0;main_questionnaire;;mpath_package_study;1714135063;1714135064;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625209;19485093;0;main_questionnaire;;mpath_package_study;1714141437;1714141440;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625208;19486211;0;main_questionnaire;;mpath_package_study;1714145763;1714145764;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625223;19496690;0;main_questionnaire;;mpath_package_study;1714211549;1714211551;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625221;19499525;0;main_questionnaire;;mpath_package_study;1714222362;1714222363;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625220;19500318;0;main_questionnaire;;mpath_package_study;1714226010;1714226013;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625219;19502126;0;main_questionnaire;;mpath_package_study;1714233367;1714233369;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625218;19503222;0;main_questionnaire;;mpath_package_study;1714237104;1714237105;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625217;19504333;0;main_questionnaire;;mpath_package_study;1714241053;1714241055;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625216;19506537;0;main_questionnaire;;mpath_package_study;1714247290;1714247292;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625215;19509575;0;main_questionnaire;;mpath_package_study;1714254764;1714254768;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625214;19509987;0;evening_questionnaire;;mpath_package_study;1714255800;1714255803;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625235;19511318;0;main_questionnaire;;mpath_package_study;1714291862;1714291865;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625234;19511919;0;main_questionnaire;;mpath_package_study;1714295457;1714295458;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625233;19513780;0;main_questionnaire;;mpath_package_study;1714303362;1714303365;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625232;19514515;0;main_questionnaire;;mpath_package_study;1714305944;1714305947;;;;7200; +234587;!vz27@jp7a7;"!xoub vhcz";jefrtbf;jef;jp7a7;28625226;19524710;0;main_questionnaire;;mpath_package_study;1714341468;1714341470;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586001;19353242;0;evening_questionnaire;;mpath_package_study;1713391800;1713391801;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586006;19362218;0;main_questionnaire;;mpath_package_study;1713460382;1713460384;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586013;19383351;0;evening_questionnaire;;mpath_package_study;1713564600;1713564601;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586034;19384164;0;main_questionnaire;;mpath_package_study;1713599572;1713599576;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586029;19391283;0;main_questionnaire;;mpath_package_study;1713628081;1713628083;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586025;19398515;0;main_questionnaire;;mpath_package_study;1713649947;1713649950;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586024;19398870;0;evening_questionnaire;;mpath_package_study;1713651000;1713651001;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586045;19399652;0;main_questionnaire;;mpath_package_study;1713684875;1713684876;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586035;19413467;0;evening_questionnaire;;mpath_package_study;1713737400;1713737404;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586046;19429551;0;evening_questionnaire;;mpath_package_study;1713823800;1713823801;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586061;19438841;0;main_questionnaire;;mpath_package_study;1713892396;1713892397;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586057;19445115;0;evening_questionnaire;;mpath_package_study;1713910200;1713910201;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586068;19462260;0;evening_questionnaire;;mpath_package_study;1713996600;1713996603;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586080;19478085;0;main_questionnaire;;mpath_package_study;1714082225;1714082227;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586079;19478358;0;evening_questionnaire;;mpath_package_study;1714083000;1714083001;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586096;19484517;0;main_questionnaire;;mpath_package_study;1714139983;1714139986;;;;7200; +234086;!qzbd@jp7a7;"!yyzt qvtn";Oliver;Alt;jp7a7;28586090;19494527;0;evening_questionnaire;;mpath_package_study;1714169400;1714169403;;;;7200; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752975;19487213;0;main_questionnaire;;mpath_package_study;1714150067;1714150069;;;;7200; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752985;19504524;0;main_questionnaire;;mpath_package_study;1714242000;1714242002;;;;7200; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28752999;19515626;0;main_questionnaire;;mpath_package_study;1714311730;1714311731;;;;7200; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753012;19529045;0;main_questionnaire;;mpath_package_study;1714389744;1714389745;;;;7200; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753046;19571126;0;main_questionnaire;;mpath_package_study;1714642997;1714643001;;;;7200; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753042;19574793;0;main_questionnaire;;mpath_package_study;1714662479;1714662481;;;;7200; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753054;19586909;0;main_questionnaire;;mpath_package_study;1714744203;1714744207;;;;7200; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753053;19588363;0;main_questionnaire;;mpath_package_study;1714750348;1714750351;;;;7200; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753065;19600526;0;main_questionnaire;;mpath_package_study;1714831361;1714831362;;;;7200; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753064;19601394;0;main_questionnaire;;mpath_package_study;1714836537;1714836541;;;;7200; +235790;!33h5@jp7a7;"!zdpo cqrd";Benji;chi;jp7a7;28753063;19602554;0;main_questionnaire;;mpath_package_study;1714841831;1714841832;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629014;19369344;0;main_questionnaire;;mpath_package_study;1713512578;1713512580;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629019;19375381;0;main_questionnaire;;mpath_package_study;1713539984;1713539987;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629023;19382981;0;main_questionnaire;;mpath_package_study;1713563093;1713563094;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629035;19384444;0;main_questionnaire;;mpath_package_study;1713601146;1713601149;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629034;19385811;0;main_questionnaire;;mpath_package_study;1713607043;1713607044;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629033;19386767;0;main_questionnaire;;mpath_package_study;1713609707;1713609713;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629030;19391126;0;main_questionnaire;;mpath_package_study;1713627373;1713627374;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629028;19393870;0;main_questionnaire;;mpath_package_study;1713636857;1713636859;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629046;19399664;0;main_questionnaire;;mpath_package_study;1713686181;1713686183;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629043;19403673;0;main_questionnaire;;mpath_package_study;1713703724;1713703725;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629068;19430761;0;main_questionnaire;;mpath_package_study;1713858854;1713858856;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629067;19432399;0;main_questionnaire;;mpath_package_study;1713865207;1713865210;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629065;19434834;0;main_questionnaire;;mpath_package_study;1713877104;1713877107;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629062;19438975;0;main_questionnaire;;mpath_package_study;1713893054;1713893056;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629061;19440599;0;main_questionnaire;;mpath_package_study;1713897749;1713897750;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629060;19442876;0;main_questionnaire;;mpath_package_study;1713902706;1713902708;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629059;19444413;0;main_questionnaire;;mpath_package_study;1713907421;1713907423;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629073;19454910;0;main_questionnaire;;mpath_package_study;1713978272;1713978275;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629071;19459032;0;main_questionnaire;;mpath_package_study;1713987827;1713987828;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629090;19464108;0;main_questionnaire;;mpath_package_study;1714033168;1714033169;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629087;19467576;0;main_questionnaire;;mpath_package_study;1714049864;1714049867;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629086;19468297;0;main_questionnaire;;mpath_package_study;1714052728;1714052731;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629096;19485789;0;main_questionnaire;;mpath_package_study;1714143621;1714143623;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629095;19487808;0;main_questionnaire;;mpath_package_study;1714151824;1714151826;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629112;19495750;0;main_questionnaire;;mpath_package_study;1714206583;1714206585;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629109;19499078;0;main_questionnaire;;mpath_package_study;1714219481;1714219482;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629108;19500217;0;main_questionnaire;;mpath_package_study;1714225420;1714225421;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629107;19502110;0;main_questionnaire;;mpath_package_study;1714233274;1714233277;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629105;19504352;0;main_questionnaire;;mpath_package_study;1714241231;1714241234;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629104;19507524;0;main_questionnaire;;mpath_package_study;1714249365;1714249366;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629103;19509452;0;main_questionnaire;;mpath_package_study;1714253684;1714253685;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629102;19509989;0;evening_questionnaire;;mpath_package_study;1714255800;1714255803;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629123;19511358;0;main_questionnaire;;mpath_package_study;1714292771;1714292772;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629120;19514508;0;main_questionnaire;;mpath_package_study;1714305883;1714305886;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629119;19515957;0;main_questionnaire;;mpath_package_study;1714313541;1714313543;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629118;19517232;0;main_questionnaire;;mpath_package_study;1714318536;1714318537;;;;7200; +234639;!f348@jp7a7;"!hrhm eahp";Arbiter4laif;!be;jp7a7;28629115;19521435;0;main_questionnaire;;mpath_package_study;1714332787;1714332788;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573896;19324518;0;main_questionnaire;;mpath_package_study;1713253443;1713253445;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573898;19326263;0;main_questionnaire;;mpath_package_study;1713263864;1713263867;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573903;19332917;0;main_questionnaire;;mpath_package_study;1713292785;1713292788;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573916;19339537;0;main_questionnaire;;mpath_package_study;1713345151;1713345153;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573915;19340995;0;main_questionnaire;;mpath_package_study;1713351701;1713351703;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573913;19343369;0;main_questionnaire;;mpath_package_study;1713363053;1713363054;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573912;19344147;0;main_questionnaire;;mpath_package_study;1713366212;1713366213;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573908;19351752;0;main_questionnaire;;mpath_package_study;1713391184;1713391186;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573928;19353907;0;main_questionnaire;;mpath_package_study;1713426562;1713426565;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573927;19354729;0;main_questionnaire;;mpath_package_study;1713433611;1713433615;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573939;19368901;0;main_questionnaire;;mpath_package_study;1713512188;1713512191;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573938;19369657;0;main_questionnaire;;mpath_package_study;1713517780;1713517782;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573948;19386284;0;main_questionnaire;;mpath_package_study;1713611162;1713611164;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573947;19387581;0;main_questionnaire;;mpath_package_study;1713615958;1713615961;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573945;19390293;0;main_questionnaire;;mpath_package_study;1713627585;1713627586;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573961;19399633;0;main_questionnaire;;mpath_package_study;1713686447;1713686450;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573960;19399902;0;main_questionnaire;;mpath_package_study;1713690743;1713690744;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573958;19402820;0;main_questionnaire;;mpath_package_study;1713703145;1713703146;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573971;19414824;0;main_questionnaire;;mpath_package_study;1713776898;1713776899;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573969;19417206;0;main_questionnaire;;mpath_package_study;1713787322;1713787325;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573968;19418392;0;main_questionnaire;;mpath_package_study;1713793107;1713793110;;;;10800; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573966;19422175;0;main_questionnaire;;mpath_package_study;1713804732;1713804735;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573963;19429179;0;main_questionnaire;;mpath_package_study;1713822337;1713822339;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573962;19429550;0;evening_questionnaire;;mpath_package_study;1713823800;1713823801;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573983;19431235;0;main_questionnaire;;mpath_package_study;1713860962;1713860964;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573980;19434763;0;main_questionnaire;;mpath_package_study;1713876683;1713876684;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573978;19437496;0;main_questionnaire;;mpath_package_study;1713887879;1713887880;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573993;19448190;0;main_questionnaire;;mpath_package_study;1713950206;1713950209;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573992;19449018;0;main_questionnaire;;mpath_package_study;1713954724;1713954727;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573990;19452032;0;main_questionnaire;;mpath_package_study;1713967884;1713967888;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573989;19453033;0;main_questionnaire;;mpath_package_study;1713971519;1713971520;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573988;19455022;0;main_questionnaire;;mpath_package_study;1713978822;1713978825;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573986;19460084;0;main_questionnaire;;mpath_package_study;1713990160;1713990163;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28573985;19461963;0;main_questionnaire;;mpath_package_study;1713995653;1713995654;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28574005;19463902;0;main_questionnaire;;mpath_package_study;1714032005;1714032012;;;;7200; +234011;!jnzj@jp7a7;"!ajxz ckfk";horus;hor;jp7a7;28574004;19464950;0;main_questionnaire;;mpath_package_study;1714036233;1714036235;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610320;19354238;0;main_questionnaire;;mpath_package_study;1713426214;1713426217;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610321;19355562;0;main_questionnaire;;mpath_package_study;1713431935;1713431938;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610322;19356913;0;main_questionnaire;;mpath_package_study;1713438386;1713438388;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610324;19359303;0;main_questionnaire;;mpath_package_study;1713449289;1713449292;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610325;19360238;0;main_questionnaire;;mpath_package_study;1713452788;1713452789;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610326;19362101;0;main_questionnaire;;mpath_package_study;1713459774;1713459777;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610327;19363216;0;main_questionnaire;;mpath_package_study;1713463669;1713463671;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610328;19365409;0;main_questionnaire;;mpath_package_study;1713470127;1713470128;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610329;19367806;0;main_questionnaire;;mpath_package_study;1713475925;1713475928;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610330;19368264;0;evening_questionnaire;;mpath_package_study;1713478200;1713478203;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610341;19369362;0;main_questionnaire;;mpath_package_study;1713512968;1713512969;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610340;19370967;0;main_questionnaire;;mpath_package_study;1713520785;1713520788;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610339;19372241;0;main_questionnaire;;mpath_package_study;1713526094;1713526095;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610338;19373268;0;main_questionnaire;;mpath_package_study;1713531157;1713531159;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610337;19374279;0;main_questionnaire;;mpath_package_study;1713535208;1713535211;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610336;19375434;0;main_questionnaire;;mpath_package_study;1713540462;1713540464;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610335;19377146;0;main_questionnaire;;mpath_package_study;1713546546;1713546547;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610334;19378406;0;main_questionnaire;;mpath_package_study;1713550993;1713550995;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610332;19383084;0;main_questionnaire;;mpath_package_study;1713563808;1713563810;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610352;19384155;0;main_questionnaire;;mpath_package_study;1713598260;1713598263;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610350;19386810;0;main_questionnaire;;mpath_package_study;1713609863;1713609866;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610348;19389876;0;main_questionnaire;;mpath_package_study;1713622330;1713622333;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610347;19390980;0;main_questionnaire;;mpath_package_study;1713626850;1713626853;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610346;19392092;0;main_questionnaire;;mpath_package_study;1713630678;1713630682;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610345;19394209;0;main_questionnaire;;mpath_package_study;1713638050;1713638052;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610344;19395705;0;main_questionnaire;;mpath_package_study;1713642096;1713642098;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610343;19398508;0;main_questionnaire;;mpath_package_study;1713649926;1713649929;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610342;19398871;0;evening_questionnaire;;mpath_package_study;1713651000;1713651001;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610363;19399888;0;main_questionnaire;;mpath_package_study;1713686753;1713686755;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610362;19400925;0;main_questionnaire;;mpath_package_study;1713691872;1713691874;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610361;19402483;0;main_questionnaire;;mpath_package_study;1713698225;1713698227;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610360;19403553;0;main_questionnaire;;mpath_package_study;1713703148;1713703151;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610359;19404970;0;main_questionnaire;;mpath_package_study;1713709242;1713709245;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610358;19405796;0;main_questionnaire;;mpath_package_study;1713712839;1713712842;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610357;19407177;0;main_questionnaire;;mpath_package_study;1713718137;1713718138;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610356;19408480;0;main_questionnaire;;mpath_package_study;1713723378;1713723379;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610355;19410213;0;main_questionnaire;;mpath_package_study;1713728259;1713728262;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610354;19412540;0;main_questionnaire;;mpath_package_study;1713733726;1713733727;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610353;19413468;0;evening_questionnaire;;mpath_package_study;1713737400;1713737404;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610374;19414862;0;main_questionnaire;;mpath_package_study;1713773908;1713773909;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610373;19416121;0;main_questionnaire;;mpath_package_study;1713779959;1713779962;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610372;19417334;0;main_questionnaire;;mpath_package_study;1713784390;1713784391;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610371;19418082;0;main_questionnaire;;mpath_package_study;1713787751;1713787753;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610369;19420558;0;main_questionnaire;;mpath_package_study;1713798369;1713798372;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610368;19422204;0;main_questionnaire;;mpath_package_study;1713804838;1713804841;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610367;19423995;0;main_questionnaire;;mpath_package_study;1713810525;1713810527;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610366;19427200;0;main_questionnaire;;mpath_package_study;1713816084;1713816087;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610365;19428657;0;main_questionnaire;;mpath_package_study;1713820407;1713820409;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610364;19429552;0;evening_questionnaire;;mpath_package_study;1713823800;1713823801;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610385;19430755;0;main_questionnaire;;mpath_package_study;1713858723;1713858726;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610384;19432415;0;main_questionnaire;;mpath_package_study;1713865282;1713865284;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610383;19433375;0;main_questionnaire;;mpath_package_study;1713869916;1713869919;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610382;19434805;0;main_questionnaire;;mpath_package_study;1713876855;1713876858;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610381;19436137;0;main_questionnaire;;mpath_package_study;1713881931;1713881933;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610380;19436982;0;main_questionnaire;;mpath_package_study;1713885505;1713885509;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610379;19438968;0;main_questionnaire;;mpath_package_study;1713892988;1713892992;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610378;19440504;0;main_questionnaire;;mpath_package_study;1713897288;1713897289;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610377;19442972;0;main_questionnaire;;mpath_package_study;1713903402;1713903403;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610376;19444866;0;main_questionnaire;;mpath_package_study;1713909533;1713909536;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610375;19445116;0;evening_questionnaire;;mpath_package_study;1713910200;1713910201;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610396;19446592;0;main_questionnaire;;mpath_package_study;1713945428;1713945431;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610394;19449653;0;main_questionnaire;;mpath_package_study;1713957688;1713957691;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610392;19451441;0;main_questionnaire;;mpath_package_study;1713965910;1713965913;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610391;19452985;0;main_questionnaire;;mpath_package_study;1713971140;1713971141;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610390;19454396;0;main_questionnaire;;mpath_package_study;1713977077;1713977078;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610389;19456272;0;main_questionnaire;;mpath_package_study;1713982536;1713982539;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610388;19459886;0;main_questionnaire;;mpath_package_study;1713989242;1713989244;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610387;19461533;0;main_questionnaire;;mpath_package_study;1713993972;1713993974;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610386;19462261;0;evening_questionnaire;;mpath_package_study;1713996600;1713996603;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610407;19463734;0;main_questionnaire;;mpath_package_study;1714031024;1714031027;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610406;19464977;0;main_questionnaire;;mpath_package_study;1714036489;1714036491;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610405;19465802;0;main_questionnaire;;mpath_package_study;1714041055;1714041057;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610404;19467280;0;main_questionnaire;;mpath_package_study;1714047915;1714047917;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610403;19468194;0;main_questionnaire;;mpath_package_study;1714052304;1714052307;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610402;19470249;0;main_questionnaire;;mpath_package_study;1714060226;1714060227;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610401;19471266;0;main_questionnaire;;mpath_package_study;1714064190;1714064192;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610400;19473046;0;main_questionnaire;;mpath_package_study;1714069670;1714069671;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610399;19476092;0;main_questionnaire;;mpath_package_study;1714076259;1714076260;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610398;19477679;0;main_questionnaire;;mpath_package_study;1714080197;1714080199;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610397;19478359;0;evening_questionnaire;;mpath_package_study;1714083000;1714083001;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610418;19479924;0;main_questionnaire;;mpath_package_study;1714116747;1714116749;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610416;19482652;0;main_questionnaire;;mpath_package_study;1714130689;1714130693;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610415;19483236;0;main_questionnaire;;mpath_package_study;1714133262;1714133264;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610414;19484494;0;main_questionnaire;;mpath_package_study;1714139833;1714139834;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610413;19486372;0;main_questionnaire;;mpath_package_study;1714146820;1714146821;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610412;19487820;0;main_questionnaire;;mpath_package_study;1714151921;1714151924;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610411;19488853;0;main_questionnaire;;mpath_package_study;1714154494;1714154495;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610410;19492310;0;main_questionnaire;;mpath_package_study;1714162917;1714162918;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610409;19493524;0;main_questionnaire;;mpath_package_study;1714165485;1714165486;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610408;19494528;0;evening_questionnaire;;mpath_package_study;1714169400;1714169403;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610429;19495572;0;main_questionnaire;;mpath_package_study;1714203352;1714203353;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610428;19496616;0;main_questionnaire;;mpath_package_study;1714210834;1714210835;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610427;19498208;0;main_questionnaire;;mpath_package_study;1714215995;1714215998;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610426;19499573;0;main_questionnaire;;mpath_package_study;1714222769;1714222772;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610425;19500625;0;main_questionnaire;;mpath_package_study;1714227325;1714227326;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610424;19502049;0;main_questionnaire;;mpath_package_study;1714232879;1714232881;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610423;19503262;0;main_questionnaire;;mpath_package_study;1714237173;1714237175;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610422;19504378;0;main_questionnaire;;mpath_package_study;1714241381;1714241384;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610421;19506008;0;main_questionnaire;;mpath_package_study;1714246203;1714246204;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610420;19508916;0;main_questionnaire;;mpath_package_study;1714251916;1714251919;;;;7200; +234455;;;ejiroghene;eji;jp7a7;28610419;19509985;0;evening_questionnaire;;mpath_package_study;1714255800;1714255803;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624310;19354235;0;main_questionnaire;;mpath_package_study;1713426164;1713426166;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624311;19355747;0;main_questionnaire;;mpath_package_study;1713433217;1713433221;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624312;19356628;0;main_questionnaire;;mpath_package_study;1713437542;1713437545;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624313;19358002;0;main_questionnaire;;mpath_package_study;1713443470;1713443473;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624314;19359385;0;main_questionnaire;;mpath_package_study;1713449603;1713449604;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624315;19360743;0;main_questionnaire;;mpath_package_study;1713455306;1713455307;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624316;19361755;0;main_questionnaire;;mpath_package_study;1713459271;1713459272;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624317;19363233;0;main_questionnaire;;mpath_package_study;1713463791;1713463793;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624318;19365208;0;main_questionnaire;;mpath_package_study;1713469147;1713469150;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624319;19367916;0;main_questionnaire;;mpath_package_study;1713476969;1713476972;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624331;19369638;0;main_questionnaire;;mpath_package_study;1713513650;1713513651;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624330;19370856;0;main_questionnaire;;mpath_package_study;1713519718;1713519721;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624329;19371464;0;main_questionnaire;;mpath_package_study;1713522612;1713522615;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624328;19373155;0;main_questionnaire;;mpath_package_study;1713530373;1713530374;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624327;19374052;0;main_questionnaire;;mpath_package_study;1713535019;1713535020;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624326;19375334;0;main_questionnaire;;mpath_package_study;1713539571;1713539574;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624325;19376526;0;main_questionnaire;;mpath_package_study;1713544740;1713544741;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624324;19378897;0;main_questionnaire;;mpath_package_study;1713552561;1713552562;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624323;19381372;0;main_questionnaire;;mpath_package_study;1713558586;1713558587;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624342;19384162;0;main_questionnaire;;mpath_package_study;1713599440;1713599443;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624340;19386751;0;main_questionnaire;;mpath_package_study;1713609626;1713609629;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624338;19389948;0;main_questionnaire;;mpath_package_study;1713622711;1713622713;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624335;19393808;0;main_questionnaire;;mpath_package_study;1713636560;1713636561;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624334;19396772;0;main_questionnaire;;mpath_package_study;1713644635;1713644636;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624353;19399662;0;main_questionnaire;;mpath_package_study;1713686127;1713686128;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624352;19400947;0;main_questionnaire;;mpath_package_study;1713692250;1713692252;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624349;19404500;0;main_questionnaire;;mpath_package_study;1713707380;1713707383;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624348;19405721;0;main_questionnaire;;mpath_package_study;1713712146;1713712147;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624346;19408923;0;main_questionnaire;;mpath_package_study;1713725289;1713725292;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624364;19414795;0;main_questionnaire;;mpath_package_study;1713772897;1713772899;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624363;19416092;0;main_questionnaire;;mpath_package_study;1713779626;1713779629;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624362;19416936;0;main_questionnaire;;mpath_package_study;1713783120;1713783122;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624360;19419736;0;main_questionnaire;;mpath_package_study;1713795242;1713795246;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624357;19424495;0;main_questionnaire;;mpath_package_study;1713811600;1713811603;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624371;19435973;0;main_questionnaire;;mpath_package_study;1713881121;1713881125;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624370;19437197;0;main_questionnaire;;mpath_package_study;1713886331;1713886332;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624366;19444798;0;main_questionnaire;;mpath_package_study;1713908932;1713908934;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624383;19450297;0;main_questionnaire;;mpath_package_study;1713960337;1713960339;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624381;19453188;0;main_questionnaire;;mpath_package_study;1713972581;1713972582;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624376;19462262;0;evening_questionnaire;;mpath_package_study;1713996600;1713996603;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624397;19464081;0;main_questionnaire;;mpath_package_study;1714032674;1714032677;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624396;19465216;0;main_questionnaire;;mpath_package_study;1714037754;1714037757;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624395;19465993;0;main_questionnaire;;mpath_package_study;1714042232;1714042235;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624393;19468143;0;main_questionnaire;;mpath_package_study;1714052017;1714052018;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624389;19476038;0;main_questionnaire;;mpath_package_study;1714075963;1714075966;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624405;19483450;0;main_questionnaire;;mpath_package_study;1714134809;1714134810;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624399;19494230;0;main_questionnaire;;mpath_package_study;1714168324;1714168327;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624417;19497782;0;main_questionnaire;;mpath_package_study;1714215185;1714215188;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624416;19499071;0;main_questionnaire;;mpath_package_study;1714219457;1714219458;;;;7200; +234579;!5hr7@jp7a7;"!kfvt zyxq";tijgerleeuw;tij;jp7a7;28624415;19500219;0;main_questionnaire;;mpath_package_study;1714225429;1714225430;;;;7200; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653631;19403567;0;main_questionnaire;;mpath_package_study;1713703253;1713703254;;;;7200; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653636;19428739;0;main_questionnaire;;mpath_package_study;1713820531;1713820534;;;;7200; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653656;19431214;0;main_questionnaire;;mpath_package_study;1713860720;1713860722;;;;7200; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653667;19446572;0;main_questionnaire;;mpath_package_study;1713944784;1713944786;;;;7200; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653665;19449632;0;main_questionnaire;;mpath_package_study;1713957552;1713957553;;;;7200; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653663;19451601;0;main_questionnaire;;mpath_package_study;1713966874;1713966877;;;;7200; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653660;19456152;0;main_questionnaire;;mpath_package_study;1713981759;1713981762;;;;7200; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653678;19464067;0;main_questionnaire;;mpath_package_study;1714032433;1714032435;;;;7200; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653675;19467068;0;main_questionnaire;;mpath_package_study;1714046741;1714046742;;;;7200; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653672;19471239;0;main_questionnaire;;mpath_package_study;1714064081;1714064082;;;;7200; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653681;19492304;0;main_questionnaire;;mpath_package_study;1714162831;1714162833;;;;7200; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653705;19518691;0;main_questionnaire;;mpath_package_study;1714323786;1714323787;;;;7200; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653717;19532027;0;main_questionnaire;;mpath_package_study;1714403370;1714403371;;;;7200; +234859;!wt6f@jp7a7;"!emet ekgu";MK;MK;jp7a7;28653713;19540564;0;main_questionnaire;;mpath_package_study;1714427983;1714427985;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653268;19385744;0;main_questionnaire;;mpath_package_study;1713606170;1713606171;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653270;19388716;0;main_questionnaire;;mpath_package_study;1713617297;1713617298;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653276;19398131;0;main_questionnaire;;mpath_package_study;1713648258;1713648260;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653287;19400606;0;main_questionnaire;;mpath_package_study;1713690455;1713690457;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653286;19401844;0;main_questionnaire;;mpath_package_study;1713695996;1713695997;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653321;19447016;0;main_questionnaire;;mpath_package_study;1713946907;1713946910;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653332;19463731;0;main_questionnaire;;mpath_package_study;1714030919;1714030921;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653343;19480309;0;main_questionnaire;;mpath_package_study;1714119303;1714119306;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653337;19487281;0;main_questionnaire;;mpath_package_study;1714150265;1714150268;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653354;19495577;0;main_questionnaire;;mpath_package_study;1714203849;1714203852;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653353;19496500;0;main_questionnaire;;mpath_package_study;1714209908;1714209910;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653352;19498368;0;main_questionnaire;;mpath_package_study;1714216848;1714216852;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653346;19506527;0;main_questionnaire;;mpath_package_study;1714247190;1714247192;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653365;19511175;0;main_questionnaire;;mpath_package_study;1714290461;1714290463;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653359;19518350;0;main_questionnaire;;mpath_package_study;1714322912;1714322913;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653374;19528559;0;main_questionnaire;;mpath_package_study;1714386833;1714386836;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653368;19538564;0;main_questionnaire;;mpath_package_study;1714422055;1714422057;;;;7200; +234860;!98gj@jp7a7;"!csns cnzc";Dusti;Dus;jp7a7;28653366;19540785;0;evening_questionnaire;;mpath_package_study;1714428600;1714428602;;;;7200; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658277;19414803;0;main_questionnaire;;mpath_package_study;1713773014;1713773017;;;;7200; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658284;19436102;0;main_questionnaire;;mpath_package_study;1713881764;1713881768;;;;7200; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658283;19436899;0;main_questionnaire;;mpath_package_study;1713885018;1713885022;;;;7200; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658299;19447004;0;main_questionnaire;;mpath_package_study;1713946668;1713946669;;;;7200; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658293;19454952;0;main_questionnaire;;mpath_package_study;1713978422;1713978423;;;;7200; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658321;19479930;0;main_questionnaire;;mpath_package_study;1714117055;1714117056;;;;7200; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658329;19499284;0;main_questionnaire;;mpath_package_study;1714220937;1714220940;;;;7200; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658327;19501595;0;main_questionnaire;;mpath_package_study;1714231108;1714231110;;;;7200; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658338;19517285;0;main_questionnaire;;mpath_package_study;1714318831;1714318835;;;;7200; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658334;19524189;0;main_questionnaire;;mpath_package_study;1714339467;1714339469;;;;7200; +234889;!t37z@jp7a7;"!mhrn creh";gouda;gou;jp7a7;28658346;19538421;0;main_questionnaire;;mpath_package_study;1714421310;1714421313;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676287;19400944;0;main_questionnaire;;mpath_package_study;1713692226;1713692228;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676305;19417463;0;main_questionnaire;;mpath_package_study;1713785170;1713785173;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676303;19419672;0;main_questionnaire;;mpath_package_study;1713794902;1713794904;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676312;19438110;0;main_questionnaire;;mpath_package_study;1713890238;1713890242;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676309;19444147;0;main_questionnaire;;mpath_package_study;1713906057;1713906060;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676327;19449302;0;main_questionnaire;;mpath_package_study;1713956104;1713956105;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676326;19450383;0;main_questionnaire;;mpath_package_study;1713960947;1713960950;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676324;19453391;0;main_questionnaire;;mpath_package_study;1713973102;1713973104;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676340;19463737;0;main_questionnaire;;mpath_package_study;1714031111;1714031114;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676338;19465989;0;main_questionnaire;;mpath_package_study;1714042195;1714042198;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676345;19486991;0;main_questionnaire;;mpath_package_study;1714149294;1714149297;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676361;19496620;0;main_questionnaire;;mpath_package_study;1714210880;1714210883;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676360;19497748;0;main_questionnaire;;mpath_package_study;1714215072;1714215075;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676358;19500617;0;main_questionnaire;;mpath_package_study;1714227246;1714227248;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676357;19501625;0;main_questionnaire;;mpath_package_study;1714231243;1714231244;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676352;19509993;0;evening_questionnaire;;mpath_package_study;1714255800;1714255803;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676373;19511163;0;main_questionnaire;;mpath_package_study;1714289515;1714289518;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676384;19526959;0;main_questionnaire;;mpath_package_study;1714377713;1714377715;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676381;19529599;0;main_questionnaire;;mpath_package_study;1714392197;1714392200;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676380;19530588;0;main_questionnaire;;mpath_package_study;1714397751;1714397754;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676375;19540098;0;main_questionnaire;;mpath_package_study;1714425916;1714425917;;;;7200; +234980;!v57g@jp7a7;"!xxgo maxo";orange;ora;jp7a7;28676395;19542223;0;main_questionnaire;;mpath_package_study;1714463139;1714463141;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694524;19421151;0;main_questionnaire;;mpath_package_study;1713800941;1713800943;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694525;19421803;0;main_questionnaire;;mpath_package_study;1713803452;1713803453;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694528;19428579;0;main_questionnaire;;mpath_package_study;1713819748;1713819749;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694537;19434712;0;main_questionnaire;;mpath_package_study;1713876216;1713876219;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694536;19436014;0;main_questionnaire;;mpath_package_study;1713881354;1713881363;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694534;19438681;0;main_questionnaire;;mpath_package_study;1713891626;1713891628;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694551;19446571;0;main_questionnaire;;mpath_package_study;1713944780;1713944783;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694542;19461471;0;main_questionnaire;;mpath_package_study;1713993382;1713993385;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694565;19492334;0;main_questionnaire;;mpath_package_study;1714163144;1714163146;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694583;19496497;0;main_questionnaire;;mpath_package_study;1714209862;1714209864;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694581;19499514;0;main_questionnaire;;mpath_package_study;1714222228;1714222229;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694579;19502019;0;main_questionnaire;;mpath_package_study;1714232719;1714232722;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694577;19504932;0;main_questionnaire;;mpath_package_study;1714244031;1714244032;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694575;19509597;0;main_questionnaire;;mpath_package_study;1714254988;1714254989;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694574;19509994;0;evening_questionnaire;;mpath_package_study;1714255800;1714255803;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694595;19511176;0;main_questionnaire;;mpath_package_study;1714290547;1714290550;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694594;19512155;0;main_questionnaire;;mpath_package_study;1714296953;1714296955;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694593;19513248;0;main_questionnaire;;mpath_package_study;1714301503;1714301506;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694591;19515859;0;main_questionnaire;;mpath_package_study;1714312952;1714312956;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694589;19518912;0;main_questionnaire;;mpath_package_study;1714325190;1714325193;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694603;19529964;0;main_questionnaire;;mpath_package_study;1714394571;1714394574;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694616;19543445;0;main_questionnaire;;mpath_package_study;1714470393;1714470396;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694615;19544024;0;main_questionnaire;;mpath_package_study;1714473807;1714473810;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694614;19545204;0;main_questionnaire;;mpath_package_study;1714480537;1714480538;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694613;19546392;0;main_questionnaire;;mpath_package_study;1714486031;1714486032;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694612;19547637;0;main_questionnaire;;mpath_package_study;1714491823;1714491824;;;;7200; +235052;!f8dm@jp7a7;"!oekk qcxq";mm2;mm2;jp7a7;28694628;19556472;0;main_questionnaire;;mpath_package_study;1714552157;1714552159;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921677;19610809;0;main_questionnaire;;mpath_package_study;1714905411;1714905414;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921685;19620142;0;evening_questionnaire;;mpath_package_study;1714947000;1714947001;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921695;19622148;0;main_questionnaire;;mpath_package_study;1714986519;1714986521;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921689;19627906;0;main_questionnaire;;mpath_package_study;1715019395;1715019398;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921686;19632541;0;evening_questionnaire;;mpath_package_study;1715033400;1715033403;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921703;19637430;0;main_questionnaire;;mpath_package_study;1715091558;1715091559;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921702;19638304;0;main_questionnaire;;mpath_package_study;1715096048;1715096051;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921701;19639460;0;main_questionnaire;;mpath_package_study;1715102669;1715102672;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921717;19646760;0;main_questionnaire;;mpath_package_study;1715158802;1715158808;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921713;19650380;0;main_questionnaire;;mpath_package_study;1715181658;1715181661;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921712;19651420;0;main_questionnaire;;mpath_package_study;1715187386;1715187389;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921711;19653380;0;main_questionnaire;;mpath_package_study;1715193858;1715193861;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921710;19655795;0;main_questionnaire;;mpath_package_study;1715199603;1715199606;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921729;19659374;0;main_questionnaire;;mpath_package_study;1715243245;1715243249;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921721;19667772;0;main_questionnaire;;mpath_package_study;1715284425;1715284428;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921740;19671951;0;main_questionnaire;;mpath_package_study;1715329217;1715329220;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921739;19672573;0;main_questionnaire;;mpath_package_study;1715333977;1715333979;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921737;19674131;0;main_questionnaire;;mpath_package_study;1715343739;1715343741;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921732;19680851;0;main_questionnaire;;mpath_package_study;1715372729;1715372732;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921731;19681893;0;main_questionnaire;;mpath_package_study;1715375203;1715375206;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921751;19683961;0;main_questionnaire;;mpath_package_study;1715414425;1715414426;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921748;19686290;0;main_questionnaire;;mpath_package_study;1715430173;1715430174;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921743;19691114;0;main_questionnaire;;mpath_package_study;1715455800;1715455803;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921761;19696454;0;main_questionnaire;;mpath_package_study;1715507268;1715507270;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921760;19697318;0;main_questionnaire;;mpath_package_study;1715511945;1715511947;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921755;19701800;0;main_questionnaire;;mpath_package_study;1715538680;1715538682;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921752;19705947;0;evening_questionnaire;;mpath_package_study;1715551800;1715552189;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921773;19707522;0;main_questionnaire;;mpath_package_study;1715588198;1715588199;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921766;19713737;0;main_questionnaire;;mpath_package_study;1715625280;1715625282;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921765;19715440;0;main_questionnaire;;mpath_package_study;1715628700;1715628702;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921764;19717418;0;main_questionnaire;;mpath_package_study;1715634058;1715634059;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921784;19719787;0;main_questionnaire;;mpath_package_study;1715673891;1715673892;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921782;19720836;0;main_questionnaire;;mpath_package_study;1715683052;1715683058;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921781;19721760;0;main_questionnaire;;mpath_package_study;1715688243;1715688246;;;;7200; +237139;!et74@jp7a7;"!btha duvg";blueberry;blu;jp7a7;28921777;19725621;0;main_questionnaire;;mpath_package_study;1715710409;1715710411;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001152;19678719;0;main_questionnaire;;mpath_package_study;1715366366;1715366369;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001154;19682348;0;main_questionnaire;;mpath_package_study;1715377131;1715377389;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001166;19684035;0;main_questionnaire;;mpath_package_study;1715416040;1715416044;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001165;19684642;0;main_questionnaire;;mpath_package_study;1715420727;1715420729;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001164;19685596;0;main_questionnaire;;mpath_package_study;1715426301;1715426302;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001163;19686307;0;main_questionnaire;;mpath_package_study;1715430382;1715430386;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001162;19687094;0;main_questionnaire;;mpath_package_study;1715435779;1715435781;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001161;19688141;0;main_questionnaire;;mpath_package_study;1715441760;1715441761;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001171;19701038;0;main_questionnaire;;mpath_package_study;1715534601;1715534602;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001169;19703947;0;main_questionnaire;;mpath_package_study;1715545205;1715545209;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001168;19705190;0;main_questionnaire;;mpath_package_study;1715548868;1715548870;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001167;19705948;0;evening_questionnaire;;mpath_package_study;1715551800;1715552189;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001183;19711110;0;main_questionnaire;;mpath_package_study;1715613702;1715613706;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001198;19720191;0;main_questionnaire;;mpath_package_study;1715677303;1715677305;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001197;19720985;0;main_questionnaire;;mpath_package_study;1715684136;1715684139;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001196;19721859;0;main_questionnaire;;mpath_package_study;1715689039;1715689041;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001195;19722466;0;main_questionnaire;;mpath_package_study;1715693936;1715693938;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001194;19723595;0;main_questionnaire;;mpath_package_study;1715700827;1715700829;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001192;19726075;0;main_questionnaire;;mpath_package_study;1715711977;1715711978;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001191;19728212;0;main_questionnaire;;mpath_package_study;1715718556;1715718557;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001190;19729762;0;main_questionnaire;;mpath_package_study;1715723702;1715723703;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001189;19729972;0;evening_questionnaire;;mpath_package_study;1715724600;1715724601;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001210;19731157;0;main_questionnaire;;mpath_package_study;1715759569;1715759572;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001207;19733639;0;main_questionnaire;;mpath_package_study;1715777085;1715777086;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001206;19734579;0;main_questionnaire;;mpath_package_study;1715783180;1715783182;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001205;19735138;0;main_questionnaire;;mpath_package_study;1715786734;1715786737;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001204;19736367;0;main_questionnaire;;mpath_package_study;1715793270;1715793273;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001203;19738047;0;main_questionnaire;;mpath_package_study;1715799303;1715799304;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001202;19740235;0;main_questionnaire;;mpath_package_study;1715803904;1715803907;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001201;19741723;0;main_questionnaire;;mpath_package_study;1715808636;1715808952;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001200;19742117;0;evening_questionnaire;;mpath_package_study;1715811000;1715811144;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001221;19743623;0;main_questionnaire;;mpath_package_study;1715848000;1715848001;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001220;19744172;0;main_questionnaire;;mpath_package_study;1715852111;1715852114;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001219;19744849;0;main_questionnaire;;mpath_package_study;1715857565;1715857567;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001218;19745525;0;main_questionnaire;;mpath_package_study;1715861882;1715861883;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001217;19746213;0;main_questionnaire;;mpath_package_study;1715867224;1715867226;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001216;19747534;0;main_questionnaire;;mpath_package_study;1715875041;1715875043;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001215;19748151;0;main_questionnaire;;mpath_package_study;1715878618;1715878619;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001214;19749901;0;main_questionnaire;;mpath_package_study;1715885412;1715885416;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001213;19751118;0;main_questionnaire;;mpath_package_study;1715889103;1715889105;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001212;19753283;0;main_questionnaire;;mpath_package_study;1715895485;1715895486;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001211;19753615;0;evening_questionnaire;;mpath_package_study;1715897400;1715897402;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001232;19755043;0;main_questionnaire;;mpath_package_study;1715934022;1715934023;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001231;19755482;0;main_questionnaire;;mpath_package_study;1715937868;1715937870;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001230;19756105;0;main_questionnaire;;mpath_package_study;1715942636;1715942637;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001229;19757037;0;main_questionnaire;;mpath_package_study;1715948384;1715948386;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001228;19758170;0;main_questionnaire;;mpath_package_study;1715955883;1715955884;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001227;19758675;0;main_questionnaire;;mpath_package_study;1715958590;1715958592;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001226;19759519;0;main_questionnaire;;mpath_package_study;1715963768;1715963771;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001225;19761034;0;main_questionnaire;;mpath_package_study;1715970251;1715970252;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001224;19762528;0;main_questionnaire;;mpath_package_study;1715974982;1715974984;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001223;19764681;0;main_questionnaire;;mpath_package_study;1715982529;1715982530;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001222;19764974;0;evening_questionnaire;;mpath_package_study;1715983800;1715983802;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001243;19766106;0;main_questionnaire;;mpath_package_study;1716019882;1716019883;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001242;19766948;0;main_questionnaire;;mpath_package_study;1716025862;1716025863;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001241;19767999;0;main_questionnaire;;mpath_package_study;1716030935;1716030937;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001240;19768801;0;main_questionnaire;;mpath_package_study;1716035057;1716035060;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001239;19769520;0;main_questionnaire;;mpath_package_study;1716039848;1716039849;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001238;19770775;0;main_questionnaire;;mpath_package_study;1716047639;1716047641;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001237;19771850;0;main_questionnaire;;mpath_package_study;1716052173;1716052176;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001236;19772889;0;main_questionnaire;;mpath_package_study;1716058416;1716058419;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001235;19774797;0;main_questionnaire;;mpath_package_study;1716062823;1716062828;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001234;19776459;0;main_questionnaire;;mpath_package_study;1716068324;1716068326;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001233;19776896;0;evening_questionnaire;;mpath_package_study;1716070200;1716070202;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001254;19777834;0;main_questionnaire;;mpath_package_study;1716104158;1716104162;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001253;19778529;0;main_questionnaire;;mpath_package_study;1716109883;1716109885;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001252;19779366;0;main_questionnaire;;mpath_package_study;1716115210;1716115212;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001251;19780484;0;main_questionnaire;;mpath_package_study;1716121724;1716121727;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001250;19781322;0;main_questionnaire;;mpath_package_study;1716127387;1716127389;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001249;19782190;0;main_questionnaire;;mpath_package_study;1716132975;1716132979;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001248;19783276;0;main_questionnaire;;mpath_package_study;1716138907;1716138909;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001247;19783966;0;main_questionnaire;;mpath_package_study;1716142863;1716142865;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001246;19786009;0;main_questionnaire;;mpath_package_study;1716149019;1716149021;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001245;19787641;0;main_questionnaire;;mpath_package_study;1716155293;1716155296;;;;7200; +237953;!8j2j@jp7a7;"!tykg oqoq";dancingtrees;dan;jp7a7;29001244;19788033;0;evening_questionnaire;;mpath_package_study;1716156600;1716156602;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005410;19688966;0;main_questionnaire;;mpath_package_study;1715446228;1715446229;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005408;19692312;0;main_questionnaire;;mpath_package_study;1715458697;1715458700;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005427;19695638;0;main_questionnaire;;mpath_package_study;1715499314;1715499317;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005425;19697015;0;main_questionnaire;;mpath_package_study;1715510667;1715510669;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005449;19719557;0;main_questionnaire;;mpath_package_study;1715671975;1715671978;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005444;19723327;0;main_questionnaire;;mpath_package_study;1715698995;1715698999;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005460;19731159;0;main_questionnaire;;mpath_package_study;1715759658;1715759659;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005454;19735873;0;main_questionnaire;;mpath_package_study;1715791128;1715791129;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005453;19737951;0;main_questionnaire;;mpath_package_study;1715798956;1715798957;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005471;19743316;0;main_questionnaire;;mpath_package_study;1715845110;1715845113;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005470;19744178;0;main_questionnaire;;mpath_package_study;1715852212;1715852214;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005464;19749957;0;main_questionnaire;;mpath_package_study;1715885930;1715885932;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005463;19751102;0;main_questionnaire;;mpath_package_study;1715888950;1715888953;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005482;19754794;0;main_questionnaire;;mpath_package_study;1715932466;1715932467;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005481;19755632;0;main_questionnaire;;mpath_package_study;1715939130;1715939132;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005480;19756190;0;main_questionnaire;;mpath_package_study;1715943318;1715943320;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005477;19758942;0;main_questionnaire;;mpath_package_study;1715960319;1715960321;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005490;19768753;0;main_questionnaire;;mpath_package_study;1716034559;1716034560;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005504;19777856;0;main_questionnaire;;mpath_package_study;1716105137;1716105141;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005503;19778604;0;main_questionnaire;;mpath_package_study;1716110565;1716110567;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005502;19779815;0;main_questionnaire;;mpath_package_study;1716118122;1716118125;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005498;19782779;0;main_questionnaire;;mpath_package_study;1716136446;1716136449;;;;7200; +238000;!2agc@jp7a7;"!cvfh ekvf";bells;bel;jp7a7;29005494;19788034;0;evening_questionnaire;;mpath_package_study;1716156600;1716156602;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087468;19743945;0;main_questionnaire;;mpath_package_study;1715850126;1715850130;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087469;19744635;0;main_questionnaire;;mpath_package_study;1715856294;1715856295;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087470;19745758;0;main_questionnaire;;mpath_package_study;1715863809;1715863812;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087471;19746512;0;main_questionnaire;;mpath_package_study;1715868545;1715868546;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087473;19748508;0;main_questionnaire;;mpath_package_study;1715880351;1715880354;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087475;19751712;0;main_questionnaire;;mpath_package_study;1715889713;1715889715;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087477;19753617;0;evening_questionnaire;;mpath_package_study;1715897400;1715897402;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087484;19758056;0;main_questionnaire;;mpath_package_study;1715954789;1715954792;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087483;19758663;0;main_questionnaire;;mpath_package_study;1715958483;1715958485;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087482;19759920;0;main_questionnaire;;mpath_package_study;1715965556;1715965557;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087497;19767519;0;main_questionnaire;;mpath_package_study;1716028361;1716028364;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087496;19768792;0;main_questionnaire;;mpath_package_study;1716034980;1716034981;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087493;19771309;0;main_questionnaire;;mpath_package_study;1716049924;1716049925;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087507;19780606;0;main_questionnaire;;mpath_package_study;1716122512;1716122516;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087520;19790048;0;main_questionnaire;;mpath_package_study;1716196347;1716196354;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087516;19793200;0;main_questionnaire;;mpath_package_study;1716218133;1716218137;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087513;19797610;0;main_questionnaire;;mpath_package_study;1716235106;1716235108;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087541;19814472;0;main_questionnaire;;mpath_package_study;1716376328;1716376332;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087552;19825979;0;main_questionnaire;;mpath_package_study;1716461903;1716461905;;;;7200; +238550;!9uhv@jp7a7;"!ngyw egam";runforever;run;jp7a7;29087545;19834151;0;main_questionnaire;;mpath_package_study;1716501125;1716501126;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102500;19755004;0;main_questionnaire;;mpath_package_study;1715933109;1715933112;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102502;19756129;0;main_questionnaire;;mpath_package_study;1715942746;1715942749;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102503;19757160;0;main_questionnaire;;mpath_package_study;1715949182;1715949186;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102506;19759664;0;main_questionnaire;;mpath_package_study;1715964799;1715964802;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102510;19764978;0;evening_questionnaire;;mpath_package_study;1715983800;1715983802;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102521;19765866;0;main_questionnaire;;mpath_package_study;1716018674;1716018678;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102513;19774180;0;main_questionnaire;;mpath_package_study;1716061902;1716061904;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102532;19778106;0;main_questionnaire;;mpath_package_study;1716106459;1716106461;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102531;19778735;0;main_questionnaire;;mpath_package_study;1716111782;1716111784;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102530;19779788;0;main_questionnaire;;mpath_package_study;1716117822;1716117826;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102529;19780441;0;main_questionnaire;;mpath_package_study;1716121292;1716121298;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102527;19781971;0;main_questionnaire;;mpath_package_study;1716131608;1716131611;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102526;19782764;0;main_questionnaire;;mpath_package_study;1716136335;1716136337;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102524;19785340;0;main_questionnaire;;mpath_package_study;1716147567;1716147570;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102543;19789219;0;main_questionnaire;;mpath_package_study;1716190328;1716190330;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102538;19793120;0;main_questionnaire;;mpath_package_study;1716217448;1716217453;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102535;19797535;0;main_questionnaire;;mpath_package_study;1716234077;1716234078;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102554;19801261;0;main_questionnaire;;mpath_package_study;1716277140;1716277142;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102551;19803659;0;main_questionnaire;;mpath_package_study;1716293372;1716293374;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102550;19804810;0;main_questionnaire;;mpath_package_study;1716300944;1716300947;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102549;19805718;0;main_questionnaire;;mpath_package_study;1716306737;1716306738;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102548;19806291;0;main_questionnaire;;mpath_package_study;1716310024;1716310027;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102547;19807564;0;main_questionnaire;;mpath_package_study;1716314521;1716314525;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102564;19813706;0;main_questionnaire;;mpath_package_study;1716370639;1716370646;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102563;19814164;0;main_questionnaire;;mpath_package_study;1716374428;1716374430;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102562;19815013;0;main_questionnaire;;mpath_package_study;1716379888;1716379890;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102561;19815683;0;main_questionnaire;;mpath_package_study;1716384608;1716384610;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102560;19816927;0;main_questionnaire;;mpath_package_study;1716392410;1716392412;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102559;19817568;0;main_questionnaire;;mpath_package_study;1716396436;1716396439;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102558;19819472;0;main_questionnaire;;mpath_package_study;1716403996;1716403999;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102574;19826154;0;main_questionnaire;;mpath_package_study;1716462649;1716462650;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102573;19826793;0;main_questionnaire;;mpath_package_study;1716466664;1716466666;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102595;19847999;0;main_questionnaire;;mpath_package_study;1716638455;1716638457;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102592;19850969;0;main_questionnaire;;mpath_package_study;1716657612;1716657615;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102589;19855082;0;main_questionnaire;;mpath_package_study;1716673843;1716673845;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102609;19856414;0;main_questionnaire;;mpath_package_study;1716711213;1716711215;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102607;19857497;0;main_questionnaire;;mpath_package_study;1716719556;1716719557;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102605;19859632;0;main_questionnaire;;mpath_package_study;1716733415;1716733418;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102602;19862281;0;main_questionnaire;;mpath_package_study;1716749822;1716749823;;;;7200; +238707;!x4e8@jp7a7;"!xjsj dzfd";wapaaaa;baa;jp7a7;29102601;19863244;0;main_questionnaire;;mpath_package_study;1716753055;1716753057;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225630;19846372;0;main_questionnaire;;mpath_package_study;1716629599;1716629601;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225635;19850953;0;main_questionnaire;;mpath_package_study;1716657379;1716657380;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225636;19851872;0;main_questionnaire;;mpath_package_study;1716662756;1716662757;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225637;19853471;0;main_questionnaire;;mpath_package_study;1716668045;1716668046;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225638;19854997;0;main_questionnaire;;mpath_package_study;1716672756;1716672758;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225645;19860074;0;main_questionnaire;;mpath_package_study;1716735659;1716735662;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225644;19861352;0;main_questionnaire;;mpath_package_study;1716743939;1716743940;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225640;19865620;0;evening_questionnaire;;mpath_package_study;1716761400;1716761401;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225658;19868691;0;main_questionnaire;;mpath_package_study;1716812385;1716812387;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225657;19869523;0;main_questionnaire;;mpath_package_study;1716818480;1716818483;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225655;19870930;0;main_questionnaire;;mpath_package_study;1716827636;1716827637;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225654;19872712;0;main_questionnaire;;mpath_package_study;1716836172;1716836173;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225653;19874570;0;main_questionnaire;;mpath_package_study;1716840487;1716840490;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225652;19875702;0;main_questionnaire;;mpath_package_study;1716845026;1716845027;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225672;19877567;0;main_questionnaire;;mpath_package_study;1716884348;1716884350;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225670;19878880;0;main_questionnaire;;mpath_package_study;1716894404;1716894406;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225668;19880069;0;main_questionnaire;;mpath_package_study;1716903083;1716903085;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225667;19881044;0;main_questionnaire;;mpath_package_study;1716909690;1716909692;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225666;19882035;0;main_questionnaire;;mpath_package_study;1716915680;1716915681;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225665;19883234;0;main_questionnaire;;mpath_package_study;1716921677;1716921678;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225663;19885859;0;main_questionnaire;;mpath_package_study;1716930822;1716930825;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225681;19888873;0;main_questionnaire;;mpath_package_study;1716980205;1716980207;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225680;19889809;0;main_questionnaire;;mpath_package_study;1716986922;1716986924;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225679;19890274;0;main_questionnaire;;mpath_package_study;1716991080;1716991081;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225678;19891320;0;main_questionnaire;;mpath_package_study;1716996748;1716996750;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225677;19892310;0;main_questionnaire;;mpath_package_study;1717002878;1717002879;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225676;19893034;0;main_questionnaire;;mpath_package_study;1717005909;1717005912;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225675;19894956;0;main_questionnaire;;mpath_package_study;1717011772;1717011774;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225674;19896578;0;main_questionnaire;;mpath_package_study;1717016473;1717016474;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225694;19898591;0;main_questionnaire;;mpath_package_study;1717057153;1717057154;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225685;19906788;0;main_questionnaire;;mpath_package_study;1717105729;1717105732;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225684;19907029;0;evening_questionnaire;;mpath_package_study;1717107000;1717107002;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225705;19908312;0;main_questionnaire;;mpath_package_study;1717143969;1717143971;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225704;19908874;0;main_questionnaire;;mpath_package_study;1717148321;1717148324;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225702;19909972;0;main_questionnaire;;mpath_package_study;1717157743;1717157744;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225701;19910799;0;main_questionnaire;;mpath_package_study;1717165681;1717165684;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225699;19912351;0;main_questionnaire;;mpath_package_study;1717175704;1717175707;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225697;19914783;0;main_questionnaire;;mpath_package_study;1717185910;1717185911;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225695;19916356;0;evening_questionnaire;;mpath_package_study;1717193400;1717193404;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225716;19917373;0;main_questionnaire;;mpath_package_study;1717230501;1717230504;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225715;19917976;0;main_questionnaire;;mpath_package_study;1717235180;1717235181;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225714;19918748;0;main_questionnaire;;mpath_package_study;1717239119;1717239123;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225712;19920253;0;main_questionnaire;;mpath_package_study;1717248863;1717248867;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225711;19921019;0;main_questionnaire;;mpath_package_study;1717256071;1717256074;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225710;19921656;0;main_questionnaire;;mpath_package_study;1717259752;1717259753;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225709;19922587;0;main_questionnaire;;mpath_package_study;1717264859;1717264861;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225707;19925608;0;main_questionnaire;;mpath_package_study;1717278666;1717278668;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225706;19925872;0;evening_questionnaire;;mpath_package_study;1717279800;1717279803;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225727;19926947;0;main_questionnaire;;mpath_package_study;1717316969;1717316973;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225726;19927421;0;main_questionnaire;;mpath_package_study;1717320916;1717320919;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225725;19928229;0;main_questionnaire;;mpath_package_study;1717326380;1717326382;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225724;19928853;0;main_questionnaire;;mpath_package_study;1717330728;1717330730;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225723;19929299;0;main_questionnaire;;mpath_package_study;1717335290;1717335291;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225721;19930912;0;main_questionnaire;;mpath_package_study;1717349279;1717349280;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225720;19931340;0;main_questionnaire;;mpath_package_study;1717351294;1717351295;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225719;19933019;0;main_questionnaire;;mpath_package_study;1717359945;1717359949;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225738;19935843;0;main_questionnaire;;mpath_package_study;1717402943;1717402946;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225734;19938077;0;main_questionnaire;;mpath_package_study;1717424604;1717424606;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225732;19939383;0;main_questionnaire;;mpath_package_study;1717433148;1717433150;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225731;19940450;0;main_questionnaire;;mpath_package_study;1717440040;1717440041;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225730;19941331;0;main_questionnaire;;mpath_package_study;1717443599;1717443602;;;;7200; +239674;!v5rh@jp7a7;"!vkqo ante";ocean;oce;jp7a7;29225729;19943272;0;main_questionnaire;;mpath_package_study;1717451765;1717451766;;;;7200; diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/inst/extdata/example_meta.csv b/mpathr.Rcheck/00_pkg_src/mpathr/inst/extdata/example_meta.csv new file mode 100644 index 0000000..3b0a90f --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/inst/extdata/example_meta.csv @@ -0,0 +1,82 @@ +columnName;fullQuestion;typeQuestion;typeAnswer;fullQuestion_mixed;typeQuestion_mixed;typeAnswer_mixed +consent_yesno_yesno;"

I have read and understood the information in this document and I have received an answer to my questions regarding this research. I give my consent to participate.

";yesno;int;0;0;0 +gender_multipleChoice_index;"

What is your gender?

";multipleChoice;int;0;0;0 +gender_multipleChoice_string;"

What is your gender?

";multipleChoice;string;0;0;0 +gender_multipleChoice_likert;"

What is your gender?

";multipleChoice;int;0;0;0 +age_open;"

How old are you?

";open;string;0;0;0 +SWLS_intro_basic;SWLS_intro;basic;basic;0;0;0 +SWLS_1_multipleChoice_index;"

In most ways, my life is close to ideal.

";multipleChoice;int;0;0;0 +SWLS_1_multipleChoice_string;"

In most ways, my life is close to ideal.

";multipleChoice;string;0;0;0 +SWLS_1_multipleChoice_likert;"

In most ways, my life is close to ideal.

";multipleChoice;int;0;0;0 +SWLS_2_multipleChoice_index;"

The conditions of my life are excellent.

";multipleChoice;int;0;0;0 +SWLS_2_multipleChoice_string;"

The conditions of my life are excellent.

";multipleChoice;string;0;0;0 +SWLS_2_multipleChoice_likert;"

The conditions of my life are excellent.

";multipleChoice;int;0;0;0 +SWLS_3_multipleChoice_index;"

I am satisfied with my life.

";multipleChoice;int;0;0;0 +SWLS_3_multipleChoice_string;"

I am satisfied with my life.

";multipleChoice;string;0;0;0 +SWLS_3_multipleChoice_likert;"

I am satisfied with my life.

";multipleChoice;int;0;0;0 +SWLS_4_multipleChoice_index;"

So far I have gotten the important things I want in life.

";multipleChoice;int;0;0;0 +SWLS_4_multipleChoice_string;"

So far I have gotten the important things I want in life.

";multipleChoice;string;0;0;0 +SWLS_4_multipleChoice_likert;"

So far I have gotten the important things I want in life.

";multipleChoice;int;0;0;0 +SWLS_5_multipleChoice_index;"

If I could live my life over, I would change almost nothing.

";multipleChoice;int;0;0;0 +SWLS_5_multipleChoice_string;"

If I could live my life over, I would change almost nothing.

";multipleChoice;string;0;0;0 +SWLS_5_multipleChoice_likert;"

If I could live my life over, I would change almost nothing.

";multipleChoice;int;0;0;0 +BFI_neuroticism_intro_basic;BFI_neuroticism_intro;basic;basic;0;0;0 +BFI_neuroticism_4_multipleChoice_index;"

I see myself as someone who is depressed, blue.

";multipleChoice;int;0;0;0 +BFI_neuroticism_4_multipleChoice_string;"

I see myself as someone who is depressed, blue.

";multipleChoice;string;0;0;0 +BFI_neuroticism_4_multipleChoice_likert;"

I see myself as someone who is depressed, blue.

";multipleChoice;int;0;0;0 +BFI_neuroticism_9R_multipleChoice_index;"

I see myself as someone who is relaxed, handles stress well.

";multipleChoice;int;0;0;0 +BFI_neuroticism_9R_multipleChoice_string;"

I see myself as someone who is relaxed, handles stress well.

";multipleChoice;string;0;0;0 +BFI_neuroticism_9R_multipleChoice_likert;"

I see myself as someone who is relaxed, handles stress well.

";multipleChoice;int;0;0;0 +BFI_neuroticism_14_multipleChoice_index;"

I see myself as someone who can be tense.

";multipleChoice;int;0;0;0 +BFI_neuroticism_14_multipleChoice_string;"

I see myself as someone who can be tense.

";multipleChoice;string;0;0;0 +BFI_neuroticism_14_multipleChoice_likert;"

I see myself as someone who can be tense.

";multipleChoice;int;0;0;0 +BFI_neuroticism_19_multipleChoice_index;"

I see myself as someone who worries a lot.

";multipleChoice;int;0;0;0 +BFI_neuroticism_19_multipleChoice_string;"

I see myself as someone who worries a lot.

";multipleChoice;string;0;0;0 +BFI_neuroticism_19_multipleChoice_likert;"

I see myself as someone who worries a lot.

";multipleChoice;int;0;0;0 +BFI_neuroticism_24R_multipleChoice_index;"

I see myself as someone who is emotionally stable, not easily upset.

";multipleChoice;int;0;0;0 +BFI_neuroticism_24R_multipleChoice_string;"

I see myself as someone who is emotionally stable, not easily upset.

";multipleChoice;string;0;0;0 +BFI_neuroticism_24R_multipleChoice_likert;"

I see myself as someone who is emotionally stable, not easily upset.

";multipleChoice;int;0;0;0 +BFI_neuroticism_29_multipleChoice_index;"

I see myself as someone who can be moody.

";multipleChoice;int;0;0;0 +BFI_neuroticism_29_multipleChoice_string;"

I see myself as someone who can be moody.

";multipleChoice;string;0;0;0 +BFI_neuroticism_29_multipleChoice_likert;"

I see myself as someone who can be moody.

";multipleChoice;int;0;0;0 +BFI_neuroticism_34R_multipleChoice_index;"

I see myself as someone who remains calm in tense situations.

";multipleChoice;int;0;0;0 +BFI_neuroticism_34R_multipleChoice_string;"

I see myself as someone who remains calm in tense situations.

";multipleChoice;string;0;0;0 +BFI_neuroticism_34R_multipleChoice_likert;"

I see myself as someone who remains calm in tense situations.

";multipleChoice;int;0;0;0 +BFI_neuroticism_39_multipleChoice_index;"

I see myself as someone who gets nervous easily.

";multipleChoice;int;0;0;0 +BFI_neuroticism_39_multipleChoice_string;"

I see myself as someone who gets nervous easily.

";multipleChoice;string;0;0;0 +BFI_neuroticism_39_multipleChoice_likert;"

I see myself as someone who gets nervous easily.

";multipleChoice;int;0;0;0 +intake_outro_basic;intake_outro;basic;basic;0;0;0 +slider_happy_sliderNeutralPos;"

How happy do you feel right now?

";sliderNeutralPos;int;0;0;0 +slider_sad_sliderNegPos;"

How sad do you feel right now?

";sliderNegPos;int;0;0;0 +slider_angry_sliderNegPos;"

How angry do you feel right now?

";sliderNegPos;int;0;0;0 +slider_relaxed_sliderNegPos;"

How relaxed do you feel right now?

";sliderNegPos;int;0;0;0 +slider_anxious_sliderNegPos;"

How anxious do you feel right now?

";sliderNegPos;int;0;0;0 +slider_energetic_sliderNegPos;"

How energetic do you feel right now?

";sliderNegPos;int;0;0;0 +slider_tired_sliderNegPos;"

How tired do you feel right now?

";sliderNegPos;int;0;0;0 +context_location_multipleChoice_index;"

Where are you now?

";multipleChoice;int;0;0;0 +context_location_multipleChoice_string;"

Where are you now?

";multipleChoice;string;0;0;0 +context_location_multipleChoice_likert;"

Where are you now?

";multipleChoice;int;0;0;0 +context_company_multipleChoice_index;"

With whom are you right now?

";multipleChoice;int;0;0;0 +context_company_multipleChoice_string;"

With whom are you right now?

";multipleChoice;string;0;0;0 +context_company_multipleChoice_likert;"

With whom are you right now?

";multipleChoice;int;0;0;0 +context_activity_multipleChoice_index;"

What are you doing now?

";multipleChoice;int;0;0;0 +context_activity_multipleChoice_string;"

What are you doing now?

";multipleChoice;string;0;0;0 +context_activity_multipleChoice_likert;"

What are you doing now?

";multipleChoice;int;0;0;0 +step_count_steps;;steps;int;0;0;0 +main_outro_basic;main_outro;basic;basic;0;0;0 +evening_questionnaire_warning_basic;evening_questionnaire_warning;basic;basic;0;0;0 +evening_slider_happy_sliderNeutralPos;"

In general, how happy did you feel today?

";sliderNeutralPos;int;0;0;0 +evening_slider_sad_sliderNegPos;"

In general, how sad did you feel today?

";sliderNegPos;int;0;0;0 +evening_slider_angry_sliderNegPos;"

In general, how angry did you feel today?

";sliderNegPos;int;0;0;0 +evening_slider_relaxed_sliderNegPos;"

In general, how relaxed did you feel today?

";sliderNegPos;int;0;0;0 +evening_slider_anxious_sliderNegPos;"

In general, how anxious did you feel today?

";sliderNegPos;int;0;0;0 +evening_slider_energetic_sliderNegPos;"

In general, how energetic did you feel today?

";sliderNegPos;int;0;0;0 +evening_slider_tired_sliderNegPos;"

In general, how tired did you feel today?

";sliderNegPos;int;0;0;0 +evening_yesno_stressful_yesno;"

Did something stressful happen today?

";yesno;int;0;0;0 +evening_yesno_positive_yesno;"

Did something positive happen today?

";yesno;int;0;0;0 +positive_description_open;"

Could you briefly explain the positive thing that happened?

";open;string;0;0;0 +evening_context_activity_multipleChoice_index;"

What activities did you do today?

";multipleChoice;intList;0;0;0 +evening_context_activity_multipleChoice_string;"

What activities did you do today?

";multipleChoice;stringList;0;0;0 +evening_context_activity_multipleChoice_likert;"

What activities did you do today?

";multipleChoice;intList;0;0;0 +evening_outro_basic;evening_outro;basic;basic;0;0;0 +stressful_description_open;"

Could you briefly explain the stressful thing that happened?

";open;string;0;0;0 diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/inst/testdata/test_basic.csv b/mpathr.Rcheck/00_pkg_src/mpathr/inst/testdata/test_basic.csv new file mode 100644 index 0000000..953930a --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/inst/testdata/test_basic.csv @@ -0,0 +1,4 @@ +connectionId;legacyCode;code;alias;initials;accountCode;scheduledBeepId;sentBeepId;reminderForOriginalSentBeepId;questionListName;questionListLabel;fromProtocolName;timeStampScheduled;timeStampSent;timeStampStart;timeStampStop;originalTimeStampSent;timeZoneOffset;deltaUTC;open_open;open_number_open;open_number_digits_open;yesno_yesno;single_choice_multipleChoice_index;single_choice_multipleChoice_string;single_choice_multipleChoice_likert;multiple_choice_multipleChoice_index;multiple_choice_multipleChoice_string;multiple_choice_multipleChoice_likert;multiplemulti_choice_multipleChoice_index;multiplemulti_choice_multipleChoice_string;multiplemulti_choice_multipleChoice_likert;multiplemulti_none_choice_multipleChoice_index;multiplemulti_none_choice_multipleChoice_string;multiplemulti_none_choice_multipleChoice_likert;single_other_multipleChoice_index;single_other_multipleChoice_string;single_other_multipleChoice_likert;order_order;multismiley_multiSmiley;bodypart_bodyParts;bodypartfronback_bodyParts;image_choice_single_imageChoice_index;image_choice_single_imageChoice_string;image_choice_single_imageChoice_likert;image_choice_multi_imageChoice_index;image_choice_multi_imageChoice_string;image_choice_multi_imageChoice_likert;valence_smiley;surprise_smiley;happy_smiley;angry_smiley;sad_smiley;fear_smiley;stress_smiley;battery_smiley;sliderneutral_sliderNeutralPos;sliderneg_sliderNegPos;slidersmallrange_sliderNegPos;time_time;time_seconds_time;date_date;image_basic;audio_audio;text_basic;video_video;button_button;vectorStringComputation_computation;stringComputation_computation;vectorComputation_computation;numberComputation_computation;contLine_continuousLine;picture_picture;recording_recording_filename;recording_recording_metadata;location_location;appusage_appUsage_apps;appusage_appUsage_usage;stepcount_steps;noise_noise;bluetooth_bluetooth;spatial_spatialWorkingMemory;spatial_spatialWorkingMemory-toGuess;spatial_spatialWorkingMemory-guessed;spatial_spatialWorkingMemory-responseTimes;mole_whackmole;mole_whackmole-peeped;mole_whackmole-bonked;mole_whackmole-preciseXY;mole_whackmole-scores;mole_whackmole-speedScores;mole_whackmole-responseTimes;set_spatialExploration;set_spatialExploration-clicked;set_spatialExploration-scores;set_spatialExploration-clickTimes;set_spatialExploration-highCorrelation;sliderskip_sliderNegPos;openskip_open;mpcskip_multipleChoice_index;mpcskip_multipleChoice_string;mpcskip_multipleChoice_likert;singlechoiceskip_multipleChoice_index;singlechoiceskip_multipleChoice_string;singlechoiceskip_multipleChoice_likert;slidertimeout_sliderNegPos;opentimeout_open;mpctimeout_open;questionSameLabel_sliderNeutralPos;questionSameLabel_open +228325;;;larann;lar;jp7a7;0;20372171;0;ALLTHEQUESTIONS;;;0;1722426241;1722426248;1722426616;0;7200;-1;"""test1 test""";"""0.12345""";"""123""";1;2;"""b""";;2;"""b""";;2,3;"""b"",""c""";;;;;4;"""I chose other""";;3,2,1;"""happy""";"""belly""";"""right foot"",""right knee"",""right leg"",""back""";2;"""b""";;1,2;"""a"",""b""";;10;100;70;84;100;81;15;74;91;21;8;22320;11211;2024,7,11;1;4;1;;1;"""a"",""b"",""c""";"""test""";1,2,3;5;0,3.01,3.32,3.63,3.78,3.99,4.19,4.35,4.55,4.86,5.02,5.28,5.43,5.58,5.74,5.89,6.05,6.15,6.31,6.46,6.56,6.66,6.72,6.87,6.92,6.97,7.02,7.07,7.13,7.18,7.23,7.28,7.39,7.44,7.49,7.54,7.59,7.64,7.69,7.75,7.8,7.9,7.95,8.01,8.05,8.1,8.16,8.26,8.31,8.36,8.42,8.47,8.52,8.62,8.72,8.77,8.83,8.88,8.98,9.03,9.09,9.13,9.19,9.24,9.34,9.39,9.45,9.5,9.55,9.6,9.65,9.7,9.75,9.8,9.86,9.91,9.96,10.01,10.06,10.12,10.21,10.27,10.32,10.42,10.47,10.53,10.58,10.63,10.67,10.7,10.74,10.78,10.82,10.87,10.93,10.97,11.01,11.09,11.2,11.42,11.56,11.69,11.82,12.12,12.38,12.64,12.79,12.9,13.01,13.14,13.27,13.4,13.53,13.65,13.75,13.84,13.94,14.04,14.12,14.19,14.25,14.32,14.4,14.49,14.55,14.59,14.62,14.64,14.68,14.71,14.73,14.75,14.77,14.78,14.81,14.82,14.84,14.87,14.87,14.88,14.88,14.91,14.96,15.08,15.23,15.38,15.45,15.47,15.49,15.65,15.8,15.85,15.86,15.87,15.89,15.93,15.99,16.02,16.05,16.08,16.11,16.14,16.17,16.2,16.23,16.27,16.32,16.36,16.42,16.48,16.55,16.67,16.8,16.97,17.12,17.32,17.48,17.71,17.92,18.24,18.49,18.81,19.14,19.47,19.68,19.89,20.09,20.26,20.42,20.63,20.82,20.98,21.17,21.32,21.49,21.61,21.85,22.07,22.29,22.43,22.6,22.7,22.78,22.87,22.95,23.04,23.12,23.19,23.24,23.29,23.34,23.38,23.42,23.47,23.51,23.54,23.58,23.61,23.64,23.66,23.68,23.69,23.72,23.74,23.76,23.77,23.77,23.84,23.9,23.95,24,24.05,24.11,24.16,24.22,24.27,24.33,24.4,24.5,24.6,24.72,24.83,24.98,25.1,25.24,25.34,25.41,25.58,25.78,25.99,26.11,26.17,26.29,26.45,26.66,26.81,26.95,27.11,27.26,27.41,27.55,27.73,27.87,28.01,28.12,28.25,28.39,28.57,28.76,28.95,29.18,29.37,29.49,29.63,29.73,29.82,29.88,29.93,29.99,30.04,30.08,30.13,30.16,30.2,30.23,30.28,30.32,30.35,30.39,30.43,30.48,30.56,30.63,30.72,30.8,30.86,30.94,31.02,31.12,31.19,31.26,31.34,31.41,31.47,31.54,31.6,31.65,31.71,31.75,31.8,31.84,31.89,31.96,32.02,32.06,32.13,32.18,32.21,32.25,32.32,32.36,32.4,32.44,32.51,32.7,32.88,33.11,33.26,33.5,33.67,33.79,33.87,33.95,34.01,34.07,34.1,34.14,34.18,34.21,34.24,34.27,34.29,34.31,34.32,34.33,34.33,34.34,34.34,34.35,34.36,34.37,34.37,34.38,34.38,34.39,34.39,34.4,34.41,34.44,34.48,34.52,34.59,34.64,34.72,34.79,34.86,34.93,35.02,35.11,35.19,35.28,35.35,35.43,35.5,35.58,35.65,35.74,35.82,35.9,35.97,36.06,36.14,36.21,36.28,36.35,36.41,36.45,36.49,36.53,36.57,36.6,36.63,36.66,36.72,36.83,36.95,37.15,37.3,37.39,37.46,37.53,37.66,37.75,37.86,37.93,37.98,38.05,38.12,38.2,38.27,38.32,38.38,38.42,38.47,38.51,38.55,38.58,38.62,38.65,38.68,38.71,38.74,38.77,38.79,38.81,38.83,38.84,38.85,38.86,38.88,38.9,38.92,38.93,38.97,39.01,39.05,39.07,39.08,39.08,39.11,39.12,39.13,39.13,39.14,39.15,39.18,39.21,39.25,39.3,39.33,39.37,39.42,39.48,39.55,39.63,39.71,39.79,39.86,39.92,39.98,40.03,40.09,40.16,40.26,40.41,40.54,40.68,40.86,41,41.13,41.24,41.35,41.46,41.57,41.7,41.82,41.92,42,42.07,42.14,42.21,42.28,42.34,42.4,42.46,42.53,42.6,42.65,42.72,42.77,42.83,42.88,42.94,43,43.06,43.13,43.19,43.26,43.33,43.39,43.45,43.51,43.56,43.61,43.65,43.67,43.71,43.73,43.76,43.8,43.83,43.86,43.88,43.9,43.92,43.94,43.96,44,44.03,44.06,44.09,44.13,44.17,44.21,44.26,44.3,44.35,44.41,44.47,44.53,44.59,44.66,44.73,44.81,44.89,44.98,45.09,45.21,45.33,45.44,45.55,45.64,45.75,45.84,45.93,46.04,46.15,46.26,46.37,46.48,46.59,46.71,46.83,46.93,47.04,47.14,47.24,47.33,47.42,47.5,47.58,47.64,47.71,47.76,47.8,47.84,47.87,47.89,47.92,47.94,47.96,47.97,47.98,47.99,48,48,48.01,48.01,48.02,48.02,48.03,48.03,48.04,48.05,48.05,48.06,48.07,48.08,48.1,48.11,48.13,48.14,48.16,48.18,48.2,48.22,48.25,48.27,48.3,48.33,48.36,48.39,48.42,48.46,48.49,48.54,48.63,48.69,48.75,48.8,48.85,48.9,48.96,49.02,49.07,49.14,49.2,49.26,49.32,49.39,49.44,49.5,49.56,49.62,49.67,49.72,49.78,49.83,49.88,49.93,49.97,50.02,50.06,50.1,50.15,50.19,50.24,50.29,50.34,50.4,50.46,50.51,50.58,50.64,50.7,50.76,50.82,50.88,50.95,51.01,51.07,51.14,51.2,51.31,51.4,51.46,51.51,51.55,51.59,51.62,51.66,51.69,51.74,51.79,51.83,51.86,51.89,51.93,51.96,51.99,52.02,52.05,52.08,52.11,52.14,52.17,52.19,52.22,52.25,52.27,52.3,52.32,52.35,52.38,52.41,52.44,52.47,52.51,52.54,52.58,52.61,52.65,52.69,52.73,52.77,52.81,52.85,52.9,52.95,52.99,53.04,53.09,53.15,53.19,53.24,53.29,53.33,53.37,53.43,53.48,53.53,53.59,53.64,53.7,53.75,53.81,53.86,53.91,53.96,54.01,54.07,54.12,54.17,54.22,54.27,54.33,54.38,54.43,54.48,54.53,54.59,54.64,54.71,54.77,54.82,54.88,54.92,54.96,55,55.04,55.08,55.12,55.15,55.18,55.21,55.24,55.27,55.29,55.32,55.34,55.36,55.38,55.4,55.42,55.43,55.44,55.45,55.46,55.47,55.48,55.49,55.5,55.51,55.52,55.52,55.53,55.53,55.54,55.54,55.55,55.55,55.56,55.56,55.57,55.58,55.6,55.61,55.63,55.65,55.67,55.69,55.71,55.74,55.77,55.8,55.83,55.86,55.9,55.94,55.97,56,56.05,56.09,56.13,56.17,56.21,56.25,56.3,56.34,56.37,56.41,56.45,56.48,56.51,56.54,56.58,56.61,56.63,56.66,56.69,56.71,56.74,56.76,56.78,56.8,56.82,56.84,56.86,56.88,56.9,56.91,56.93,56.95,56.96,56.98,56.99,57.01,57.02,57.04,57.04,57.06,57.07,57.08,57.09,57.1,57.11,57.11,57.12,57.12,57.13,57.13,57.14,57.15,57.15,57.16,57.16,57.17,57.18,57.19,57.2,57.21,57.21,57.22,57.22,57.23,57.23,57.24,57.24,57.25,57.26,57.28,57.3,57.32,57.37,57.42,57.5,57.62,57.75,57.89,58.01,58.12,58.24,58.36,58.49,58.59,58.68,58.77,58.87,58.97,59.07,59.18,59.27,59.38,59.48,59.59,59.68,59.77,59.87,59.96,60.04,60.12,60.19,60.26,60.36,60.46,60.54,60.6,60.65,60.7,60.75,60.78,60.8,60.84,60.88,60.92,60.95,60.99,61.03,61.06,61.08,61.11,61.15,61.18,61.22,61.27,61.31,61.35,61.4,61.45,61.54,61.75,61.95,62.15,62.27,62.37,62.47,62.61,62.72,62.84,62.92,63.02,63.12,63.23,63.3,63.37,63.43,63.49,63.55,63.62,63.67,63.72,63.77,63.82,63.86,63.9,63.93,63.95,63.97,63.98,63.99,64.07,64.26,64.42,64.52,64.63,64.8,65.03,65.21,65.35,65.41,65.48,65.54,65.58,65.62,65.66,65.7,65.76,65.81,65.88,65.94,66,66.07,66.13,66.2,66.26,66.32,66.38,66.44,66.5,66.57,66.64,66.71,66.77,66.83,66.87,66.88,66.89,66.91,66.93,66.95,66.97,66.99,67.02,67.04,67.07,67.11,67.16,67.2,67.24,67.3,67.36,67.44,67.51,67.63,67.77,67.93,68.03,68.12,68.2,68.29,68.39,68.5,68.65,68.81,68.95,69.09,69.25,69.45,69.64,69.8,70.06,70.22,70.5,70.72,70.96,71.14,71.31,71.44,71.58,71.75,72.06,72.4,72.6,72.7,72.77,72.85,72.97,73.08,73.19,73.28,73.35,73.41,73.47,73.56,73.64,73.73,73.77,73.83,73.88,73.92,73.97,74,74.03,74.08,74.12,74.15,74.18,74.2,74.23,74.25,74.27,74.29,74.31,74.33,74.36,74.38,74.39,74.41,74.42,74.43,74.44,74.44,74.45,74.51,74.59,74.63,74.64,74.66,74.69,74.74,74.76,74.79,74.83,74.84,74.85,74.9,74.94,74.98,75.04,75.1,75.16,75.31,75.5,75.89,76.1,76.27,76.45,76.54,76.62,76.68,76.77,76.89,76.95,77.04,77.16,77.3,77.42,77.52,77.65,77.75,77.88,77.98,78.12,78.26,78.38,78.52,78.64,78.85,78.96,79.24,79.46,79.77,79.93,80.09,80.29,80.46,80.6,80.74,80.84,80.94,80.99,81.04,81.08,81.12,81.16,81.2,81.23,81.25,81.28,81.3,81.31,81.33,81.33,81.34,81.34,81.36,81.46,81.56,81.67,81.71,81.73,81.76,81.82,81.88,81.92,81.94,81.97,81.99,82.02,82.04,82.05,82.08,82.09,82.13,82.33,82.49,82.61,82.74,82.88,83.19,83.38,83.74,83.98,84.17,84.3,84.39,84.54,84.68,84.88,85.02,85.23,85.45,85.63,85.9,86.1,86.35,86.46,86.67,86.85,87.05,87.2,87.38,87.55,87.72,87.84,87.93,88.03,88.11,88.18,88.24,88.3,88.35,88.4,88.45,88.5,88.54,88.57,88.59,88.61,88.62,88.63,88.64,88.65,88.71,88.84,88.95,89.06,89.21,89.38,89.55,89.74,89.91,90.08,90.19,90.33,90.45,90.59,90.69,90.81,90.92,91.04,91.15,91.28,91.42,91.52,91.59,91.65,91.7,91.76,91.81,91.86,91.91,91.95,91.99,92.04,92.08,92.11,92.15,92.18,92.21,92.23,92.24,92.25,92.28,92.45,92.86,93.15,93.8,94.13,94.39,94.56,94.74,94.92,95.1,95.26,95.43,95.57,95.71,95.86,96.14,96.45,96.71,96.88,97.01,97.13,97.24,97.35,97.45,97.55,97.64,97.73,97.81,97.88,97.95,98.01,98.07,98.13,98.19,98.24,98.28,98.33,98.37,98.41,98.45,98.48,98.5,98.51,98.52,98.53,98.54,98.55,98.56,98.56,98.57,98.58,100,50.82,50.82,50.66,50.49,50.49,50.49,50.49,50.33,50.33,50.33,50.33,50.33,50.49,50.33,50.33,50.33,50.49,50.49,50.49,50.66,50.66,50.66,50.49,50.49,50.49,50.49,50.49,50.49,50.49,50.33,50.33,50.33,50.33,50.16,50.16,50.66,51.16,51.32,51.65,51.82,51.99,52.15,52.32,52.47,52.8,53.13,53.47,53.96,54.3,54.63,55.11,55.44,55.94,56.27,56.6,56.92,57.09,57.42,57.75,57.92,58.25,58.41,58.75,58.91,58.91,58.75,58.08,57.09,55.11,51.99,50.66,49.01,48.02,47.2,46.37,45.56,44.89,44.06,43.25,42.42,41.76,41.26,40.44,39.78,39.28,38.8,37.8,37.3,36.96,36.62,36.32,36.07,35.89,35.74,35.71,35.76,35.86,36.16,36.76,38.28,39.26,40.29,41.37,43.9,46.39,48.88,50.77,52.19,53.32,54.45,55.74,56.89,58.46,59.73,61.01,61.97,63.03,64.05,64.93,65.64,66.24,66.89,67.78,68.86,69.58,70.11,70.59,71.04,71.42,71.74,72,72.22,72.38,72.48,72.53,72.55,72.5,72.23,71.85,71.02,55.13,52.39,50.72,48.17,46.51,44.58,43.47,41.99,38.58,36.77,34.9,33.62,32.64,31.67,30.61,29.58,28.67,27.9,27.24,26.44,25.83,25.33,24.83,24.4,24.05,23.77,23.55,23.43,23.38,23.37,23.45,23.72,24.12,24.81,25.64,26.91,28.15,30.05,31.69,34.48,36.91,39.4,41.42,43.62,45.92,48.52,51.11,53.47,55.82,58.46,60.94,63.36,65.51,67.7,70.07,72.43,74.63,76.37,77.93,79.18,80.89,82.12,83.5,84.43,85.34,86.12,86.73,87.42,87.91,88.36,88.83,89.26,89.64,89.99,90.27,90.49,90.62,90.72,90.77,90.75,90.65,90.49,90.16,89.57,88.68,87.58,20.38,19.86,19.45,19.1,18.77,18.52,18.3,18.14,18.02,17.99,18.04,18.2,18.62,19.18,20.13,21.42,24.65,27.52,30.11,32.64,35.44,38.52,41.71,44.94,48.23,51.65,54.73,57.87,60.89,63.53,65.79,67.87,70.29,72.58,74.79,76.47,78.05,80.16,82.25,84.24,85.47,86.98,88.35,89.74,91.53,93.56,95.22,96.4,97.1,97.65,98.01,98.31,98.56,98.74,98.86,98.89,98.86,98.74,98.53,98.16,97.46,96.2,22.36,21.51,20.83,20.01,19.08,18.24,17.37,16.81,16.01,15.33,14.55,14.03,13.55,13.14,12.75,12.41,12.11,11.87,11.69,11.56,11.48,11.48,11.58,11.96,12.59,13.92,16.06,18.63,20.66,22.5,24.65,29.07,30.84,32.7,34.55,36.42,38.45,40.14,42.07,43.25,44.83,46.52,48.13,49.74,50.89,51.99,52.88,53.61,54.41,54.99,55.46,55.92,56.32,56.69,56.97,57.2,57.37,57.48,57.55,57.58,57.58,57.53,57.47,57.39,57.29,57.17,56.49,56.12,55.62,55.04,54.26,53.28,52.27,51.16,50.09,48.85,47.87,46.87,45.96,44.84,43.85,43.02,42.02,41.21,40.26,39.51,38.7,37.97,37.19,36.59,36.07,35.58,35.09,34.65,34.26,33.92,33.6,33.33,33.13,32.97,32.84,32.75,32.7,32.7,32.75,32.94,33.53,34.36,36.31,37.9,39.28,40.64,42.04,44.36,46.24,48.5,50.31,51.51,52.58,53.53,54.56,55.36,56.14,56.92,57.72,58.51,59.08,59.58,60.06,60.51,60.91,61.24,61.5,61.72,61.89,62,62.09,62.14,62.15,62.14,62.09,61.99,61.84,61.62,61.35,60.79,60.09,59.15,58.35,57.32,56.24,46.79,45.61,44.45,42.5,41.64,40.73,39.81,38.91,37.98,37.17,36.62,36.11,35.61,35.16,34.76,34.45,34.15,33.92,33.72,33.58,33.48,33.45,33.47,33.57,33.77,34.13,34.61,35.24,36.26,37.22,38.38,39.43,40.64,41.87,43.07,44.56,46.01,47.27,48.28,49.11,50.03,50.82,51.62,52.24,52.8,53.35,53.88,54.38,54.84,55.28,55.66,56.01,56.31,56.55,56.75,56.89,56.99,57.04,57.05,57,56.9,56.77,56.55,56.24,55.89,55.41,54.94,54.23,53.53,52.8,52.09,51.16,50.41,49.79,49.26,48.7,48.12,47.54,46.95,46.37,45.81,45.29,44.81,44.38,43.98,43.63,43.35,43.08,42.87,42.7,42.59,42.52,42.5,42.54,42.64,42.79,42.98,43.28,43.68,44.15,44.6,45.08,45.53,46.01,46.49,46.97,47.54,48.03,48.57,49.06,49.56,50.03,50.46,50.86,51.22,51.55,51.85,52.1,52.3,52.45,52.58,52.68,52.77,52.82,52.83,52.82,52.78,52.73,52.67,52.57,52.45,52.34,52.19,52,51.82,51.62,51.41,51.19,50.48,50.21,49.96,49.69,49.43,49.16,48.9,48.65,48.4,48.17,47.95,47.75,47.55,47.37,47.2,47.04,46.89,46.75,46.64,46.54,46.46,46.39,46.34,46.31,46.27,46.26,46.26,46.29,46.36,46.49,46.62,46.74,46.87,47,47.15,47.3,47.47,47.64,47.8,47.95,48.12,48.27,48.43,48.58,48.73,48.86,48.98,49.1,49.2,49.28,49.35,49.41,49.46,49.51,49.55,49.56,49.58,49.58,49.56,49.55,49.53,49.5,49.45,49.4,49.35,49.3,49.23,49.18,49.11,49.06,49.01,48.95,48.9,48.85,48.78,48.71,48.6,48.53,48.48,48.45,48.42,48.38,48.35,48.32,48.28,48.25,48.2,48.17,48.13,48.12,48.08,48.07,48.05,48.03,48.02,48,47.97,47.93,47.92,47.9,47.88,47.85,47.83,47.82,47.8,47.78,47.77,47.73,47.72,47.7,47.68,47.67,47.65,47.64,47.64,47.64,47.62,47.62,47.64,47.64,47.65,47.67,47.68,47.72,47.75,47.78,47.82,47.85,47.88,47.9,47.92,47.95,47.98,48.02,48.05,48.07,48.08,48.1,48.12,48.13,48.13,48.13,48.13,48.13,48.13,48.13,48.13,48.13,48.13,48.13,48.13,48.13,48.13,48.13,48.12,48.1,48.08,48.08,48.08,48.08,48.08,48.07,48.05,48.05,48.03,48,47.98,47.95,47.92,47.9,47.87,47.83,47.82,47.8,47.78,47.77,47.75,47.73,47.72,47.7,47.68,47.67,47.65,47.64,47.62,47.6,47.59,47.57,47.57,47.57,47.59,47.6,47.6,47.62,47.62,47.62,47.64,47.67,47.7,47.75,47.8,47.85,47.9,47.95,48,48.05,48.08,48.13,48.18,48.23,48.28,48.35,48.42,48.5,48.58,48.65,48.73,48.8,48.86,48.95,49.03,49.1,49.16,49.23,49.3,49.36,49.45,49.53,49.6,49.66,49.73,49.81,49.89,49.98,50.06,50.14,50.21,50.29,50.38,50.46,50.54,50.62,50.71,50.79,50.89,50.99,51.07,51.17,51.27,51.36,51.44,51.52,51.6,51.67,51.74,51.8,51.85,51.9,51.95,51.99,52,52.02,52.02,51.99,51.92,51.82,51.69,51.54,51.36,50.91,50.38,49.89,49.51,49.13,48.71,48.28,47.85,46.92,44.55,43.8,43.62,43.47,43.38,43.32,43.28,43.28,43.32,43.4,43.58,43.98,44.41,44.96,45.48,46.01,46.62,47.2,47.85,48.4,48.9,49.43,49.98,50.54,51.11,51.65,52.17,52.65,53.1,53.5,53.83,54.11,54.35,54.51,54.61,54.64,54.63,54.54,54.31,53.9,53.5,53.1,52.65,52.12,51.52,50.99,50.49,49.93,49.38,48.66,48.1,47.45,46.82,46.36,45.91,45.48,45.08,44.78,44.53,44.33,44.16,44.03,43.93,43.9,43.91,44.26,44.84,45.77,46.54,47.47,48.4,49.89,51.14,52.73,53.86,55.04,56.04,57.15,57.92,58.65,59.23,59.81,60.36,60.87,61.34,61.74,62.07,62.33,62.53,62.68,62.77,62.78,62.72,62.58,62.3,44,46.69,49.23,51.02,52.77,54.33,56.09,57.98,59.71,61.37,62.47,63.4,63.95,64.39,64.79,65.26,65.71,66.15,66.6,67,67.35,67.65,67.9,68.07,68.15,68.2,68.2,68.13,68,67.7,67.27,66.69,65.91,64.56,63.2,60.06,21.21,20.83,20.44,20.08,19.8,19.58,19.42,19.3,19.22,19.18,19.18,19.2,19.27,19.42,19.6,19.83,20.13,20.68,21.39,22.27,22.9,23.43,23.95,24.6,25.26,26.08,27.11,28.15,28.95,29.76,30.58,31.66,32.7,33.8,35.76,37.17,39.63,41.47,43.83,46.12,48.55,50.77,52.85,54.58,56.75,58.75,61.11,63.03,65.06,66.3,68.33,70.01,71.95,73.5,74.73,76.02,77.05,78.4,79.89,81.57,82.9,84.04,84.99,85.87,86.67,87.5,88.3,89.39,90.41,91.25,91.88,92.5,93.08,93.59,94.06,94.47,94.79,95.02,95.22,95.35,95.44,95.47,95.49,95.45,95.37,95.24,95.06,83.91,81.15,78.66,76.7,74.54,72.32,69.68,66.99,64.39,59.08,53.63,14.17,14.13,14.13,14.18,14.27,14.38,14.57,15.1,15.93,18.17,19.56,21.97,24.4,27.01,29.4,31.92,34.5,37.35,40.28,43.2,46.09,49.23,52.15,54.99,57.7,60.56,63.08,65.34,67.7,69.96,72.43,74.46,76.5,78.81,81,83.43,85.41,87.27,88.93,90.99,93.03,95.06,96.24,97.4,98.21,99.06,99.56,100,100,100,100,100,100,100,100,100,100,100,100,100,100,84.96,82.37,80.14,78.43,76.95,75.07,72.87,70.51,68.25,66.11,64.33,59.96,57.75,55.56,51.44,48.68,46.09,35.44,16.51,17.12,17.75,18.24,18.75,19.33,20.76,21.94,24.71,27.4,29.71,31.99,34.3,37.02,39.89,42.47,45.28,48.23,51.27,53.8,56.16,58.36,60.61,62.65,64.46,65.57,66.77,67.82,69.34,71.2,72.92,74.01,74.71,75.47,76.07,76.69,77.15,77.6,78,78.35,78.63,78.86,79.03,79.14,79.21,79.24,79.23,79.18,79.08,78.93,45.64,46.87,48.07,49.08,50.06,51.01,51.72,52.4,53,53.56,54,54.48,54.86,55.33,55.72,56.09,56.45,56.82,57.2,57.6,58.05,58.35,58.55,58.71,58.83,58.93,58.96,58.93,58.85,58.7,58.5,58.25,57.97,57.65,57.3,56.84,56.31,55.64,54.84,53.81,42.54,43.07,44.33,45.06,46.51,47.29,47.87,48.25,48.75,49.18,49.63,50.01,50.36,50.66,50.92,51.17,51.57,51.84,52,52.07,52.12,52.14,52.1,52.04,51.95,51.85,51.7,51.55,51.37,51.17,50.99,50.79,50.58,50.36,50.14,49.94,49.73,49.5,49.25,48.83,48.35,47.9,47.5,47.04,46.57,46.02,45.41,44.73,44.28,43.91,43.62,43.4,43.4;;259291_228325_recording_7-31_11-47-46_rec.m4a;length: 0:00:05.69;42.4728343,0.1616149,0,36.900001525879,0,1.5;"""com.google.android.youtube"",""com.google.android.youtube"",""com.whatsapp"",""com.whatsapp"",""com.miui.gallery"",""com.miui.gallery"",""com.miui.securitycenter"",""com.miui.securitycenter"",""com.discord"",""com.discord"",""com.android.vending"",""com.android.vending"",""com.reddit.frontpage"",""com.reddit.frontpage"",""com.google.android.gm"",""com.google.android.gm"",""com.google.android.permissioncontroller"",""com.google.android.permissioncontroller"",""com.google.android.dialer"",""com.google.android.dialer"",""com.android.camera"",""com.android.camera"",""com.android.chrome"",""com.android.chrome"",""com.google.android.gms"",""com.google.android.gms"",""com.android.settings"",""com.android.settings"",""com.amdroidalarmclock.amdroid"",""com.amdroidalarmclock.amdroid"",""io.m_Path.kuleuven"",""io.m_Path.kuleuven"",""com.android.deskclock"",""com.android.deskclock"",""com.miui.home"",""com.miui.home"",""com.ecosia.android"",""com.ecosia.android"",""com.miui.weather2"",""com.miui.weather2""";1722283509247,1722369909246,83,1722369909822,1722419291134,786,1722283509247,1722369909246,387,1722369909822,1722419291134,115,1722283509247,1722369909246,32,1722369909822,1722419291134,0,1722283509247,1722369909246,12,1722369909822,1722419328476,10,1722283509247,1722369909246,1,1722369909822,1722419291134,1,1722283509247,1722369909246,206,1722369909822,1722419291134,166,1722283509247,1722369909246,1365,1722369909822,1722419291134,701,1722283509247,1722369909246,229,1722369909822,1722419291134,73,1722283509247,1722369909246,29,1722369909822,1722419291134,20,1722283509247,1722369909246,617,1722369909822,1722419291134,458,1722283509247,1722369909246,14,1722369909822,1722419291134,0,1722283509247,1722419291134,0,1722283509247,1722369909246,114,1722369909822,1722419291134,0,1722283509247,1722369909246,25,1722369909822,1722419314241,16,1722283509247,1722369909246,4508,1722369909822,1722419291134,1774,1722283509247,1722369909246,1,1722369909822,1722419330666,14,1722283509247,1722369909246,24,1722369909822,1722419291134,205,1722283509247,1722369909246,0,1722369909822,1722419329972,245,1722283509247,1722369909246,29,1722369909822,1722419291134,6,345,1722369909822,1722419329988,236,1722283509247,1722369909246,688,1722369909822,1722419291134,0,1722283509247,1722369909246,0,1722369909822,1722419291134,0;67918;40.100376557224,54.014339419261;"""34:BB:6C:0A:69:EA"",""2E:FC:B0:27:72:49"",""44:70:2C:0B:AD:52"",""CB:51:B7:BE:B0:3B""";;0,10;0,10;1,453,501;;3,8,5,3;3,8,5,3;4,5,5,5;50,50,50,50;0,9,15,13;19,641,061,531,711;;27,19,11,3,4;50,57,32,71,53;26,523,574,408,248,000,000;1;100;;;;;;;;50;"""""";"""""";91;"""same label""" +228325;;;larann;lar;jp7a7;0;20372171;0;ALLTHEQUESTIONS;;;0;1722426241;1722426838;1722427103;0;7200;0;"""question """;"""0.123""";"""123""";1;2;"""b""";;1;"""a""";;2,3;"""b"",""c""";;;;;4;"""I chose other""";;3,2,1;"""angry"",""fear""";"""belly""";"""right knee"",""left leg""";2;"""b""";;1,2;"""a"",""b""";;73;21;100;16;90;10;18;87;93;31;8;83160;61799;2024,7,25;1;31;1;;1;"""a"",""b"",""c""";"""test""";1,2,3;5;0,13.82,14.08,14.23,14.54,14.9,15.21,15.47,15.67,16.03,16.45,16.86,17.07,17.27,17.53,17.84,18.14,18.45,18.76,19.02,19.38,19.59,19.79,19.95,20.26,20.67,20.92,21.13,21.29,21.44,21.7,21.85,22.11,22.32,22.47,22.66,22.82,22.97,23.11,23.26,23.41,23.53,23.64,23.75,23.86,23.96,24.04,24.12,24.19,24.29,24.38,24.46,24.52,24.56,24.6,24.65,24.7,24.74,24.79,24.84,24.89,24.93,24.96,25,25.03,25.06,25.08,25.1,25.12,25.13,25.14,25.15,25.16,25.17,25.18,25.19,25.21,25.22,25.23,25.24,25.26,25.28,25.29,25.31,25.32,25.34,25.35,25.37,25.4,25.42,25.45,25.49,25.54,25.6,25.64,25.69,25.74,25.79,25.94,26.03,26.13,26.2,26.29,26.38,26.47,26.56,26.66,26.77,26.86,26.95,27.03,27.1,27.16,27.21,27.26,27.31,27.36,27.41,27.45,27.49,27.53,27.57,27.6,27.64,27.66,27.69,27.71,27.73,27.76,27.82,27.88,28.06,28.26,28.69,29.07,29.34,29.63,29.97,30.33,30.67,30.96,31.22,31.49,31.75,32,32.25,32.53,32.73,32.84,32.92,33,33.08,33.16,33.26,33.32,33.39,33.43,33.48,33.53,33.57,33.62,33.68,33.74,33.81,33.88,33.95,34.01,34.08,34.14,34.2,34.25,34.31,34.35,34.39,34.42,34.46,34.49,34.52,34.54,34.57,34.6,34.62,34.66,34.7,34.74,34.8,34.86,34.94,35.02,35.06,35.11,35.13,35.19,35.25,35.32,35.38,35.41,35.46,35.53,35.67,35.82,35.96,36.08,36.17,36.28,36.35,36.45,36.57,36.68,36.81,36.87,36.97,37.07,37.21,37.33,37.42,37.49,37.55,37.61,37.67,37.72,37.77,37.81,37.84,37.86,37.88,37.89,37.9,37.9,37.94,38.02,38.13,38.34,38.55,38.89,39.23,39.57,39.98,40.37,40.83,41.28,41.78,42.24,42.75,43.27,43.83,44.31,44.73,45.04,45.34,45.6,45.84,46.02,46.18,46.37,46.55,46.71,46.82,46.92,47.01,47.11,47.23,47.37,47.51,47.64,47.76,47.88,48,48.12,48.23,48.34,48.45,48.55,48.65,48.74,48.83,48.91,48.98,49.04,49.1,49.14,49.19,49.23,49.27,49.29,49.31,49.33,49.34,49.35,49.36,49.37,49.37,49.38,49.45,49.63,49.79,49.93,50.05,50.16,50.27,50.37,50.47,50.57,50.65,50.72,50.78,50.85,50.9,50.96,51.04,51.11,51.2,51.29,51.4,51.64,51.9,52.13,52.37,52.57,52.83,53.09,53.45,53.77,54.1,54.33,54.54,54.79,55.01,55.19,55.33,55.44,55.55,55.64,55.71,55.78,55.85,55.93,56,56.07,56.14,56.21,56.27,56.35,56.43,56.51,56.58,56.64,56.71,56.8,56.9,57.01,57.1,57.2,57.3,57.4,57.49,57.57,57.66,57.74,57.82,57.89,57.96,58.03,58.09,58.15,58.22,58.3,58.36,58.43,58.5,58.57,58.62,58.68,58.74,58.8,58.86,58.91,58.97,59.01,59.05,59.06,59.07,59.07,59.08,59.09,59.13,59.19,59.23,59.28,59.33,59.38,59.44,59.5,59.58,59.64,59.71,59.78,59.85,59.9,59.96,60.01,60.06,60.11,60.17,60.23,60.28,60.33,60.38,60.43,60.47,60.51,60.54,60.56,60.59,60.61,60.64,60.67,60.69,60.73,60.76,60.79,60.83,60.88,60.93,61.01,61.1,61.24,61.4,61.76,61.98,62.22,62.47,62.71,62.95,63.14,63.3,63.44,63.57,63.67,63.77,63.86,63.97,64.08,64.16,64.24,64.32,64.39,64.45,64.51,64.57,64.62,64.67,64.71,64.74,64.77,64.8,64.82,64.84,64.85,64.86,64.87,64.87,64.88,64.88,64.89,64.9,64.92,64.95,64.98,65.02,65.06,65.1,65.14,65.22,65.3,65.4,65.46,65.53,65.6,65.69,65.78,65.87,65.95,66.07,66.17,66.26,66.34,66.45,66.55,66.64,66.73,66.82,66.91,67,67.09,67.19,67.29,67.44,67.54,67.63,67.72,67.82,67.92,68.02,68.12,68.22,68.31,68.41,68.5,68.59,68.68,68.77,68.84,68.93,69.01,69.08,69.16,69.23,69.3,69.38,69.45,69.52,69.58,69.65,69.72,69.78,69.84,69.9,69.96,70.03,70.09,70.16,70.22,70.29,70.36,70.42,70.49,70.56,70.63,70.7,70.77,70.84,70.91,70.99,71.08,71.15,71.23,71.31,71.39,71.45,71.53,71.6,71.67,71.74,71.8,71.87,71.93,71.98,72.05,72.1,72.15,72.19,72.24,72.28,72.32,72.36,72.4,72.44,72.47,72.5,72.53,72.56,72.58,72.61,72.63,72.65,72.66,72.67,72.68,72.69,72.69,72.7,72.7,72.71,72.71,72.72,72.72,72.73,72.73,72.74,72.74,72.75,72.77,72.79,72.8,72.82,72.83,72.85,72.87,72.89,72.91,72.93,72.95,72.97,73,73.02,73.05,73.07,73.1,73.12,73.15,73.18,73.2,73.23,73.25,73.28,73.3,73.32,73.34,73.36,73.38,73.4,73.42,73.44,73.46,73.47,73.49,73.5,73.51,73.52,73.53,73.54,73.55,73.56,73.57,73.58,73.59,73.6,73.6,73.61,73.61,73.62,73.63,73.63,73.64,73.64,73.65,73.65,73.66,73.66,73.67,73.67,73.68,73.69,73.7,73.71,73.72,73.73,73.74,73.75,73.77,73.78,73.8,73.82,73.84,73.86,73.88,73.9,73.92,73.94,73.97,73.99,74.01,74.03,74.05,74.07,74.1,74.11,74.13,74.15,74.17,74.19,74.22,74.23,74.25,74.26,74.29,74.31,74.33,74.36,74.38,74.4,74.42,74.44,74.47,74.5,74.52,74.55,74.57,74.61,74.64,74.68,74.72,74.77,74.83,74.89,74.96,75.03,75.13,75.2,75.28,75.37,75.46,75.55,75.64,75.72,75.81,75.9,75.99,76.07,76.16,76.24,76.32,76.4,76.49,76.57,76.65,76.74,76.85,76.97,77.16,77.31,77.48,77.71,77.92,78.12,78.3,78.46,78.6,78.71,78.84,78.97,79.12,79.24,79.34,79.41,79.48,79.51,79.53,79.54,79.54,79.72,80.06,80.43,80.71,81,81.29,81.46,81.65,81.88,82.27,82.54,82.75,82.9,83.01,83.09,83.16,83.22,83.27,83.32,83.37,83.41,83.47,83.56,83.69,83.78,83.85,83.94,84.08,84.23,84.42,84.58,84.78,84.99,85.25,85.43,85.68,85.93,86.16,86.31,86.41,86.55,86.62,86.63,86.67,86.71,86.77,86.83,86.88,86.94,86.99,87.05,87.09,87.13,87.16,87.2,87.22,87.24,87.26,87.28,87.31,87.38,87.43,87.6,87.84,88.06,88.31,88.56,88.8,89.16,89.55,89.89,90.09,90.25,90.38,90.51,90.64,90.76,90.91,91.08,91.37,91.56,91.64,91.7,91.77,91.85,91.91,92.03,92.13,92.26,92.35,92.47,92.59,92.74,92.99,93.23,93.43,93.53,93.67,93.73,93.78,93.79,93.85,93.9,93.98,94.09,94.27,94.44,94.67,94.8,94.89,95,95.11,95.27,95.44,95.63,95.84,96,96.18,96.42,96.88,97.34,97.67,97.82,97.99,98.14,98.31,98.45,98.61,98.76,98.9,99.04,99.18,99.31,99.42,99.52,99.61,99.67,99.72,99.77,99.8,99.82,99.85,99.85,99.86,99.9,99.96,100,60.23,60.23,60.23,60.23,60.06,60.06,60.06,60.06,59.89,59.89,59.89,59.73,59.73,59.73,59.56,59.73,59.73,59.73,59.73,59.89,60.06,60.06,60.06,60.06,60.39,60.56,60.72,60.89,61.06,61.22,61.37,61.7,61.87,62.37,62.7,63.08,63.5,63.95,64.39,64.93,65.56,66.11,66.6,67.17,67.77,68.35,68.9,69.46,70.03,70.77,71.57,72.4,72.96,73.53,74.09,74.74,75.34,75.92,76.5,77.07,77.62,78.13,78.63,79.08,79.48,79.86,80.21,80.51,80.77,81.02,81.24,81.42,81.55,81.25,81.07,80.87,80.64,80.39,80.12,79.84,79.54,79.21,78.86,78.4,78,77.58,77.15,76.47,75.69,74.99,73.99,72.63,70.82,68.96,67.4,66.04,64.93,63.7,61.16,59.44,58,56.85,55.54,54.3,53.12,52.07,50.96,49.84,48.91,48.12,47.42,46.77,46.17,45.61,45.04,44.51,44.03,43.58,43.22,42.9,42.64,42.4,42.22,42.07,41.95,41.89,41.87,41.9,41.99,42.27,42.72,43.9,45.19,47.9,50.69,52.98,55.56,57.7,60.01,62.25,64.73,67.1,69.34,71.55,73.75,75.77,77.53,78.99,80.14,81.12,81.98,82.88,83.78,84.81,85.69,86.57,87.25,87.96,88.63,89.24,89.77,90.26,90.72,91.17,91.58,91.97,92.32,92.6,92.83,93.05,93.23,93.36,93.46,93.53,93.56,93.58,93.58,93.56,93.51,93.44,93.33,93.16,92.91,92.48,91.82,90.9,89.56,87.13,85.04,83.23,80.85,78.7,76.32,74.24,71.98,69.68,67.37,65.06,62.82,60.56,58.2,56.11,54.01,51.99,49.96,47.82,46.26,44.33,43.15,41.09,39.85,38.48,37.29,36.16,35.19,34.53,34.03,33.57,33.1,32.64,32.2,31.82,31.46,31.14,30.88,30.61,30.39,30.19,30,30.53,31.31,32.3,34.08,35.88,38.48,41.01,43.43,45.92,48.57,51.44,54.51,57.75,60.94,63.96,66.94,69.63,71.98,74.19,76.17,78.15,79.53,80.94,81.98,82.91,83.99,85.06,85.97,86.6,87.12,87.61,88.11,88.69,89.31,89.94,90.49,90.94,91.35,91.73,92.1,92.45,92.75,93.05,93.33,93.58,93.81,94.03,94.21,94.36,94.49,94.59,94.66,94.71,94.74,94.77,94.77,94.76,94.74,94.71,94.66,94.59,94.47,94.33,93.78,26.09,25.26,24.58,24.1,23.73,23.4,23.12,22.85,22.6,22.39,22.22,22.11,22.02,21.97,21.97,22.04,22.26,22.6,23.24,24.07,25.16,28,30.73,33.27,35.71,38.13,40.73,43.42,46.04,48.35,50.66,52.85,54.94,56.77,58.56,60.08,61.3,62.52,63.78,64.88,65.86,66.72,67.63,68.41,69.14,69.86,70.46,71.05,71.62,72.33,73.05,73.73,74.29,74.83,75.34,75.92,76.47,77.02,77.47,77.93,78.4,78.86,79.29,79.73,80.12,80.51,80.84,81.12,81.37,81.57,81.75,81.9,82,82.08,82.13,82.17,82.15,82.1,82.02,81.88,81.65,81.35,80.94,80.47,79.73,78.76,77.58,76.24,67.42,66.09,64.16,62.75,60.99,59.49,57.98,56.79,55.66,54.63,53.56,52.45,51.31,50.34,49.51,48.78,47.97,47.34,46.8,46.26,45.74,45.24,44.73,44.23,43.77,43.35,42.97,42.64,42.35,42.12,41.9,41.74,41.61,41.51,41.42,41.37,41.36,41.37,41.41,41.49,41.61,41.79,42.07,42.45,42.97,43.85,44.84,47.02,48.35,49.69,51.19,52.72,54.63,56.09,57.3,58.4,59.25,60.03,60.89,61.75,62.63,63.33,63.81,64.23,64.61,64.99,65.34,65.67,65.97,66.25,66.5,66.72,66.92,67.09,67.22,67.32,67.4,67.45,67.48,67.48,67.48,67.45,67.42,66.22,65.92,65.62,65.24,64.84,64.28,63.8,63.31,62.83,62.07,61.26,60.39,59.89,59.3,58.8,58.1,57.5,56.87,56.32,55.56,54.84,54.25,53.7,53.05,52.45,51.9,51.39,50.89,50.39,49.91,49.43,48.96,48.53,47.93,47.59,47.25,46.94,46.64,46.36,46.09,45.84,45.64,45.44,45.26,45.09,44.93,44.78,44.65,44.53,44.43,44.35,44.28,44.21,44.16,44.11,44.06,44.03,44,43.98,43.98,43.98,43.98,44,44.01,44.03,44.06,44.1,44.15,44.2,44.25,44.31,44.38,44.45,44.53,44.6,44.68,44.74,44.83,44.89,44.96,45.03,45.09,45.16,45.23,45.29,45.36,45.43,45.49,45.56,45.61,45.66,45.69,45.74,45.79,45.84,45.89,45.94,45.99,46.06,46.12,46.19,46.26,46.32,46.39,46.46,46.54,46.61,46.67,46.74,46.8,46.87,46.94,47,47.05,47.12,47.19,47.24,47.29,47.34,47.39,47.42,47.59,47.64,47.68,47.72,47.75,47.8,47.83,47.87,47.9,47.95,47.98,48.03,48.08,48.13,48.2,48.27,48.33,48.42,48.5,48.58,48.66,48.76,48.86,48.96,49.06,49.18,49.3,49.41,49.53,49.64,49.76,49.88,49.99,50.11,50.21,50.31,50.41,50.51,50.61,50.71,50.79,50.87,50.96,51.02,51.09,51.16,51.22,51.29,51.34,51.39,51.42,51.46,51.47,51.49,51.51,51.52,51.54,51.54,51.54,51.52,51.51,51.49,51.46,51.42,51.39,51.34,51.27,51.21,51.14,51.07,50.99,50.91,50.84,50.77,50.69,50.62,50.54,50.46,50.39,50.33,50.24,50.16,50.11,50.04,49.98,49.93,49.88,49.83,49.79,49.76,49.74,49.73,49.71,49.71,49.71,49.73,49.76,49.79,49.84,49.93,50.04,50.19,50.36,50.53,50.71,50.89,51.07,51.27,51.46,51.64,51.82,52,52.19,52.35,52.5,52.65,52.77,52.88,52.97,53.02,53.05,53.03,52.97,52.85,52.72,52.55,52.37,52.14,51.9,51.65,51.39,51.11,50.82,50.53,50.24,49.98,49.71,49.46,49.23,49.03,48.88,48.76,48.68,48.65,48.7,49,49.4,49.94,50.86,51.87,52.83,53.75,54.63,55.43,56.09,56.85,57.65,58.7,59.66,60.67,61.55,62.7,63.65,64.44,65.06,65.66,28.78,26.81,24.61,22.85,21.49,20,18.78,17.64,16.08,14.28,12.94,12.42,11.97,11.63,11.38,11.16,10.98,10.84,10.74,10.73,10.83,11.13,11.99,14.4,17.26,20.25,23.34,26.92,30.71,34.66,38.52,42.59,46.42,50.44,53.8,57.14,60.18,63.25,65.94,68.58,70.94,73.36,75.44,88.84,88.96,89.08,89.19,89.31,89.44,89.56,89.66,89.74,89.79,89.81,89.79,89.74,89.66,89.52,89.34,89.01,87.15,84.09,14.43,13.45,12.65,12.07,11.56,11.09,10.61,10.18,9.9,9.81,9.76,9.73,9.76,9.83,9.96,10.28,10.81,12.59,15.08,17.74,20.3,23.24,26.59,30.21,33.9,37.97,42.3,46.59,50.87,54.99,59.34,63.31,67.15,70.94,74.24,77,79.29,81.29,89.89,89.76,89.57,89.26,88.71,87.58,85.87,82.73,80.24,77.91,76.1,73.98,71.94,69.91,68.2,66.59,65.46,64.31,63,60.96,59.13,58.18,57.67,57.1,56.59,56.09,55.76,55.41,55.11,54.83,54.56,54.3,54.05,53.85,53.63,53.45,53.32,53.17,53.07,53,52.98,52.98,53.03,53.12,57.42,57.55,57.55;;259291_228325_recording_7-31_11-57-3_rec.m4a;length: 0:00:08.60;42.4728336,0.1616149,0,30,0,1.5;"""com.google.android.youtube"",""com.google.android.youtube"",""com.whatsapp"",""com.whatsapp"",""com.miui.gallery"",""com.miui.gallery"",""com.miui.securitycenter"",""com.miui.securitycenter"",""com.discord"",""com.discord"",""com.android.vending"",""com.android.vending"",""com.reddit.frontpage"",""com.reddit.frontpage"",""com.google.android.gm"",""com.google.android.gm"",""com.google.android.permissioncontroller"",""com.google.android.permissioncontroller"",""com.google.android.dialer"",""com.google.android.dialer"",""com.android.camera"",""com.android.camera"",""com.android.chrome"",""com.android.chrome"",""com.google.android.gms"",""com.google.android.gms"",""com.android.settings"",""com.android.settings"",""com.amdroidalarmclock.amdroid"",""com.amdroidalarmclock.amdroid"",""io.m_Path.kuleuven"",""io.m_Path.kuleuven"",""com.android.deskclock"",""com.android.deskclock"",""com.miui.home"",""com.miui.home"",""com.ecosia.android"",""com.ecosia.android"",""com.miui.weather2"",""com.miui.weather2""";1722283509247,1722369909246,83,1722369909822,1722419291134,786,1722283509247,1722369909246,387,1722369909822,1722419291134,115,1722283509247,1722369909246,32,1722369909822,1722419291134,0,1722283509247,1722369909246,12,1722369909822,1722419328476,10,1722283509247,1722369909246,1,1722369909822,1722419291134,1,1722283509247,1722369909246,206,1722369909822,1722419291134,166,1722283509247,1722369909246,1365,1722369909822,1722419291134,701,1722283509247,1722369909246,229,1722369909822,1722419291134,73,1722283509247,1722369909246,29,1722369909822,1722419291134,20,1722283509247,1722369909246,617,1722369909822,1722419291134,458,1722283509247,1722369909246,14,1722369909822,1722419291134,0,1722283509247,1722419291134,0,1722283509247,1722369909246,114,1722369909822,1722419291134,0,1722283509247,1722369909246,25,1722369909822,1722419314241,16,1722283509247,1722369909246,4508,1722369909822,1722419291134,1774,1722283509247,1722369909246,1,1722369909822,1722419330666,14,1722283509247,1722369909246,24,1722369909822,1722419291134,205,1722283509247,1722369909246,0,1722369909822,1722419329972,245,1722283509247,1722369909246,29,1722369909822,1722419291134,6,345,1722369909822,1722419329988,236,1722283509247,1722369909246,688,1722369909822,1722419291134,0,1722283509247,1722369909246,0,1722369909822,1722419291134,0;67942;41.186781766735,51.732011169795;"""0C:0D:1D:8B:00:E0"",""44:70:2C:0B:AD:52"",""2B:07:A1:82:00:C0"",""CB:51:B7:BE:B0:3B""";;2,7;2,7;608,174;;7,4,4,1;7,4,4,1;4,4,4,4;50,50,50,50;12,15,14,14;757,532,557,611;;12,20,21,29,30;59,59,46,25,26;26,664,138,479,955,100,000;1;;;;;;;;;50;"""""";"""""";28;"""b""" +228325;;;larann;lar;jp7a7;29925244;20372219;0;ALLTHEQUESTIONS;;;1722427200;1722427206;1722427903;1722428179;0;7200;0;"""q""";"""1.234""";"""1234""";1;2;"""b""";;1;"""a""";;1,2;"""a"",""b""";;;;;4;"""other""";;3,2,1;"""fear""";"""belly""";"""right foot"",""back""";2;"""b""";;1,2;"""a"",""b""";;100;97;27;88;100;100;100;84;74;68;7;25860;72177;2024,7,25;1;2;1;;1;"""a"",""b"",""c""";"""test""";1,2,3;5;0,6.41,6.51,6.61,6.77,6.97,7.13,7.33,7.49,7.75,7.95,8.1,8.26,8.36,8.47,8.57,8.67,8.72,8.88,9.03,9.24,9.45,9.7,9.91,10.12,10.27,10.42,10.58,10.73,10.83,10.99,11.2,11.45,11.71,12,12.17,12.38,12.55,12.74,12.93,13.12,13.34,13.55,13.75,13.93,14.06,14.17,14.24,14.31,14.38,14.45,14.54,14.65,14.83,15.15,15.54,15.81,15.99,16.15,16.36,16.55,16.72,16.89,17.17,17.41,17.72,18.01,18.42,18.8,19.14,19.4,19.6,19.81,19.95,20.06,20.14,20.2,20.26,20.31,20.36,20.42,20.49,20.56,20.64,20.76,20.96,21.19,21.34,21.42,21.54,21.71,21.84,21.99,22.15,22.38,22.48,22.59,22.8,23.05,23.36,23.56,23.81,24.06,24.29,24.52,24.72,24.94,25.13,25.3,25.44,25.6,25.77,25.95,26.07,26.17,26.27,26.36,26.44,26.55,26.74,26.88,26.93,26.96,26.99,27,27.05,27.14,27.22,27.38,27.58,27.82,28.07,28.25,28.46,28.7,28.92,29.11,29.17,29.2,29.22,29.24,29.26,29.28,29.31,29.34,29.4,29.47,29.6,29.78,29.93,30.02,30.1,30.21,30.33,30.48,30.66,30.86,31.01,31.21,31.43,31.65,32.03,32.37,32.82,33.16,33.56,33.9,34.24,34.55,34.84,35.14,35.39,35.68,35.97,36.23,36.41,36.55,36.68,36.82,36.97,37.14,37.41,37.73,37.93,38.08,38.21,38.31,38.39,38.5,38.62,38.74,38.86,38.96,39.08,39.27,39.37,39.55,39.6,39.73,39.8,39.85,39.89,39.92,39.95,39.98,40.01,40.04,40.09,40.13,40.19,40.25,40.34,40.43,40.54,40.74,40.9,41.04,41.07,41.17,41.28,41.45,41.59,41.71,41.81,41.92,42.08,42.2,42.33,42.43,42.51,42.62,42.72,43.02,43.37,43.78,44.11,44.5,44.79,45.02,45.24,45.41,45.57,45.66,45.75,45.83,45.88,45.94,46,46.06,46.12,46.18,46.25,46.3,46.36,46.41,46.46,46.53,46.61,46.7,46.8,46.91,47.01,47.11,47.24,47.37,47.48,47.6,47.72,47.83,47.95,48.08,48.22,48.37,48.52,48.7,48.84,48.95,49.06,49.16,49.29,49.39,49.5,49.6,49.78,50.08,50.34,50.51,50.66,50.82,50.99,51.16,51.34,51.5,51.64,51.78,51.91,52.04,52.16,52.27,52.41,52.53,52.64,52.74,52.85,52.97,53.19,53.45,53.73,53.89,54.03,54.18,54.36,54.53,54.7,54.89,55.06,55.24,55.41,55.57,55.73,55.89,56.04,56.26,56.47,56.78,56.99,57.14,57.27,57.4,57.54,57.68,57.83,57.99,58.13,58.28,58.43,58.57,58.7,58.84,58.97,59.09,59.21,59.34,59.47,59.65,59.86,60.26,61.08,61.68,62.06,62.23,62.46,62.68,62.92,63.13,63.35,63.57,63.78,63.95,64.16,64.34,64.65,64.88,65.22,65.45,65.65,65.78,65.89,66.02,66.1,66.16,66.25,66.33,66.42,66.53,66.7,66.9,67.1,67.18,67.24,67.3,67.35,67.42,67.5,67.57,67.66,67.69,67.83,67.95,68.02,68.09,68.17,68.33,68.41,68.48,68.56,68.64,68.8,69.03,69.13,69.18,69.42,69.7,69.85,69.98,70.11,70.19,70.28,70.38,70.48,70.6,70.72,71.01,71.35,71.75,72.07,72.41,72.76,73.14,73.4,73.66,73.87,74.12,74.4,74.71,74.98,75.45,75.93,76.39,76.68,76.98,77.3,77.57,77.8,78.02,78.23,78.48,78.8,79.21,79.53,79.78,79.95,80.12,80.31,80.49,80.67,80.81,80.93,100,51.82,51.82,54.78,57.42,60.06,62.37,64.34,66.49,68.46,70.61,72.27,73.08,73.75,74.08,74.24,74.24,74.41,74.41,74.24,74.08,73.25,72.1,69.63,67.32,64.84,62.2,59.39,56.44,53.47,50.01,46.54,42.75,38.8,34.83,30.66,26.71,22.8,19,15.38,11.92,8.78,6.09,3.79,1.86,0.6,0,0,0,0,0,0,0,0,0,0,1.21,3.92,7.02,10.48,14.38,18.73,23.73,29.28,35.54,42.25,49.13,55.94,61.92,67.27,71.32,74.63,77.15,79.29,81.45,83.08,84.24,84.79,85.16,85.46,85.72,85.92,86.02,86.05,85.99,85.64,84.54,82.25,79.59,77.12,74.46,71.22,67.77,63.53,59.34,54.66,50.21,45.82,41.59,37.25,32.8,28.68,25.06,21.76,18.68,15.83,13.35,11.26,9.57,8.04,6.86,5.89,5.26,4.78,4.52,4.32,4.17,4.08,4.12,4.45,6.23,9.18,12.59,16.33,20.54,36.32,42.3,48.85,55.82,62.75,69.91,76.77,83.26,88.86,93.31,96.95,99.67,100,100,100,100,100,100,100,100,100,100,100,100,100,99.56,96.7,93.53,90.02,86.27,82.32,78.2,73.58,68.8,63.58,58.53,53.35,48.47,43.68,38.8,34.35,30.1,26.37,22.85,19.83,17.14,14.71,12.52,10.83,9.76,8.95,8.47,8.14,7.9,7.74,7.69,7.82,8.55,10.46,13.22,16.29,19.55,23.09,26.64,30.43,34.45,38.63,42.75,46.7,50.28,53.47,55.99,58.3,60.39,62.32,63.36,64.1,64.54,64.91,65.22,65.49,65.71,65.84,65.92,65.94,65.89,65.77,65.46,64.88,63.93,61.5,58.86,56.5,54.81,52.82,50.72,48.52,46.42,44.53,43.15,41.95,40.74,39.78,38.93,38.45,38.1,37.8,37.57,37.29,37.22,37.59,38.38,40.61,43.12,45.39,47.65,49.68,51.6,52.39,53.03,53.43,53.76,54.06,54.33,54.58,54.78,54.96,55.09,55.19,55.26,55.29,55.31,55.29,55.28,55.26,55.26,55.26,55.29,55.34,55.44,55.54,55.64,55.72,55.77,55.77,55.72,55.56,55.26,54.79,54.13,53.1,52.09,51.14,50.14,49.26,48.32,47.67,47.09,46.64,46.06,45.48,45.16,45.06,45.04,45.09,45.19,45.31,45.44,45.58,45.68,45.76,45.81,45.81,45.74,45.63,45.39,45.16,44.91,44.65,44.38,44.13,43.77,43.43,43.25,43.22,43.25,43.32,43.42,43.55,43.7,43.86,44.05,44.23,44.4,44.55,44.66,44.74,44.79,44.81,44.78,44.65,44.53,44.41,44.33,44.23,44.13,44.03,43.95,43.85,43.75,43.63,43.52,43.42,43.3,43.17,43.05,42.93,42.83,42.75,42.7,42.7,42.79,43.22,45.23,47.5,49.94,52.04,54.35,56.65,59.03,61.54,64.01,66.82,69.34,71.77,73.91,76,77.82,79.89,81.65,83.6,84.72,85.82,86.67,87.45,87.9,88.26,88.56,88.83,89.01,89.06,88.84,88.1,85.92,83.16,80.21,77.32,74.36,71.39,68.08,64.68,61.42,58.2,54.99,51.87,48.96,45.82,42.42,39.11,35.94,32.74,29.73,27.04,24.28,21.19,18.4,13.24,10.55,8.24,6.31,5.36,4.42,3.92,3.42,3.04,2.69,2.39,2.21,2.12,2.44,3.54,5.61,7.97,10.73,13.4,16.38,19.45,22.92,26.64,30.49,34.35,38.35,42.47,46.99,51.44,55.72,59.28,62.37,65.06,67.77,70.24,72.58,74.58,76.55,78.15,79.84,81.02,82.03,82.8,83.71,84.48,85.16,85.56,85.85,85.85;;259291_228325_recording_7-31_12-15-7_rec.m4a;length: 0:00:03.52;42.4728292,0.1616183,0,23.60000038147,0,1.5;"""com.google.android.youtube"",""com.google.android.youtube"",""com.whatsapp"",""com.whatsapp"",""com.miui.gallery"",""com.miui.gallery"",""com.miui.securitycenter"",""com.miui.securitycenter"",""com.discord"",""com.discord"",""com.android.vending"",""com.android.vending"",""com.reddit.frontpage"",""com.reddit.frontpage"",""com.google.android.gm"",""com.google.android.gm"",""com.google.android.permissioncontroller"",""com.google.android.permissioncontroller"",""com.google.android.dialer"",""com.google.android.dialer"",""com.android.camera"",""com.android.camera"",""com.android.chrome"",""com.android.chrome"",""com.google.android.gms"",""com.google.android.gms"",""com.android.settings"",""com.android.settings"",""com.amdroidalarmclock.amdroid"",""com.amdroidalarmclock.amdroid"",""io.m_Path.kuleuven"",""io.m_Path.kuleuven"",""com.android.deskclock"",""com.android.deskclock"",""com.miui.home"",""com.miui.home"",""com.ecosia.android"",""com.ecosia.android"",""com.miui.weather2"",""com.miui.weather2""";1722283509247,1722369909246,83,1722369909822,1722419291134,786,1722283509247,1722369909246,387,1722369909822,1722419291134,115,1722283509247,1722369909246,32,1722369909822,1722419291134,0,1722283509247,1722369909246,12,1722369909822,1722419328476,10,1722283509247,1722369909246,1,1722369909822,1722419291134,1,1722283509247,1722369909246,206,1722369909822,1722419291134,166,1722283509247,1722369909246,1365,1722369909822,1722419291134,701,1722283509247,1722369909246,229,1722369909822,1722419291134,73,1722283509247,1722369909246,29,1722369909822,1722419291134,20,1722283509247,1722369909246,617,1722369909822,1722419291134,458,1722283509247,1722369909246,14,1722369909822,1722419291134,0,1722283509247,1722419291134,0,1722283509247,1722369909246,114,1722369909822,1722419291134,0,1722283509247,1722369909246,25,1722369909822,1722419314241,16,1722283509247,1722369909246,4508,1722369909822,1722419291134,1774,1722283509247,1722369909246,1,1722369909822,1722419330666,14,1722283509247,1722369909246,24,1722369909822,1722419291134,205,1722283509247,1722369909246,0,1722369909822,1722419329972,245,1722283509247,1722369909246,29,1722369909822,1722419291134,6,345,1722369909822,1722419329988,236,1722283509247,1722369909246,688,1722369909822,1722419291134,0,1722283509247,1722369909246,0,1722369909822,1722419291134,0;67963;38.982666399406,42.007675978712;"""0C:0D:1D:8B:00:E0"",""44:70:2C:0B:AD:52"",""2B:07:A1:82:00:C0"",""CB:51:B7:BE:B0:3B"",""3B:AC:E3:6B:5A:70"",""11:98:37:9B:A1:46"",""7E:97:C8:71:B1:3B""";;9,8;9,8;472,235;;7,1,7,5;7,1,7,5;5,5,5,7;50,50,50,50;11,13,13,12;892,675,750,776;;27,35,36,44,45;38,35,60,49,73;18,522,429,278,333,100,000;1;;;;;;;;;50;"""""";"""""";72;"""g""" diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/inst/testdata/test_meta.csv b/mpathr.Rcheck/00_pkg_src/mpathr/inst/testdata/test_meta.csv new file mode 100644 index 0000000..1aaeb45 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/inst/testdata/test_meta.csv @@ -0,0 +1,92 @@ +columnName;fullQuestion;typeQuestion;typeAnswer;fullQuestion_mixed;typeQuestion_mixed;typeAnswer_mixed +open_open;Question;open;string;0;0;0 +open_number_open;"put decimal number";open;string;0;0;0 +open_number_digits_open;Question;open;string;0;0;0 +yesno_yesno;Question;yesno;int;0;0;0 +single_choice_multipleChoice_index;Question;multipleChoice;int;0;0;0 +single_choice_multipleChoice_string;Question;multipleChoice;string;0;0;0 +single_choice_multipleChoice_likert;Question;multipleChoice;int;0;0;0 +multiple_choice_multipleChoice_index;"Question choose 1 option";multipleChoice;intList;0;0;0 +multiple_choice_multipleChoice_string;"Question choose 1 option";multipleChoice;stringList;0;0;0 +multiple_choice_multipleChoice_likert;"Question choose 1 option";multipleChoice;intList;0;0;0 +multiplemulti_choice_multipleChoice_index;"Question choose 2 options";multipleChoice;intList;0;0;0 +multiplemulti_choice_multipleChoice_string;"Question choose 2 options";multipleChoice;stringList;0;0;0 +multiplemulti_choice_multipleChoice_likert;"Question choose 2 options";multipleChoice;intList;0;0;0 +multiplemulti_none_choice_multipleChoice_index;"Question choose no options";multipleChoice;intList;0;0;0 +multiplemulti_none_choice_multipleChoice_string;"Question choose no options";multipleChoice;stringList;0;0;0 +multiplemulti_none_choice_multipleChoice_likert;"Question choose no options";multipleChoice;intList;0;0;0 +single_other_multipleChoice_index;"choose other option";multipleChoice;int;0;0;0 +single_other_multipleChoice_string;"choose other option";multipleChoice;string;0;0;0 +single_other_multipleChoice_likert;"choose other option";multipleChoice;int;0;0;0 +order_order;Question;order;intList;0;0;0 +multismiley_multiSmiley;Question;multiSmiley;stringList;0;0;0 +bodypart_bodyParts;Question;bodyParts;stringList;0;0;0 +bodypartfronback_bodyParts;Question;bodyParts;stringList;0;0;0 +image_choice_single_imageChoice_index;"single choice";imageChoice;int;0;0;0 +image_choice_single_imageChoice_string;"single choice";imageChoice;string;0;0;0 +image_choice_single_imageChoice_likert;"single choice";imageChoice;int;0;0;0 +image_choice_multi_imageChoice_index;"multi choice";imageChoice;intList;0;0;0 +image_choice_multi_imageChoice_string;"multi choice";imageChoice;stringList;0;0;0 +image_choice_multi_imageChoice_likert;"multi choice";imageChoice;intList;0;0;0 +valence_smiley;Question;smiley;int;0;0;0 +surprise_smiley;Question;smiley;int;0;0;0 +happy_smiley;Question;smiley;int;0;0;0 +angry_smiley;Question;smiley;int;0;0;0 +sad_smiley;Question;smiley;int;0;0;0 +fear_smiley;Question;smiley;int;0;0;0 +stress_smiley;Question;smiley;int;0;0;0 +battery_smiley;Question;smiley;int;0;0;0 +sliderneutral_sliderNeutralPos;Question;sliderNeutralPos;int;0;0;0 +sliderneg_sliderNegPos;Question;sliderNegPos;int;0;0;0 +slidersmallrange_sliderNegPos;Question;sliderNegPos;int;0;0;0 +time_time;Question;time;int;0;0;0 +time_seconds_time;Question;time;int;0;0;0 +date_date;Question;date;intList;0;0;0 +image_basic;image;basic;basic;0;0;0 +audio_audio;Question;audio;int;0;0;0 +text_basic;text;basic;basic;0;0;0 +video_video;Question;video;intList;0;0;0 +button_button;;button;int;0;0;0 +vectorStringComputation_computation;;computation;stringList;0;0;0 +stringComputation_computation;;computation;string;0;0;0 +vectorComputation_computation;;computation;doubleList;0;0;0 +numberComputation_computation;;computation;double;0;0;0 +contLine_continuousLine;Question;continuousLine;doubleList;0;0;0 +picture_picture;Question;picture;file;0;0;0 +recording_recording_filename;Question;recording;file;0;0;0 +recording_recording_metadata;Question;recording;file;0;0;0 +location_location;;location;doubleList;0;0;0 +appusage_appUsage_apps;;appUsage;stringList;0;0;0 +appusage_appUsage_usage;;appUsage;intList;0;0;0 +stepcount_steps;;steps;int;0;0;0 +noise_noise;;noise;doubleList;0;0;0 +bluetooth_bluetooth;;bluetooth;stringList;0;0;0 +spatial_spatialWorkingMemory;;spatialWorkingMemory;containerAnswer;0;0;0 +spatial_spatialWorkingMemory-toGuess;;spatialWorkingMemory;intList;0;0;0 +spatial_spatialWorkingMemory-guessed;;spatialWorkingMemory;intList;0;0;0 +spatial_spatialWorkingMemory-responseTimes;;spatialWorkingMemory;intList;0;0;0 +mole_whackmole;;whackmole;containerAnswer;0;0;0 +mole_whackmole-peeped;;whackmole;intList;0;0;0 +mole_whackmole-bonked;;whackmole;intList;0;0;0 +mole_whackmole-preciseXY;;whackmole;intList;0;0;0 +mole_whackmole-scores;;whackmole;intList;0;0;0 +mole_whackmole-speedScores;;whackmole;intList;0;0;0 +mole_whackmole-responseTimes;;whackmole;intList;0;0;0 +set_spatialExploration;;spatialExploration;containerAnswer;0;0;0 +set_spatialExploration-clicked;;spatialExploration;intList;0;0;0 +set_spatialExploration-scores;;spatialExploration;intList;0;0;0 +set_spatialExploration-clickTimes;;spatialExploration;intList;0;0;0 +set_spatialExploration-highCorrelation;;spatialExploration;int;0;0;0 +sliderskip_sliderNegPos;skip;sliderNegPos;int;0;0;0 +openskip_open;skip;open;string;0;0;0 +mpcskip_multipleChoice_index;skip;multipleChoice;intList;0;0;0 +mpcskip_multipleChoice_string;skip;multipleChoice;stringList;0;0;0 +mpcskip_multipleChoice_likert;skip;multipleChoice;intList;0;0;0 +singlechoiceskip_multipleChoice_index;skip;multipleChoice;intList;0;0;0 +singlechoiceskip_multipleChoice_string;skip;multipleChoice;stringList;0;0;0 +singlechoiceskip_multipleChoice_likert;skip;multipleChoice;intList;0;0;0 +slidertimeout_sliderNegPos;"let time out";sliderNegPos;int;0;0;0 +opentimeout_open;"let time out";open;string;0;0;0 +mpctimeout_open;"let time out";open;string;0;0;0 +questionSameLabel_sliderNeutralPos;"question a with same label";sliderNeutralPos;int;0;0;0 +questionSameLabel_open;"question b with same label";open;string;0;0;0 diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/dot-mpath_locale.Rd b/mpathr.Rcheck/00_pkg_src/mpathr/man/dot-mpath_locale.Rd new file mode 100644 index 0000000..8681f5c --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/dot-mpath_locale.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/read_mpath.R +\docType{data} +\name{.mpath_locale} +\alias{.mpath_locale} +\title{Locale to be used for m-Path data} +\format{ +An object of class \code{locale} of length 7. +} +\usage{ +.mpath_locale +} +\value{ +Return a locale to be used in \code{\link[readr:read_delim]{readr::read_delim()}} or friends. +} +\description{ +Hard coded locale to be used for 'm-Path' data +} +\keyword{internal} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/example_data.Rd b/mpathr.Rcheck/00_pkg_src/mpathr/man/example_data.Rd new file mode 100644 index 0000000..a11bbf8 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/example_data.Rd @@ -0,0 +1,130 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/data.R +\docType{data} +\name{example_data} +\alias{example_data} +\title{Example m-path data} +\format{ +A data frame with 1980 rows and 47 columns: +\describe{ +\item{participant}{Participant identifier.} +\item{code}{Code the participants used to sign up for the study.} +\item{questionnaire}{The questionnaire that participants answered +in that beep (it can be the main or the evening questionnaire).} +\item{scheduled}{Time stamp for when the notification was scheduled for, +in unix time.} +\item{sent}{Time stamp for when the notification was sent, in unix time.} +\item{start}{Time stamp for when the notification was answered, +in unix time. +If the notification was never answered, this value is an NA.} +\item{stop}{Time stamp for when the notification was completed, +in unix time. +If the notification was never answered, this value is an NA.} +\item{phone_server_offset}{The difference between the phone time +and the server time.} +\item{obs_n}{Observation number for each participant. +Goes from 1 (first observation), to 110 (last observation of the study).} +\item{day_n}{Day number of the study, for the participant. +Goes from 1 to 10.} +\item{obs_n_day}{Observation number within the day (for each participant). +Goes from 1 to 11.} +\item{answered}{Logical, whether the beep was answered or not.} +\item{bpm_day}{Average heart rate per day. +Note that unlike the rest of the variables, +this corresponds to simulated data.} +\item{gender}{Participant's gender. +1 means 'Male', 2 means 'Female', 3 'Other'.} +\item{gender_string}{Participant's gender, as a string.} +\item{age}{Participant's age in years.} +\item{life_satisfaction}{Composite variable corresponding to participant's +life satisfaction according to the Satisfaction With Life Scale (SWLS).} +\item{neuroticism}{Composite variable corresponding to participant's +neuroticism according to the Big Five Inventory (BFI).} +\item{slider_happy}{Participants' self-reported happiness +at the time of the beep. +From 0 (not happy at all) to 100 (very happy).} +\item{slider_sad}{Participants' self-reported sadness +at the time of the beep. +From 0 (not sad at all) to 100 (very sad).} +\item{slider_angry}{Participants' self-reported anger +at the time of the beep. +From 0 (not angry at all) to 100 (very angry).} +\item{slider_relaxed}{Participants' self-reported relaxation +at the time of the beep. +From 0 (not relaxed at all) to 100 (very relaxed).} +\item{slider_anxious}{Participants' self-reported anxiety +at the time of the beep. +From 0 (not anxious at all) to 100 (very anxious).} +\item{slider_energetic}{Participants' self-reported energy +at the time of the beep. +From 0 (not energetic at all) to 100 (very energetic).} +\item{slider_tired}{Participants' self-reported tiredness +at the time of the beep. +From 0 (not tired at all) to 100 (very tired).} +\item{location_index}{Index corresponding to the participant's answer +to the question "Where are you now?", +from a list of multiple options.} +\item{location_string}{Text corresponding to the participant's selected +location at the time of the beep.} +\item{company_index}{Index corresponding to the participant's answer to the +question "With whom are you right now?", from a list of multiple options.} +\item{company_string}{Text corresponding to the participant's selected +company at the time of the beep.} +\item{activity_index}{Index corresponding to the participant's answer to +the question "What are you doing now?", from a list of multiple options.} +\item{activity_string}{Text corresponding to the participant's selected +activity at the time of the beep.} +\item{step_count}{Step count between the previous answered beep and the +current beep} +\item{evening_slider_happy}{Participants' happiness during the day, +from 0 (not happy at all) to 100 (very happy).} +\item{evening_slider_sad}{Participants' sadness during the day, +from 0 (not sad at all) to 100 (very sad).} +\item{evening_slider_angry}{Participants' anger during the day, +from 0 (not angry at all) to 100 (very angry).} +\item{evening_slider_relaxed}{Participants' relaxation during the day, +from 0 (not relaxed at all) to 100 (very relaxed).} +\item{evening_slider_anxious}{Participants' anxiety during the day, +from 0 (not anxious at all) to 100 (very anxious).} +\item{evening_slider_energetic}{Participants' energy during the day, +from 0 (not energetic at all) to 100 (very energetic).} +\item{evening_slider_tired}{Participants' tiredness during the day, +from 0 (not tired at all) to 100 (very tired).} +\item{evening_stressful}{Participant's answer to whether something +stressful had happened during the day. 1 means 'yes', 0 means 'no'.} +\item{evening_positive}{Participant's answer to whether something +positive had happened during the day. 1 means 'yes', 0 means 'no'.} +\item{positive_description}{Explanation of the positive event +(if participants responded 'yes' to the previous question).} +\item{stressful_description}{Explanation of the stressful event +(if participants responded 'yes' to the previous question).} +\item{evening_activity_index}{Index corresponding to the participant's +answer(s) to the question "What activities did you do today?", +from a list of multiple options.} +\item{evening_activity_string}{Text corresponding to the participant's +selected activities during the day.} +\item{delay_start_min}{Delay in minutes between the scheduled beep and the +time the participants started the beep.} +\item{delay_end_min}{Time in minutes the participants took to fill in +the beep (difference between the columns start and stop).} +} +} +\usage{ +example_data +} +\description{ +Contains the preprocessed example data for an m-path research study. + +In the study, 20 participants completed 11 beeps over the course of 10 days. +The study consisted of: +\itemize{ +\item An intake questionnaire, that participants answered at the study's start. +\item A main questionnaire (10 times per day), where participants answered +questions about their emotions and context at the time. +\item An evening questionnaire (once, at the end of the day), +about their emotions and activities throughout the day. +} + +Each row corresponds to one beep sent during the study. +} +\keyword{datasets} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/README-pressure-1.png b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/README-pressure-1.png new file mode 100644 index 0000000000000000000000000000000000000000..c092055f2d496ba61e9f3073c00bd2087bd1a77b GIT binary patch literal 3744 zcmds4cTiL57LOQdLJ$E#L6EY5NQqd0NC_$eYfz-C6cLHUm7<80gc714O@g|FA|@(} zC`fS;5DmQ-6G0FOgqnb1Nq|6rfaG1=owqx)Z|3dW_s5%gcg~&jednBe?sw1c{Jw8) zg8eCLN%39cAP`8>*5O_AS4X9@HFH%9}uyJo{3CzC)tm=#HaZ9JLhciPdH(6D0PI!MOnR~l;_c^~o z&cnD(?fPmYO=IBuZF7@y#|F70E{r$Y^0p;+jJh6J%uo;q>a^*{Bh9QRS}gB+Y2YCu zju-Xpk^DZaEcLg!)TKoo?;~TBgk7vf$sV~~>eMw9k&JO#0(o3` zYeQRucf9TU(a5<|_|vFFl}E0B6p1l}>VU@w*eQm+waFGpFF-4W9jG&E{`5)G(8cR% z6-i~`o=vH`P#M6l$R**Kp^&PPn`wt@3YND3&J}l!OeTRDAdljj#P)3sGiF*!tH|5p zPmu7<=S_3NRV-5o--8ov*M`TWa2-m*L;BrJ6>TE2UTAGIgG+LY2?fg4e|`aXgBraa5X-|TYxlAzyqtMZPcGOLQ~-#(Ui=T>ZV|@ zm9{cg+0)$oQ^ALDDtj0g1QA!Pq2QQSF;BUq8c$nkZOyr@3-*m|rrJA3xI1cK0Ubw@ zW(!U=PKKmSJmNhY@*^TXswW#0MSPzqW1&EooMBqVYq2~o(*x9;fiXa{2gY0y5QMk+ zrX-k_s(Rg~ew8z0^jl=1yL`@=#V1_FH8rX=gBHF;Pfj2kU2V0bpT@K^0vCia7{s}5jNv$ zVjEk*yGhIFRWpZtz!_CztFzvD^}r%fL=4k%8kOf2Ew6$EFmG{QBl4+jh6mkZ1kyLA z(j~APus+1O5YJ@IqVo38tOg`x7W3Xj2sLSR;*RdZ{x@>5x@2Eha-h!g=0HQGblI?% zMP3zhybT6yy-v1}A8>0Gp*u*p{7^}5;W1c>&Ac_ z!3HdTKVN1so**T3+jcO4-;fCR-u^|YtZlw>H{VnSd-0y1>)c}Y8p@g!`uzlVdnazp z`XoIXC4n8&N}|^VY-sSVo5tW1B=7iReh+a+6c0JxPROZ}X&r=m_RvsgTQ zv-zxMgIR1^#Wf+x<=SkCP=gcicUY@qrlv_}(uB-r+!-s8%|TCHU-*35RDC+xa4Jxm zPfoFz525D&^T^Y&VTf@yQ$Hf-PreAe>nrlLgctYVduacx#g2vxG zm61QxbQTX!cwD})Sxh90O z5y?8TRA!W7Km6c^ui`Y9$Zd*z`=`G6$>A`Q{3UMxI_6d25$|1^tp&X@N2u@m zTL#OC#9}npt;IjY@oNB>@;J*Ifd*RobZa|-T4qG>zG^`%Tvqhp-15)ZR_x+60iUJ~ zsJNu>AK0QO;lo($J~brz=-8o#e%@5D2i=++X6cXak@TTukKc4O5B6RAe52u3*z2O> zkcD}l1;WchA4Y)V*TE|3wYV$sVkOp$(xytI8R#Znp6=Cu+ z%2OeMyY@9&b+5qeIc8V-CSJ4c`n>GAc-*}>@t`&ri{5uet_#mHSv4qncKTded8v9%E|j(Cov1TcxH*L$7>L)l{9=}| zo8HJPx~#zU<*G}b3*EP}6&gwoH2T4-kR@<1=k^Pqi+mQTR1Lf{1nKM4n^SDmWtUn& zBNGIN&?{5b9+B79elF(x7`c0jiP_04k5;z@vkDM})lDI9!IrDm!9?CoE5evy<~@u% zZ?+DjR&aeYXkYy=N#_^qQ2FMA?31M8nR~}(DyHE{GF_8`$Rn}UIR*`be2&H)c%;W& z(&Wi(FCqUL58r+>bT&)tNIndj6xx=$%)AY6MmZ5Ly$-4)_sbj6n-%+EB4NjIm z7-qk>B=UUY7zdJ^hP-IJ`RC!lms4jem89;#8`P;Wq6bZdB)=VxfB$c5CUD(esJc1` Szq;|KX=`=rc+t@dvHt+rJImPs literal 0 HcmV?d00001 diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-archived.svg b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-archived.svg new file mode 100644 index 0000000..745ab0c --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-archived.svg @@ -0,0 +1,21 @@ + + lifecycle: archived + + + + + + + + + + + + + + + lifecycle + + archived + + diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-defunct.svg b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-defunct.svg new file mode 100644 index 0000000..d5c9559 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-defunct.svg @@ -0,0 +1,21 @@ + + lifecycle: defunct + + + + + + + + + + + + + + + lifecycle + + defunct + + diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-deprecated.svg b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-deprecated.svg new file mode 100644 index 0000000..b61c57c --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-deprecated.svg @@ -0,0 +1,21 @@ + + lifecycle: deprecated + + + + + + + + + + + + + + + lifecycle + + deprecated + + diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-experimental.svg b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-experimental.svg new file mode 100644 index 0000000..5d88fc2 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-experimental.svg @@ -0,0 +1,21 @@ + + lifecycle: experimental + + + + + + + + + + + + + + + lifecycle + + experimental + + diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-maturing.svg b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-maturing.svg new file mode 100644 index 0000000..897370e --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-maturing.svg @@ -0,0 +1,21 @@ + + lifecycle: maturing + + + + + + + + + + + + + + + lifecycle + + maturing + + diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-questioning.svg b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-questioning.svg new file mode 100644 index 0000000..7c1721d --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-questioning.svg @@ -0,0 +1,21 @@ + + lifecycle: questioning + + + + + + + + + + + + + + + lifecycle + + questioning + + diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-soft-deprecated.svg b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-soft-deprecated.svg new file mode 100644 index 0000000..9c166ff --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-soft-deprecated.svg @@ -0,0 +1,21 @@ + + lifecycle: soft-deprecated + + + + + + + + + + + + + + + lifecycle + + soft-deprecated + + diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-stable.svg b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-stable.svg new file mode 100644 index 0000000..9bf21e7 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-stable.svg @@ -0,0 +1,29 @@ + + lifecycle: stable + + + + + + + + + + + + + + + + lifecycle + + + + stable + + + diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-superseded.svg b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-superseded.svg new file mode 100644 index 0000000..db8d757 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/lifecycle-superseded.svg @@ -0,0 +1,21 @@ + + lifecycle: superseded + + + + + + + + + + + + + + + lifecycle + + superseded + + diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/logo.png b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..32d5656db1efd4d7c047ba05a024168614ba049d GIT binary patch literal 29864 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 literal 0 HcmV?d00001 diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/logo2.png b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/logo2.png new file mode 100644 index 0000000000000000000000000000000000000000..32d5656db1efd4d7c047ba05a024168614ba049d GIT binary patch literal 29864 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 literal 0 HcmV?d00001 diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/logo2.svg b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/logo2.svg new file mode 100644 index 0000000..9271273 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/figures/logo2.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/is_opened_in_excel.Rd b/mpathr.Rcheck/00_pkg_src/mpathr/man/is_opened_in_excel.Rd new file mode 100644 index 0000000..ccfdc8d --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/is_opened_in_excel.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/read_mpath.R +\name{is_opened_in_excel} +\alias{is_opened_in_excel} +\title{Check if an m-Path CSV file was opened in Excel} +\usage{ +is_opened_in_excel(line, call = rlang::caller_env()) +} +\arguments{ +\item{line}{The first line of the file to check if it was opened in Excel.} + +\item{call}{The environment from which the function was called to display in the error message.} +} +\value{ +Returns \code{TRUE} if the line is opened by Excel, otherwise an error informing the user of +this problem. +} +\description{ +This function checks if an m-Path data file has previously been opened in Excel, in which case +the whole file is wrapped in quotation marks. Actual quotation marks will then also be quoted, +which is why we can't simply remove the outer quotes. Also, this function takes a single string +as input (the first line of the file) instead of the file itself, because this would mean the +file would have to be read twice. One time for this function, and then another time to get the +column names. +} +\keyword{internal} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/mpath_example.Rd b/mpathr.Rcheck/00_pkg_src/mpathr/man/mpath_example.Rd new file mode 100644 index 0000000..8d8ce66 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/mpath_example.Rd @@ -0,0 +1,29 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/mpath_example.R +\name{mpath_example} +\alias{mpath_example} +\title{Get path to m-Path example data} +\usage{ +mpath_example(file = NULL) +} +\arguments{ +\item{file}{the name of the file to be accessed. If \code{NULL}, the function +will return a list of all the example files.} +} +\value{ +a character string with the path to the m-Path example data +} +\description{ +This function provides an easy way to access the m-Path example files. +} +\examples{ +# Example 1: access 'example_basic.csv' data + +mpath_example('example_basic.csv') # returns the full path to the file +'example_basic.csv' + +# Example 2: list all the example files + +mpath_example() # returns the example files as a vector + +} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/mpathr-package.Rd b/mpathr.Rcheck/00_pkg_src/mpathr/man/mpathr-package.Rd new file mode 100644 index 0000000..c925e13 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/mpathr-package.Rd @@ -0,0 +1,37 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/mpathr-package.R +\docType{package} +\name{mpathr-package} +\alias{mpathr} +\alias{mpathr-package} +\title{mpathr: Easily Handling Data from the ‘m-Path’ Platform} +\description{ +\if{html}{\figure{logo.png}{options: style='float: right' alt='logo' width='120'}} + +Provides tools for importing and cleaning Experience Sampling Method ('ESM') data collected via the 'm-Path' platform. The goal is to provide with a few utility functions to be able to read and perform some common operations in ESM data collected through the 'm-Path' platform (\url{https://m-path.io/landing/}). Functions include raw data handling, format standardization, and basic data checks, as well as to calculate the response rate in data from ESM studies. +} +\seealso{ +Useful links: +\itemize{ + \item \url{https://m-path.io} + \item \url{https://github.com/m-path-io/mpathr} + \item Report bugs at \url{https://github.com/m-path-io/mpathr/issues} +} + +} +\author{ +\strong{Maintainer}: Merijn Mestdagh \email{merijn.mestdagh@m-path.io} (\href{https://orcid.org/0000-0001-5077-861X}{ORCID}) + +Authors: +\itemize{ + \item Lara Navarrete \email{larann901@gmail.com} + \item Koen Niemeijer \email{koen.niemeijer@kuleuven.be} (\href{https://orcid.org/0000-0002-0816-534X}{ORCID}) +} + +Other contributors: +\itemize{ + \item m-Path Software [copyright holder] +} + +} +\keyword{internal} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/plot_response_rate.Rd b/mpathr.Rcheck/00_pkg_src/mpathr/man/plot_response_rate.Rd new file mode 100644 index 0000000..d70ca50 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/plot_response_rate.Rd @@ -0,0 +1,41 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plot_response_rate.R +\name{plot_response_rate} +\alias{plot_response_rate} +\title{Plots response rate per day (and per participant)} +\usage{ +plot_response_rate(data, valid_col, participant_col, time_col) +} +\arguments{ +\item{data}{data frame with data} + +\item{valid_col}{name of the column that stores whether the beep +was answered or not} + +\item{participant_col}{name of the column that stores the participant id +(or equivalent)} + +\item{time_col}{name of the column that stores the time of the beep} +} +\value{ +a ggplot object with the response rate per day (x axis) +and participant (color) +} +\description{ +This function returns a ggplot object with the response rate per day (x axis) and +participant (color). Note that instead of using calendar dates, the function returns a plot +grouped by the day inside the study for the participant. +} +\examples{ +# load data +data(example_data) + +# make plot with plot_response_rate +plot_response_rate(data = example_data, +time_col = sent, +participant_col = participant, +valid_col = answered) +# The resulting ggplot object can be formatted using ggplot2 functions (see ggplot2 +# documentation). + +} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/read_meta_data.Rd b/mpathr.Rcheck/00_pkg_src/mpathr/man/read_meta_data.Rd new file mode 100644 index 0000000..11fcc0e --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/read_meta_data.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/read_mpath.R +\name{read_meta_data} +\alias{read_meta_data} +\title{Read m-Path meta data} +\usage{ +read_meta_data(meta_data) +} +\arguments{ +\item{meta_data}{A string with the path to the meta data file} +} +\value{ +A \link[tibble]{tibble} with the contents of the meta data file. +} +\description{ +Internal function to read the meta data file for an m-Path file. +} +\keyword{internal} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/read_mpath.Rd b/mpathr.Rcheck/00_pkg_src/mpathr/man/read_mpath.Rd new file mode 100644 index 0000000..525f2f5 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/read_mpath.Rd @@ -0,0 +1,35 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/read_mpath.R +\name{read_mpath} +\alias{read_mpath} +\title{Read m-Path data} +\usage{ +read_mpath(file, meta_data) +} +\arguments{ +\item{file}{A string with the path to the m-Path file} + +\item{meta_data}{A string with the path to the meta data file} +} +\value{ +A \link[tibble]{tibble} with the 'm-Path' data. +} +\description{ +\ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#experimental}{\figure{lifecycle-experimental.svg}{options: alt='[Experimental]'}}}{\strong{[Experimental]}} +This function reads an 'm-Path' file into a dataframe. +} +\details{ +Note that this function has been tested with the meta data version v.1.1. +So it is advised to use that version of the meta data. +(In 'm-Path', change the version in 'Export data' > "export version"). +} +\examples{ + +# We can use the function mpath_examples to get the path to the example data +basic_path <- mpath_example(file ="example_basic.csv") +meta_path <- mpath_example("example_meta.csv") + +data <- read_mpath(file = basic_path, + meta_data = meta_path) + +} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/response_rate.Rd b/mpathr.Rcheck/00_pkg_src/mpathr/man/response_rate.Rd new file mode 100644 index 0000000..0af690f --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/response_rate.Rd @@ -0,0 +1,68 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/response_rate.R +\name{response_rate} +\alias{response_rate} +\title{Calculate response rate} +\usage{ +response_rate( + data, + valid_col, + participant_col, + time_col = NULL, + period_start = NULL, + period_end = NULL +) +} +\arguments{ +\item{data}{data frame with data} + +\item{valid_col}{name of the column that stores whether the beep +was answered or not} + +\item{participant_col}{name of the column that stores the participant id +(or equivalent)} + +\item{time_col}{optional: name of the column that stores the time of the +beep, as a 'POSIXct' object.} + +\item{period_start}{string representing the starting date to +calculate response rates (optional). Accepts dates in the following +formats: \code{yyyy-mm-dd} or\code{yyyy/mm/dd}.} + +\item{period_end}{period end to calculate response rates (optional).} +} +\value{ +a data frame with the response rate for each participant, and the number of beeps used to +calculate the response rate +} +\description{ +Calculate response rate +} +\examples{ +# Example 1: calculate response rates for the whole study +# Get example data +data(example_data) + +# Calculate response rate for each participant + +# We don't specify time_col, period_start or period_end. +# Response rates will be based on all the participant's data +response_rate <- response_rate(data = example_data, + valid_col = answered, + participant_col = participant) + +# Example 2: calculate response rates for a specific time period +data(example_data) + +# Calculate response rate for each participant between dates +response_rate <- response_rate(data = example_data, + valid_col = answered, + participant_col = participant, + time_col = sent, + period_start = '2024-05-15', + period_end = '2024-05-31') + +# Get participants with a response rate below 0.5 +response_rate[response_rate$response_rate < 0.5,] + +} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/man/write_mpath.Rd b/mpathr.Rcheck/00_pkg_src/mpathr/man/write_mpath.Rd new file mode 100644 index 0000000..78b19f5 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/man/write_mpath.Rd @@ -0,0 +1,30 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/write_mpath.R +\name{write_mpath} +\alias{write_mpath} +\title{Write m-Path data to a CSV file} +\usage{ +write_mpath(x, file) +} +\arguments{ +\item{x}{A data frame or tibble to write to disk.} + +\item{file}{File or connection to write to.} +} +\value{ +Returns \code{x} invisibly. +} +\description{ +Write m-Path data to a CSV file +} +\examples{ + +data <- read_mpath( + mpath_example("example_basic.csv"), + mpath_example("example_meta.csv") +) + +\dontrun{ + write_mpath(data, "data.csv") +} +} diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/tests/spelling.R b/mpathr.Rcheck/00_pkg_src/mpathr/tests/spelling.R new file mode 100644 index 0000000..6713838 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/tests/spelling.R @@ -0,0 +1,3 @@ +if(requireNamespace('spelling', quietly = TRUE)) + spelling::spell_check_test(vignettes = TRUE, error = FALSE, + skip_on_cran = TRUE) diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat.R b/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat.R new file mode 100644 index 0000000..8f45b11 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat.R @@ -0,0 +1,4 @@ +library(testthat) +library(mpathr) + +test_check("mpathr") diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-cast_vec.R b/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-cast_vec.R new file mode 100644 index 0000000..d38e5b5 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-cast_vec.R @@ -0,0 +1,84 @@ +test_that(".unlist_col unpacks data correctly", { + input <- c("1,2,3", "4,5", "6", "") + output <- .unlist_col(input) + + expect_equal(nrow(output), 7) + expect_equal(output$vec, c("1", "2", "3", "4", "5", "6", NA)) + expect_equal(output$.id, c(1, 1, 1, 2, 2, 3, 4)) +}) + +test_that(".relist_col repacks data correctly", { + input <- tibble(.id = c(1, 1, 1, 2, 2, 3), vec = as.character(1:6)) + output <- .relist_col(input) + + expect_type(output, "list") + expect_equal(length(output), 3) + expect_equal(output[[1]], c("1", "2", "3")) + expect_equal(output[[2]], c("4", "5")) + expect_equal(output[[3]], "6") +}) + +test_that(".to_int_list works correctly", { + input <- c("1,2,3", "4,5", "6") + output <- .to_int_list(input) + + # is everything an integer? + expect_type(output, "list") + expect_equal(length(output), 3) + expect_identical(output[[1]], c(1L, 2L, 3L)) + expect_identical(output[[2]], c(4L, 5L)) + expect_identical(output[[3]], 6L) +}) + +test_that(".to_int_list handles integer overflow correctly", { + input <- c("1,2,3", "4,5", "6", "2147483647,2147483648") + output <- .to_int_list(input) + + # Since there was an integer overflow, everything should now be a double + expect_type(output, "list") + expect_equal(length(output), 4) + expect_identical(output[[1]], c(1, 2, 3)) + expect_identical(output[[2]], c(4, 5)) + expect_identical(output[[3]], 6) + expect_identical(output[[4]], c(2147483647, 2147483648)) +}) + +test_that(".to_double_list works correctly", { + input <- c("1.1,2.2,3.3", "4.4,5.5", "6.6") + output <- .to_double_list(input) + + expect_equal(length(output), 3) + expect_equal(output[[1]], as.double(c(1.1, 2.2, 3.3))) + expect_equal(output[[2]], as.double(c(4.4, 5.5))) + expect_equal(output[[3]], 6.6) +}) + +test_that(".to_string_list works correctly", { + input <- c("a,b,c", "d,e", "f") + output <- .to_string_list(input) + + expect_equal(length(output), 3) + expect_equal(output[[1]], c("a", "b", "c")) + expect_equal(output[[2]], c("d", "e")) + expect_equal(output[[3]], "f") +}) + +test_that(".to_string works correctly", { + input <- c("{\"key\": \"value\"}", "{\"key2\": \"value2\"}", NA) + output <- .to_string(input) + + expect_equal(length(output), 3) + expect_equal(output[1], "{\"key\": \"value\"}") + expect_equal(output[2], "{\"key2\": \"value2\"}") + expect_equal(output[3], NA_character_) +}) + +test_that(".to_string_list with JSON-like input works correctly", { + input <- c("{\"key\": \"value\"}", "{\"key2\": \"value2\"}", NA) + output <- .to_string_list(input) + + expect_equal(length(output), 3) + expect_equal(output[[1]], "{\"key\": \"value\"}") + expect_equal(output[[2]], "{\"key2\": \"value2\"}") + expect_equal(output[[3]], NA_character_) +}) diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-is_opened_in_excel.R b/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-is_opened_in_excel.R new file mode 100644 index 0000000..641ff4f --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-is_opened_in_excel.R @@ -0,0 +1,22 @@ +col_names <- readr::read_lines( + system.file("testdata", "test_basic.csv", package = "mpathr"), + n_max = 1 +) + + +test_that('no error is given when col_names is correct', { + expect_error(is_opened_in_excel(col_names), NA) +}) + +# manually write bad input +col_names <- "'connectionId;legacyCode;code;alias;initials;accountCode; +scheduledBeepId;sentBeepId;reminderForOriginalSentBeepId;questionListName; +questionListLabel;fromProtocolName;timeStampScheduled;timeStampSent; +timeStampStart" + +test_that('Returns error when col_names is not correct', { + expect_error( + is_opened_in_excel(col_names), + 'The file was saved and changed by Excel.') +}) + diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-mpath_example.R b/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-mpath_example.R new file mode 100644 index 0000000..b7c33d1 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-mpath_example.R @@ -0,0 +1,26 @@ +# Case 1: function returns a specific file path +test_that("Function returns specific file path", { + + expect_equal(mpath_example('example_basic.csv'), + system.file('extdata/example_basic.csv', package = "mpathr")) + + expect_equal(mpath_example('example_meta.csv'), + system.file('extdata/example_meta.csv', package = "mpathr")) + +}) + +# Case 2: function returns all the example files +test_that("Function returns all the example files", { + + expect_equal(mpath_example(), + list.files(system.file('extdata', package = "mpathr"))) + +}) + +# Case 3: function returns a message if the file is not found +test_that("Function returns a message if the file is not found", { + expect_error( + mpath_example('file_not_there.csv'), + ) + +}) diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-plot_response_rate.R b/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-plot_response_rate.R new file mode 100644 index 0000000..68b0fb3 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-plot_response_rate.R @@ -0,0 +1,54 @@ +# n_participants <- 5 +# beeps_per_day <- 10 +# n_days <- 5 + +n_participants <- 10 +beeps_per_day <- 10 +n_days <- 4 + +valid <- unlist(lapply(1:n_participants, function(participant) { + rep(c(rep(TRUE, participant), + rep(FALSE, beeps_per_day - participant)), + n_days) + })) +# building the valid col so that each participant has a different response rate, +# participant 1 should have response rate 0.1, participant 2 = 0.2, etc. + +# similar df as in test-response_rate.R but now with multiple beeps per day. +data <- data.frame( + participant = rep(1:n_participants, each = n_days * beeps_per_day), + valid = valid, + dates = rep(seq(as.Date("2023-01-01"), + as.Date("2023-01-01") + (n_days-1), + by = "day"), + each = beeps_per_day, n_participants) +) + +# plot_response_rate depends on this function returning the correct df +test_that('response_rate_per_day works correctly', { + data_plot <- response_rate_per_day( + data = data, + valid_col = valid, + participant_col = participant, + time_col = dates + ) + + for(participant in 1:n_participants){ + expected_rate <- participant * 0.1 + + expect_equal(unique(data_plot + [data_plot$participant == participant, ]$response_rate), + expected_rate) + } +}) + +test_that('plot_response_rate returns a ggplot', { + + # we just expect an error + result <- plot_response_rate(data = data, + valid_col = valid, + participant_col = participant, + time_col = dates) + + expect_true(ggplot2::is.ggplot(result)) +}) diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-read_mpath.R b/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-read_mpath.R new file mode 100644 index 0000000..39a26f5 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-read_mpath.R @@ -0,0 +1,254 @@ +basic_path <- system.file("testdata", "test_basic.csv", package = "mpathr") +meta_path <- system.file("testdata", "test_meta.csv", package = "mpathr") + +data <- read_mpath( + file = basic_path, + meta_data = meta_path +) + +test_that("Data is imported with no warnings", { + expect_no_warning( + read_mpath( + file = basic_path, + meta_data = meta_path + ) + ) +}) + +# Check that the data is being read as a dataframe +test_that("Data is a dataframe", { + expect_true(is.data.frame(data)) +}) + +# Check that the correct number of rows and columns are read + +test_that("Data has correct dimensions", { + + col_names <- readr::read_lines(basic_path, n_max = 1, skip_empty_rows = TRUE) + + # The number of columns should be the number of ; in the header + 1 + n_cols <- 1 + lengths(regmatches(col_names, gregexpr(';', col_names))) + + n_rows <- length(count.fields(basic_path, sep = ";")) - 1 + + expect_equal(dim(data), c(n_rows, n_cols)) + +}) + +# Data types are correct + +# Check data types of first columns +# (columns that are not in the meta data) +test_that("First columns are read correctly", { + + # character columns + cols <- data[, c("legacyCode", "code", "alias", "initials", "accountCode", "questionListName")] + expect_true(all(vapply( + X = cols, + FUN = is.character, + FUN.VALUE = logical(1) + ))) + + # integer columns + cols <- data[, c( + "connectionId", + "scheduledBeepId", + "sentBeepId", + "reminderForOriginalSentBeepId", + "timeStampScheduled", + "timeStampSent", + "timeStampStart", + "timeStampStop", + "originalTimeStampSent", + "timeZoneOffset" + )] + + expect_true(all(vapply( + X = cols, + FUN = is.integer, + FUN.VALUE = logical(1) + ))) + + expect_true(is.numeric(data$deltaUTC)) + +}) + +# we will need the meta data to check the rest of the columns: +meta <- read_meta_data(meta_path) + +test_that("String columns are read correctly", { + + # What columns should be read as strings? + meta_string_cols <- meta[meta$typeAnswer == "string",]$columnName + + # Checks that all those columns are strings + expect_true(all(vapply( + X = data[, meta_string_cols], + FUN = is.character, + FUN.VALUE = logical(1) + ))) + +}) + +test_that("Integer columns are read correctly", { + meta_int_cols <- meta[meta$typeAnswer == "int",]$columnName + + expect_true(all(vapply( + X = data[, meta_int_cols], + FUN = is.integer, + FUN.VALUE = logical(1) + ))) + +}) + +test_that("Numeric columns aer read correcly", { + meta_numeric_cols <- meta[meta$typeAnswer == "double",]$columnName + + expect_true(all(vapply( + X = data[, meta_numeric_cols], + FUN = is.numeric, + FUN.VALUE = logical(1) + ))) +}) + +# List columns +# Get list columns from meta data +meta_list_cols <- meta[meta$typeAnswer %in% c("intList", "doubleList", "stringList"),]$columnName +test_that("List columns are being read as lists", { + expect_true(all(vapply( + X = data[, meta_list_cols], + FUN = is.list, + FUN.VALUE = logical(1) + ))) +}) + +# Check that each list is being read as its respective type + +test_that("List columns are being read as the correct type", { + for (col in meta_list_cols) { + col_type <- meta$typeAnswer[meta$columnName == col] + col <- data[[col]] + + # This should be a list either way + expect_type(col, "list") + col <- unlist(col, use.names = FALSE) + + switch( + col_type, + "intList" = expect_type(col, "integer"), + "doubleList" = expect_type(col, "double"), + "stringList" = expect_type(col, "character") + ) + } +}) + +# Test that problems are being printed when they occur: +# Make small dataset that will result in parsing problems +basic <- data.frame( + connectionId = 228325.76, # this should be an int + code = '', + alias = '"example_alias"', + questionListName = '"example_questions"', + timeStampSent = 1722427206, + consent_yesno = 1, + slider_happy = 99 +) + +# Create metadata for the dataset above +meta <- data.frame( + columnName = c('"consent_yesno"', '"slider_happy"'), + fullQuestion = c( + '"Do you consent to participate in this study?"', + '"How happy are you right now?"' + ), + typeQuestion = c('"yesno"', '"sliderNegPos"'), + typeAnswer = c('"int"', '"int"'), + fullQuestion_mixed = c(0, 0), + typeQuestion_mixed = c(0, 0), + typeAnswer_mixed = c(0, 0) +) + +basic_file <- tempfile(fileext = ".csv") +meta_file <- tempfile(fileext = ".csv") + +write.table(basic, basic_file, row.names = FALSE, sep = ";", quote = FALSE) +write.table(meta, meta_file, row.names = FALSE, sep = ";", quote = FALSE) + +test_that("Problem with integer is printed", { + expect_warning( + read_mpath(file = basic_file, meta_data = meta_file), + "In row 2 column 1, expected an integer but got 228325.76." + ) +}) + +# Clean-up +unlink(basic_file) +unlink(meta_file) + +# Problems in meta_data +meta <- data.frame( + columnName = c('"consent_yesno"', '"slider_happy"'), + fullQuestion = c( + '"Do you consent to participate in this study?"', + '"How happy are you right now?"' + ), + typeQuestion = c('"yesno"', '"sliderNegPos"'), + typeAnswer = c('"int"', '"int"'), + fullQuestion_mixed = c(0, 0), + typeQuestion_mixed = c(10, 0), + typeAnswer_mixed = c(0, 0) +) + +meta_file <- tempfile(fileext = ".csv") +write.table(meta, meta_file, row.names = FALSE, sep = ";", quote = FALSE) + +test_that("Problem with meta_data is printed", { + expect_warning( + read_meta_data(meta_file), + "In row 2 column 6, expected 1/0/T/F/TRUE/FALSE but got 10." + ) +}) + +# Clean-up +unlink(meta_file) + +basic <- data.frame( + connectionId = 228325, + code = '', + alias = '"example_alias"', + questionListName = '"example_questions"', + timeStampSent = 1722427206, + consent_yesno = 1, + slider_happy = 99 +) + +# create small meta_data to test warnings in changed meta data +test_that('specific warnings are printed for consent_yesno and slider_happy question changes', { + + meta$typeQuestion_mixed <- c(1, 1) + meta$fullQuestion_mixed <- c(1, 1) + + basic_file <- tempfile(fileext = ".csv") + meta_file <- tempfile(fileext = ".csv") + + write.table(basic, basic_file, row.names = FALSE, sep = ";", quote = FALSE) + write.table(meta, meta_file, row.names = FALSE, sep = ";", quote = FALSE) + + # Test for the basic structure of the warning message + expect_warning( + read_mpath( + file = basic_file, + meta_data = meta_file + ), + paste0( + "(.*consent_yesno.*)(.*Question text.*)", + "(.*consent_yesno.*)(.*Type of question.*)", + "(.*slider_happy.*)(.*Question text*)", + "(.*slider_happy.*)(.*Type of question.*)" + ) + ) + + # Clean-up + unlink(basic_file) + unlink(meta_file) + }) diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-response_rate.R b/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-response_rate.R new file mode 100644 index 0000000..e9cec41 --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/tests/testthat/test-response_rate.R @@ -0,0 +1,100 @@ +n_participants <- 8 +n_rows_per_participant <- 10 + +data <- data.frame( + participant = rep(1:n_participants, each = n_rows_per_participant), + valid = rep(c(TRUE, FALSE), (n_participants * n_rows_per_participant)/2), + dates = rep(seq(as.Date("2023-01-01"), + as.Date("2023-01-10"), + by = "day"), n_participants) +) + +test_that('no period end or start', { + + expect_message( + result <- response_rate( + data = data, + valid_col = valid, + participant_col = participant, + time_col = dates + ), + "Calculating response rates for the entire duration of the study." + ) + + # is it a df? + expect_true(is.data.frame(result)) + + # not necessarily always like this but should be in this case + expect_true(nrow(result) == n_participants) + + expect_true(all(result$response_rate == rep(0.5, n_participants))) +}) + +test_that('period_end and start but no time variable', { + + # we just expect an error + expect_error( + response_rate( + data = data, + valid_col = valid, + participant_col = participant, + period_start = '2023-01-01', + period_end = '2023-01-05' + ) + ) +}) + +test_that('only period_end given', { + + expect_message(result <- response_rate(data = data, + valid_col = valid, + participant_col = participant, + time_col = dates, + period_end = '2023-01-06') + , "Calculating response rates up to date: 2023-01-06") + + # is it a df? + expect_true(is.data.frame(result)) + + # 1 row per participant + expect_true(nrow(result) == n_participants) + + expect_true(all(result$response_rate == rep(0.5, n_participants))) +}) + +test_that('only period_start given', { + + expect_message(result <- response_rate(data = data, + valid_col = valid, + participant_col = participant, + time_col = dates, + period_start = '2023-01-05') + , "Calculating response rates starting from date: 2023-01-05") + + # is it a df? + expect_true(is.data.frame(result)) + + # 1 row per participant + expect_true(nrow(result) == n_participants) + + expect_true(all(result$response_rate == rep(0.5, n_participants))) +}) + +test_that('period_start and end given', { + + expect_message(result <- response_rate(data = data, + valid_col = valid, + participant_col = participant, + time_col = dates, + period_start = '2023-01-02', + period_end = '2023-01-07') + , "Calculating response rates between date: 2023-01-02 and 2023-01-07") + + # is it a df? + expect_true(is.data.frame(result)) + + # 1 row per participant + expect_true(nrow(result) == n_participants) + + expect_true(all(result$response_rate == rep(0.5, n_participants))) +}) diff --git a/mpathr.Rcheck/00_pkg_src/mpathr/vignettes/mpathr.Rmd b/mpathr.Rcheck/00_pkg_src/mpathr/vignettes/mpathr.Rmd new file mode 100644 index 0000000..bc8ffca --- /dev/null +++ b/mpathr.Rcheck/00_pkg_src/mpathr/vignettes/mpathr.Rmd @@ -0,0 +1,177 @@ +--- +title: "mpathr" +output: rmarkdown::html_vignette +vignette: > + %\VignetteIndexEntry{mpathr} + %\VignetteEngine{knitr::rmarkdown} + %\VignetteEncoding{UTF-8} +--- + + +```{r, include = FALSE} +knitr::opts_chunk$set( + collapse = TRUE, + comment = "#>" +) +``` + +```{r setup} +library(mpathr) +``` + +The main goal of `mpathr` is to provide functions to import data from the m-Path +platform, as well as provide functions for common manipulations for +ESM data. + +## Importing m-Path data + +To show how to import data using `mpathr`, we provide example data within +the package: + +```{r show m-Path example data} +mpath_example() +``` +As shown above, the package comes with an example of the `basic.csv` that can be +exported from the m-Path platform. \n + +To read this data into R, we can use the `read_mpath` function. We will also +need a path to the meta data. + +The main advantage of using `read_mpath`, as opposed to other functions like +`read.csv`, is that `read_mpath` uses the meta data to correctly interpret the +data types. Furthermore it will also automatically convert columns that store +multiple responses into lists. For a response with multiple options like 1,4,6, +`read_mpath` will store a list with each number, which facilitates further +preprocess these responses.\n + +We can obtain the paths to the example basic data and meta data +using the `mpath_example` function: + +```{r use read_mpath} +# find paths to example basic and meta data: +basic_path <- mpath_example(file = "example_basic.csv") +meta_path <- mpath_example("example_meta.csv") + +# read the data +data <- read_mpath( + file = basic_path, + meta_data = meta_path +) +``` + +### Note: saving m-Path data +As explained above, the resulting data frame will contain columns with lists, +which can be problematic when saving the data. To save the data, we suggest +using either `fwrite` from the `data.table` package, or the `save` function. + +If you want to save the data as a 'csv' to use it in another program, use `write_mpath()`. Once +written to csv, you can again use `read_mpath()` to read the data back into R. + +```{r write data as csv, eval = FALSE} +write_mpath( + x = data, + file = "data.csv" +) +``` + +Otherwise, if the data will be used exclusively in R, we suggest saving it as an R object: +```{r write data as an R object, eval = FALSE} +save( + data, + file = 'data.RData' +) +``` + +## Obtaining response rates + +### response_rate function + +Some common operations that are done on Experience Sampling Methodology (ESM) data have to do with +the participants' response rate. We provide a function `response_rate` that +calculates the response_rate per participant for the entire duration of the +study, or for a specific time frame.\n + +This function takes as argument a `valid_col`, that takes a logical column that +stores whether the beep was answered by the participant, or not, as well as a +`participant_col`, that identifies each separate participant. + +We will show how to use this function with the `example_data`, that contains data from the same +study as the `example_basic.csv` file, but after some cleaning.\n + +```{r calculate response rate} +example_data + +response_rates <- response_rate( + data = example_data, + valid_col = answered, + participant_col = participant +) +``` + +The function returns a data frame with:\n + +* The `participant` column, as specified in `participant_col` +* The `number_of_beeps` used to calculate the response rate. +* The `response_rate` column, which is the proportion of valid responses +(specified in `valid_col`) per participant. + +The output of this function can further be used to identify participants with +low response rates: + +```{r show low response rates} +response_rates[response_rates$response_rate < 0.5,] +``` + +We could also be interested in seeing the participants' response rate during +a specific period of time (for example, if we think a participant's compliance +significantly dropped a certain date). In this case, we should supply the +function with the (otherwise optional) argument `time_col`, that should contain +times stored as 'POSIXct' objects, and specify the date period that we are +interested in (in the format 'yyyy-mm-dd' or 'yyyy/mm/dd'): + +```{r calculate response rate after 15th of May 2024} +response_rates_after_15 <- response_rate( + data = example_data, + valid_col = answered, + participant_col = participant, + time_col = sent, + period_start = '2024-05-15' +) +``` + +This will return the participant's response rate after the 15th of May 2024. + +```{r show low response rates after 15th of May 2024} +response_rates_after_15 +``` + +### plot_response_rate function + +We also suggest a way to plot the participant response rates, to identify +patterns like response rates dropping over time. For this, we provide the `plot_response_rate` function. + +```{r plot response rate, fig.width=7, fig.height=5} +plot_response_rate( + data = example_data, + time_col = sent, + participant_col = participant, + valid_col = answered +) +``` +Note that the resulting plot can be further customized using the `ggplot2` +package. + +```{r customize plot response rate plot, fig.width=7, fig.height=5} +library(ggplot2) + +plot_response_rate( + data = example_data, + time_col = sent, + participant_col = participant, + valid_col = answered +) + + theme_minimal() + + ggtitle('Response rate over time') + + xlab('Day in study') +``` + diff --git a/mpathr.Rcheck/00check.log b/mpathr.Rcheck/00check.log new file mode 100644 index 0000000..8d2a7ce --- /dev/null +++ b/mpathr.Rcheck/00check.log @@ -0,0 +1,67 @@ +* using log directory 'C:/Users/laran/Documents/Vault/Work/JOBSTUDENT_R/mpathr/mpathr.Rcheck' +* using R version 4.3.2 (2023-10-31 ucrt) +* using platform: x86_64-w64-mingw32 (64-bit) +* R was compiled by + gcc.exe (GCC) 12.3.0 + GNU Fortran (GCC) 12.3.0 +* running under: Windows 11 x64 (build 22631) +* using session charset: UTF-8 +* checking for file 'mpathr/DESCRIPTION' ... OK +* this is package 'mpathr' version '1.0.0' +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... OK +* checking if this is a source package ... OK +* checking if there is a namespace ... OK +* checking for executable files ... OK +* checking for hidden files and directories ... OK +* checking for portable file names ... OK +* checking whether package 'mpathr' can be installed ... OK +* checking installed package size ... OK +* checking package directory ... OK +* checking 'build' directory ... OK +* checking DESCRIPTION meta-information ... OK +* checking top-level files ... OK +* checking for left-over files ... OK +* checking index information ... OK +* checking package subdirectories ... OK +* checking R files for non-ASCII characters ... OK +* checking R files for syntax errors ... OK +* checking whether the package can be loaded ... OK +* checking whether the package can be loaded with stated dependencies ... OK +* checking whether the package can be unloaded cleanly ... OK +* checking whether the namespace can be loaded with stated dependencies ... OK +* checking whether the namespace can be unloaded cleanly ... OK +* checking loading without being on the library search path ... OK +* checking dependencies in R code ... OK +* checking S3 generic/method consistency ... OK +* checking replacement functions ... OK +* checking foreign function calls ... OK +* checking R code for possible problems ... OK +* checking Rd files ... OK +* checking Rd metadata ... OK +* checking Rd cross-references ... OK +* checking for missing documentation entries ... OK +* checking for code/documentation mismatches ... OK +* checking Rd \usage sections ... OK +* checking Rd contents ... OK +* checking for unstated dependencies in examples ... OK +* checking contents of 'data' directory ... OK +* checking data for non-ASCII characters ... OK +* checking LazyData ... OK +* checking data for ASCII and uncompressed saves ... OK +* checking installed files from 'inst/doc' ... OK +* checking files in 'vignettes' ... OK +* checking examples ... OK +* checking for unstated dependencies in 'tests' ... OK +* checking tests ... OK + Running 'spelling.R' + Running 'testthat.R' +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes in 'inst/doc' ... OK +* checking running R code from vignettes ... OK + 'mpathr.Rmd' using 'UTF-8'... OK +* checking re-building of vignette outputs ... OK +* checking PDF version of manual ... OK +* DONE +Status: OK diff --git a/mpathr.Rcheck/00install.out b/mpathr.Rcheck/00install.out new file mode 100644 index 0000000..e65cdb5 --- /dev/null +++ b/mpathr.Rcheck/00install.out @@ -0,0 +1,16 @@ +* installing *source* package 'mpathr' ... +** using staged installation +** R +** data +*** moving datasets to lazyload DB +** inst +** byte-compile and prepare package for lazy loading +** help +*** installing help indices +*** copying figures +** building package indices +** installing vignettes +** testing if installed package can be loaded from temporary location +** testing if installed package can be loaded from final location +** testing if installed package keeps a record of temporary installation path +* DONE (mpathr) diff --git a/mpathr.Rcheck/Rdlatex.log b/mpathr.Rcheck/Rdlatex.log new file mode 100644 index 0000000..c285ffd --- /dev/null +++ b/mpathr.Rcheck/Rdlatex.log @@ -0,0 +1,6 @@ +Hmm ... looks like a package +Converting parsed Rd's to LaTeX . +Creating pdf output from LaTeX ... +Saving output to 'mpathr-manual.pdf' ... +Done +You may want to clean up by 'rm -Rf C:/Users/laran/AppData/Local/Temp/RtmpAztYRH/Rd2pdf2f7458766fa' diff --git a/mpathr.Rcheck/mpathr-Ex.R b/mpathr.Rcheck/mpathr-Ex.R new file mode 100644 index 0000000..2c5e419 --- /dev/null +++ b/mpathr.Rcheck/mpathr-Ex.R @@ -0,0 +1,158 @@ +pkgname <- "mpathr" +source(file.path(R.home("share"), "R", "examples-header.R")) +options(warn = 1) +options(pager = "console") +library('mpathr') + +base::assign(".oldSearch", base::search(), pos = 'CheckExEnv') +base::assign(".old_wd", base::getwd(), pos = 'CheckExEnv') +cleanEx() +nameEx("mpath_example") +### * mpath_example + +flush(stderr()); flush(stdout()) + +### Name: mpath_example +### Title: Get path to m-Path example data +### Aliases: mpath_example + +### ** Examples + +# Example 1: access 'example_basic.csv' data + +mpath_example('example_basic.csv') # returns the full path to the file +'example_basic.csv' + +# Example 2: list all the example files + +mpath_example() # returns the example files as a vector + + + + +cleanEx() +nameEx("plot_response_rate") +### * plot_response_rate + +flush(stderr()); flush(stdout()) + +### Name: plot_response_rate +### Title: Plots response rate per day (and per participant) +### Aliases: plot_response_rate + +### ** Examples + +# load data +data(example_data) + +# make plot with plot_response_rate +plot_response_rate(data = example_data, +time_col = sent, +participant_col = participant, +valid_col = answered) +# The resulting ggplot object can be formatted using ggplot2 functions (see ggplot2 +# documentation). + + + + +cleanEx() +nameEx("read_mpath") +### * read_mpath + +flush(stderr()); flush(stdout()) + +### Name: read_mpath +### Title: Read m-Path data +### Aliases: read_mpath + +### ** Examples + + +# We can use the function mpath_examples to get the path to the example data +basic_path <- mpath_example(file ="example_basic.csv") +meta_path <- mpath_example("example_meta.csv") + +data <- read_mpath(file = basic_path, + meta_data = meta_path) + + + + +cleanEx() +nameEx("response_rate") +### * response_rate + +flush(stderr()); flush(stdout()) + +### Name: response_rate +### Title: Calculate response rate +### Aliases: response_rate + +### ** Examples + +# Example 1: calculate response rates for the whole study +# Get example data +data(example_data) + +# Calculate response rate for each participant + +# We don't specify time_col, period_start or period_end. +# Response rates will be based on all the participant's data +response_rate <- response_rate(data = example_data, + valid_col = answered, + participant_col = participant) + +# Example 2: calculate response rates for a specific time period +data(example_data) + +# Calculate response rate for each participant between dates +response_rate <- response_rate(data = example_data, + valid_col = answered, + participant_col = participant, + time_col = sent, + period_start = '2024-05-15', + period_end = '2024-05-31') + +# Get participants with a response rate below 0.5 +response_rate[response_rate$response_rate < 0.5,] + + + + +cleanEx() +nameEx("write_mpath") +### * write_mpath + +flush(stderr()); flush(stdout()) + +### Name: write_mpath +### Title: Write m-Path data to a CSV file +### Aliases: write_mpath + +### ** Examples + + +data <- read_mpath( + mpath_example("example_basic.csv"), + mpath_example("example_meta.csv") +) + +## Not run: +##D write_mpath(data, "data.csv") +## End(Not run) + + + +### *