diff --git a/actions/stimulus-response/attributes.yaml b/actions/stimulus-response/attributes.yaml new file mode 100644 index 000000000..331d5436c --- /dev/null +++ b/actions/stimulus-response/attributes.yaml @@ -0,0 +1,7 @@ +registered: '2019-10-03T08:37:34' +data: + figures: figures + statistics: statistics + notebook: 10-calculate-stimulus-response.ipynb + html: 10-calculate-stimulus-response.html + results: results.csv diff --git a/actions/stimulus-response/data/10-calculate-stimulus-response.html b/actions/stimulus-response/data/10-calculate-stimulus-response.html new file mode 100644 index 000000000..c49ba8843 --- /dev/null +++ b/actions/stimulus-response/data/10-calculate-stimulus-response.html @@ -0,0 +1,13456 @@ + + + + +10-calculate-stimulus-response + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+
In [1]:
+
+
+
%load_ext autoreload
+%autoreload 2
+
+ +
+
+
+ +
+
+
+
In [2]:
+
+
+
import matplotlib.pyplot as plt
+%matplotlib inline
+import spatial_maps as sp
+import septum_mec.analysis.data_processing as dp
+import septum_mec.analysis.registration
+import expipe
+import os
+import pathlib
+import numpy as np
+import exdir
+import pandas as pd
+import optogenetics as og
+import quantities as pq
+import shutil
+from distutils.dir_util import copy_tree
+
+from septum_mec.analysis.stimulus_response import stimulus_response_latency, compute_response
+
+from tqdm import tqdm_notebook as tqdm
+from tqdm._tqdm_notebook import tqdm_notebook
+tqdm_notebook.pandas()
+
+ +
+
+
+ +
+
+ + +
+ +
+ + +
+
08:31:41 [I] klustakwik KlustaKwik2 version 0.2.6
+
+
+
+ +
+
+ +
+
+
+
In [3]:
+
+
+
std_gaussian_kde = 0.04
+window_size = 0.03
+
+ +
+
+
+ +
+
+
+
In [4]:
+
+
+
data_loader = dp.Data()
+actions = data_loader.actions
+project = data_loader.project
+
+ +
+
+
+ +
+
+
+
In [5]:
+
+
+
output = pathlib.Path('output/stimulus-response')
+(output / 'figures').mkdir(parents=True, exist_ok=True)
+
+ +
+
+
+ +
+
+
+
In [6]:
+
+
+
identify_neurons = actions['identify-neurons']
+units = pd.read_csv(identify_neurons.data_path('units'))
+
+ +
+
+
+ +
+
+
+
In [7]:
+
+
+
def process(row):
+    
+    action_id = row['action']
+    channel_id = int(row['channel_group'])
+    unit_id = int(row['unit_name'])    
+    
+    spike_times = data_loader.spike_train(action_id, channel_id, unit_id)
+    
+    spike_times = np.array(spike_times)
+    
+    stim_times = data_loader.stim_times(action_id)
+    
+    nan_series = pd.Series({
+            't_e_peak': np.nan,
+            'p_e_peak': np.nan,
+            't_i_peak': np.nan,
+            'p_i_peak': np.nan
+        })
+    
+    if stim_times is None:
+        return nan_series
+    
+    stim_times = np.array(stim_times)
+    
+    times, spikes, kernel, p_e, p_i = stimulus_response_latency(
+        spike_times, stim_times, window_size, std_gaussian_kde)
+    
+    # if no spikes detected after stimulus nan is returned
+    if all(np.isnan([p_e, p_i])):
+        return nan_series
+        
+    t_e_peak, p_e_peak, t_i_peak, p_i_peak = compute_response(
+        spike_times, stim_times, times, kernel, p_e, p_i)
+
+    return pd.Series({
+        't_e_peak': t_e_peak,
+        'p_e_peak': p_e_peak,
+        't_i_peak': t_i_peak,
+        'p_i_peak': p_i_peak
+    })
+
+ +
+
+
+ +
+
+
+
In [ ]:
+
+
+
results = units.merge(
+    units.progress_apply(process, axis=1), 
+    left_index=True, right_index=True)
+
+ +
+
+
+ +
+
+ + +
+ +
+ + + + + + + +
+
+ + +
+ +
+ +
+ +
+ + +
+
/home/mikkel/apps/expipe-project/septum-mec/septum_mec/analysis/stimulus_response.py:33: RuntimeWarning: invalid value encountered in less
+  if any(times[idxs_i] < te_peak):
+
+
+
+ +
+
+ +
+
+
+
In [ ]:
+
+
+
results.loc[:, ['t_e_peak', 't_i_peak', 'p_e_peak', 'p_i_peak']].hist()
+plt.gcf().savefig(output / 'figures' / 'summary_histogram.png')
+
+ +
+
+
+ +
+
+
+
+

Save to expipe

