about summary refs log tree commit diff
path: root/sourcecodes/data
diff options
context:
space:
mode:
Diffstat (limited to 'sourcecodes/data')
-rw-r--r--sourcecodes/data/example1/old/Bqxrun_initialstructure.sh38
-rw-r--r--sourcecodes/data/example2/old/hQGrun_initialstructure.sh38
-rw-r--r--sourcecodes/data/example_chl/old/bWRrun_evidencemodified.sh38
-rw-r--r--sourcecodes/data/example_chl/old/bWRrun_initialstructure.sh38
-rw-r--r--sourcecodes/data/example_chr2_spleen/old/cuLrun_evidencemodified.sh38
-rw-r--r--sourcecodes/data/example_chr2_spleen/old/cuLrun_initialstructure.sh38
-rw-r--r--sourcecodes/data/example_sci/old/Llurun_evidencemodified.sh38
-rw-r--r--sourcecodes/data/example_sci/old/Llurun_initialstructure.sh38
-rw-r--r--sourcecodes/data/example_sci_bk/old/Llurun_evidencemodified.sh38
-rw-r--r--sourcecodes/data/example_sci_bk/old/Llurun_initialstructure.sh38
-rw-r--r--sourcecodes/data/example_time_series/old/TEbrun_evidencemodified.sh38
-rw-r--r--sourcecodes/data/example_time_series/old/TEbrun_initialstructure.sh38
-rw-r--r--sourcecodes/data/examplecar/old/OVIrun_evidencemodified.sh38
-rw-r--r--sourcecodes/data/examplecar/old/OVIrun_initialstructure.sh38
-rw-r--r--sourcecodes/data/examplecar15node/old/MtXrun_initialstructure.sh38
-rw-r--r--sourcecodes/data/examplezoo/old/fSfrun_initialstructure.sh38
-rw-r--r--sourcecodes/data/old/Backupfiles/evidencemodified (renamed from sourcecodes/data/evidencemodified)bin452271 -> 452271 bytes
-rw-r--r--sourcecodes/data/old/Backupfiles/initialstructure (renamed from sourcecodes/data/initialstructure)bin452404 -> 452404 bytes
-rw-r--r--sourcecodes/data/old/Backupfiles/newintervention (renamed from sourcecodes/data/newintervention)bin452401 -> 452401 bytes
-rw-r--r--sourcecodes/data/old/Backupfiles/temp_evidence_file (renamed from sourcecodes/data/temp_evidence_file)0
-rw-r--r--sourcecodes/data/old/Backupfiles/temp_intervention_file (renamed from sourcecodes/data/temp_intervention_file)0
-rw-r--r--sourcecodes/data/old/Backupfiles/temp_shell_file_initial_structure (renamed from sourcecodes/data/temp_shell_file_initial_structure)0
-rw-r--r--sourcecodes/data/old/evidencemodifiedbin0 -> 452271 bytes
-rw-r--r--sourcecodes/data/old/initialstructurebin0 -> 452404 bytes
-rw-r--r--sourcecodes/data/old/newinterventionbin0 -> 452401 bytes
-rw-r--r--sourcecodes/data/old/temp_evidence_file36
-rw-r--r--sourcecodes/data/old/temp_intervention_file36
-rw-r--r--sourcecodes/data/old/temp_shell_file_initial_structure36
-rw-r--r--sourcecodes/data/standardized_data.txt201
29 files changed, 716 insertions, 201 deletions
diff --git a/sourcecodes/data/example1/old/Bqxrun_initialstructure.sh b/sourcecodes/data/example1/old/Bqxrun_initialstructure.sh
new file mode 100644
index 00000000..a8a8ebe0
--- /dev/null
+++ b/sourcecodes/data/example1/old/Bqxrun_initialstructure.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/initialstructure Bqx
+fi
+exit
diff --git a/sourcecodes/data/example2/old/hQGrun_initialstructure.sh b/sourcecodes/data/example2/old/hQGrun_initialstructure.sh
new file mode 100644
index 00000000..7d4cbfea
--- /dev/null
+++ b/sourcecodes/data/example2/old/hQGrun_initialstructure.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/initialstructure hQG
+fi
+exit
diff --git a/sourcecodes/data/example_chl/old/bWRrun_evidencemodified.sh b/sourcecodes/data/example_chl/old/bWRrun_evidencemodified.sh
new file mode 100644
index 00000000..763a268b
--- /dev/null
+++ b/sourcecodes/data/example_chl/old/bWRrun_evidencemodified.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/evidencemodified bWR
+fi
+exit
diff --git a/sourcecodes/data/example_chl/old/bWRrun_initialstructure.sh b/sourcecodes/data/example_chl/old/bWRrun_initialstructure.sh
new file mode 100644
index 00000000..3725f758
--- /dev/null
+++ b/sourcecodes/data/example_chl/old/bWRrun_initialstructure.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/initialstructure bWR
+fi
+exit
diff --git a/sourcecodes/data/example_chr2_spleen/old/cuLrun_evidencemodified.sh b/sourcecodes/data/example_chr2_spleen/old/cuLrun_evidencemodified.sh
new file mode 100644
index 00000000..5a228612
--- /dev/null
+++ b/sourcecodes/data/example_chr2_spleen/old/cuLrun_evidencemodified.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/evidencemodified cuL
+fi
+exit
diff --git a/sourcecodes/data/example_chr2_spleen/old/cuLrun_initialstructure.sh b/sourcecodes/data/example_chr2_spleen/old/cuLrun_initialstructure.sh
new file mode 100644
index 00000000..1d0835a4
--- /dev/null
+++ b/sourcecodes/data/example_chr2_spleen/old/cuLrun_initialstructure.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/initialstructure cuL
+fi
+exit
diff --git a/sourcecodes/data/example_sci/old/Llurun_evidencemodified.sh b/sourcecodes/data/example_sci/old/Llurun_evidencemodified.sh
new file mode 100644
index 00000000..ee0dde13
--- /dev/null
+++ b/sourcecodes/data/example_sci/old/Llurun_evidencemodified.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/evidencemodified Llu
+fi
+exit
diff --git a/sourcecodes/data/example_sci/old/Llurun_initialstructure.sh b/sourcecodes/data/example_sci/old/Llurun_initialstructure.sh
new file mode 100644
index 00000000..adde14dd
--- /dev/null
+++ b/sourcecodes/data/example_sci/old/Llurun_initialstructure.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/initialstructure Llu
+fi
+exit
diff --git a/sourcecodes/data/example_sci_bk/old/Llurun_evidencemodified.sh b/sourcecodes/data/example_sci_bk/old/Llurun_evidencemodified.sh
new file mode 100644
index 00000000..ee0dde13
--- /dev/null
+++ b/sourcecodes/data/example_sci_bk/old/Llurun_evidencemodified.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/evidencemodified Llu
+fi
+exit
diff --git a/sourcecodes/data/example_sci_bk/old/Llurun_initialstructure.sh b/sourcecodes/data/example_sci_bk/old/Llurun_initialstructure.sh
new file mode 100644
index 00000000..adde14dd
--- /dev/null
+++ b/sourcecodes/data/example_sci_bk/old/Llurun_initialstructure.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/initialstructure Llu
+fi
+exit
diff --git a/sourcecodes/data/example_time_series/old/TEbrun_evidencemodified.sh b/sourcecodes/data/example_time_series/old/TEbrun_evidencemodified.sh
new file mode 100644
index 00000000..ff2eafcd
--- /dev/null
+++ b/sourcecodes/data/example_time_series/old/TEbrun_evidencemodified.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/evidencemodified TEb
+fi
+exit
diff --git a/sourcecodes/data/example_time_series/old/TEbrun_initialstructure.sh b/sourcecodes/data/example_time_series/old/TEbrun_initialstructure.sh
new file mode 100644
index 00000000..3417deda
--- /dev/null
+++ b/sourcecodes/data/example_time_series/old/TEbrun_initialstructure.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/initialstructure TEb
+fi
+exit
diff --git a/sourcecodes/data/examplecar/old/OVIrun_evidencemodified.sh b/sourcecodes/data/examplecar/old/OVIrun_evidencemodified.sh
new file mode 100644
index 00000000..dab5c39a
--- /dev/null
+++ b/sourcecodes/data/examplecar/old/OVIrun_evidencemodified.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/evidencemodified OVI
+fi
+exit
diff --git a/sourcecodes/data/examplecar/old/OVIrun_initialstructure.sh b/sourcecodes/data/examplecar/old/OVIrun_initialstructure.sh
new file mode 100644
index 00000000..d47ae324
--- /dev/null
+++ b/sourcecodes/data/examplecar/old/OVIrun_initialstructure.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/initialstructure OVI
+fi
+exit
diff --git a/sourcecodes/data/examplecar15node/old/MtXrun_initialstructure.sh b/sourcecodes/data/examplecar15node/old/MtXrun_initialstructure.sh
new file mode 100644
index 00000000..8012f054
--- /dev/null
+++ b/sourcecodes/data/examplecar15node/old/MtXrun_initialstructure.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/initialstructure MtX
+fi
+exit
diff --git a/sourcecodes/data/examplezoo/old/fSfrun_initialstructure.sh b/sourcecodes/data/examplezoo/old/fSfrun_initialstructure.sh
new file mode 100644
index 00000000..f20a9a29
--- /dev/null
+++ b/sourcecodes/data/examplezoo/old/fSfrun_initialstructure.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/initialstructure fSf
+fi
+exit
diff --git a/sourcecodes/data/evidencemodified b/sourcecodes/data/old/Backupfiles/evidencemodified
index 9b3f7563..9b3f7563 100644
--- a/sourcecodes/data/evidencemodified
+++ b/sourcecodes/data/old/Backupfiles/evidencemodified
Binary files differdiff --git a/sourcecodes/data/initialstructure b/sourcecodes/data/old/Backupfiles/initialstructure
index 9ecf1bc7..9ecf1bc7 100644
--- a/sourcecodes/data/initialstructure
+++ b/sourcecodes/data/old/Backupfiles/initialstructure
Binary files differdiff --git a/sourcecodes/data/newintervention b/sourcecodes/data/old/Backupfiles/newintervention
index d818a943..d818a943 100644
--- a/sourcecodes/data/newintervention
+++ b/sourcecodes/data/old/Backupfiles/newintervention
Binary files differdiff --git a/sourcecodes/data/temp_evidence_file b/sourcecodes/data/old/Backupfiles/temp_evidence_file
index b687ceaf..b687ceaf 100644
--- a/sourcecodes/data/temp_evidence_file
+++ b/sourcecodes/data/old/Backupfiles/temp_evidence_file
diff --git a/sourcecodes/data/temp_intervention_file b/sourcecodes/data/old/Backupfiles/temp_intervention_file
index cdf5ce0f..cdf5ce0f 100644
--- a/sourcecodes/data/temp_intervention_file
+++ b/sourcecodes/data/old/Backupfiles/temp_intervention_file
diff --git a/sourcecodes/data/temp_shell_file_initial_structure b/sourcecodes/data/old/Backupfiles/temp_shell_file_initial_structure
index 5d1c323d..5d1c323d 100644
--- a/sourcecodes/data/temp_shell_file_initial_structure
+++ b/sourcecodes/data/old/Backupfiles/temp_shell_file_initial_structure
diff --git a/sourcecodes/data/old/evidencemodified b/sourcecodes/data/old/evidencemodified
new file mode 100644
index 00000000..9b3f7563
--- /dev/null
+++ b/sourcecodes/data/old/evidencemodified
Binary files differdiff --git a/sourcecodes/data/old/initialstructure b/sourcecodes/data/old/initialstructure
new file mode 100644
index 00000000..9ecf1bc7
--- /dev/null
+++ b/sourcecodes/data/old/initialstructure
Binary files differdiff --git a/sourcecodes/data/old/newintervention b/sourcecodes/data/old/newintervention
new file mode 100644
index 00000000..d818a943
--- /dev/null
+++ b/sourcecodes/data/old/newintervention
Binary files differdiff --git a/sourcecodes/data/old/temp_evidence_file b/sourcecodes/data/old/temp_evidence_file
new file mode 100644
index 00000000..b687ceaf
--- /dev/null
+++ b/sourcecodes/data/old/temp_evidence_file
@@ -0,0 +1,36 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/evidencemodified 
\ No newline at end of file
diff --git a/sourcecodes/data/old/temp_intervention_file b/sourcecodes/data/old/temp_intervention_file
new file mode 100644
index 00000000..cdf5ce0f
--- /dev/null
+++ b/sourcecodes/data/old/temp_intervention_file
@@ -0,0 +1,36 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/newintervention 
\ No newline at end of file
diff --git a/sourcecodes/data/old/temp_shell_file_initial_structure b/sourcecodes/data/old/temp_shell_file_initial_structure
new file mode 100644
index 00000000..5d1c323d
--- /dev/null
+++ b/sourcecodes/data/old/temp_shell_file_initial_structure
@@ -0,0 +1,36 @@
+#!/bin/sh
+# script for execution of deployed applications
+#
+# Sets up the MCR environment for the current $ARCH and executes 
+# the specified command.
+#
+exe_name=$0
+exe_dir=`dirname "$0"`
+echo "------------------------------------------"
+if [ "x$1" = "x" ]; then
+  echo Usage:
+  echo    $0 \<deployedMCRroot\> args
+else
+  echo Setting up environment variables
+  MCRROOT="$1"
+  echo ---
+  LD_LIBRARY_PATH=.:${MCRROOT}/runtime/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/bin/glnxa64 ;
+  LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRROOT}/sys/os/glnxa64;
+	MCRJRE=${MCRROOT}/sys/java/jre/glnxa64/jre/lib/amd64 ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/native_threads ; 
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/server ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE}/client ;
+	LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MCRJRE} ;  
+  XAPPLRESDIR=${MCRROOT}/X11/app-defaults ;
+  export LD_LIBRARY_PATH;
+  export XAPPLRESDIR;
+  echo LD_LIBRARY_PATH is ${LD_LIBRARY_PATH};
+  shift 1
+  args=
+  while [ $# -gt 0 ]; do
+      token=`echo "$1" | sed 's/ /\\\\ /g'`   # Add blackslash before each blank
+      args="${args} ${token}" 
+      shift
+  done
+  "${exe_dir}"/initialstructure 
\ No newline at end of file
diff --git a/sourcecodes/data/standardized_data.txt b/sourcecodes/data/standardized_data.txt
deleted file mode 100644
index ac8c5aaf..00000000
--- a/sourcecodes/data/standardized_data.txt
+++ /dev/null
@@ -1,201 +0,0 @@
-Trait5	Geno2	Trait6	Trait3	Geno1	Trait2	Trait4	Trait1	
-1.8453	1	-0.70749	-1.3361	1	1.5443	-0.43784	0.72817
-0.9605	2	0.85158	1.5164	2	-1.1632	1.0263	-0.11444
--0.63336	2	0.53936	1.1602	2	-0.74229	1.4011	-1.5418
-1.3355	1	-1.7216	-0.76715	2	0.12195	-0.66179	0.098918
-0.36111	1	-0.74876	-0.98283	2	-2.0753	-1.2335	-0.99306
--1.177	2	0.51257	0.84261	2	0.065663	1.2658	-0.64706
-0.076305	2	1.5888	1.7606	2	-0.66331	1.4736	0.39036
--0.53841	1	0.11031	-1.5038	2	0.23456	-0.060179	0.14069
--0.59968	2	0.48834	1.0431	2	-0.59377	0.22579	-0.99995
-0.37839	2	1.293	0.49142	2	-1.2855	0.37537	0.50769
--0.98262	2	1.6051	0.57702	1	0.44497	0.92494	1.9399
--0.32154	2	1.0249	0.77512	2	-0.62075	0.32547	1.8131
-0.094471	2	1.0318	1.5671	1	-0.60413	0.75183	-1.4871
--0.2677	1	-1.3762	-0.039045	1	0.61004	-0.20296	-0.34358
-1.45	1	0.22686	-0.18131	2	-0.5462	-0.61255	-0.83466
--0.94296	1	-1.0223	-1.1896	2	-0.4021	-1.2644	-1.2829
--0.65504	1	-2.6825	-1.035	2	0.25776	-1.4615	0.8459
-1.3635	2	1.5647	0.59499	1	1.372	1.0621	0.74488
-0.60321	2	0.68692	1.4714	1	0.81867	1.711	0.90076
--0.5142	1	-1.0962	-1.5522	2	-0.04535	-1.2401	-0.62324
--1.2303	2	0.82027	1.0532	1	-0.12811	1.344	0.60502
-0.84008	1	-0.7159	-0.44987	2	-0.56344	-1.5572	1.0854
-0.47761	2	1.5622	1.2168	2	-0.30596	1.1251	-1.373
--1.3546	1	-0.7484	-0.096654	2	0.03293	0.23078	0.81596
--0.32954	1	-1.6183	-0.57119	2	-0.9399	-1.5734	-0.76397
-0.57841	2	0.24378	0.681	2	-0.7778	1.305	0.77764
-0.11524	1	-0.85367	0.35424	1	2.3096	0.75697	1.7574
-1.1463	1	0.0096586	-0.25741	2	-0.52081	-1.5513	0.645
--1.3926	1	-0.88863	-0.68795	1	0.0060478	-0.43763	0.97176
--0.34841	2	1.0004	0.23941	2	-0.83161	0.87503	-0.88976
-0.79176	2	0.59541	1.0092	2	-1.9591	0.77295	0.31236
--1.7691	1	0.055429	-1.1837	1	1.1172	-0.091192	1.3242
-0.23812	1	-0.13588	-0.98943	2	-0.041159	-0.43704	-0.39798
-1.4262	2	0.46298	1.327	2	0.15808	1.1741	-0.073986
-1.3584	2	1.5511	0.49802	2	-0.96618	-0.037384	0.26962
--0.45407	1	-0.11918	-0.20984	2	-0.84764	0.68704	0.15697
-1.3502	2	1.1228	1.7003	2	-0.34181	1.3601	0.19833
-0.51265	1	0.059243	-0.61724	2	-1.2675	-1.2719	-1.5491
-1.6144	1	-1.6767	-0.4403	1	-0.7614	0.046076	-0.67463
--0.99883	1	-0.76648	0.33667	1	0.97148	-1.1389	-0.1179
-0.24789	2	0.4729	1.0484	2	-0.62124	0.34555	-0.089509
-1.6957	1	0.014711	-1.3474	2	-0.026706	-1.4606	-1.4344
--0.54533	2	0.88108	1.3793	2	-0.29202	1.3706	-1.1715
--1.7381	2	0.16189	0.96739	2	-0.77438	0.96572	1.2346
--0.844	1	-1.0713	-0.50552	1	1.1809	-0.13536	3.0986
--1.8946	2	0.83747	0.55294	2	0.21042	0.78685	-0.41598
--1.2313	2	0.77672	1.7131	2	-0.38666	1.694	-0.79748
--0.7674	1	-1.151	-0.091205	2	0.9644	-0.57897	0.21363
-0.72057	1	-0.34897	-0.95934	2	-1.3832	-0.57841	-0.10753
-1.2095	1	0.5788	-0.77644	1	0.86817	-0.56945	0.13453
-0.09126	2	1.0274	0.59902	2	0.094442	0.30723	1.2562
--1.7398	2	0.67041	0.82202	2	-0.30164	0.94827	-0.94319
--0.66818	2	0.49087	1.2694	2	-0.18615	0.78217	-1.3246
--0.2258	1	-1.4193	-1.44	2	-1.5421	-1.6216	-0.34894
-1.4939	1	0.12307	-0.97417	1	-1.9058	-1.6405	-2.6656
-0.59683	1	-0.27561	-1.5921	2	-0.012339	-1.033	0.22491
-0.32502	2	1.8115	0.59888	2	-0.78178	0.37072	-1.5605
-0.33627	1	-0.54037	-0.092937	2	-0.23801	-0.28432	0.25603
--0.71947	1	-0.96292	-0.87226	1	1.0454	-1.1866	-1.1159
-0.7723	1	-0.74389	-0.31293	1	0.56738	-1.597	0.21894
-1.1117	2	0.22881	0.53378	2	0.28362	0.62928	-0.5678
--0.37072	2	1.1896	1.2033	1	1.7889	1.9867	-1.137
-1.9537	1	-1.2797	-1.1399	2	-0.45995	-1.6282	-0.33916
--1.1043	2	1.0871	2.3039	1	-0.27611	0.615	0.27212
--1.3202	2	0.86019	1.2914	1	0.27461	0.94779	-0.83604
--0.46478	2	1.29	0.43419	2	0.6874	1.6104	-0.36625
--1.1858	1	-1.2069	-0.56475	2	0.18024	-0.54017	0.23692
-0.32802	2	0.87458	1.8613	1	0.40544	1.1088	1.7578
-1.1735	1	-0.66747	-1.6202	2	0.53589	-0.9149	0.45194
--1.16	2	1.0838	0.61868	1	0.72867	1.3378	0.26446
-1.462	1	0.19509	-1.4192	2	0.56635	-0.85302	0.33349
-1.0695	2	0.21919	1.322	1	1.3441	1.1727	0.75993
--0.22703	2	1.1363	0.54703	2	-0.48891	1.2236	-0.91703
-1.3458	1	-0.6068	-1.7825	2	-0.68775	-0.89217	0.99687
--0.091249	2	0.68469	0.60839	2	-0.6527	0.58896	-0.24057
-0.67203	2	0.72395	1.1051	2	-1.4197	0.29802	0.18773
-0.34537	2	1.2845	1.4258	2	-0.6173	1.0233	-0.24272
--1.0761	1	-1.2815	-0.94371	2	-1.4633	-0.69107	-0.87208
--0.20711	2	1.0174	0.69566	2	-0.58432	0.15352	-0.49392
-0.59929	2	1.5069	1.8419	2	-1.4583	-0.031663	0.0051904
--0.11492	2	1.2367	1.2191	2	-0.51421	1.1523	1.8842
-1.2751	1	-0.52411	-0.64346	1	2.0614	-0.0023541	-0.78047
-0.90981	2	1.1284	1.2152	1	2.6756	1.2409	-0.0088196
--1.9542	1	-1.221	-1.4163	1	1.2826	-0.010965	1.0953
-1.7193	2	0.30492	1.2836	1	0.61499	0.56464	0.15416
--0.53199	2	0.23732	0.77552	2	-1.2032	-0.66655	0.098147
-0.036699	1	-1.0483	-1.779	2	0.3525	-0.60395	0.29999
--0.64389	2	-0.082056	0.48348	2	-0.86546	-0.4081	-0.099655
-0.7892	1	0.063117	-0.73251	2	-0.64062	-0.4066	0.12407
--0.92679	1	-1.4966	0.012855	2	0.79099	-0.55856	0.1923
-0.75147	2	0.0035339	0.026413	2	-0.50794	0.29651	-0.27805
-0.21172	1	-1.3492	-0.47335	2	0.23233	-0.70213	-1.863
--0.97409	1	-0.629	-0.4728	2	0.091744	-0.086481	-0.49562
--1.0464	1	-1.6692	-0.8497	1	1.5077	0.095689	1.3064
--0.078054	2	1.7703	0.87897	1	1.6091	1.3305	-0.65244
-1.6149	1	-0.75709	-0.63085	2	-0.77532	-2.2636	-0.59726
--1.1678	2	0.0899	0.58095	1	-0.22151	0.26068	0.51603
--0.098842	1	-0.30237	-0.04093	2	-1.2385	-0.37569	-1.8225
--0.55001	1	-1.0301	-1.7087	1	2.6454	-1.328	0.34932
-1.0482	1	-0.26461	-1.3201	1	1.68	-0.0041651	-0.12149
-0.5008	1	-0.85959	-0.66514	2	-1.6141	0.29161	-0.89114
-0.309	2	1.0744	1.269	2	-0.96467	1.5905	-1.4207
--0.03887	2	1.0667	1.0095	2	-0.089407	0.99929	1.1521
--0.50172	1	-0.99479	-0.54327	1	-0.16208	-1.0551	0.47458
--0.094959	2	2.17	1.7212	1	0.51568	0.53768	-1.2646
--0.5209	1	-1.431	-0.70798	2	-0.4217	0.23091	0.57754
-0.6976	1	-1.2512	-0.50443	2	0.40922	-1.2722	-0.2292
--0.15737	1	-1.3037	-1.2446	2	-0.25	-1.3128	-0.48314
-1.7004	1	-0.093222	0.18072	2	-0.77286	-1.1751	0.70345
--0.34711	1	-0.40996	-0.38877	2	-0.74126	-0.076517	0.71528
-0.63301	1	-1.3066	-1.061	2	-0.020245	-0.47474	0.22126
-0.45593	2	0.98475	1.1245	2	-1.5284	0.87162	-1.1122
--0.074398	1	0.086143	-0.71909	2	-0.72312	-0.58633	-0.1192
-0.5737	2	1.3999	0.41267	2	0.14453	0.30696	0.39156
-0.50652	1	-0.76797	-0.93352	2	-0.537	-0.41761	0.072314
--1.6019	1	0.65979	-0.97526	2	0.28122	-0.88937	0.46691
-0.74414	2	1.6353	1.382	2	0.099487	1.2686	1.3096
--1.3504	1	-1.1309	-0.53372	1	0.13853	-1.3604	1.3258
--0.32328	1	-1.4115	-0.55521	2	-0.39333	-0.7941	1.0533
--0.74323	2	1.7072	0.49329	2	-0.87786	0.48373	-1.3418
-0.8876	1	-1.0691	-0.47533	2	-0.65919	-1.2867	1.3564
--0.26121	2	1.3665	1.3315	1	0.59812	1.5342	-0.51234
--0.52176	2	1.5091	0.71759	2	-0.79433	0.67907	-0.77323
--0.51351	1	-0.99866	-0.96005	1	-0.064251	-0.82275	1.8511
--0.17328	1	0.54034	-1.7709	2	0.38529	-1.362	0.67177
-0.15516	2	1.1328	-0.19576	2	-1.135	1.0527	0.29149
-0.45546	2	0.45829	1.7196	1	0.62149	2.3385	-2.0505
-2.0143	2	1.7214	1.3935	2	-1.973	1.0241	-0.84131
-0.017525	1	-1.3151	-0.89644	2	-0.75598	-1.0529	0.10476
--0.041089	1	-0.071698	-0.33496	2	-0.25915	-0.26742	0.55857
--0.072325	2	0.14302	1.099	2	0.45095	0.51954	-1.5626
-0.9507	1	-0.99789	-1.1502	2	-0.63471	0.61259	0.50045
--1.8153	1	-0.51697	-0.18793	2	-0.58518	-0.41489	-0.79317
--0.37059	1	-0.18087	-0.77008	1	0.14794	-0.66655	0.62321
--0.24334	1	0.033188	-0.22919	2	-1.8202	-0.18936	-0.69098
--0.83923	1	-0.41353	-1.3264	1	1.8901	-1.3452	0.28542
--1.5292	1	-0.28479	-0.49856	2	0.34714	-1.4144	-0.50498
--1.1641	2	0.77391	1.0241	2	-0.77302	0.27655	-2.6887
-2.6624	2	1.7387	1.374	2	0.041422	2.3695	-0.062437
-2.3682	2	1.907	0.94637	1	0.8413	0.76571	-1.6402
-0.31396	1	-1.292	-0.78457	1	-0.31227	-0.84139	-0.22931
--0.87392	1	0.53494	0.55115	2	-0.15179	-0.83441	1.0812
--1.1022	1	-0.57856	-0.21265	1	1.4486	0.11044	-0.38779
-0.42993	1	-1.5502	-0.063309	1	2.2649	-0.59644	2.3369
--1.5011	1	-2.2926	-0.96909	2	-0.40571	-1.1012	0.55992
--1.567	2	0.014611	-0.069863	1	1.3161	0.89287	0.96849
-0.26418	2	0.46242	1.94	2	-1.3016	1.1926	-1.5231
--0.77783	2	1.4946	0.92514	2	-1.1651	1.0425	-1.2692
--0.17339	1	-0.86526	-0.090231	2	-0.09102	-1.3706	0.0046364
-0.11883	2	0.8622	0.94077	2	-0.76414	1.3308	1.4151
-0.12005	1	-0.20542	-0.74536	2	-1.2579	-1.2279	-1.2716
--0.79628	1	-0.022269	-0.16145	2	-0.47715	-0.37329	1.1973
-0.58969	2	1.0063	1.3356	1	0.79987	1.5464	0.32778
-0.11633	2	0.73396	1.1437	1	1.3183	1.0156	-1.9521
--0.88008	1	0.39215	-0.88212	1	0.77879	-0.071244	0.92159
--0.74781	1	-0.31657	-1.2371	2	-1.356	-0.76328	-0.96718
--0.069788	1	0.63495	-0.70214	2	-0.76454	-2.2215	1.7057
-0.3897	1	-0.59859	-0.81633	2	-0.04446	0.84047	-0.75128
-2.202	2	0.77915	0.03712	1	1.8438	1.1743	0.40311
-0.22687	1	-0.40806	-1.0788	2	-0.19213	-0.78118	0.48283
--0.66335	2	1.4808	1.1399	2	-0.033787	0.43484	-0.12131
-0.13303	1	-0.66658	-0.14357	2	-1.073	-0.49395	0.70644
--1.5417	2	0.2473	1.2125	1	1.9083	1.2778	3.085
-0.74601	2	-0.35212	0.88616	2	-0.87675	0.60499	-0.21171
--0.80655	1	-1.1068	-1.3459	2	-0.26122	0.15508	-0.0070062
--0.69135	2	1.0994	1.204	1	2.3161	1.0629	1.4257
-1.6905	1	-0.14242	-0.55749	1	0.359	0.41916	0.53199
--0.77018	1	-1.5065	-0.53604	2	0.19357	0.059861	1.9155
--2.2055	2	1.058	-0.29035	1	1.0301	0.11952	1.1589
--0.70569	1	-0.73004	-1.6228	1	2.1348	-0.42942	0.9784
-1.3633	2	0.65794	0.98061	1	1.3078	0.64345	0.83163
-0.093858	1	-1.6142	-0.92049	2	-0.92394	-1.3444	-0.43257
-1.6603	1	0.037058	0.81538	2	-0.70654	-0.93759	-0.023971
-0.29687	2	0.84923	0.6669	1	0.66467	0.47209	-0.21304
-0.30837	1	-0.8147	-1.3296	2	-1.1736	-1.2252	-0.61307
--1.7779	1	-1.1384	-1.0425	2	-0.69411	-0.39049	-0.48426
--0.35135	1	-0.52672	-1.388	1	0.84612	-1.4625	0.071531
-0.18294	1	-0.96354	-0.6923	2	-0.91232	-0.9204	0.029913
--0.34302	2	1.8167	0.77427	1	0.036232	0.81699	1.0643
--1.0367	1	-0.55158	-0.84582	1	0.67713	-0.66779	-0.43147
-2.6147	1	0.14282	-0.33616	2	-0.83219	-0.17633	-0.13154
--0.59086	1	-1.2139	-0.99552	1	1.9391	-1.1308	0.34104
--0.90208	1	-0.28263	-0.58061	1	0.7467	-0.84617	-0.13434
-1.2668	1	-0.56449	-0.1964	2	0.79248	0.19601	0.41757
-0.75643	2	-0.011136	0.81301	2	0.34117	0.68247	-1.8639
--0.62022	2	0.86997	0.6729	2	-1.1203	0.17657	-1.4252
--0.18946	1	-0.55133	-0.86512	2	-0.83578	-0.40257	-0.03024
--1.5498	2	0.32287	1.184	2	-0.62378	0.80455	0.92802
--0.53493	1	-0.9391	-0.84301	1	1.3501	-0.31379	-0.058359
-0.3655	1	-0.74384	-1.3595	2	1.3067	-0.5247	-1.7346
-0.82879	1	-1.5915	-1.0102	1	1.0708	-0.6468	0.92563
-0.57673	1	-1.4808	-1.0779	2	0.47651	-1.062	0.26109
-0.59244	1	-0.8026	-1.7146	2	-0.020034	-1.3898	-1.5713
-0.44996	2	0.50751	1.0983	1	2.2137	2.8355	0.34885
--0.75132	1	-0.52338	-0.74591	2	-0.84637	-1.6929	-1.6592
--0.1943	2	1.2265	0.4739	2	-0.78558	0.81272	-0.023571
-2.0866	1	-0.19274	0.066839	2	-0.30442	-0.70635	0.8594
--1.3268	1	-1.2952	0.023312	1	1.4432	0.036383	0.89534
--1.4174	1	-0.43139	-0.97617	1	1.9378	0.79311	-0.17685
--0.30469	1	0.072833	-0.069195	1	1.2683	-0.62404	0.25508