+
+
+
+
+
+
In [ ]:
+
+
+
action = project.require_action("stimulus-response")
+
+ +
+
+
+ +
+
+
+
In [ ]:
+
+
+
action.modules['parameters'] = {
+    'window_size': window_size,
+    'std_gaussian_kde': std_gaussian_kde
+}
+
+ +
+
+
+ +
+
+
+
In [ ]:
+
+
+
action.data['results'] = 'results.csv'
+results.to_csv(action.data_path('results'), index=False)
+
+ +
+
+
+ +
+
+
+
In [ ]:
+
+
+
stuff = {
+    "figures": "figures",
+#     "statistics": "statistics"
+}
+
+for key, value in stuff.items():
+    action.data[key] = value
+    data_path = action.data_path(key)
+    data_path.parent.mkdir(exist_ok=True, parents=True)
+    source = output / value
+    if source.is_file():
+        shutil.copy(source, data_path)
+    else:
+        copy_tree(str(source), str(data_path))
+
+ +
+
+
+ +
+
+
+
In [ ]:
+
+
+
septum_mec.analysis.registration.store_notebook(action, "10-calculate-stimulus-response.ipynb")
+
+ +
+
+
+ +
+
+
+ + + + + + diff --git a/actions/stimulus-response/data/10-calculate-stimulus-response.ipynb b/actions/stimulus-response/data/10-calculate-stimulus-response.ipynb new file mode 100644 index 000000000..db9fae70a --- /dev/null +++ b/actions/stimulus-response/data/10-calculate-stimulus-response.ipynb @@ -0,0 +1,280 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "%load_ext autoreload\n", + "%autoreload 2" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "08:31:41 [I] klustakwik KlustaKwik2 version 0.2.6\n" + ] + } + ], + "source": [ + "import matplotlib.pyplot as plt\n", + "%matplotlib inline\n", + "import spatial_maps as sp\n", + "import septum_mec.analysis.data_processing as dp\n", + "import septum_mec.analysis.registration\n", + "import expipe\n", + "import os\n", + "import pathlib\n", + "import numpy as np\n", + "import exdir\n", + "import pandas as pd\n", + "import optogenetics as og\n", + "import quantities as pq\n", + "import shutil\n", + "from distutils.dir_util import copy_tree\n", + "\n", + "from septum_mec.analysis.stimulus_response import stimulus_response_latency, compute_response\n", + "\n", + "from tqdm import tqdm_notebook as tqdm\n", + "from tqdm._tqdm_notebook import tqdm_notebook\n", + "tqdm_notebook.pandas()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "std_gaussian_kde = 0.04\n", + "window_size = 0.03" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "data_loader = dp.Data()\n", + "actions = data_loader.actions\n", + "project = data_loader.project" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "output = pathlib.Path('output/stimulus-response')\n", + "(output / 'figures').mkdir(parents=True, exist_ok=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "identify_neurons = actions['identify-neurons']\n", + "units = pd.read_csv(identify_neurons.data_path('units'))" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "scrolled": false + }, + "outputs": [], + "source": [ + "def process(row):\n", + " \n", + " action_id = row['action']\n", + " channel_id = int(row['channel_group'])\n", + " unit_id = int(row['unit_name']) \n", + " \n", + " spike_times = data_loader.spike_train(action_id, channel_id, unit_id)\n", + " \n", + " spike_times = np.array(spike_times)\n", + " \n", + " stim_times = data_loader.stim_times(action_id)\n", + " \n", + " nan_series = pd.Series({\n", + " 't_e_peak': np.nan,\n", + " 'p_e_peak': np.nan,\n", + " 't_i_peak': np.nan,\n", + " 'p_i_peak': np.nan\n", + " })\n", + " \n", + " if stim_times is None:\n", + " return nan_series\n", + " \n", + " stim_times = np.array(stim_times)\n", + " \n", + " times, spikes, kernel, p_e, p_i = stimulus_response_latency(\n", + " spike_times, stim_times, window_size, std_gaussian_kde)\n", + " \n", + " # if no spikes detected after stimulus nan is returned\n", + " if all(np.isnan([p_e, p_i])):\n", + " return nan_series\n", + " \n", + " t_e_peak, p_e_peak, t_i_peak, p_i_peak = compute_response(\n", + " spike_times, stim_times, times, kernel, p_e, p_i)\n", + "\n", + " return pd.Series({\n", + " 't_e_peak': t_e_peak,\n", + " 'p_e_peak': p_e_peak,\n", + " 't_i_peak': t_i_peak,\n", + " 'p_i_peak': p_i_peak\n", + " })\n", + "\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "d3f0400c75c745c789907bd763bf2833", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "HBox(children=(IntProgress(value=0, max=1281), HTML(value='')))" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/mikkel/apps/expipe-project/septum-mec/septum_mec/analysis/stimulus_response.py:33: RuntimeWarning: invalid value encountered in less\n", + " if any(times[idxs_i] < te_peak):\n" + ] + } + ], + "source": [ + "results = units.merge(\n", + " units.progress_apply(process, axis=1), \n", + " left_index=True, right_index=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": false + }, + "outputs": [], + "source": [ + "results.loc[:, ['t_e_peak', 't_i_peak', 'p_e_peak', 'p_i_peak']].hist()\n", + "plt.gcf().savefig(output / 'figures' / 'summary_histogram.png')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Save to expipe" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "action = project.require_action(\"stimulus-response\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "action.modules['parameters'] = {\n", + " 'window_size': window_size,\n", + " 'std_gaussian_kde': std_gaussian_kde\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "action.data['results'] = 'results.csv'\n", + "results.to_csv(action.data_path('results'), index=False)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "stuff = {\n", + " \"figures\": \"figures\",\n", + "# \"statistics\": \"statistics\"\n", + "}\n", + "\n", + "for key, value in stuff.items():\n", + " action.data[key] = value\n", + " data_path = action.data_path(key)\n", + " data_path.parent.mkdir(exist_ok=True, parents=True)\n", + " source = output / value\n", + " if source.is_file():\n", + " shutil.copy(source, data_path)\n", + " else:\n", + " copy_tree(str(source), str(data_path))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "septum_mec.analysis.registration.store_notebook(action, \"10-calculate-stimulus-response.ipynb\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/actions/stimulus-response/data/figures/summary_histogram.png b/actions/stimulus-response/data/figures/summary_histogram.png new file mode 100644 index 000000000..9c15bbf8b Binary files /dev/null and b/actions/stimulus-response/data/figures/summary_histogram.png differ diff --git a/actions/stimulus-response/data/results.csv b/actions/stimulus-response/data/results.csv new file mode 100644 index 000000000..596f98383 --- /dev/null +++ b/actions/stimulus-response/data/results.csv @@ -0,0 +1,1282 @@ +action,channel_group,unit_name,t_e_peak,p_e_peak,t_i_peak,p_i_peak +1834-150319-3,0,71,,,, +1834-150319-3,0,75,,,, +1834-120319-4,0,85,0.0125,0.11269387306126939,0.0043,0.01044989550104499 +1834-120319-1,0,1,,,, +1834-120319-2,0,39,0.0094,0.25393730313484325,, +1834-220319-2,0,1,0.0092,0.20128993550322483,, +1834-220319-3,0,1,,,, +1834-220319-4,0,0,0.013000000000000001,0.08689913100868991,0.004,0.00885491145088549 +1834-150319-4,0,0,0.0122,0.06869431305686943,0.0041,0.0047299527004729955 +1834-120319-3,0,36,,,, +1834-150319-1,0,3,,,, +1834-110319-5,0,98,0.006,0.20383980800959953,, +1834-110319-1,0,65,,,, +1834-110319-3,0,101,,,, +1834-150319-2,0,2,0.009300000000000001,0.21793910304484776,, +1834-110319-1,0,0,,,, +1834-010319-1,0,2,,,, +1834-010319-1,0,39,,,, +1834-060319-3,0,4,,,, +1834-010319-3,0,1,0.0081,0.2848357582120894,, +1834-010319-3,0,12,0.0095,0.3083845807709614,, +1834-010319-3,0,72,0.0073,0.006749662516874156,, +1834-060319-4,0,3,0.0106,0.11450885491145088,0.0023,0.008579914200857991 +1834-060319-1,0,7,,,, +1834-220319-1,0,81,,,, +1834-220319-1,0,87,,,, +1834-060319-1,0,70,,,, +1834-060319-1,0,71,,,, +1834-060319-1,0,72,,,, +1834-060319-1,0,73,,,, +1834-060319-1,0,74,,,, +1834-060319-1,0,79,,,, +1834-110319-2,0,108,0.0089,0.2312884355782211,, +1834-110319-2,0,11,0.0094,0.2584370781460927,, +1834-010319-4,0,7,,,, +1834-120319-3,1,38,,,, +1834-120319-2,1,41,0.010400000000000001,0.016199190040497975,, +1834-150319-1,1,4,,,, +1834-150319-1,1,46,,,, +1834-150319-1,1,50,,,, +1834-150319-1,1,7,,,, +1834-010319-1,1,48,,,, +1834-010319-3,1,18,0.010100000000000001,0.04169791510424479,, +1834-060319-2,1,104,0.0079,0.018749062546872655,, +1834-120319-1,1,3,,,, +1834-010319-4,1,10,,,, +1834-120319-4,2,75,0.0132,0.10895391046089539,0.004200000000000001,0.01028489715102849 +1834-220319-2,2,49,0.009000000000000001,0.2366881655917204,, +1834-220319-1,2,83,,,, +1834-220319-3,2,46,,,, +1834-220319-2,2,7,0.009000000000000001,0.057147142642867854,, +1834-220319-1,2,73,,,, +1834-220319-3,2,29,,,, +1834-120319-2,2,43,0.0092,0.024898755062246886,, +1834-120319-2,2,51,0.0105,0.008849557522123894,, +1834-220319-4,2,60,0.0125,0.02056979430205698,0.0034000000000000002,0.0026399736002639972 +1834-110319-3,2,47,,,, +1834-110319-5,2,18,0.0076,0.1487925603719814,, +1834-060319-2,2,113,0.0091,0.13214339283035847,, +1834-220319-1,2,79,,,, +1834-120319-3,2,70,,,, +1834-150319-2,3,46,0.0091,0.14969251537423128,, +1834-150319-3,3,61,,,, +1834-150319-3,3,8,,,, +1834-120319-4,3,59,0.013300000000000001,0.15135848641513586,0.0044,0.01831481685183148 +1834-220319-4,3,10,0.0131,0.07798922010779892,0.004,0.006324936750632493 +1834-220319-1,3,11,,,, +1834-220319-2,3,8,0.009000000000000001,0.2033898305084746,, +1834-120319-2,3,15,0.009300000000000001,0.3449827508624569,, +1834-120319-2,3,6,0.009300000000000001,0.11384430778461077,, +1834-150319-4,3,5,0.0135,0.06880431195688043,0.0043,0.00885491145088549 +1834-150319-4,3,6,0.013300000000000001,0.05659443405565944,0.0048000000000000004,0.003739962600373996 +1834-150319-1,3,13,,,, +1834-150319-1,3,14,,,, +1834-150319-1,3,2,,,, +1834-150319-1,3,6,,,, +1834-060319-3,3,13,,,, +1834-060319-1,3,95,,,, +1834-110319-3,3,41,,,, +1834-060319-2,3,24,0.0098,0.29878506074696265,, +1834-150319-2,3,13,0.0094,0.2033898305084746,, +1834-010319-5,3,11,0.0134,0.056264437355626445,0.0045000000000000005,0.005389946100538994 +1834-010319-5,3,28,0.0129,0.07342426575734243,0.0045000000000000005,0.0057199428005719945 +1834-010319-3,3,76,0.0097,0.013499325033748313,, +1834-010319-1,3,52,,,, +1834-010319-1,3,7,,,, +1834-010319-1,3,8,,,, +1834-010319-3,3,87,0.009600000000000001,0.3193340332983351,, +1834-060319-4,3,10,0.0221,0.003904960950390496,0.0091,0.0019249807501924981 +1834-060319-4,3,8,0.0119,0.07936420635793642,0.0041,0.0057749422505774944 +1834-060319-2,3,25,0.0095,0.05009749512524374,, +1834-120319-1,3,8,,,, +1834-120319-3,3,62,,,, +1834-220319-3,3,10,,,, +1834-060319-1,3,33,,,, +1834-060319-1,3,85,,,, +1834-110319-2,3,16,0.0092,0.21958902054897256,, +1834-010319-4,3,21,,,, +1834-010319-4,3,22,,,, +1834-110319-5,3,24,0.0079,0.18509074546272686,, +1834-220319-2,4,34,0.0083,0.03479826008699565,, +1834-220319-2,4,47,0.0092,0.1973901304934753,, +1834-220319-4,4,36,0.0148,0.009184908150918492,, +1834-220319-4,4,51,0.0103,0.03959960400395996,, +1834-220319-4,4,63,0.013300000000000001,0.02276977230227698,, +1834-220319-4,4,65,0.010700000000000001,0.12407875921240788,, +1834-150319-1,4,0,,,, +1834-150319-1,4,23,,,, +1834-150319-1,4,40,,,, +1834-150319-1,4,5,,,, +1834-150319-1,4,52,,,, +1834-150319-2,4,54,0.0097,0.062096895155242235,0.0045000000000000005,0.01064946752662367 +1834-110319-1,4,11,,,, +1834-010319-1,4,13,,,, +1834-010319-1,4,62,,,, +1834-060319-3,4,19,,,, +1834-010319-3,4,34,0.0088,0.03584820758962052,, +1834-010319-3,4,36,0.008,0.025798710064496775,, +1834-010319-3,4,66,0.0088,0.0695965201739913,, +1834-010319-3,4,90,0.0085,0.13079346032698366,, +1834-060319-4,4,13,0.009600000000000001,0.12281377186228137,0.005200000000000001,0.01803981960180398 +1834-060319-2,4,115,0.009000000000000001,0.10109494525273736,0.0045000000000000005,0.012299385030748462 +1834-220319-1,4,65,,,, +1834-120319-3,4,40,,,, +1834-120319-3,4,95,,,, +1834-220319-3,4,15,,,, +1834-110319-2,4,19,0.0099,0.3881805909704515,0.0053,0.018599070046497676 +1834-010319-4,4,29,,,, +1834-010319-4,4,35,,,, +1834-010319-4,4,53,,,, +1834-110319-5,4,76,0.0114,0.0013499325033748313,0.0031000000000000003,0.0 +1834-150319-4,5,13,0.013300000000000001,0.006544934550654494,, +1834-150319-3,5,47,,,, +1834-150319-3,5,67,,,, +1834-120319-3,5,23,,,, +1834-120319-4,5,69,0.0137,0.07567924320756793,, +1834-120319-1,5,11,,,, +1834-120319-4,5,73,0.0137,0.03811461885381146,, +1834-120319-4,5,83,0.010400000000000001,0.024309756902430976,, +1834-120319-2,5,21,0.0102,0.18044097795110245,, +1834-150319-4,5,11,0.013600000000000001,0.05697943020569794,, +1834-150319-4,5,12,0.011000000000000001,0.08563414365856341,, +1834-150319-4,5,15,0.0114,0.002309976900230998,, +1834-150319-4,5,16,0.012100000000000001,0.08288417115828842,, +1834-150319-4,5,36,0.0118,0.003959960400395996,, +1834-150319-1,5,24,,,, +1834-150319-1,5,25,,,, +1834-150319-1,5,28,,,, +1834-150319-1,5,51,,,, +1834-150319-1,5,58,,,, +1834-150319-1,5,60,,,, +1834-150319-2,5,48,0.0081,0.12149392530373482,, +1834-010319-5,5,14,0.0103,0.22318776812231877,, +1834-010319-5,5,15,0.0094,0.13518864811351886,, +1834-110319-1,5,14,,,, +1834-110319-1,5,16,,,, +1834-110319-1,5,28,,,, +1834-110319-2,5,28,0.0079,0.056847157642117896,, +1834-010319-1,5,16,,,, +1834-010319-1,5,18,,,, +1834-060319-3,5,24,,,, +1834-060319-3,5,25,,,, +1834-060319-3,5,26,,,, +1834-010319-3,5,41,0.010100000000000001,0.27748612569371534,, +1834-010319-3,5,42,0.0073,0.16679166041697915,, +1834-060319-4,5,15,,,, +1834-060319-4,5,16,0.0089,0.033274667253327464,, +1834-060319-4,5,17,0.009000000000000001,0.1075239247607524,, +1834-060319-2,5,34,0.0103,0.39493025348732563,, +1834-060319-2,5,35,0.008,0.1342432878356082,, +1834-220319-1,5,77,,,, +1834-120319-3,5,68,,,, +1834-060319-1,5,87,,,, +1834-110319-2,5,29,0.0082,0.1544922753862307,, +1834-110319-2,5,31,0.006900000000000001,0.13634318284085795,, +1834-010319-4,5,36,,,, +1834-010319-4,5,37,,,, +1834-110319-5,5,27,0.014700000000000001,0.053697315134243286,, +1834-150319-3,6,23,,,, +1834-150319-3,6,59,,,, +1834-150319-3,6,63,,,, +1834-150319-3,6,65,,,, +1834-120319-4,6,55,0.0143,0.17643823561764382,0.005200000000000001,0.00978990210097899 +1834-120319-2,6,55,0.0115,0.35983200839958,0.0048000000000000004,0.037798110094495276 +1834-120319-1,6,33,,,, +1834-120319-3,6,56,,,, +1834-150319-4,6,21,0.0123,0.11791882081179188,0.0054,0.009129908700912992 +1834-120319-1,6,31,,,, +1834-120319-2,6,23,0.0085,0.22423878806059697,0.0034000000000000002,0.02414879256037198 +1834-120319-3,6,66,,,, +1834-120319-4,6,71,0.0085,0.11065889341106588,, +1834-220319-2,6,17,0.0083,0.03389830508474576,, +1834-220319-2,6,18,0.009000000000000001,0.2968351582420879,0.0037,0.019949002549872506 +1834-220319-2,6,19,0.007500000000000001,0.04754762261886906,, +1834-220319-2,6,43,0.008,0.04169791510424479,, +1834-220319-2,6,45,0.0076,0.07754612269386531,, +1834-150319-2,6,27,0.0082,0.18614069296535174,, +1834-150319-4,6,20,0.0083,0.15757342426575735,, +1834-150319-4,6,22,0.008700000000000001,0.10147398526014739,, +1834-220319-3,6,30,,,, +1834-220319-4,6,29,0.0094,0.03580464195358046,, +1834-220319-3,6,37,,,, +1834-220319-4,6,30,0.009000000000000001,0.10933890661093389,, +1834-220319-4,6,39,0.0089,0.04883951160488395,, +1834-220319-3,6,22,,,, +1834-150319-1,6,29,,,, +1834-150319-1,6,31,,,, +1834-150319-1,6,32,,,, +1834-150319-1,6,33,,,, +1834-150319-1,6,34,,,, +1834-110319-3,6,70,,,, +1834-110319-3,6,83,,,, +1834-150319-2,6,26,0.009300000000000001,0.20458977051147442,0.0051,0.018599070046497676 +1834-150319-2,6,28,0.0088,0.16004199790010498,0.0033,0.02294885255737213 +1834-010319-5,6,20,0.008700000000000001,0.15823341766582333,, +1834-010319-5,6,33,0.009300000000000001,0.005444945550544494,, +1834-010319-5,6,35,0.009300000000000001,0.21994280057199428,, +1834-010319-4,6,44,,,, +1834-110319-1,6,20,,,, +1834-110319-1,6,44,,,, +1834-010319-1,6,21,,,, +1834-010319-1,6,22,,,, +1834-060319-3,6,28,,,, +1834-060319-3,6,30,,,, +1834-060319-3,6,32,,,, +1834-060319-3,6,43,,,, +1834-010319-3,6,53,0.008700000000000001,0.3755812209389531,0.0034000000000000002,0.018599070046497676 +1834-010319-3,6,55,0.0082,0.29068546572671367,, +1834-010319-3,6,91,0.0077,0.01544922753862307,, +1834-060319-4,6,19,0.0085,0.0902540974590254,, +1834-060319-4,6,21,0.0092,0.11357386426135739,0.0044,0.01033989660103399 +1834-060319-4,6,22,0.0092,0.16032339676603233,0.0046,0.024914750852491476 +1834-060319-2,6,122,0.0085,0.11144442777861106,, +1834-060319-2,6,39,0.008400000000000001,0.2920353982300885,0.004200000000000001,0.04739763011849408 +1834-060319-2,6,40,0.008400000000000001,0.15539223038848057,0.0039000000000000003,0.014849257537123144 +1834-060319-2,6,45,0.008400000000000001,0.06749662516874157,0.0034000000000000002,0.011699415029248537 +1834-220319-1,6,24,,,, +1834-220319-1,6,26,,,, +1834-220319-1,6,41,,,, +1834-220319-1,6,69,,,, +1834-220319-1,6,75,,,, +1834-060319-1,6,55,,,, +1834-060319-1,6,58,,,, +1834-110319-2,6,34,0.008,0.17369131543422828,0.0025,0.026698665066746664 +1834-110319-2,6,38,0.0083,0.18824058797060148,0.0034000000000000002,0.027298635068246587 +1834-110319-2,6,39,0.0091,0.19754012299385032,0.0044,0.008849557522123894 +1834-110319-2,6,77,0.0086,0.002999850007499625,0.0031000000000000003,0.0 +1834-110319-2,6,87,0.008700000000000001,0.01079946002699865,, +1834-010319-4,6,46,,,, +1834-110319-5,6,30,0.008400000000000001,0.0010499475026248687,, +1834-110319-5,6,31,0.0119,0.09344532773361332,, +1834-150319-3,7,27,,,, +1834-150319-3,7,28,,,, +1834-150319-3,7,30,,,, +1834-150319-3,7,44,,,, +1834-150319-3,7,45,,,, +1834-150319-3,7,49,,,, +1834-150319-3,7,53,,,, +1834-150319-3,7,55,,,, +1834-150319-3,7,57,,,, +1834-120319-4,7,22,0.0095,0.14673853261467384,, +1834-120319-2,7,26,0.007200000000000001,0.175791210439478,, +1834-120319-1,7,16,,,, +1834-120319-3,7,28,,,, +1834-120319-4,7,52,0.0119,0.000989990100098999,, +1834-220319-4,7,31,0.0115,0.2009129908700913,, +1834-220319-2,7,20,0.0095,0.20593970301484926,, +1834-220319-2,7,21,0.0103,0.2702864856757162,, +1834-220319-2,7,29,0.0082,0.04994750262486876,, +1834-220319-4,7,45,0.01,0.012979870201297986,, +1834-220319-3,7,28,,,, +1834-220319-2,7,39,0.0088,0.0712464376781161,, +1834-220319-2,7,41,0.0076,0.12134393280335984,, +1834-120319-2,7,61,0.013000000000000001,0.0025498725063746812,0.0021000000000000003,0.00014999250037498125 +1834-120319-2,7,78,0.0091,0.19334033298335082,, +1834-150319-4,7,23,0.01,0.05725442745572544,, +1834-150319-4,7,24,0.009300000000000001,0.10686393136068639,, +1834-150319-4,7,25,0.009300000000000001,0.13194368056319436,, +1834-150319-4,7,26,0.0099,0.10895391046089539,, +1834-150319-4,7,33,0.01,0.01105488945110549,, +1834-220319-4,7,32,0.0115,0.1059839401605984,, +1834-220319-4,7,33,0.010100000000000001,0.0017599824001759982,, +1834-220319-4,7,46,0.014100000000000001,0.0022549774502254975,, +1834-150319-1,7,37,,,, +1834-150319-1,7,41,,,, +1834-150319-1,7,44,,,, +1834-150319-1,7,45,,,, +1834-150319-1,7,47,,,, +1834-150319-1,7,56,,,, +1834-150319-1,7,74,,,, +1834-150319-1,7,76,,,, +1834-150319-1,7,77,,,, +1834-150319-1,7,92,,,, +1834-110319-3,7,27,,,, +1834-110319-3,7,28,,,, +1834-110319-3,7,29,,,, +1834-110319-3,7,30,,,, +1834-150319-2,7,29,0.0074,0.13004349782510874,, +1834-150319-2,7,30,0.0074,0.1159442027898605,, +1834-150319-2,7,31,0.0081,0.0050997450127493625,, +1834-150319-2,7,32,0.0088,0.22453877306134692,, +1834-150319-2,7,37,0.0083,0.04424778761061947,, +1834-150319-2,7,42,0.009000000000000001,0.010349482525873706,, +1834-010319-4,7,45,,,, +1834-010319-5,7,19,0.0095,0.15498845011549883,, +1834-010319-5,7,21,0.0079,0.023319766802331977,, +1834-010319-5,7,23,0.0086,0.12374876251237488,, +1834-010319-4,7,49,,,, +1834-010319-5,7,39,0.0082,0.09195908040919591,, +1834-110319-2,7,41,0.009000000000000001,0.0407979601019949,, +1834-110319-1,7,23,,,, +1834-110319-1,7,24,,,, +1834-110319-1,7,25,,,, +1834-110319-2,7,45,0.008400000000000001,0.19124043797810109,, +1834-110319-1,7,26,,,, +1834-110319-1,7,30,,,, +1834-010319-1,7,24,,,, +1834-010319-1,7,25,,,, +1834-060319-2,7,42,0.0081,0.11984400779961002,, +1834-060319-3,7,33,,,, +1834-060319-2,7,43,0.0085,0.1703914804259787,, +1834-060319-3,7,35,,,, +1834-060319-2,7,44,0.0091,0.06389680515974201,, +1834-060319-3,7,37,,,, +1834-060319-3,7,40,,,, +1834-060319-4,7,28,0.009300000000000001,0.03140468595314047,, +1834-060319-3,7,41,,,, +1834-060319-2,7,46,0.009000000000000001,0.09734513274336283,, +1834-010319-3,7,57,0.0085,0.12929353532323384,, +1834-010319-3,7,58,0.0078000000000000005,0.15344232788360582,, +1834-010319-3,7,60,0.0073,0.0679466026698665,0.002,0.01079946002699865 +1834-010319-3,7,61,0.008400000000000001,0.14759262036898155,, +1834-010319-3,7,63,0.0092,0.28663566821658915,, +1834-060319-4,7,23,0.0086,0.07622923770762292,, +1834-060319-4,7,24,0.0085,0.1031789682103179,, +1834-060319-4,7,26,0.0094,0.04256957430425696,, +1834-060319-4,7,29,0.0094,0.011549884501154989,, +1834-060319-2,7,41,0.0079,0.050997450127493626,, +1834-220319-1,7,29,,,, +1834-220319-1,7,36,,,, +1834-220319-1,7,37,,,, +1834-220319-1,7,49,,,, +1834-220319-1,7,67,,,, +1834-120319-3,7,52,,,, +1834-220319-3,7,23,,,, +1834-220319-3,7,25,,,, +1834-220319-3,7,26,,,, +1834-220319-3,7,31,,,, +1834-060319-1,7,59,,,, +1834-060319-1,7,91,,,, +1834-110319-2,7,104,0.006200000000000001,0.001799910004499775,, +1834-110319-2,7,40,0.007,0.022048897555122245,, +1834-110319-2,7,47,0.0083,0.13064346782660866,, +1834-110319-2,7,86,0.0091,0.00359982000899955,, +1834-110319-2,7,96,0.007200000000000001,0.0019499025048747563,, +1834-120319-1,7,17,,,, +1834-010319-4,7,48,,,, +1834-110319-5,7,78,0.0126,0.05384730763461827,0.0051,0.028948552572371382 +1834-110319-5,7,90,0.012,0.047847607619619016,0.0008,0.03029848507574621 +1849-280219-4,0,62,0.0102,0.1961280387196128,, +1849-280219-4,0,64,0.010400000000000001,0.16741832581674182,0.0041,0.006929930700692993 +1849-110319-2,0,56,0.0098,0.33223338833058347,0.0034000000000000002,0.0335983200839958 +1849-220319-5,0,79,0.0103,0.15498845011549883,0.004,0.014409855901440985 +1849-220319-2,0,93,,,, +1849-220319-4,0,100,,,, +1849-280219-3,0,153,,,, +1849-280219-3,0,160,,,, +1849-220319-3,0,0,0.009000000000000001,0.1814909254537273,, +1849-150319-3,0,6,,,, +1849-150319-3,0,69,,,, +1849-150319-2,0,40,0.009300000000000001,0.15074246287685616,, +1849-150319-1,0,39,,,, +1849-150319-2,0,60,0.0088,0.1367931603419829,, +1849-280219-2,0,88,0.0095,0.3476826158692065,, +1849-150319-4,0,70,0.0102,0.016994830051699484,, +1849-150319-4,0,76,0.0105,0.08106918930810691,0.004,0.005059949400505995 +1849-150319-4,0,85,0.010100000000000001,0.05285447145528545,0.0039000000000000003,0.006599934000659994 +1849-060319-1,0,85,,,, +1849-150319-1,0,74,,,, +1849-110319-1,0,52,,,, +1849-280219-1,0,90,,,, +1849-060319-3,1,104,,,, +1849-060319-3,1,108,,,, +1849-060319-3,1,85,,,, +1849-060319-3,1,94,,,, +1849-060319-3,1,98,,,, +1849-280219-4,1,101,0.0081,0.00868991310086899,, +1849-280219-4,1,105,0.0085,0.06775932240677593,, +1849-280219-2,1,102,0.0071,0.19454027298635068,, +1849-280219-4,1,32,0.0089,0.025024749752502476,, +1849-280219-4,1,81,0.008400000000000001,0.00885491145088549,, +1849-280219-4,1,84,0.0088,0.08068419315806842,, +1849-110319-2,1,50,0.0088,0.11609419529023549,, +1849-110319-2,1,58,0.008,0.003749812509374531,, +1849-110319-2,1,62,0.008400000000000001,0.029548522573871305,, +1849-110319-2,1,66,0.008,0.11174441277936104,, +1849-110319-1,1,64,,,, +1849-110319-1,1,66,,,, +1849-110319-2,1,68,0.0135,0.0503974801259937,0.0026000000000000003,0.0023998800059997 +1849-220319-2,1,99,,,, +1849-280219-3,1,180,,,, +1849-280219-3,1,182,,,, +1849-220319-3,1,59,0.008700000000000001,0.11669416529173542,, +1849-220319-3,1,63,0.0083,0.07694615269236538,, +1849-220319-3,1,67,0.010100000000000001,0.17969101544922753,0.0048000000000000004,0.023548822558872057 +1849-110319-3,1,177,,,, +1849-150319-3,1,11,,,, +1849-150319-1,1,93,,,, +1849-150319-3,1,7,,,, +1849-150319-2,1,44,0.0076,0.1465426728663567,, +1849-150319-3,1,8,,,, +1849-150319-1,1,121,,,, +1849-150319-2,1,64,0.0073,0.04754762261886906,, +1849-150319-3,1,98,,,, +1849-150319-2,1,48,0.0076,0.13019349032548372,, +1849-280219-2,1,110,0.0076,0.026998650067496625,, +1849-280219-2,1,78,0.008,0.17144142792860356,, +1849-060319-4,1,76,0.015600000000000001,0.07188428115718842,0.0129,0.06374436255637443 +1849-150319-4,1,100,0.009000000000000001,0.025189748102518974,, +1849-150319-4,1,78,0.0092,0.11115388846111539,, +1849-150319-4,1,99,,,, +1849-060319-1,1,106,,,, +1849-060319-1,1,108,,,, +1849-060319-1,1,71,,,, +1849-060319-1,1,73,,,, +1849-150319-1,1,105,,,, +1849-110319-1,1,31,,,, +1849-110319-1,1,41,,,, +1849-110319-1,1,54,,,, +1849-110319-1,1,59,,,, +1849-110319-1,1,60,,,, +1849-220319-4,1,108,,,, +1849-220319-4,1,117,,,, +1849-220319-4,1,118,,,, +1849-220319-4,1,90,,,, +1849-220319-5,1,117,0.009000000000000001,0.06484435155648444,0.0018000000000000002,0.012649873501264987 +1849-280219-1,1,102,,,, +1849-280219-1,1,104,,,, +1849-280219-1,1,112,,,, +1849-280219-1,1,114,,,, +1849-280219-1,1,116,,,, +1849-060319-3,2,114,,,, +1849-060319-3,2,130,,,, +1849-280219-4,2,70,0.009600000000000001,0.2630623693763062,0.0049,0.02029479705202948 +1849-280219-4,2,74,0.009000000000000001,0.17803321966780333,, +1849-110319-2,2,52,0.009300000000000001,0.07484625768711564,0.0028,0.014249287535623219 +1849-110319-1,2,46,,,, +1849-110319-2,2,60,0.008700000000000001,0.21553922303884807,, +1849-110319-1,2,62,,,, +1849-110319-2,2,64,0.008400000000000001,0.022348882555872206,, +1849-220319-2,2,91,,,, +1849-220319-5,2,83,0.0108,0.13480365196348038,0.0051,0.010944890551094488 +1849-220319-3,2,61,0.0086,0.19124043797810109,, +1849-220319-5,2,104,0.009600000000000001,0.13062369376306238,, +1849-150319-2,2,9,0.0076,0.1183440827958602,, +1849-150319-3,2,76,,,, +1849-220319-2,2,95,,,, +1849-220319-4,2,99,,,, +1849-150319-1,2,91,,,, +1849-150319-4,2,81,0.0094,0.07826421735782642,, +1849-280219-3,2,141,,,, +1849-220319-3,2,65,0.0094,0.01694915254237288,, +1849-150319-4,2,90,0.009600000000000001,0.025189748102518974,, +1849-150319-2,2,62,0.0074,0.0359982000899955,, +1849-150319-3,2,21,,,, +1849-150319-4,2,62,0.0102,0.0970740292597074,0.0043,0.012374876251237487 +1849-150319-3,2,25,,,, +1849-150319-2,2,34,0.0082,0.10544472776361181,, +1849-150319-2,2,36,0.009600000000000001,0.192140392980351,0.0045000000000000005,0.03374831258437078 +1849-280219-2,2,70,0.0081,0.2167391630418479,, +1849-280219-2,2,72,0.008700000000000001,0.2891855407229639,0.0039000000000000003,0.030598470076496177 +1849-060319-4,2,72,0.009600000000000001,0.08970410295897041,, +1849-060319-2,2,81,0.0088,0.1888405579721014,, +1849-060319-4,2,82,0.0092,0.052964470355296445,, +1849-150319-4,2,87,0.0099,0.02903970960290397,, +1849-150319-1,2,62,,,, +1849-150319-1,2,72,,,, +1849-110319-1,2,50,,,, +1849-280219-1,2,100,,,, +1849-280219-1,2,16,,,, +1849-280219-1,2,18,,,, +1849-280219-1,2,84,,,, +1849-280219-1,2,86,,,, +1849-060319-3,3,100,,,, +1849-060319-3,3,110,,,, +1849-060319-1,3,98,,,, +1849-280219-4,3,121,0.0088,0.03899461005389946,, +1849-280219-4,3,125,0.009000000000000001,0.04823451765482345,, +1849-280219-4,3,60,0.0088,0.09300406995930041,, +1849-280219-1,3,27,,,, +1849-280219-1,3,28,,,, +1849-280219-4,3,72,0.009000000000000001,0.1061489385106149,, +1849-110319-2,3,40,0.0088,0.23413829308534573,, +1849-220319-2,3,57,,,, +1849-220319-2,3,59,,,, +1849-220319-2,3,68,,,, +1849-220319-2,3,86,,,, +1849-280219-3,3,166,,,, +1849-280219-3,3,170,,,, +1849-220319-3,3,53,0.0085,0.1567421628918554,, +1849-220319-3,3,55,0.008,0.09749512524373781,, +1849-150319-3,3,60,,,, +1849-150319-2,3,32,0.008400000000000001,0.1751912404379781,, +1849-150319-2,3,38,0.0086,0.0383980800959952,, +1849-280219-2,3,51,0.0081,0.1768411579421029,, +1849-280219-2,3,76,0.0082,0.11174441277936104,, +1849-280219-2,3,96,0.0073,0.06599670016499175,, +1849-280219-2,3,98,0.0073,0.06389680515974201,, +1849-060319-4,3,68,0.0095,0.10400395996040039,, +1849-060319-4,3,74,0.009300000000000001,0.13562864371356287,, +1849-150319-4,3,58,0.0097,0.07353426465735342,, +1849-060319-1,3,102,,,, +1849-060319-1,3,77,,,, +1849-060319-1,3,83,,,, +1849-060319-2,3,67,0.0079,0.010949452527373631,, +1849-060319-2,3,94,0.009000000000000001,0.17099145042747863,, +1849-060319-2,3,99,0.008,0.2200389980500975,, +1849-150319-1,3,58,,,, +1849-150319-1,3,64,,,, +1849-110319-1,3,35,,,, +1849-220319-4,3,122,,,, +1849-220319-4,3,79,,,, +1849-220319-4,3,87,,,, +1849-220319-5,3,27,0.0097,0.04955450445495545,, +1849-220319-5,3,71,0.0094,0.13095369046309538,, +1849-220319-5,3,98,0.0097,0.0028049719502804974,0.0017000000000000001,0.00021999780002199978 +1849-280219-1,3,110,,,, +1849-280219-1,3,64,,,, +1849-060319-3,4,120,,,, +1849-280219-4,4,55,0.0106,0.04322956770432296,0.0049,0.004619953800461996 +1849-110319-2,4,23,0.009600000000000001,0.32503374831258436,0.0039000000000000003,0.019799010049497526 +1849-220319-2,4,101,,,, +1849-220319-2,4,107,,,, +1849-220319-2,4,109,,,, +1849-220319-2,4,43,,,, +1849-280219-3,4,133,,,, +1849-280219-3,4,151,,,, +1849-220319-3,4,69,0.009000000000000001,0.17099145042747863,, +1849-220319-3,4,71,0.009600000000000001,0.25228738563071845,, +1849-110319-3,4,104,,,, +1849-110319-3,4,163,,,, +1849-150319-3,4,74,,,, +1849-150319-3,4,97,,,, +1849-150319-2,4,17,0.0095,0.2678866056697165,, +1849-150319-2,4,46,0.009600000000000001,0.22033898305084745,, +1849-280219-2,4,80,0.0097,0.029548522573871305,0.0038,0.000599970001499925 +1849-280219-2,4,86,0.009300000000000001,0.02519874006299685,0.0025,0.0007499625018749063 +1849-060319-4,4,64,0.0111,0.07496425035749643,0.0043,0.008359916400835991 +1849-060319-4,4,80,0.0125,0.14310856891431087,0.004200000000000001,0.01000989990100099 +1849-060319-1,4,104,,,, +1849-150319-4,4,34,0.0146,0.11219887801121989,0.0043,0.013804861951380486 +1849-150319-4,4,60,0.0111,0.012814871851281487,0.0035,0.0018149818501814981 +1849-060319-1,4,88,,,, +1849-060319-2,4,122,0.0092,0.03329833508324584,, +1849-060319-2,4,95,0.0098,0.42192890355482227,, +1849-150319-1,4,79,,,, +1849-150319-1,4,85,,,, +1849-150319-1,4,89,,,, +1849-220319-4,4,112,,,, +1849-220319-5,4,112,0.0132,0.11725882741172589,0.0045000000000000005,0.016499835001649983 +1849-280219-1,4,66,,,, +1849-060319-3,5,112,,,, +1849-280219-4,5,44,0.010400000000000001,0.09239907600923991,0.0046,0.004399956000439995 +1849-110319-2,5,24,0.01,0.22093895305234737,, +1849-110319-2,5,48,0.01,0.2840857957102145,, +1849-220319-2,5,32,,,, +1849-220319-2,5,45,,,, +1849-220319-2,5,46,,,, +1849-280219-3,5,129,,,, +1849-280219-3,5,137,,,, +1849-220319-3,5,28,0.0085,0.14189290535473226,, +1849-220319-3,5,73,0.0095,0.2119394030298485,, +1849-220319-3,5,75,0.0099,0.3953802309884506,, +1849-110319-3,5,165,,,, +1849-150319-4,5,64,0.013800000000000002,0.0906940930590694,0.0038,0.01138488615113849 +1849-150319-3,5,38,,,, +1849-150319-3,5,64,,,, +1849-150319-3,5,78,,,, +1849-150319-2,5,18,0.0095,0.15074246287685616,, +1849-150319-2,5,19,0.0079,0.18389080545972702,, +1849-150319-2,5,22,0.0098,0.2630868456577171,, +1849-150319-2,5,67,0.0099,0.22423878806059697,0.004,0.0032998350082495873 +1849-280219-2,5,64,0.0097,0.28843557822108895,0.004,0.02984850757462127 +1849-060319-4,5,78,,,, +1849-150319-4,5,37,,,, +1849-060319-1,5,100,,,, +1849-060319-1,5,75,,,, +1849-060319-1,5,92,,,, +1849-060319-2,5,114,0.0099,0.2983350832458377,, +1849-060319-2,5,118,0.008700000000000001,0.032848357582120895,, +1849-150319-1,5,107,,,, +1849-150319-1,5,60,,,, +1849-150319-1,5,80,,,, +1849-150319-1,5,95,,,, +1849-110319-1,5,16,,,, +1849-110319-1,5,17,,,, +1849-110319-1,5,29,,,, +1849-220319-4,5,102,,,, +1849-220319-4,5,110,,,, +1849-220319-4,5,84,,,, +1849-220319-5,5,34,0.013300000000000001,0.06555934440655593,0.0037,0.010504894951050489 +1849-220319-5,5,35,,,, +1849-220319-5,5,38,0.011000000000000001,0.0906940930590694,0.0047,0.014189858101418986 +1849-220319-5,5,39,,,, +1849-280219-1,5,40,,,, +1849-280219-4,6,66,0.027100000000000003,0.06379936200637994,0.0142,0.007149928500714993 +1849-280219-4,6,68,0.0267,0.12358376416235838,0.0131,0.006489935100648993 +1849-280219-3,6,127,,,, +1849-280219-3,6,131,,,, +1849-280219-3,6,135,,,, +1849-280219-3,6,139,,,, +1849-280219-2,6,38,0.0055000000000000005,0.2119394030298485,, +1849-280219-2,6,90,0.0054,0.14819259037048146,, +1849-280219-1,6,106,,,, +1849-280219-2,6,94,0.0051,0.06104694765261737,, +1849-060319-4,6,62,0.027100000000000003,0.043284567154328456,0.0039000000000000003,0.004839951600483995 +1849-060319-4,6,66,0.0257,0.0024749752502474976,0.0155,0.0007149928500714993 +1849-060319-1,6,44,,,, +1849-060319-1,6,81,,,, +1849-280219-1,6,108,,,, +1849-280219-1,6,44,,,, +1849-280219-1,6,45,,,, +1849-280219-1,6,96,,,, +1849-280219-1,6,98,,,, +1849-060319-3,7,118,,,, +1849-060319-3,7,92,,,, +1849-280219-4,7,56,0.0267,0.08684413155868441,0.015600000000000001,0.02078979210207898 +1849-280219-3,7,158,,,, +1849-280219-4,7,58,,,, +1849-280219-4,7,86,0.0102,0.023319766802331977,0.0035,0.004179958200417996 +1849-280219-3,7,149,,,, +1849-280219-3,7,164,,,, +1849-280219-2,7,42,0.0055000000000000005,0.07724613769311535,, +1849-280219-1,7,52,,,, +1849-280219-2,7,43,0.0092,0.16199190040497974,, +1849-280219-2,7,61,0.006,0.0019499025048747563,, +1849-280219-2,7,66,0.009300000000000001,0.0071996400179991,, +1849-280219-2,7,92,0.0089,0.09899505024748763,, +1849-060319-4,7,60,0.0275,0.08090419095809041,0.0149,0.02128478715212848 +1849-060319-1,7,49,,,, +1849-060319-1,7,90,,,, +1849-060319-2,7,50,0.009300000000000001,0.04484775761211939,, +1849-060319-2,7,71,0.009300000000000001,0.1472926353682316,, +1849-060319-2,7,92,0.0056,0.031048447577621117,, +1849-150319-1,7,56,,,, +1849-280219-1,7,53,,,, +1849-280219-1,7,62,,,, +1833-260619-1,0,118,,,, +1833-260619-1,0,120,,,, +1833-260619-3,0,196,,,, +1833-260619-1,0,130,,,, +1833-260619-1,0,132,,,, +1833-260619-3,0,209,,,, +1833-260619-4,0,233,0.009000000000000001,0.01449812404465237,0.0013000000000000002,0.0008800778174070128 +1833-260619-2,0,174,0.0078000000000000005,0.038698065096745164,, +1833-260619-1,0,2,,,, +1833-260619-2,0,2,0.0074,0.31153442327883607,, +1833-260619-3,0,1,,,, +1833-260619-4,0,235,0.0095,0.16475983139561814,, +1833-010719-1,0,127,,,, +1833-010719-2,0,239,0.008,0.10859457027148643,, +1833-260619-3,0,0,,,, +1833-010719-1,0,161,,,, +1833-010719-1,0,191,,,, +1833-010719-1,0,223,,,, +1833-010719-2,0,261,0.026500000000000003,0.022348882555872206,0.012,0.0007499625018749063 +1833-010719-1,0,225,,,, +1833-010719-2,0,4,0.0076,0.29668516574171294,, +1833-010719-1,0,235,,,, +1833-020719-4,0,258,0.009000000000000001,0.08541414585854142,0.0013000000000000002,0.013144868551314488 +1833-020719-3,0,143,,,, +1833-020719-4,0,302,0.0089,0.03959960400395996,0.0024000000000000002,0.0073149268507314924 +1833-020719-1,0,123,,,, +1833-020719-3,0,141,,,, +1833-020719-2,0,129,0.025400000000000002,0.0215989200539973,0.014,0.0020998950052497373 +1833-020719-4,0,306,0.0077,0.044769552304476955,, +1833-020719-2,0,142,0.0077,0.08684565771711414,, +1833-020719-4,0,308,0.0081,0.06209437905620944,, +1833-020719-1,0,145,,,, +1833-020719-3,0,156,,,, +1833-020719-4,0,320,0.0094,0.1955780442195578,, +1833-020719-3,0,162,,,, +1833-020719-2,0,8,0.0078000000000000005,0.33148342582870854,, +1833-020719-1,0,158,,,, +1833-260619-2,0,152,0.0086,0.13949302534873256,0.0041,0.058647067646617666 +1833-260619-2,0,164,0.0078000000000000005,0.07694615269236538,, +1833-200619-2,0,283,0.007200000000000001,0.21643917804109794,, +1833-200619-3,0,0,,,, +1833-200619-4,0,1,0.0095,0.16604333956660433,, +1833-200619-4,0,78,0.024300000000000002,0.007809921900780992,0.0009000000000000001,0.002749972500274997 +1833-200619-4,0,90,0.0079,0.028324716752832473,, +1833-200619-4,0,92,0.0095,0.0964690353096469,0.0047,0.01726982730172698 +1833-200619-4,0,96,0.009000000000000001,0.002034979650203498,, +1833-290519-4,0,88,0.0236,0.11131888681113189,, +1833-290519-3,0,107,,,, +1833-290519-1,0,134,,,, +1833-290519-3,0,137,,,, +1833-290519-4,0,117,0.0238,0.13469365306346937,0.0031000000000000003,0.025354746452535475 +1833-290519-1,0,114,,,, +1833-290519-1,0,116,,,, +1833-290519-1,0,132,,,, +1833-120619-1,0,139,,,, +1833-120619-2,0,175,0.005200000000000001,0.015149242537873106,, +1833-120619-3,0,153,,,, +1833-020719-3,0,104,,,, +1833-020719-3,0,105,,,, +1833-020719-3,0,112,,,, +1833-020719-3,0,116,,,, +1833-020719-3,0,150,,,, +1833-120619-2,0,89,0.0095,0.03629818509074546,, +1833-020719-2,0,105,0.007500000000000001,0.09779511024448778,, +1833-020719-2,0,95,0.0077,0.13064346782660866,, +1833-260619-4,0,115,0.0094,0.022465144286442168,, +1833-260619-3,0,141,,,, +1833-260619-4,0,202,0.008400000000000001,0.03455463430450693,, +1833-260619-3,0,180,,,, +1833-260619-4,0,208,0.0098,0.08481170966696003,0.005200000000000001,0.021770346009541898 +1833-260619-3,0,194,,,, +1833-260619-4,0,222,0.0092,0.03580527120292742,0.0022,0.004863587938301913 +1833-200619-2,0,268,0.0073,0.049647517624118793,, +1833-020719-1,0,119,,,, +1833-020719-1,0,121,,,, +1833-290519-2,0,101,0.0066,0.030598470076496177,, +1833-290519-2,0,89,0.0091,0.11924403779811009,0.0039000000000000003,0.030748462576871156 +1833-060619-2,0,76,0.0115,0.14057859421405786,0.0055000000000000005,0.007699923000769993 +1833-060619-2,0,90,0.0074,0.014134858651413486,, +1833-200619-1,0,147,,,, +1833-260619-3,0,140,,,, +1833-260619-3,0,182,,,, +1833-200619-3,0,91,,,, +1833-200619-3,0,93,,,, +1833-010719-2,0,254,0.007200000000000001,0.05834708264586771,, +1833-010719-2,0,265,0.0076,0.03329833508324584,, +1833-010719-2,0,267,0.007,0.024598770061496925,, +1833-260619-1,1,10,,,, +1833-260619-1,1,104,,,, +1833-260619-1,1,116,,,, +1833-260619-1,1,126,,,, +1833-010719-1,1,146,,,, +1833-010719-1,1,219,,,, +1833-010719-1,1,221,,,, +1833-010719-1,1,229,,,, +1833-010719-1,1,6,,,, +1833-010719-1,1,8,,,, +1833-020719-4,1,256,0.0091,0.05301946980530195,0.0012000000000000001,0.01006489935100649 +1833-020719-4,1,278,0.0098,0.12110878891211088,0.0031000000000000003,0.008139918600813992 +1833-020719-4,1,300,0.0095,0.04834451655483445,, +1833-050619-1,1,75,,,, +1833-060619-1,1,137,,,, +1833-260619-2,1,123,0.0088,0.2488375581220939,, +1833-260619-2,1,130,0.0067,0.16859157042147893,, +1833-260619-2,1,166,0.0076,0.047847607619619016,, +1833-200619-3,1,89,,,, +1833-200619-4,1,70,0.009600000000000001,0.08634913650863492,, +1833-200619-4,1,76,0.0095,0.08458915410845892,, +1833-200619-3,1,97,,,, +1833-290519-3,1,119,,,, +1833-290519-3,1,72,,,, +1833-050619-3,1,125,,,, +1833-290519-1,1,124,,,, +1833-290519-1,1,136,,,, +1833-290519-1,1,95,,,, +1833-120619-1,1,114,,,, +1833-050619-2,1,129,0.009300000000000001,0.2924853757312134,, +1833-020719-3,1,123,,,, +1833-020719-2,1,14,0.0088,0.22948852557372132,, +1833-020719-3,1,139,,,, +1833-020719-3,1,154,,,, +1833-020719-3,1,166,,,, +1833-120619-2,1,104,0.008400000000000001,0.1688915554222289,, +1833-020719-2,1,131,0.0079,0.079946002699865,, +1833-020719-2,1,15,0.008,0.06224688765561722,, +1833-020719-2,1,152,0.0081,0.028198590070496476,, +1833-020719-2,1,87,0.0077,0.06134693265336733,, +1833-050619-4,1,68,0.010100000000000001,0.1396854764107308,, +1833-050619-4,1,84,0.0095,0.00794017884674684,, +1833-050619-4,1,86,0.007200000000000001,0.3763490595127968,, +1833-260619-4,1,178,0.0102,0.11617027189772569,0.0039000000000000003,0.006392144147482514 +1833-260619-3,1,170,,,, +1833-260619-4,1,198,0.0094,0.12362777340312196,0.0007,0.02663393394784381 +1833-260619-4,1,204,0.0094,0.025707536245310112,0.0012000000000000001,0.0034276714993746816 +1833-260619-4,1,226,0.009600000000000001,0.01023669461299736,0.0029000000000000002,0.0015748760943072862 +1833-200619-2,1,278,0.0091,0.13964301784910754,, +1833-290519-4,1,85,0.0239,0.15251347486525135,0.0005,0.03074469255307447 +1833-290519-4,1,96,0.026600000000000002,0.04548454515454845,0.016800000000000002,0.02183478165218348 +1833-020719-1,1,115,,,, +1833-020719-1,1,147,,,, +1833-020719-1,1,155,,,, +1833-290519-2,1,117,0.006500000000000001,0.0784460776961152,, +1833-290519-2,1,119,0.0094,0.11099445027748613,0.0035,0.017099145042747864 +1833-290519-2,1,129,0.0081,0.07604619769011549,, +1833-290519-2,1,135,0.0085,0.06254687265636719,, +1833-060619-2,1,64,0.01,0.11571884281157188,0.0037,0.010779892201077989 +1833-060619-2,1,78,0.009600000000000001,0.1860631393686063,, +1833-200619-1,1,155,,,, +1833-200619-1,1,159,,,, +1833-260619-3,1,119,,,, +1833-260619-3,1,207,,,, +1833-010719-2,1,135,0.0079,0.08849557522123894,, +1833-010719-2,1,18,0.0089,0.06584670766461677,, +1833-010719-2,1,227,0.009000000000000001,0.2183890805459727,, +1833-010719-2,1,229,0.0083,0.0034498275086245686,, +1833-010719-2,1,233,0.008700000000000001,0.011249437528123594,, +1833-010719-2,1,269,0.006900000000000001,0.03479826008699565,, +1833-010719-2,1,273,0.008,0.02624868756562172,, +1833-260619-3,2,198,,,, +1833-260619-1,2,128,,,, +1833-260619-2,2,168,0.0088,0.3023848807559622,, +1833-010719-1,2,202,,,, +1833-010719-1,2,231,,,, +1833-020719-4,2,260,0.009300000000000001,0.17280827191728082,0.0015,0.03129468705312947 +1833-050619-3,2,133,,,, +1833-050619-1,2,99,,,, +1833-050619-2,2,135,0.0079,0.01814909254537273,, +1833-060619-1,2,168,,,, +1833-060619-2,2,106,0.0098,0.012374876251237487,0.0028,0.0010999890001099988 +1833-260619-2,2,148,0.0078000000000000005,0.11609419529023549,, +1833-200619-4,2,115,0.0097,0.08002419975800242,, +1833-200619-1,2,228,,,, +1833-200619-4,2,117,0.0097,0.16180838191618083,0.0043,0.047024529754702456 +1833-200619-3,2,142,,,, +1833-200619-1,2,239,,,, +1833-200619-2,2,325,0.0088,0.32773361331933404,, +1833-050619-2,2,89,0.0091,0.0287985600719964,, +1833-050619-3,2,111,,,, +1833-120619-3,2,104,,,, +1833-120619-1,2,120,,,, +1833-050619-2,2,111,0.0086,0.0014999250037498126,, +1833-020719-3,2,147,,,, +1833-020719-3,2,168,,,, +1833-120619-2,2,118,0.007500000000000001,0.026848657567121643,, +1833-120619-2,2,142,0.0061,0.16184190790460476,, +1833-020719-2,2,119,0.0074,0.1687415629218539,, +1833-020719-2,2,120,0.012100000000000001,0.0007499625018749063,0.0032,0.0 +1833-020719-2,2,93,,,, +1833-260619-4,2,216,0.0099,0.22191856964194728,0.0043,0.04103941822224281 +1833-010719-2,2,249,0.008,0.14519274036298185,, +1833-020719-1,2,143,,,, +1833-020719-1,2,149,,,, +1833-290519-2,2,115,0.0077,0.16979151042447876,, +1833-290519-2,2,123,0.0068000000000000005,0.0623968801559922,, +1833-290519-2,2,147,0.0068000000000000005,0.05474726263686815,, +1833-010719-2,2,271,0.0078000000000000005,0.010949452527373631,, +1833-010719-2,2,29,0.0092,0.31558422078896053,, +1833-260619-1,3,114,,,, +1833-010719-1,3,171,,,, +1833-010719-1,3,198,,,, +1833-010719-2,3,243,0.0095,0.2840857957102145,0.0038,0.03659817009149543 +1833-020719-3,3,17,,,, +1833-020719-1,3,151,,,, +1833-020719-2,3,136,0.0094,0.32293385330733465,0.0038,0.03959802009899505 +1833-010719-1,3,216,,,, +1833-010719-2,3,133,0.0067,0.024898755062246886,, +1833-010719-1,3,240,,,, +1833-020719-4,3,289,0.010100000000000001,0.2037179628203718,0.0045000000000000005,0.017214827851721484 +1833-020719-4,3,290,0.0089,0.05510944890551094,0.0002,0.01110988890111099 +1833-020719-4,3,298,0.0085,0.02023979760202398,0.0012000000000000001,0.005224947750522495 +1833-020719-4,3,318,0.0086,0.008579914200857991,0.0006000000000000001,0.002034979650203498 +1833-050619-2,3,143,0.0056,0.2383380830958452,, +1833-050619-4,3,148,0.010100000000000001,0.10514955288313291,, +1833-050619-3,3,147,,,, +1833-050619-1,3,107,,,, +1833-060619-1,3,174,,,, +1833-260619-2,3,146,0.0067,0.06419679016049197,, +1833-200619-1,3,184,,,, +1833-200619-4,3,102,0.022500000000000003,0.2038829611703883,0.0051,0.02001979980200198 +1833-200619-3,3,128,,,, +1833-200619-3,3,82,,,, +1833-200619-4,3,74,0.0079,0.06940930590694093,, +1833-290519-3,3,102,,,, +1833-290519-4,3,92,0.023100000000000002,0.07232427675723242,0.0017000000000000001,0.016444835551644485 +1833-290519-3,3,153,,,, +1833-290519-3,3,68,,,, +1833-290519-4,3,130,0.0053,0.006214937850621494,, +1833-290519-3,3,99,,,, +1833-290519-1,3,101,,,, +1833-290519-1,3,156,,,, +1833-020719-3,3,152,,,, +1833-020719-3,3,164,,,, +1833-020719-3,3,170,,,, +1833-020719-1,3,164,,,, +1833-020719-3,3,23,,,, +1833-020719-1,3,140,,,, +1833-020719-2,3,140,0.007500000000000001,0.09479526023698816,, +1833-120619-2,3,143,0.0082,0.011549422528873556,, +1833-120619-2,3,69,0.008700000000000001,0.13349332533373331,, +1833-020719-2,3,107,0.007200000000000001,0.042897855107244635,, +1833-020719-2,3,139,0.008,0.018299085045747714,, +1833-020719-2,3,146,0.007200000000000001,0.04169791510424479,, +1833-260619-4,3,196,0.009300000000000001,0.0760109314928899,0.0037,0.009078697484830237 +1833-260619-4,3,206,0.0076,0.021307147158275048,, +1833-200619-2,3,257,0.0091,0.184040797960102,, +1833-200619-2,3,264,0.0086,0.1295935203239838,, +1833-290519-4,3,129,0.0224,0.0024199758002419977,, +1833-020719-1,3,135,,,, +1833-020719-1,3,153,,,, +1833-290519-2,3,121,0.008,0.04334783260836958,, +1833-290519-2,3,73,0.0086,0.05729713514324284,0.0036000000000000003,0.009149542522873857 +1833-290519-2,3,77,0.0089,0.03689815509224539,0.0033,0.0095995200239988 +1833-200619-1,3,151,,,, +1833-260619-3,3,160,,,, +1833-260619-3,3,176,,,, +1833-010719-2,3,157,0.0076,0.004349782510874456,, +1833-010719-2,3,173,0.0088,0.002999850007499625,, +1833-010719-2,3,174,0.023700000000000002,0.0311984400779961,, +1833-010719-2,3,187,0.0074,0.0016499175041247937,, +1833-010719-2,3,188,0.0115,0.00014999250037498125,, +1833-010719-2,3,241,0.0076,0.03419829008549573,, +1833-010719-2,3,259,0.0071,0.043647817609119545,, +1833-020719-4,4,250,0.0094,0.16505334946650532,0.0035,0.00973490265097349 +1833-050619-2,4,137,0.007,0.06809659517024148,, +1833-050619-1,4,25,,,, +1833-060619-1,4,144,,,, +1833-060619-1,4,172,,,, +1833-120619-4,4,119,0.0083,0.01963480365196348,0.0015,0.0012099879001209988 +1833-120619-1,4,137,,,, +1833-060619-2,4,108,0.0085,0.036959630403695966,, +1833-120619-3,4,147,,,, +1833-120619-2,4,170,0.0068000000000000005,0.03149842507874606,, +1833-200619-4,4,124,,,, +1833-290519-3,4,135,,,, +1833-290519-3,4,145,,,, +1833-290519-3,4,76,,,, +1833-050619-4,4,80,0.0089,0.07053654024051804,, +1833-050619-2,4,97,0.007,0.03464826758662067,0.0034000000000000002,0.004649767511624419 +1833-050619-3,4,123,,,, +1833-050619-3,4,145,,,, +1833-050619-4,4,151,0.0086,0.020505704594511256,, +1833-290519-1,4,109,,,, +1833-290519-1,4,112,,,, +1833-290519-1,4,86,,,, +1833-290519-1,4,90,,,, +1833-120619-3,4,100,,,, +1833-120619-3,4,101,,,, +1833-020719-3,4,45,,,, +1833-020719-3,4,94,,,, +1833-020719-3,4,95,,,, +1833-120619-2,4,81,0.0086,0.12749362531873407,0.0037,0.01664916754162292 +1833-200619-2,4,254,0.006900000000000001,0.09854507274636268,, +1833-290519-4,4,71,0.0261,0.08893411065889341,0.0213,0.021119788802111978 +1833-290519-2,4,110,0.0073,0.04649767511624419,, +1833-290519-2,4,125,0.0057,0.1495425228738563,, +1833-290519-2,4,133,0.0057,0.2200389980500975,, +1833-200619-1,4,165,,,, +1833-200619-3,4,113,,,, +1833-010719-2,4,223,,,, +1833-010719-2,4,231,0.0092,0.10589470526473677,0.0046,0.007799610019499025 +1833-260619-1,5,100,,,, +1833-260619-2,5,154,0.0091,0.41082945852707364,0.0038,0.03509824508774561 +1833-260619-4,5,212,0.010400000000000001,0.1698086988744268,0.0044,0.0048172680531752285 +1833-260619-1,5,110,,,, +1833-260619-3,5,184,,,, +1833-010719-1,5,134,,,, +1833-010719-1,5,144,,,, +1833-010719-1,5,150,,,, +1833-010719-1,5,166,,,, +1833-010719-2,5,235,0.0095,0.3431828408579571,, +1833-020719-4,5,266,0.0103,0.15531844681553184,0.0039000000000000003,0.006379936200637993 +1833-020719-4,5,294,0.009300000000000001,0.04691453085469145,0.0017000000000000001,0.0033549664503354968 +1833-050619-2,5,123,0.009000000000000001,0.28123593820308984,0.0038,0.027898605069746514 +1833-050619-1,5,73,,,, +1833-060619-1,5,156,,,, +1833-060619-1,5,164,,,, +1833-260619-2,5,115,0.0074,0.1711414429278536,, +1833-200619-4,5,94,0.0099,0.18562314376856232,0.0043,0.003739962600373996 +1833-290519-3,5,109,,,, +1833-290519-3,5,117,,,, +1833-290519-3,5,139,,,, +1833-290519-3,5,143,,,, +1833-050619-3,5,127,,,, +1833-290519-1,5,104,,,, +1833-290519-1,5,120,,,, +1833-290519-1,5,126,,,, +1833-290519-1,5,148,,,, +1833-290519-1,5,152,,,, +1833-120619-3,5,136,,,, +1833-120619-4,5,122,0.01,0.18925310746892532,0.0046,0.004674953250467496 +1833-120619-1,5,133,,,, +1833-020719-3,5,117,,,, +1833-020719-3,5,121,,,, +1833-020719-3,5,135,,,, +1833-120619-2,5,100,0.0092,0.17894105294735263,, +1833-120619-2,5,123,0.0086,0.046347682615869204,, +1833-120619-2,5,133,0.009000000000000001,0.13229338533073345,0.0036000000000000003,0.0167991600419979 +1833-120619-2,5,145,0.0095,0.2575371231438428,0.0044,0.014249287535623219 +1833-020719-2,5,103,0.009300000000000001,0.33763311834408277,0.0036000000000000003,0.035398230088495575 +1833-020719-2,5,126,0.007200000000000001,0.059547022648867555,, +1833-050619-4,5,79,0.010100000000000001,0.1063058896083873,0.0044,0.005550416281221091 +1833-050619-4,5,82,0.0103,0.12056737588652482,0.0047,0.0037773666358310205 +1833-260619-4,5,162,0.0103,0.12302561489647505,0.0037,0.0013895965538005465 +1833-260619-4,5,188,0.0099,0.03534207235166057,0.003,0.00199175506044745 +1833-200619-3,5,122,,,, +1833-200619-2,5,270,0.009300000000000001,0.27688615569221536,0.0039000000000000003,0.016199190040497975 +1833-290519-4,5,115,0.027600000000000003,0.12919370806291938,0.0217,0.0073149268507314924 +1833-290519-4,5,121,0.026000000000000002,0.05285447145528545,0.0017000000000000001,0.004839951600483995 +1833-290519-4,5,98,0.0257,0.04322956770432296,0.0011,0.0052799472005279945 +1833-020719-1,5,109,,,, +1833-290519-2,5,81,0.005200000000000001,0.03644817759112044,, +1833-060619-2,5,68,0.009600000000000001,0.15251347486525135,0.0041,0.006819931800681993 +1833-060619-2,5,98,0.0092,0.04064459355406446,, +1833-260619-3,5,109,,,, +1833-260619-3,5,111,,,, +1833-260619-3,5,113,,,, +1833-200619-3,5,59,,,, +1833-010719-2,5,221,0.0091,0.09269536523173841,, +1833-260619-1,6,102,,,, +1833-260619-4,6,182,0.0089,0.07114734355458799,0.001,0.007550141275649637 +1833-260619-1,6,106,,,, +1833-260619-1,6,108,,,, +1833-260619-1,6,112,,,, +1833-260619-3,6,192,,,, +1833-260619-2,6,160,0.0063,0.05174741262936853,, +1833-260619-1,6,124,,,, +1833-010719-1,6,152,,,, +1833-010719-1,6,183,,,, +1833-010719-1,6,200,,,, +1833-010719-1,6,227,,,, +1833-020719-4,6,248,0.009300000000000001,0.0947090529094709,0.0017000000000000001,0.00973490265097349 +1833-020719-4,6,254,0.01,0.15130348696513035,0.0038,0.007864921350786492 +1833-020719-4,6,310,0.0051,0.0021999780002199976,, +1833-060619-1,6,176,,,, +1833-050619-2,6,152,0.007500000000000001,0.021748912554372283,, +1833-050619-3,6,149,,,, +1833-050619-4,6,157,0.0091,0.01749922910884983,, +1833-050619-1,6,111,,,, +1833-050619-1,6,60,,,, +1833-050619-4,6,92,0.0091,0.07963305581251927,, +1833-120619-3,6,118,,,, +1833-060619-2,6,82,0.0088,0.14563854361456385,, +1833-050619-2,6,125,0.0068000000000000005,0.15629218539073048,, +1833-050619-1,6,64,,,, +1833-050619-3,6,129,,,, +1833-060619-1,6,162,,,, +1833-060619-1,6,170,,,, +1833-050619-1,6,91,,,, +1833-060619-1,6,158,,,, +1833-060619-1,6,160,,,, +1833-260619-2,6,140,0.006900000000000001,0.0887955602219889,, +1833-260619-2,6,144,0.006500000000000001,0.09149542522873856,, +1833-260619-2,6,156,0.0067,0.06284685765711714,, +1833-260619-2,6,170,0.0067,0.050997450127493626,, +1833-200619-4,6,101,0.009300000000000001,0.1979430205697943,0.0016,0.01132988670113299 +1833-200619-4,6,109,0.0091,0.053349466505334946,0.0034000000000000002,0.0014849851501484985 +1833-200619-4,6,121,0.0091,0.026344736552634473,0.0011,0.0017049829501704983 +1833-200619-1,6,240,,,, +1833-200619-2,6,327,0.0066,0.03329833508324584,, +1833-200619-3,6,150,,,, +1833-200619-4,6,80,0.0098,0.07254427455725443,0.0013000000000000002,0.002914970850291497 +1833-200619-4,6,89,0.0088,0.10609393906060939,0.0028,0.007809921900780992 +1833-290519-3,6,125,,,, +1833-290519-3,6,141,,,, +1833-290519-3,6,147,,,, +1833-290519-3,6,149,,,, +1833-290519-3,6,151,,,, +1833-290519-3,6,155,,,, +1833-050619-3,6,109,,,, +1833-050619-3,6,117,,,, +1833-050619-2,6,119,0.007,0.1343932803359832,, +1833-050619-2,6,146,0.006900000000000001,0.0311984400779961,0.0026000000000000003,0.0025498725063746812 +1833-050619-3,6,143,,,, +1833-290519-1,6,102,,,, +1833-290519-1,6,128,,,, +1833-290519-1,6,138,,,, +1833-290519-1,6,142,,,, +1833-120619-3,6,122,,,, +1833-120619-3,6,141,,,, +1833-120619-2,6,169,0.0064,0.05054747262636868,, +1833-120619-3,6,143,,,, +1833-120619-3,6,145,,,, +1833-120619-4,6,127,0.0083,0.024199758002419976,0.0017000000000000001,0.0017049829501704983 +1833-050619-4,6,135,0.009300000000000001,0.020274437249460375,0.0031000000000000003,0.0013876040703052729 +1833-120619-3,6,94,,,, +1833-120619-1,6,127,,,, +1833-120619-1,6,129,,,, +1833-050619-2,6,74,0.0078000000000000005,0.0928453577321134,0.0029000000000000002,0.013499325033748313 +1833-050619-2,6,81,0.0094,0.2525873706314684,, +1833-020719-3,6,63,,,, +1833-020719-3,6,64,,,, +1833-020719-3,6,96,,,, +1833-120619-2,6,151,0.0067,0.08729563521823909,, +1833-060619-2,6,105,0.008400000000000001,0.04971950280497195,, +1833-020719-2,6,99,0.0095,0.45237738113094345,, +1833-050619-4,6,117,0.0094,0.024591427690410114,0.003,0.0016188714153561516 +1833-050619-4,6,133,0.0094,0.03546099290780142,0.0032,0.004933703361085414 +1833-260619-4,6,184,0.008700000000000001,0.04946963731529946,, +1833-260619-4,6,200,0.0102,0.10097734957617305,0.0009000000000000001,0.002825512992727778 +1833-260619-4,6,214,0.0092,0.029783686136458383,0.0001,0.0013432766686738617 +1833-260619-4,6,218,0.009000000000000001,0.016999397841493354,0.0026000000000000003,0.0014359164389272316 +1833-260619-4,6,80,0.0094,0.06832183056186021,0.0035,0.004261429431655009 +1833-200619-2,6,28,0.0068000000000000005,0.09824508774561272,, +1833-200619-2,6,281,0.0094,0.3455827208639568,, +1833-200619-2,6,287,0.0067,0.0751462426878656,, +1833-200619-2,6,308,0.0067,0.03854807259637018,, +1833-200619-2,6,321,0.0068000000000000005,0.013349332533373332,, +1833-120619-4,6,120,0.008400000000000001,0.025959740402595972,, +1833-120619-4,6,124,0.0085,0.010999890001099988,, +1833-120619-4,6,80,0.009000000000000001,0.0982290177098229,, +1833-120619-4,6,85,0.008700000000000001,0.1097239027609724,0.0033,0.005884941150588494 +1833-120619-4,6,95,0.0086,0.0881641183588164,0.001,0.0023649763502364978 +1833-290519-4,6,108,0.0264,0.0981190188098119,0.013300000000000001,0.015454845451545485 +1833-290519-4,6,65,0.0262,0.0941040589594104,, +1833-290519-4,6,79,0.0251,0.10829391706082939,0.0012000000000000001,0.020074799252007478 +1833-290519-4,6,90,0.0267,0.08442415575844242,0.0211,0.007534924650753493 +1833-020719-1,6,107,,,, +1833-290519-2,6,83,0.009000000000000001,0.06554672266386681,, +1833-290519-2,6,85,,,, +1833-290519-2,6,97,,,, +1833-060619-2,6,112,0.009000000000000001,0.02012979870201298,, +1833-060619-2,6,116,0.009000000000000001,0.006874931250687493,, +1833-060619-2,6,74,0.0091,0.12374876251237488,0.0019,0.007369926300736992 +1833-200619-1,6,163,,,, +1833-200619-3,6,120,,,, +1833-200619-1,6,171,,,, +1833-200619-1,6,206,,,, +1833-260619-3,6,142,,,, +1833-260619-3,6,168,,,, +1833-200619-3,6,126,,,, +1833-200619-3,6,132,,,, +1833-200619-3,6,75,,,, +1833-010719-2,6,225,0.0073,0.22123893805309736,, +1833-260619-1,7,98,,,, +1833-010719-1,7,114,,,, +1833-010719-1,7,132,,,, +1833-010719-2,7,217,0.0088,0.0455977201139943,, +1833-010719-1,7,54,,,, +1833-060619-1,7,139,,,, +1833-200619-3,7,65,,,, +1833-200619-4,7,68,0.0092,0.1101638983610164,, +1833-290519-3,7,103,,,, +1833-290519-3,7,113,,,, +1833-290519-3,7,129,,,, +1833-290519-1,7,94,,,, +1833-290519-3,7,82,,,, +1833-050619-3,7,105,,,, +1833-050619-2,7,66,0.0079,0.11969401529923504,0.0033,0.012299385030748462 +1833-290519-1,7,110,,,, +1833-290519-1,7,122,,,, +1833-290519-1,7,88,,,, +1833-120619-3,7,120,,,, +1833-120619-2,7,85,0.0078000000000000005,0.11069446527673617,, +1833-260619-4,7,177,0.009300000000000001,0.09134281346982259,, +1833-200619-2,7,203,0.0091,0.006449677516124194,0.005,0.0 +1833-200619-2,7,204,,,, +1833-200619-2,7,261,0.0082,0.1175941202939853,, +1833-120619-4,7,65,0.0088,0.1066439335606644,, +1833-290519-4,7,67,0.0264,0.026729732702672974,0.0213,0.004234957650423496 +1833-290519-4,7,75,0.0267,0.06286437135628643,0.0217,0.008414915850841491 +1833-290519-4,7,77,0.025900000000000003,0.052964470355296445,0.0009000000000000001,0.01897481025189748 +1833-290519-4,7,94,0.0264,0.04042459575404246,0.018500000000000003,0.005114948850511495 +1833-290519-2,7,111,0.0055000000000000005,0.13904304784760763,, +1833-290519-2,7,113,,,, +1833-290519-2,7,137,,,, +1833-290519-2,7,141,0.0035,0.0058497075146242685,, +1833-060619-2,7,58,0.009000000000000001,0.1075239247607524,, +1833-200619-1,7,143,,,, +1833-260619-3,7,103,,,, +1833-260619-3,7,105,,,, +1833-200619-3,7,53,,,, +1833-010719-2,7,211,0.0089,0.037948102594870255,0.0035,0.0022498875056247186 +1833-010719-2,7,213,0.009000000000000001,0.01319934003299835,, +1839-290519-1,0,120,,,, +1839-290519-2,0,107,0.0086,0.0671966401679916,, +1839-290519-2,0,117,0.0261,0.006599670016499175,, +1839-290519-3,0,111,,,, +1839-120619-2,0,76,0.0077,0.002849857507124644,, +1839-200619-2,0,104,0.0078000000000000005,0.040497975101244935,0.0041,0.0020998950052497373 +1839-200619-2,0,98,0.0078000000000000005,0.04664766761661917,0.0035,0.001799910004499775 +1839-120619-4,1,104,0.0201,0.0008799912000879991,0.008700000000000001,5.4999450005499945e-05 +1839-120619-4,1,84,0.0256,0.008249917500824992,0.006,0.0022549774502254975 +1839-120619-4,1,86,0.0217,0.012044879551204488,0.0009000000000000001,0.004949950500494995 +1839-290519-1,1,110,,,, +1839-120619-3,1,113,,,, +1839-200619-2,1,7,0.0004,0.0013499325033748313,, +1839-120619-3,2,129,,,, +1839-120619-4,3,112,0.023200000000000002,0.000934990650093499,0.0183,0.00032999670003299966 +1839-120619-4,3,29,0.0166,0.0036299637003629963,0.013800000000000002,0.002309976900230998 +1839-200619-1,3,153,,,, +1839-120619-3,3,137,,,, +1839-200619-2,3,118,0.008700000000000001,0.0019499025048747563,, +1839-120619-4,4,102,0.0079,0.06291937080629194,, +1839-120619-4,4,110,0.009300000000000001,0.11808381916180838,, +1839-120619-4,4,120,0.0083,0.06874931250687494,, +1839-120619-4,4,82,0.0082,0.05873941260587394,, +1839-060619-3,4,101,0.0091,0.3187340632968352,0.0034000000000000002,0.012749362531873407 +1839-290519-1,4,122,,,, +1839-290519-1,4,127,,,, +1839-290519-2,4,119,0.0091,0.11459427028648568,0.0034000000000000002,0.014249287535623219 +1839-290519-2,4,39,0.0089,0.2854357282135893,0.0031000000000000003,0.056997150142492875 +1839-060619-4,4,230,,,, +1839-200619-1,4,141,,,, +1839-290519-3,4,117,,,, +1839-290519-3,4,72,,,, +1839-060619-1,4,240,,,, +1839-060619-5,4,164,0.0095,0.04405455945440546,, +1839-120619-2,4,78,0.0086,0.392080395980201,, +1839-120619-3,4,115,,,, +1839-120619-3,4,121,,,, +1839-200619-2,4,100,0.0085,0.06449677516124194,0.0034000000000000002,0.003749812509374531 +1839-200619-2,4,106,0.009000000000000001,0.06659667016649168,0.0038,0.006449677516124194 +1839-200619-2,4,108,0.0088,0.030748462576871156,, +1839-060619-5,5,138,0.008,0.07375426245737543,, +1839-060619-3,5,87,0.0071,0.1607919604019799,, +1839-120619-1,5,158,,,, +1839-290519-1,5,133,,,, +1839-290519-1,5,137,,,, +1839-290519-2,5,125,0.0073,0.21478926053697314,, +1839-290519-2,5,146,0.0256,0.0038998050097495125,0.0077,0.0007499625018749063 +1839-290519-2,5,148,0.0064,0.008249587520623968,, +1839-290519-2,5,95,0.0077,0.07064646767661617,, +1839-060619-4,5,228,,,, +1839-200619-1,5,145,,,, +1839-290519-3,5,115,,,, +1839-290519-3,5,119,,,, +1839-060619-5,5,170,0.0083,0.02106478935210648,, +1839-120619-2,5,104,0.0074,0.04649767511624419,, +1839-120619-2,5,47,0.006900000000000001,0.20278986050697465,0.0008,0.040347982600869955 +1839-120619-3,5,131,,,, +1839-200619-2,5,96,0.006500000000000001,0.10649467526623668,, +1839-120619-4,6,106,0.008,0.0010999890001099988,, +1839-120619-4,6,116,0.0076,0.052964470355296445,, +1839-120619-4,6,122,0.0083,0.11846881531184689,, +1839-120619-4,6,124,0.009300000000000001,0.08315916840831591,0.0045000000000000005,0.00962490375096249 +1839-120619-4,6,132,0.007500000000000001,0.0019249807501924981,0.0017000000000000001,0.0 +1839-120619-4,6,134,0.008,0.017544824551754483,0.0008,0.0008799912000879991 +1839-120619-3,6,133,,,, +1839-120619-4,6,90,0.0089,0.08112418875811242,, +1839-120619-4,6,92,0.0091,0.1039489605103949,0.0038,0.0023649763502364978 +1839-060619-3,6,91,0.0088,0.31483425828708567,0.0035,0.004349782510874456 +1839-120619-1,6,143,,,, +1839-290519-1,6,116,,,, +1839-290519-1,6,131,,,, +1839-290519-2,6,113,0.0091,0.2864856757162142,0.0037,0.017549122543872805 +1839-290519-2,6,115,0.0078000000000000005,0.14639268036598171,, +1839-200619-1,6,139,,,, +1839-060619-5,6,142,0.0092,0.08167418325816742,0.0037,0.0004949950500494995 +1839-060619-5,6,162,0.0097,0.042459575404245956,, +1839-060619-5,6,166,0.0094,0.047079529204707954,0.0034000000000000002,0.000934990650093499 +1839-060619-5,6,168,0.0089,0.04377956220437795,0.0004,0.0007149928500714993 +1839-120619-2,6,106,0.007200000000000001,0.024298785060746963,0.0006000000000000001,0.00044997750112494374 +1839-120619-2,6,51,0.0077,0.02504874756262187,, +1839-120619-2,6,86,0.0082,0.03149842507874606,, +1839-120619-2,6,88,0.0086,0.33013349332533376,0.004,0.010499475026248688 +1839-120619-3,6,123,,,, +1839-120619-3,6,125,,,, +1839-120619-3,6,71,,,, +1839-200619-2,6,112,0.0056,0.004199790010499475,, +1839-200619-2,6,114,0.0086,0.08069596520173991,0.0036000000000000003,0.0023998800059997 +1839-200619-2,6,48,0.006,0.09899505024748763,, +1839-200619-2,6,54,0.0089,0.050997450127493626,0.0038,0.0013499325033748313 +1839-200619-2,6,78,0.0074,0.054297285135743216,, +1839-200619-2,6,89,0.0085,0.0664466776661167,, +1839-200619-2,6,92,0.009300000000000001,0.08909554522273887,0.0035,0.0038998050097495125 +1839-200619-2,6,94,0.008400000000000001,0.027898605069746514,, +1839-120619-4,7,108,0.008,0.06984930150698493,, +1839-120619-3,7,127,,,, +1839-120619-4,7,128,0.0079,0.02969970300296997,0.0005,0.0023649763502364978 +1839-120619-4,7,136,0.0076,0.027279727202727973,, +1839-060619-3,7,93,0.0077,0.19064046797660117,, +1839-060619-5,7,183,0.0082,0.06946430535694643,0.00030000000000000003,0.008084919150808492 +1839-120619-1,7,152,,,, +1839-290519-1,7,114,,,, +1839-290519-1,7,129,,,, +1839-290519-1,7,139,,,, +1839-290519-1,7,87,,,, +1839-290519-2,7,109,0.0083,0.09164541772911354,, +1839-290519-2,7,111,0.006900000000000001,0.026848657567121643,, +1839-290519-2,7,135,0.0077,0.005699715014249288,, +1839-290519-2,7,142,0.0073,0.012899355032248387,, +1839-060619-4,7,227,,,, +1839-290519-2,7,144,0.0078000000000000005,0.06914654267286635,, +1839-060619-4,7,200,,,, +1839-200619-1,7,135,,,, +1839-060619-1,7,234,,,, +1839-290519-3,7,113,,,, +1839-060619-5,7,136,0.0081,0.02001979980200198,, +1839-120619-2,7,71,0.006900000000000001,0.10919454027298635,, +1839-120619-2,7,90,0.006500000000000001,0.053697315134243286,0.0004,0.007949602519874007 +1839-120619-3,7,119,,,, +1839-200619-2,7,116,0.0067,0.014249287535623219,, +1839-200619-2,7,74,0.0067,0.08354582270886456,, +1839-200619-2,7,90,0.009000000000000001,0.10289485525723714,, diff --git a/actions/stimulus-response/modules/parameters.yaml b/actions/stimulus-response/modules/parameters.yaml new file mode 100644 index 000000000..f5a95033e --- /dev/null +++ b/actions/stimulus-response/modules/parameters.yaml @@ -0,0 +1,2 @@ +window_size: 0.03 +std_gaussian_kde: 0.04