changeset 4:57959596262d draft

"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/matchms commit 3c7f3cf3f925215a23b2f6665432c32b5ebdc2aa"
author recetox
date Tue, 08 Jun 2021 11:28:40 +0000
parents 72adeb3ca264
children 672c22d7f004
files matchms.xml matchms_wrapper.py test-data/matches_fill_symmetric_hungarian.csv test-data/matches_rcx_rcx_modified.csv test-data/scores_fill_symmetric_hungarian.csv test-data/scores_rcx_rcx_modified.csv
diffstat 6 files changed, 1160 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/matchms.xml	Wed May 19 11:45:29 2021 +0000
+++ b/matchms.xml	Tue Jun 08 11:28:40 2021 +0000
@@ -1,4 +1,4 @@
-<tool id="matchms" name="matchMS" version="0.9.0+galaxy0">
+<tool id="matchms" name="matchMS" version="0.9.0+galaxy1">
     <requirements>
         <requirement type="package" version="0.9.0">matchms</requirement>
         <requirement type="package" version="1.1.4">pandas</requirement>
@@ -9,15 +9,25 @@
     </environment_variables>
 
     <command detect_errors="exit_code"><![CDATA[
-        python3 ${__tool_directory__}/matchms_wrapper.py "$references" "$queries" "$similarity_metric" "$similarity_scores" "$similarity_matches" "$algorithm.tolerance" "$algorithm.mz_power" "$algorithm.intensity_power"
+    #if $symmetric.is_symmetric
+        python3 ${__tool_directory__}/matchms_wrapper.py "$queries" "$similarity_metric" "$similarity_scores" "$similarity_matches" "$algorithm.tolerance" "$algorithm.mz_power" "$algorithm.intensity_power"
+    #else
+        python3 ${__tool_directory__}/matchms_wrapper.py --ref "$references" "$queries" "$similarity_metric" "$similarity_scores" "$similarity_matches" "$algorithm.tolerance" "$algorithm.mz_power" "$algorithm.intensity_power"
+    #end if
     ]]> </command>
 
     <inputs>
-        <param label="Reference spectra" name="references" type="data" format="msp" help="Reference mass spectra to match against as library." />
         <param label="Queries spectra" name="queries" type="data" format="msp" help="Query mass spectra to match against references." />
+        <conditional name="symmetric">
+            <param name="is_symmetric" label="Symmetric" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" />
+        <when value="FALSE">
+            <param label="Reference spectra" name="references" type="data" format="msp" help="Reference mass spectra to match against as library." />
+        </when>
+        </conditional>
         <param label="Similarity metric" name="similarity_metric" type="select" display="radio" help="Similarity metric to use for score computation.">
             <option value="CosineGreedy" selected="true">CosineGreedy</option>
             <option value="CosineHungarian">CosineHungarian</option>
+            <option value="ModifiedCosine">ModifiedCosine </option>
         </param>
 
         <section name="algorithm" title="Algorithm Parameters" expanded="true">    
@@ -54,6 +64,20 @@
             <output name="similarity_scores" file="rcx_fill_cosine_hungarian.csv" ftype="csv" checksum="md5$e4063294e0f70e0e966a252ec43a1537"/>
             <output name="similarity_matches" file="matches_rcx_fill_hungarian.csv" ftype="csv" checksum="md5$4aadb19c261fa41907d80f2d326055b6"/>
         </test>
+        <test>
+            <param name="references" value="recetox_gc-ei_ms_20201028.msp" ftype="msp"/>
+            <param name="queries" value="recetox_gc-ei_ms_20201028.msp" ftype="msp"/>
+            <param name="similarity_metric" value="ModifiedCosine"/>
+            <output name="similarity_scores" file="scores_rcx_rcx_modified.csv" ftype="csv"/>
+            <output name="similarity_matches" file="matches_rcx_rcx_modified.csv" ftype="csv"/>
+        </test>
+        <test>
+            <param name="queries" value="fill.msp" ftype="msp"/>
+            <param name="similarity_metric" value="CosineHungarian"/>
+            <param name="is_symmetric" value="TRUE"/>
+            <output name="similarity_scores" file="scores_fill_symmetric_hungarian.csv" ftype="csv" />
+            <output name="similarity_matches" file="matches_fill_symmetric_hungarian.csv" ftype="csv" />
+        </test>
     </tests>
 
     <help><![CDATA[
--- a/matchms_wrapper.py	Wed May 19 11:45:29 2021 +0000
+++ b/matchms_wrapper.py	Tue Jun 08 11:28:40 2021 +0000
@@ -15,7 +15,7 @@
 def main(argv):
     parser = argparse.ArgumentParser(description="Compute MSP similarity scores")
     parser.add_argument(
-        "references_filename", type=str, help="Path to reference MSP library."
+        "--ref", type=str, dest="references_filename", help="Path to reference MSP library."
     )
     parser.add_argument("queries_filename", type=str, help="Path to query spectra.")
     parser.add_argument("similarity_metric", type=str, help='Metric to use for matching.')
@@ -27,8 +27,13 @@
 
     args = parser.parse_args()
 
-    reference_spectra = load_from_msp(args.references_filename)
-    queries_spectra = load_from_msp(args.queries_filename)
+    queries_spectra = list(load_from_msp(args.queries_filename))
+    if(args.references_filename):
+        reference_spectra = list(load_from_msp(args.references_filename))
+        symmetric = False
+    else:
+        reference_spectra = queries_spectra.copy()
+        symmetric = True
 
     if args.similarity_metric == 'CosineGreedy':
         similarity_metric = CosineGreedy(args.tolerance, args.mz_power, args.intensity_power)
@@ -45,6 +50,7 @@
         references=list(reference_spectra),
         queries=list(queries_spectra),
         similarity_function=similarity_metric,
+        is_symmetric=symmetric
     )
 
     query_names = [spectra.metadata['name'] for spectra in scores.queries]
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/matches_fill_symmetric_hungarian.csv	Tue Jun 08 11:28:40 2021 +0000
@@ -0,0 +1,175 @@
+;C001;C002;C003;C004;C005;C006;C007;C008;C009;C010;C011;C012;C013;C014;C015;C016;C017;C018;C019;C020;C021;C022;C023;C024;C025;C026;C027;C028;C029;C030;C031;C032;C033;C034;C035;C036;C037;C038;C039;C040;C041;C042;C043;C044;C045;C046;C047;C048;C049;C050;C051;C052;C053;C054;C055;C056;C057;C058;C059;C060;C061;C062;C063;C064;C065;C066;C067;C068;C069;C070;C071;C072;C073;C074;C075;C076;C077;C078;C079;C080;C081;C082;C083;C084;C085;C086;C087;C088;C089;C090;C091;C092;C093;C094;C095;C096;C097;C098;C099;C100;C101;C102;C103;C104;C105;C106;C107;C108;C109;C110;C111;C112;C113;C114;C115;C116;C117;C118;C119;C120;C121;C122;C123;C124;C125;C126;C127;C128;C129;C130;C131;C132;C133;C134;C135;C136;C137;C138;C139;C140;C141;C142;C143;C144;C145;C146;C147;C148;C149;C150;C151;C152;C153;C154;C155;C156;C157;C158;C159;C160;C161;C162;C163;C164;C165;C166;C167;C168;C169;C170;C171;C172;C173;C174
+C001;57;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C002;0;35;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C003;0;0;26;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C004;0;0;0;24;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C005;0;0;0;0;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C006;0;0;0;0;0;19;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C007;0;0;0;0;0;0;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0
+C008;0;1;0;0;0;0;0;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0
+C009;0;0;0;0;0;0;0;0;14;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C010;0;0;0;0;0;0;0;0;0;13;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C011;0;0;0;0;0;0;0;0;0;0;13;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C012;0;0;0;0;0;0;0;0;0;0;0;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C013;0;0;0;0;0;0;0;0;0;0;0;0;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C014;0;0;0;0;0;0;0;0;0;0;0;0;0;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C015;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C016;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C017;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C018;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C019;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C020;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C021;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C022;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C023;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C024;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C025;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C026;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C027;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;1;0;0;9;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C028;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C029;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0
+C030;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C031;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C032;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0
+C033;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C034;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C035;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C036;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C037;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C038;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C039;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C040;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C041;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C042;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C043;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0
+C044;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C045;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C046;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C047;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C048;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C049;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C050;0;0;0;0;0;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C051;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C052;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C053;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C054;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;0;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C055;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C056;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C057;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C058;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C059;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C060;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C061;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0
+C062;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0
+C063;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C064;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C065;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C066;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C067;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C068;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C069;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C070;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C071;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C072;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C073;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C074;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C075;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C076;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C077;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C078;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C079;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C080;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C081;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C082;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C083;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C084;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C085;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C086;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C087;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C088;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C089;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C090;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C091;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C092;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C093;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C094;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C095;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C096;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C097;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C098;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C099;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0
+C101;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C102;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C103;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0
+C104;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C105;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C106;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C107;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C108;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C109;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C110;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C111;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C112;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C113;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C114;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C115;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0
+C116;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C117;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C118;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C119;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C120;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C121;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C122;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C123;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C124;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C125;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C126;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C127;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C128;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C129;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C130;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C131;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C132;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C133;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C134;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C135;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C136;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C137;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C138;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C139;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C140;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C141;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C142;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C143;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C144;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C145;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C146;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C147;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C148;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C149;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C150;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C151;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C152;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C153;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C154;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0
+C155;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C156;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C157;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C158;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C159;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C160;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0
+C161;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0
+C162;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0
+C163;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0
+C164;0;0;0;0;0;0;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0
+C165;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0
+C166;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0
+C167;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0
+C168;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0
+C169;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0
+C170;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0
+C171;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0
+C172;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0
+C173;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0
+C174;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/matches_rcx_rcx_modified.csv	Tue Jun 08 11:28:40 2021 +0000
@@ -0,0 +1,387 @@
+;Perylene_2H12;Perylene;Phenanthrene_2H10;Phenanthrene;Anthracene;Acenaphthylene;Acenaphthene;Fluoranthene;Pyrene;para-Terphenyl;Retene;Benzo[b]naphtho[2,1-d]thiophene;2,3-Benzofluorene;Benzo[ghi]fluoranthene;Triphenylene;Benzanthracene/Benzophenanthrene;Benzofluoranthene;Benzo(k)fluoranthene;Benzo[e]pyrene;Benzo(a)pyrene;Indeno[1,2,3-cd]pyrene;Benzo(g,h,i)perylene;Anthanthrene;Dibenzanthracene;Coronene;Dicofol;Benzophenone;2-tert-Butyl-4-methoxyphenol;Butylated hydroxytoluene;Bumetrizole;4-Methylbenzophenone;2,4,6-Tribromophenol;2,6-Dichloro-4-nitroaniline;1-Methylphenanthrene;Triclosan;Drometrizole;Enzacamene;2,4-Di-tert-butyl-6-(5-chloro-2H-benzotriazol-2-yl)phenol;Octrizole;1,2,7,9-Tetrachlorodibenzofuran;2,2',3,4,5,5',6-Heptachlorobiphenyl;2,4,6-Trichlorobiphenyl;2,2',3,3',4,5',6,6'-Octachlorobiphenyl;Mirex;beta-Hexachlorocyclohexane;alpha-1,2,3,4,5,6-Hexachlorocyclohexane;Lindane;delta-Hexachlorocyclohexane;epsilon-Hexachlorocyclohexane;Pentachlorobenzene;Hexachlorobenzene;2,4'-Dichlorodiphenyldichloroethylene;2,4'-Dichlorodiphenyldichloroethane;2,4'-Dichlorodiphenyltrichloroethane;1,2,7,9-Tetrachlorodibenzo-p-dioxin;2,4,4'-Trichlorobiphenyl;2,2',4,5,5'-Pentachlorobiphenyl;2,3',4,4',5-Pentachlorobiphenyl;2,2',3,4,4',5'-Hexachlorobiphenyl;2,2',4,4',5,5'-Hexachlorobiphenyl;2,2',3,4,4',5,5'-Heptachlorobiphenyl;2,2',5,5'-Tetrachlorobiphenyl;2,3',4,6-Tetrachlorobiphenyl;2,3',5',6-Tetrachlorobiphenyl;2,2',3,4',5-Pentachlorobiphenyl;2,3,3',4,5-Pentachlorobiphenyl;3,3',4,5,5'-Pentachlorobiphenyl;2,3',4,4',5',6-Hexachlorobiphenyl;2,3,3',4,5,6-Hexachlorobiphenyl;2,3,3',4',5',6-Hexachlorobiphenyl;2,3,3',4',5,6-Hexachlorobiphenyl;2,3,3',4',5,5',6-Heptachlorobiphenyl;cis-Prallethrin;trans-Prallethrin;cis-Resmethrin;trans-Resmethrin;cis-Tetramethrin;trans-Tetramethrin;Bifenthrin;Fenpropathrin;cis-Phenothrin;trans-Phenothrin;cis-Cyphenothrin;trans-Cyphenothrin;Flucythrinate_isomer1;Flucythrinate_isomer2;cis-Fenvalerate;trans-Fenvalerate;Deltamethrin;Chlorpyrifos oxon;lambda-Cyhalothrin;Tefluthrin;Transfluthrin;cis-Permethrin;trans-Permethrin;cis-Allethrin;trans-Allethrin;cis-Cypermethrin_isomer1;trans-Cypermethrin_isomer1;cis-Cypermethrin_isomer2;trans-Cypermethrin_isomer2;cis-Cyfluthrin_isomer1;trans-Cyfluthrin_isomer1;cis-Cyfluthrin_isomer2;trans-Cyfluthrin_Isomer2;1,2,3,4,7,8-Hexachlorodibenzo-p-dioxin;1,2,3,4,6,7,8-Heptachlorodibenzo-p-dioxin;Octachlorodibenzo-p-dioxin;Octachlorodibenzofuran;1,2,3,7,8-Pentachlorodibenzofuran;1,2,3,4,7,8-Hexachlorodibenzofuran;1,2,3,4,6,7,8-Heptachlorodibenzofuran;2,3,7,8-Tetrachlorodibenzofuran;2,3,7,8-Tetrachlorodibenzo-p-dioxin;1,2,3,7,8-Pentachlorodibenzo-p-dioxin;2,3,4,5-Tetrabromo-6-chlorotoluene;2,3,4,5,6-Pentabromotoluene;2,3,4,5,6-Pentabromoethylbenzene;2,3,5,6-Tetrabromo-p-xylene;Allyl 2,4,6-tribromophenyl ether;2-Bromoallyl(2,4,6-tribromophenyl) ether;Pentabromobenzene;Hexabromobenzene;2,3,4,5,6-Pentabromobenzyl alcohol;2-Ethylhexyl 2,3,4,5-Tetrabromobenzoate;syn-Dechlorane plus;anti-Dechlorane plus;alpha-1,2-Dibromo-4-(1,2-dibromoethyl)cyclohexane;beta-1,2-Dibromo-4-(1,2-dibromoethyl)cyclohexane;1,2,5,6-Tetrabromocyclooctane;1,1-Dibromo-2,3,3,4,4,5-hexachloro-2-cyclopenta-2,4-dien-1-ylcyclooctane;alpha-Amylcinnamaldehyde;trans-Cinnamaldehyde;Citral (Geranial);1-Fluronaphthalene;alpha-Hexylcinnamaldehyde;Lilial;alpha-Amylcinnamyl alcohol;Eugenol;Isoeugenol;4-Methoxybenzyl alcohol;Methyleugenol;Cinnamyl alcohol;Benzyl alcohol;Estragole;Benzyl benzoate;Benzyl cinnamate;Benzyl salicylate;Camphor;Eucalyptol;Coumarin;Limonene;Isomethyl-alpha-ionone;delta-Iraldeine;Safrole;Cashmeran;Celestolide;Phantolide;Tonalide;Traseolide;Galaxolide;Aldrin;Endosulfan;Heptachlor;cis-Heptachlor epoxide;Endosulfan sulphate;Endrin ketone;trans-Chlordane;cis-Chlordane;Endrin aldehyde;Endrin;4,4'-Dichlorodiphenyldichloroethylene;Methoxychlor;4,4'-Dichlorodiphenyldichloroethane;4,4'-Dichlorodiphenyltrichloroethane;Tris(4-tert-butylphenyl) phosphate;Tri-n-butyl-phosphate;Tris(1,3-dichloro-2-propyl)phosphate;Tri-o-cresyl phosphate;Tri-m-cresyl phosphate;Tri-p-cresyl-phosphate;Isodecyl diphenyl phosphate;Tris(isopropylphenyl)phosphate;Tris(3,5-xylenyl)phosphate;Tris(2-butoxyethyl) phosphate;Tris(2-chloroethyl) phosphate;Tris(1-chloro-2-propyl) phosphate;Tris(2-ethylhexyl) phosphate;Triphenyl phosphate;1,2-Benzanthraquinone;1,4-Chrysenequinone;Hydroxychrysene;1-Nitronaphthalene;Hydroxyfluoren-9-one;1,4-Naphthoquinone;2-Methylnaphthalene;1-Methylnaphthalene;2,6-Dimethylnaphthalene;1,3-Dimethylnaphthalene;1,4-Dimethylnaphthalene;1,5-Dimethylnaphthalene;1,2-Dimethylnaphthalene;1,8-Dimethylnaphthalene;7,12-Dimethylbenz[a]anthracene;2,4-D butyl ester;Chlorferone;Carbofuran phenol;Diazinone;Dimethachlor;Alachlor;Chlorpyrifos;Fenoxaprop-ethyl;Atrazine;Malathion;Metazachlor;Metolachlor;Methyl parathion;Pendimethalin;Phosmet;Terbufos;Terbutylazine;Trifluralin;2,2',3,4,4',5',6-Heptabromodiphenyl ether;2-Chlorobiphenyl;2,3-Dichlorobiphenyl;2,2',5-Trichlorobiphenyl;2,4',5-Trichlorobiphenyl;2,2',3,5'-Tetrachlorobiphenyl;2,3',4,4'-Tetrachlorobiphenyl;2,2',3,4',5,5',6-Heptachlorobiphenyl;2,2',3,4,4',5',6-Heptachlorobiphenyl;2,2',3,3',4,4',5-Heptachlorobiphenyl;2,2',3,4,5'-Pentachlorobiphenyl;2,3,3',4',6-Pentachlorobiphenyl;2,2',3,3',4,4',5,5',6-Nonachlorobiphenyl;2,2',3,5,5',6-Hexachlorobiphenyl;2,2',3,4',5,5',6-Heptachloro-4-methoxybiphenyl;2,2',3',4,4',5-Hexachloro-3-methoxybiphenyl;2,2',3,4',5,5'-Hexachloro-4-methoxybiphenyl;2,2',3,4,5,5'-Hexachlorobiphenyl;Praziquantel;Mexacarbate;Aminocarb;Isocarbophos;Acephate;Carbaryl;Mevinphos;Dicrotophos;Monocrotophos;Dimethoate;Dimethomorph _isomer1;Dimethomorph_isomer2;Vamidothion;Temephos;Methomyl;Ethiofencarb;Furathiocarb;Methabenzthiazuron;Methiocarb;Tebuthiuron;Iprovalicarb isomer 2;Propham;Propoxur;Pyraclostrobin;Thiobencarb;Isoprocarb;Linuron;Metobromuron;Monolinuron;Pirimicarb;Siduron;Bendiocarb;Bifenazate;Carbofuran;Cycluron;Diethofencarb;Diflubenzuron;Fenobucarb;Dioxacarb;Promecarb;Fenoxycarb;Indoxacarb;Iprovalicarb isomer 1;Ametryn;Azoxystrobin;Benalaxyl;Benzoximate;Boscalid;Butafenacil;Carbetamide;Carfentrazone-ethyl;Fenhexamid;Flutolanil;Furalaxyl;Kresoxim-methyl;Mepanipyrim;Mepronil;Metalaxyl;Myclobutanil;Oxadixyl;Picoxystrobin;Piperonyl butoxide;Prometon;Pyracarbolid;Pyrimethanil;Pyriproxyfen;Quinoxyfen;Triadimefon;Trifloxystrobin;Zoxamide;Secbumeton;Fenazaquin;Spiroxamine_isomer1;Spiroxamine_isomer2;Amitraz;Tebufenpyrad;Fludioxonil;Terbumeton;Rotenone;Enilconazole;Acibenzolar-S-methyl;Bupirimate;Buprofezin;Carboxin;Ethofumesate;Fenamidone;Fipronil;Flufenacet;Mefenacet;Methoprotryne;Metribuzin;Prometryn;Propargite_isomer1;Propargite_isomer2;Thiofanox;Cyazofamid;Ethiprole;Pyridaben;Thiabendazole;Tricyclazole;Simetryn;Sulfentrazone;Terbutryn;Bitertanol_isomer1;Bitertanol_isomer2;Bromuconazole_isomer1;Bromuconazole_isomer2;Cyproconazole_isomer1;Cyproconazole_isomer2;Diclobutrazol;Difenoconazole_isomer1;Difenoconazole_isomer2;Diniconazole;Epoxiconazole;Etoxazole;Fenarimol;Fluquinconazole;Flusilazole;Flutriafol;Hexaconazole;Nuarimol;Paclobutrazol;Penconazole;Propiconazole_isomer1;Propiconazole_isomer2;Tebuconazole;Tetraconazole;Triadimenol_isomer1;Triadimenol_isomer2;Metconazole;Triflumizole;Triticonazole;Ipconazole;Fuberidazole;Fenpropimorph_isomer1;Fenpropimorph_isomer2;Spirodiclofen;Spiromesifen;Spirotetramat;17-alpha-Ethynylestradiol;Bisphenol A;4-tert-Octylphenol;Estrone;17-beta-Estradiol;Progesterone;Testosterone
+Perylene_2H12;33;10;9;8;8;5;7;8;8;11;7;8;9;8;9;11;9;10;12;13;10;10;18;9;9;8;7;8;7;13;4;9;5;11;10;8;15;11;2;6;7;6;6;0;4;5;5;5;5;8;7;4;3;4;8;4;5;5;6;9;7;7;6;7;6;4;5;5;5;5;4;4;5;8;8;3;5;0;0;9;5;5;4;4;6;6;7;9;11;5;3;1;5;3;3;6;3;6;6;10;12;3;7;12;9;7;9;9;10;6;7;8;6;6;6;10;8;9;7;17;6;7;9;6;2;4;1;2;1;3;6;10;4;8;4;5;7;7;6;9;7;8;10;5;8;2;6;2;3;5;3;6;2;4;6;11;6;5;6;5;7;12;3;6;6;6;7;5;6;8;8;7;6;0;4;4;2;2;7;9;9;3;11;7;3;8;7;0;6;8;14;10;8;3;14;7;7;13;13;11;12;12;11;16;9;8;9;10;4;10;13;7;13;8;6;8;6;9;1;2;11;10;8;4;5;8;5;8;6;6;7;7;6;4;6;7;9;10;9;7;9;5;3;5;11;1;2;2;7;1;8;8;1;4;21;5;4;6;3;3;2;5;1;2;7;0;10;4;5;2;1;1;10;3;4;5;2;0;1;1;6;14;2;13;6;7;1;5;0;2;5;5;5;9;7;9;5;10;8;5;8;2;6;2;6;6;7;5;7;4;5;4;0;0;8;11;4;5;4;6;6;7;8;6;6;9;3;1;3;10;4;10;5;5;0;4;14;6;6;8;10;7;8;0;1;1;0;5;4;2;3;2;7;7;17;9;1;6;1;5;14;5;3;5;2;6;1;3;10;8;11;10;11;6;2;2;14;10;17;13;3;0;11;11;18;14
+Perylene;10;19;8;9;10;6;7;10;8;11;6;6;9;13;12;16;13;16;19;19;11;14;13;15;7;5;6;5;2;6;4;4;11;10;7;5;9;4;5;3;6;7;6;0;4;2;3;3;3;5;4;10;4;4;5;6;4;4;5;6;8;7;6;5;6;3;4;5;6;5;5;7;2;4;3;2;1;1;0;5;3;2;4;2;2;1;6;6;5;9;0;1;6;0;0;3;2;2;1;5;5;3;3;4;4;6;8;7;7;5;5;6;5;8;6;8;6;6;7;8;3;6;8;6;2;3;3;0;0;0;6;1;5;3;7;2;2;3;5;4;7;5;7;6;5;1;1;2;2;5;3;3;3;4;6;7;5;5;4;3;6;11;2;7;6;3;8;4;7;7;7;10;2;3;5;4;3;3;4;6;5;5;4;7;6;8;4;2;8;6;9;8;8;4;11;8;9;10;12;9;10;9;10;16;11;6;6;12;1;8;10;8;7;8;1;5;12;4;1;1;4;6;6;7;9;8;6;7;7;9;8;8;4;3;11;7;6;4;5;7;8;5;2;5;7;2;4;5;9;4;5;5;3;8;10;5;2;7;2;2;0;2;0;0;8;1;9;5;8;4;3;3;4;3;4;6;3;1;2;0;0;12;0;9;3;1;2;5;3;1;4;7;4;3;3;5;2;8;5;1;2;0;9;4;4;3;6;4;4;3;7;0;1;2;3;4;4;7;6;2;2;5;7;3;4;4;3;4;0;7;3;9;2;1;2;2;6;2;6;5;7;9;8;3;1;3;4;6;7;5;3;2;5;5;8;8;2;4;4;5;9;4;6;4;0;8;2;3;4;9;13;6;13;4;2;1;7;6;9;12;4;1;11;11;10;8
+Phenanthrene_2H10;9;8;17;9;9;6;7;8;7;10;7;5;9;7;8;9;8;9;9;9;6;8;12;8;8;2;7;6;3;10;7;9;12;10;7;7;14;6;2;5;7;6;12;0;6;5;5;4;4;6;5;4;3;3;5;5;6;5;5;3;8;6;5;5;6;4;5;4;5;4;3;5;5;4;4;6;2;2;1;5;7;7;6;4;9;7;4;3;6;6;1;2;3;4;5;6;4;5;5;5;10;5;3;6;1;5;7;7;7;4;5;6;5;4;4;7;5;7;8;7;7;6;7;8;3;2;1;2;2;2;7;10;7;8;4;4;7;5;9;7;11;10;13;7;9;4;6;2;6;6;6;7;4;9;8;11;7;6;8;3;8;9;4;6;5;3;8;5;6;10;9;7;1;1;3;2;0;4;8;7;7;3;7;5;0;4;3;0;5;8;11;9;10;8;10;5;6;9;10;9;9;10;9;10;6;7;8;8;5;13;8;6;12;8;6;9;9;13;3;0;11;6;6;6;6;7;6;6;4;7;8;8;6;4;8;7;5;4;4;7;10;4;4;4;11;1;2;2;12;3;5;5;0;9;13;6;4;9;1;5;4;4;0;1;5;2;8;9;10;2;3;4;7;3;6;5;2;2;6;0;4;8;4;10;5;4;1;5;0;3;6;7;2;4;4;4;4;12;6;8;8;2;6;2;7;7;4;5;4;1;3;2;1;0;5;8;4;5;7;1;5;7;12;4;8;5;3;1;3;5;3;9;4;2;3;5;11;2;9;9;8;6;7;1;1;0;0;3;1;0;0;0;1;7;10;7;1;5;3;6;9;2;4;1;1;2;0;2;7;6;7;7;7;7;1;1;4;10;13;11;4;1;12;7;17;13
+Phenanthrene;8;9;9;19;18;12;11;13;12;13;9;5;10;9;12;12;8;10;10;11;8;8;13;9;13;9;11;7;9;9;9;7;12;11;14;7;14;4;2;7;7;11;10;0;9;7;7;7;7;6;7;13;14;12;8;11;6;5;5;6;7;9;10;8;6;6;5;5;6;5;5;4;4;7;4;5;2;0;6;13;5;4;11;10;7;7;10;10;13;7;10;4;7;4;4;3;2;12;12;9;15;9;8;11;9;8;9;9;8;7;6;6;8;8;8;9;8;11;13;9;3;8;8;7;6;1;2;0;0;0;11;6;8;4;9;9;3;3;9;10;8;6;12;9;8;3;8;2;2;3;6;4;6;5;10;12;10;9;8;6;11;12;10;8;11;8;12;5;7;13;13;13;8;14;12;4;1;3;11;8;8;3;8;4;3;2;7;0;7;16;16;8;12;9;17;10;10;14;11;12;12;12;14;9;15;7;5;10;10;6;9;10;14;9;2;10;12;14;1;3;8;8;7;15;13;11;11;9;9;5;6;6;5;5;7;8;8;9;6;7;7;9;9;5;10;2;1;1;12;7;9;9;4;3;14;6;5;8;6;6;2;3;1;2;6;2;14;8;10;4;1;3;13;6;6;9;3;2;4;5;2;14;2;13;6;6;3;7;1;2;6;8;3;5;3;5;3;8;13;3;6;6;8;2;4;4;5;4;7;2;9;0;1;1;3;7;8;5;8;6;4;9;9;8;5;6;6;7;3;8;8;10;7;6;3;6;15;2;9;10;14;11;9;4;4;3;4;4;4;6;3;4;7;11;12;15;0;12;5;13;16;8;7;6;3;5;7;7;13;14;12;13;14;7;1;1;10;5;15;8;7;1;13;12;16;13
+Anthracene;8;10;9;18;21;12;12;14;13;14;11;6;11;9;13;12;10;11;12;13;8;8;14;10;14;9;13;9;11;11;11;9;13;12;15;9;17;6;3;7;9;11;11;0;11;8;7;7;8;7;8;13;15;12;7;11;6;5;7;8;9;9;10;8;6;6;5;7;7;7;5;6;5;9;5;8;3;1;7;14;6;6;14;12;9;7;12;13;15;7;11;5;9;5;5;5;2;13;13;10;18;11;9;12;10;8;9;9;8;6;6;6;7;8;7;9;8;11;13;11;3;7;7;8;6;3;5;0;0;0;13;7;10;5;9;10;5;6;11;11;10;8;14;11;10;4;9;3;3;5;7;6;8;7;12;14;11;10;9;6;12;13;9;7;11;8;13;5;8;14;15;13;9;15;12;5;2;3;12;9;9;3;10;5;4;5;9;0;6;17;18;9;14;9;17;11;12;15;12;14;14;13;15;11;16;8;7;11;10;6;9;11;13;9;3;9;15;16;1;3;9;11;9;18;14;11;10;9;9;7;8;8;6;5;10;10;8;9;7;9;8;11;10;6;10;4;1;1;14;8;11;11;5;3;15;7;7;9;7;6;2;4;2;2;7;3;15;9;11;4;1;4;15;8;6;12;3;3;6;5;3;15;2;14;6;8;5;7;2;3;6;8;4;7;4;6;4;10;14;4;8;8;8;2;5;5;4;5;8;2;10;1;1;1;4;8;9;6;10;7;5;10;9;9;7;7;7;8;4;10;9;11;9;8;3;6;16;3;10;10;15;12;9;4;4;4;5;6;6;8;5;5;8;14;14;16;1;12;5;14;17;11;8;8;4;7;8;7;15;16;14;16;16;8;3;2;11;6;16;9;8;2;15;13;18;15
+Acenaphthylene;5;6;6;12;12;19;14;10;8;8;6;5;7;8;9;7;5;6;6;6;5;5;12;6;8;7;9;11;11;12;8;10;10;9;15;9;15;7;3;10;9;15;5;0;9;10;9;8;10;4;5;10;12;9;10;15;11;10;9;10;8;13;13;13;11;11;10;9;8;9;7;7;10;10;9;10;5;3;5;12;7;8;12;11;7;6;9;12;14;9;9;4;11;5;7;8;5;12;12;11;17;11;10;9;9;10;11;10;9;11;9;8;10;9;10;7;10;13;13;13;5;8;7;7;6;5;6;1;5;1;15;7;10;6;12;11;7;9;11;13;10;10;15;7;10;4;8;4;6;8;6;6;8;7;11;10;7;6;7;6;10;15;9;6;12;10;14;9;11;11;14;12;5;11;10;6;3;5;8;7;7;4;8;8;5;7;8;1;6;15;17;6;15;8;16;11;9;12;13;11;13;12;12;7;14;6;10;13;5;6;10;7;8;11;4;8;12;8;3;3;7;7;8;17;17;15;14;13;13;8;7;7;11;10;6;10;12;12;11;9;6;9;6;7;7;1;2;2;12;7;6;5;5;3;14;7;10;8;6;4;6;7;1;3;6;5;14;9;12;3;4;3;13;6;5;10;3;7;10;9;3;12;6;10;4;6;6;5;1;6;9;8;3;8;6;7;5;14;10;5;6;5;9;3;7;4;5;4;6;3;7;1;2;3;5;8;13;6;11;6;8;7;9;7;10;6;6;7;6;8;6;9;7;6;5;8;13;4;8;7;11;14;8;4;4;3;4;7;7;6;6;5;11;10;9;11;1;7;4;8;14;11;8;8;5;7;6;6;12;13;13;12;13;8;4;3;16;7;11;9;6;2;9;9;13;12
+Acenaphthene;7;7;7;11;12;14;18;9;8;9;8;4;7;7;9;9;5;7;7;7;7;7;12;7;9;8;12;5;7;11;6;5;10;9;13;7;14;4;2;7;5;12;8;0;6;5;5;5;5;4;5;8;8;8;6;12;6;5;6;8;6;9;9;8;6;6;5;6;6;6;6;5;5;7;6;6;4;2;6;13;8;6;11;10;8;7;11;12;11;5;8;2;8;7;7;3;5;10;12;9;16;8;7;8;10;6;8;7;7;7;5;4;7;6;6;8;7;10;12;13;2;6;7;10;3;2;2;0;1;0;10;8;7;6;9;7;3;4;5;10;7;5;12;6;6;4;6;1;3;3;6;3;3;4;9;6;7;7;7;4;8;10;9;5;9;8;9;6;8;9;9;10;6;9;8;5;2;2;8;7;6;4;8;6;7;3;5;0;6;12;13;7;10;9;12;9;8;12;12;11;13;11;14;9;11;7;6;11;2;4;7;9;9;9;3;4;10;5;1;2;4;5;6;16;15;12;12;9;9;5;5;5;5;5;4;7;8;10;8;6;5;6;4;3;9;2;1;3;9;3;10;8;4;2;15;5;7;7;5;4;1;2;2;3;4;1;10;5;8;6;1;5;14;2;5;9;2;2;6;5;1;13;1;9;2;1;6;7;1;3;7;6;3;3;1;5;2;6;13;5;3;2;7;2;4;2;4;5;6;1;7;0;2;3;2;4;9;8;6;4;5;8;6;3;6;2;4;6;2;7;6;9;3;2;3;9;12;2;5;6;8;11;8;4;5;1;2;5;6;5;4;5;6;11;5;10;1;9;4;7;11;9;7;5;3;7;5;6;9;14;12;11;14;7;3;2;10;8;8;10;7;0;10;7;10;10
+Fluoranthene;8;10;8;13;14;10;9;17;15;13;10;5;9;14;14;13;7;10;10;10;7;8;9;9;8;5;5;6;5;6;4;3;11;11;11;4;12;4;1;3;4;7;8;0;7;5;5;5;5;5;6;11;11;13;5;7;5;4;3;5;4;7;7;6;5;5;4;4;5;4;3;3;0;4;2;1;2;0;1;6;0;1;2;4;5;4;4;4;5;8;3;5;7;1;1;2;0;4;3;5;8;6;5;5;6;7;8;8;8;5;5;6;5;7;7;9;9;11;12;8;5;7;8;7;2;4;5;0;1;0;10;1;5;2;11;8;4;6;5;6;6;5;8;5;4;1;4;1;2;3;3;2;7;4;6;11;10;9;11;5;11;10;4;7;8;7;11;8;9;11;11;13;4;11;12;4;3;3;6;6;6;1;5;4;6;2;6;1;5;17;17;7;10;5;11;7;8;10;9;10;10;9;10;10;12;6;5;8;4;5;7;9;10;11;2;5;6;8;0;3;6;11;6;10;7;7;7;7;7;5;4;4;4;4;5;5;6;6;5;5;7;8;5;5;11;1;1;3;11;6;9;9;2;8;11;4;3;6;3;5;3;3;0;1;7;1;12;9;10;6;2;2;11;5;6;7;3;1;3;1;3;11;3;8;8;4;6;6;0;2;6;6;3;3;1;5;2;6;7;3;4;2;9;2;3;2;6;5;3;3;8;0;2;3;2;6;7;4;4;7;3;5;8;7;5;5;3;2;1;10;6;10;6;5;3;6;11;2;6;6;8;11;7;2;0;4;4;2;3;7;6;5;5;4;12;11;1;8;4;8;12;6;8;6;5;4;5;7;8;7;14;9;8;5;1;1;6;6;11;12;3;2;12;13;14;14
+Pyrene;8;8;7;12;13;8;8;15;16;12;10;5;8;13;13;12;6;8;8;8;7;8;8;8;8;3;4;6;5;6;4;3;9;10;10;4;11;4;1;3;3;6;7;0;6;4;4;4;4;5;5;9;9;11;5;6;4;4;3;5;4;6;6;5;4;4;4;4;4;4;3;3;0;4;2;1;2;0;0;5;0;1;2;3;5;3;3;4;4;6;2;4;6;1;1;2;0;3;2;4;7;5;4;5;6;7;8;8;8;5;6;7;5;7;7;10;9;10;11;8;5;7;8;7;2;4;5;0;1;0;9;1;4;2;9;7;4;5;4;5;6;4;7;5;3;1;3;1;2;3;3;2;6;3;4;9;9;8;10;5;10;9;3;7;7;7;9;7;8;10;10;11;4;9;10;3;3;2;5;6;6;1;4;4;6;2;6;1;5;16;16;7;9;5;9;6;7;9;9;9;10;8;9;10;11;6;5;7;4;3;6;8;10;9;2;5;5;7;0;3;5;9;6;9;6;6;6;6;6;5;4;4;4;4;4;5;7;6;6;5;6;7;5;5;11;1;1;2;10;6;7;7;2;7;10;4;3;5;3;5;3;3;0;0;6;0;11;8;9;6;2;2;10;4;6;7;3;1;3;1;3;9;3;8;6;3;5;6;0;2;5;5;3;3;1;5;2;6;5;3;3;1;8;2;3;2;5;4;3;3;7;0;2;3;2;6;6;3;2;5;3;5;6;7;5;5;3;1;1;10;6;10;6;5;2;5;9;2;5;5;8;10;7;1;0;3;3;1;2;7;5;4;5;3;10;9;1;8;3;6;10;6;7;5;4;3;5;6;7;5;12;7;6;4;1;1;6;6;11;10;3;1;11;12;12;12
+para-Terphenyl;11;11;10;13;14;8;9;13;12;25;14;12;10;11;15;15;11;11;13;13;7;10;16;10;12;4;10;8;12;6;10;5;12;15;10;8;16;8;2;6;7;10;12;0;6;3;3;3;3;6;5;6;12;12;5;6;6;4;5;6;7;10;8;7;6;4;4;4;5;4;3;5;5;9;6;6;5;0;4;9;5;5;6;6;10;9;9;11;12;7;4;3;9;4;4;3;3;7;7;9;16;10;12;8;14;6;8;7;9;5;5;7;5;7;7;8;7;10;8;11;6;6;8;10;2;6;4;1;3;0;13;8;9;10;4;8;5;5;11;11;10;11;13;9;11;4;5;1;3;8;5;9;5;6;8;13;12;9;16;6;16;12;4;7;7;4;11;6;7;13;11;9;10;7;11;7;2;5;11;8;6;4;15;8;7;7;7;1;12;14;19;13;15;7;18;7;8;18;18;17;19;17;18;20;12;11;12;15;5;12;12;13;14;14;6;8;14;12;0;4;7;13;6;9;12;8;7;10;8;7;7;7;6;4;7;7;8;10;10;7;10;7;6;7;15;3;4;3;16;2;12;12;1;11;17;6;3;9;4;5;2;4;2;0;7;2;11;7;9;6;2;4;14;4;7;9;5;4;3;3;3;15;2;15;9;4;7;11;1;4;6;6;3;8;3;7;4;12;10;5;3;2;12;2;6;6;3;4;4;4;10;2;1;3;4;10;7;9;6;10;5;12;8;6;7;6;3;6;1;15;9;15;8;8;6;8;12;5;8;6;15;14;15;5;4;5;4;7;6;7;6;4;6;9;17;13;0;11;3;13;15;8;10;4;3;7;5;6;9;13;12;17;15;8;2;3;9;11;20;15;9;2;16;16;23;24
+Retene;7;6;7;9;11;6;8;10;10;14;43;15;15;4;9;9;5;4;7;7;3;4;11;6;14;7;9;22;11;17;12;4;19;17;14;15;32;12;5;4;8;15;21;0;8;9;8;8;9;9;8;11;15;13;6;10;9;6;9;5;10;11;11;8;9;5;5;9;10;9;5;9;8;10;7;7;6;4;7;14;7;5;10;6;12;5;9;9;16;12;6;8;10;7;6;6;5;11;11;13;21;14;14;16;20;7;5;4;5;4;5;10;4;6;5;5;3;12;7;14;6;4;2;17;5;7;6;4;4;4;16;24;9;26;6;6;16;12;24;19;16;25;18;10;24;12;19;4;15;20;5;19;11;17;18;23;14;13;15;9;17;18;7;6;9;8;15;9;9;23;16;8;4;15;12;14;1;8;17;11;10;3;28;10;6;18;11;0;8;20;30;21;27;10;19;8;7;19;20;15;19;16;19;22;11;8;26;19;4;15;13;17;27;17;8;6;20;26;2;7;21;18;8;13;12;13;12;12;8;10;10;10;9;6;11;9;15;13;16;9;12;10;7;12;22;6;5;9;23;8;16;15;5;11;29;7;10;11;8;9;4;5;6;3;9;7;16;10;11;7;2;6;16;6;11;14;6;6;8;5;8;25;4;23;16;8;5;13;1;4;7;9;3;9;2;10;6;22;20;12;13;10;18;2;8;7;5;6;8;9;15;3;1;1;12;12;5;18;12;11;7;14;16;9;10;7;5;6;5;19;19;22;9;6;4;18;22;5;8;11;18;20;24;2;1;12;11;2;6;10;4;3;20;19;26;26;2;17;12;13;24;15;16;9;9;12;13;5;14;24;28;30;28;7;2;3;16;16;26;24;16;4;21;17;35;36
+Benzo[b]naphtho[2,1-d]thiophene;8;6;5;5;6;5;4;5;5;12;15;23;12;6;9;9;5;6;6;6;5;6;7;7;9;5;4;12;7;8;8;6;8;13;12;9;17;8;5;7;8;13;11;0;3;2;1;1;2;10;7;8;9;11;6;11;10;8;10;8;9;10;11;10;10;6;6;9;10;9;6;8;2;5;3;5;5;2;2;6;7;3;4;3;10;4;6;6;8;9;2;2;7;2;3;6;1;6;6;6;12;6;7;8;8;11;10;10;9;9;10;10;9;9;9;8;7;6;7;11;9;6;5;7;1;10;8;3;4;3;15;12;5;13;8;8;11;8;13;11;10;16;13;6;13;7;9;2;9;11;4;6;6;7;10;15;9;10;12;8;12;12;2;11;12;7;13;11;12;11;14;9;4;9;10;8;2;1;10;5;5;2;14;6;2;10;9;0;7;12;16;15;16;2;12;6;5;7;12;7;8;5;7;14;9;6;14;10;1;13;10;14;16;10;5;8;12;13;1;4;8;13;7;7;11;14;12;11;10;10;10;9;9;7;9;9;11;12;10;9;11;8;6;8;15;2;3;5;14;6;8;8;4;10;15;5;8;6;5;2;5;3;0;2;7;3;12;9;6;5;1;4;7;7;4;6;5;1;3;6;7;14;5;15;8;7;3;10;1;5;9;6;2;6;6;5;3;14;5;9;10;5;9;2;5;5;8;1;8;5;7;4;0;0;10;10;4;7;5;6;1;5;7;5;12;6;3;2;3;14;5;14;5;5;3;6;11;6;10;6;11;15;11;1;1;3;7;1;1;6;3;5;11;6;17;14;2;7;5;11;15;7;11;4;5;7;3;4;7;11;13;14;11;5;2;4;5;10;15;15;8;4;13;15;19;18
+2,3-Benzofluorene;9;9;9;10;11;7;7;9;8;10;15;12;21;9;11;12;9;10;11;11;8;8;10;9;11;4;8;5;5;7;5;7;11;19;6;6;12;3;1;3;6;10;13;1;3;3;3;3;3;9;8;8;4;6;3;6;5;4;5;5;9;6;5;4;5;4;4;5;5;5;4;6;4;6;3;2;4;3;0;4;2;2;4;3;7;4;3;3;5;7;1;2;6;2;2;4;3;4;3;4;7;6;7;4;10;7;9;8;7;5;5;5;5;6;6;9;7;7;7;8;6;9;7;11;2;2;2;6;6;5;10;8;8;7;6;2;4;2;8;8;11;10;9;8;7;3;3;1;5;7;4;5;5;5;8;8;4;5;5;3;7;9;4;7;9;5;10;5;6;10;8;10;4;5;5;6;1;0;9;6;6;2;9;7;3;5;4;0;7;12;11;21;6;7;12;9;10;11;10;10;10;9;10;15;9;7;8;10;5;9;9;7;11;7;5;8;8;11;0;1;9;9;10;5;8;8;8;7;5;9;9;10;5;4;11;7;6;5;6;7;6;5;3;6;9;0;1;2;10;2;6;6;0;8;13;7;5;10;1;2;1;2;1;0;3;2;10;5;7;2;1;2;8;3;5;5;2;2;4;2;2;8;1;10;3;2;1;4;0;1;6;5;3;5;4;5;3;7;6;3;2;2;5;2;5;4;5;3;5;3;5;0;0;0;5;5;4;2;5;8;6;6;7;4;6;5;4;4;1;6;2;6;6;4;2;9;12;5;8;9;7;10;4;0;2;5;5;3;0;1;2;3;3;10;9;15;2;7;3;10;10;1;8;1;1;1;5;2;3;7;10;10;7;7;1;1;3;7;10;12;8;3;12;12;16;16
+Benzo[ghi]fluoranthene;8;13;7;9;9;8;7;14;13;11;4;6;9;18;14;16;12;13;14;14;7;8;10;11;6;4;6;4;4;5;4;5;9;9;8;5;12;4;3;5;5;9;8;3;5;5;5;5;5;6;5;5;5;4;6;7;7;5;6;7;5;10;8;9;8;4;6;7;6;7;5;4;0;3;4;0;3;1;0;4;1;3;3;3;4;4;5;6;7;7;2;1;8;1;0;3;2;5;2;9;6;8;9;7;5;9;10;9;7;6;6;6;5;8;7;8;7;8;9;10;4;7;8;5;4;3;4;0;1;0;8;2;4;3;8;1;5;6;4;4;6;5;6;6;4;2;2;1;2;5;3;3;5;3;5;9;6;6;9;3;10;10;3;9;10;6;7;7;8;9;9;8;8;2;5;4;3;3;8;10;9;2;5;8;8;4;3;3;5;9;11;8;7;5;9;7;8;9;9;7;9;9;8;15;12;6;4;8;2;8;10;8;11;8;1;6;8;4;0;2;3;2;6;8;7;10;7;10;9;8;5;5;7;5;6;8;5;7;7;8;7;6;2;6;11;1;3;5;10;3;8;8;2;7;9;4;2;6;1;2;2;3;1;1;7;1;10;8;9;5;3;3;6;4;6;7;3;1;3;0;4;10;2;10;3;2;3;6;0;3;7;6;2;7;2;6;4;8;4;6;0;1;8;2;4;2;7;4;4;4;7;0;1;1;3;4;6;5;7;3;2;6;7;3;4;5;2;3;1;10;5;12;2;1;3;7;13;3;8;7;9;8;10;4;2;3;4;8;9;4;2;2;4;5;10;10;1;4;4;6;11;3;1;4;4;3;1;6;7;6;10;6;8;5;1;1;5;9;13;15;5;2;12;12;13;10
+Triphenylene;9;12;8;12;13;9;9;14;13;15;9;9;11;14;21;17;12;13;14;14;8;10;12;13;8;7;5;4;6;8;4;5;12;14;11;6;12;5;2;4;6;9;10;1;6;6;6;6;6;6;6;8;10;11;7;7;6;4;5;6;6;11;8;8;6;4;4;5;5;5;3;4;1;5;2;0;5;0;0;5;2;2;2;3;7;6;5;8;5;9;2;2;7;1;0;2;1;4;2;4;11;8;10;6;8;8;9;8;7;5;5;5;5;7;9;9;9;9;10;10;6;8;8;9;4;4;5;1;3;1;11;3;7;3;8;6;2;4;8;7;7;6;10;7;7;1;2;1;2;5;4;4;5;4;7;9;9;9;13;4;12;11;4;6;8;5;10;7;8;10;8;10;6;8;11;2;3;3;5;6;5;0;8;8;8;5;7;3;7;14;17;12;11;8;13;9;10;13;12;12;14;12;13;16;13;8;7;11;4;8;8;8;12;11;5;6;10;7;0;2;5;8;6;8;12;11;8;11;9;9;6;6;5;4;7;7;5;7;6;7;11;7;5;7;14;2;4;5;10;2;9;9;3;9;13;5;3;8;2;4;2;3;1;0;8;2;13;6;9;6;4;2;11;3;8;9;4;2;3;2;5;11;2;10;6;2;5;9;2;3;5;7;3;6;2;5;4;6;5;3;0;1;9;3;4;3;5;4;2;5;8;0;1;1;2;5;5;6;5;4;1;6;8;5;5;7;2;3;1;10;4;12;4;3;3;5;13;2;7;7;11;9;10;3;1;3;4;6;8;5;4;4;6;6;12;11;1;6;2;7;13;5;4;5;2;6;3;7;10;7;12;8;8;6;1;1;6;9;14;11;2;2;14;13;18;17
+Benzanthracene/Benzophenanthrene;11;16;9;12;12;7;9;13;12;15;9;9;12;16;17;25;14;16;19;19;8;12;15;14;7;6;6;4;4;8;4;5;11;13;11;5;14;4;2;4;6;9;11;2;6;4;4;4;4;6;6;5;9;9;5;7;6;4;6;7;7;11;8;8;7;3;4;4;6;4;4;5;1;4;1;0;5;0;0;7;1;3;4;6;8;6;8;10;10;11;3;3;8;1;0;2;1;4;3;8;9;9;9;7;9;7;9;8;8;5;5;7;5;7;9;10;9;10;10;10;5;8;9;7;3;5;4;1;1;1;14;4;7;4;7;4;2;3;7;7;7;6;10;7;7;1;1;1;2;4;4;4;5;4;7;9;10;9;14;3;13;12;3;9;8;5;10;7;9;11;10;8;8;5;9;3;2;2;7;8;6;1;8;8;8;6;5;2;7;12;17;12;12;8;17;9;10;13;12;13;14;13;14;21;15;7;6;11;2;10;11;9;11;10;5;4;11;5;0;1;5;7;7;7;10;12;9;11;9;9;7;7;5;3;8;8;6;5;5;8;12;6;3;7;14;3;3;5;10;3;10;10;4;10;14;5;2;8;2;4;2;3;0;0;8;2;14;8;9;5;3;2;10;4;8;9;5;2;3;1;4;13;2;11;8;2;5;9;2;3;7;7;3;7;3;5;4;7;5;4;1;0;10;3;4;4;6;4;6;5;8;0;2;2;2;5;5;7;6;4;4;5;9;5;4;7;2;2;0;10;4;12;3;2;3;5;14;2;7;7;12;9;10;3;1;2;3;6;10;4;2;4;4;6;13;13;1;5;4;6;14;6;4;7;2;5;2;7;8;8;14;9;10;5;1;1;6;9;16;14;3;2;15;14;17;16
+Benzofluoranthene;9;13;8;8;10;5;5;7;6;11;5;5;9;12;12;14;16;15;16;16;9;10;12;12;6;6;6;5;2;6;4;5;11;10;6;5;10;4;4;4;7;8;9;0;4;2;3;3;3;5;5;6;2;2;6;6;5;4;7;5;9;9;7;7;7;3;4;6;7;6;5;7;1;2;3;2;3;1;0;5;3;3;4;3;4;3;8;7;6;8;1;0;4;1;0;3;1;3;0;6;7;3;3;5;4;5;6;5;5;4;4;5;4;6;6;6;5;5;5;7;3;5;5;6;2;2;3;0;0;0;7;2;6;4;5;2;2;2;6;4;7;6;8;7;6;1;1;2;2;5;4;4;2;5;7;7;4;4;3;2;5;10;1;6;5;2;6;5;7;8;4;6;3;1;3;3;1;2;3;5;4;4;3;8;5;8;3;2;6;7;9;9;9;6;11;8;9;9;10;8;9;9;9;14;9;6;6;11;2;9;7;6;6;7;1;5;10;4;0;0;4;5;5;5;9;9;6;9;8;10;9;9;5;3;10;9;5;4;6;9;7;4;2;5;6;2;3;4;10;3;5;5;2;6;12;3;1;8;1;2;0;2;1;0;8;1;9;5;7;3;3;2;4;2;5;7;2;1;2;0;0;12;0;8;3;1;2;5;3;1;4;5;3;5;2;5;2;7;3;1;1;0;7;3;3;3;6;3;3;2;6;0;1;2;2;3;3;5;6;2;1;4;4;3;4;6;1;3;0;7;4;7;2;1;1;3;9;2;6;7;7;7;7;2;1;2;3;7;8;5;3;1;4;6;7;9;2;2;3;4;8;3;4;2;0;6;1;3;4;6;11;4;10;5;2;1;6;7;10;12;4;0;10;11;12;9
+Benzo(k)fluoranthene;10;16;9;10;11;6;7;10;8;11;4;6;10;13;13;16;15;18;18;18;12;13;13;15;6;6;6;6;2;6;4;6;11;11;7;5;11;4;5;4;6;8;9;0;4;2;3;3;3;5;4;9;4;3;6;6;4;4;6;6;8;8;6;6;6;3;4;5;6;5;5;6;2;4;3;2;3;1;0;6;3;3;4;2;4;3;8;8;5;9;1;1;6;1;0;3;2;3;1;5;7;3;4;4;4;6;8;7;7;5;5;6;5;8;7;8;6;6;7;9;3;6;7;7;2;2;3;0;0;0;7;2;6;3;7;2;2;3;6;6;7;6;8;7;6;1;1;2;2;5;4;3;3;4;7;7;5;5;4;3;7;11;2;7;6;3;7;4;7;8;6;9;3;2;4;4;3;3;4;6;5;5;4;8;7;8;4;2;7;7;11;9;10;5;11;9;10;10;12;9;10;10;10;16;11;6;6;13;2;9;9;7;8;8;1;6;12;4;1;1;4;6;6;7;10;9;6;8;7;9;8;8;4;3;10;8;5;4;5;8;8;5;2;5;7;2;4;5;10;4;5;5;3;8;12;5;2;8;2;2;0;2;0;0;9;1;10;5;8;4;3;3;4;3;4;7;3;1;2;0;0;13;0;9;3;1;2;5;3;1;4;6;4;4;3;5;2;8;4;1;2;0;8;4;4;3;6;4;4;3;7;0;1;2;3;4;4;6;7;3;1;5;7;3;4;5;2;4;0;8;3;9;2;1;2;2;8;2;7;7;8;8;7;3;1;3;4;7;8;6;3;2;5;6;8;9;2;3;4;5;9;4;6;3;0;8;2;3;5;9;13;6;12;5;2;1;7;7;10;13;4;1;11;12;13;9
+Benzo[e]pyrene;12;19;9;10;12;6;7;10;8;13;7;6;11;14;14;19;16;18;23;23;13;15;16;16;8;7;7;6;2;7;5;6;12;12;7;6;12;4;5;4;8;9;10;1;4;2;3;3;3;6;5;10;5;4;6;7;5;4;7;7;10;9;7;7;7;3;4;6;7;6;5;8;2;4;4;2;3;1;0;6;3;3;4;3;4;3;9;9;6;10;1;1;6;1;0;4;2;4;1;6;7;4;4;5;5;6;8;7;7;5;5;6;5;8;7;8;6;6;7;9;3;6;8;7;2;3;3;0;0;0;8;2;7;4;7;2;2;3;7;6;8;7;9;8;7;1;1;2;2;5;4;4;3;5;8;8;5;5;4;3;7;13;2;8;7;3;8;5;8;9;7;10;5;3;5;4;3;3;4;6;5;5;4;9;7;9;4;2;8;8;12;11;11;6;13;9;10;12;14;11;12;12;12;19;11;7;7;13;2;10;10;8;8;8;1;6;14;4;1;1;4;7;6;7;10;10;7;9;8;11;10;10;5;3;13;9;6;4;6;9;8;5;2;5;7;2;4;5;11;4;6;6;3;8;13;5;2;9;2;2;0;2;1;0;9;1;11;5;8;4;3;3;4;3;5;8;3;1;2;0;0;14;0;9;3;1;2;5;3;1;5;7;4;5;3;5;2;8;5;1;2;0;9;4;4;3;6;4;5;3;8;0;1;2;3;4;4;7;7;3;2;5;7;3;4;6;3;4;0;9;4;9;2;1;2;3;9;2;7;7;8;9;7;3;1;3;4;8;9;6;3;2;5;7;10;10;2;4;4;5;10;4;6;4;0;8;2;3;5;9;15;6;14;6;2;1;8;7;11;14;4;1;12;12;14;10
+Benzo(a)pyrene;13;19;9;11;13;6;7;10;8;13;7;6;11;14;14;19;16;18;23;24;14;15;17;16;8;7;8;6;2;7;5;7;12;12;7;6;13;4;5;4;9;9;9;1;4;2;3;3;3;6;5;10;6;4;6;7;5;4;7;7;10;9;7;7;7;3;4;6;7;6;5;8;2;5;4;2;4;1;0;7;3;4;4;3;4;4;9;10;6;10;1;1;6;1;0;4;3;4;2;6;7;5;5;6;5;6;8;7;7;5;5;6;5;8;7;8;6;6;7;10;3;6;8;7;2;3;3;0;0;0;8;2;7;4;7;2;2;3;7;6;8;7;9;9;7;1;1;2;2;5;4;5;3;5;8;8;5;5;4;3;7;13;2;8;7;3;8;5;8;11;7;10;6;3;5;4;3;3;4;6;5;5;4;9;8;11;4;2;9;8;12;11;11;6;14;9;10;12;14;11;12;13;12;19;11;7;7;14;3;10;10;8;8;9;1;7;14;4;1;1;4;7;6;7;10;10;7;9;8;11;10;10;5;3;14;9;6;4;6;9;8;5;2;5;8;2;4;5;12;4;7;7;3;8;14;5;2;9;2;2;0;2;1;0;9;2;11;5;8;4;3;3;4;3;5;8;3;2;2;0;0;14;0;9;3;1;2;5;3;1;5;7;4;5;3;5;3;8;5;1;2;0;9;4;4;3;6;4;5;3;8;0;1;2;3;4;4;7;7;3;2;5;7;3;4;6;3;4;0;10;4;10;2;1;2;4;9;2;8;8;8;9;8;3;1;3;4;8;9;6;3;2;5;6;10;10;2;4;4;6;10;4;6;4;0;8;2;3;6;9;15;7;14;6;2;1;8;7;12;14;4;1;13;12;13;9
+Indeno[1,2,3-cd]pyrene;10;11;6;8;8;5;7;7;7;7;3;5;8;7;8;8;9;12;13;14;22;15;16;13;8;6;6;10;3;10;4;5;7;8;9;5;12;3;1;4;3;7;4;0;5;3;4;3;4;4;3;6;9;8;5;5;3;2;4;6;3;5;4;4;4;2;2;2;3;2;2;2;4;7;4;3;6;3;0;11;3;4;2;2;3;5;5;7;4;7;2;2;6;1;1;6;6;4;4;3;6;3;4;7;6;5;7;8;8;6;6;5;5;7;6;7;5;6;6;12;3;6;6;9;2;4;4;3;3;3;12;2;5;7;5;2;2;3;7;9;8;5;7;7;3;2;2;3;4;8;3;3;3;4;6;5;5;3;2;3;3;10;4;10;7;8;7;7;8;9;8;10;8;6;8;2;3;1;5;4;4;1;6;7;4;6;5;0;7;5;14;9;6;5;6;5;6;9;10;7;8;8;8;11;5;5;7;10;0;8;8;6;5;7;3;4;10;7;1;1;6;4;8;5;5;7;6;5;4;2;3;3;2;2;4;3;6;9;8;3;7;4;3;7;8;0;2;4;9;4;10;10;2;5;13;6;5;7;2;2;0;4;1;0;6;2;10;4;6;6;4;2;2;3;2;7;2;0;3;1;1;11;0;9;5;3;0;7;2;2;2;8;4;4;4;5;4;6;5;1;4;1;7;4;4;4;10;5;3;3;4;0;1;1;2;8;3;5;8;5;6;10;7;2;8;4;4;6;4;6;1;8;5;3;3;3;11;1;4;8;7;10;6;0;0;3;3;5;6;10;5;5;6;6;11;6;4;6;3;8;10;5;6;6;2;6;5;4;7;9;10;5;10;4;1;1;6;9;10;11;5;2;10;9;11;10
+Benzo(g,h,i)perylene;10;14;8;8;8;5;7;8;8;10;4;6;8;8;10;12;10;13;15;15;15;20;18;16;10;4;6;9;4;11;4;4;9;9;7;4;10;3;1;5;5;5;5;0;4;4;4;4;4;5;4;8;7;8;4;5;5;3;5;6;5;6;4;3;7;3;3;4;5;4;4;4;3;5;3;1;1;3;0;8;2;1;2;1;1;1;3;3;2;8;0;2;5;0;0;6;5;2;2;3;4;2;2;4;2;5;7;7;8;7;6;7;6;7;5;8;6;6;7;8;3;6;8;5;2;3;2;1;0;1;11;1;5;6;5;2;1;1;7;5;7;6;7;6;4;1;1;3;3;6;3;3;3;5;7;6;5;3;3;3;5;9;4;10;6;7;7;7;9;8;9;11;5;5;9;3;3;2;5;5;6;0;7;7;2;5;6;0;6;5;12;9;6;5;9;5;6;10;11;9;10;8;11;12;7;6;7;10;1;8;11;8;6;6;1;5;11;7;1;1;6;3;10;5;5;6;6;6;5;4;5;5;5;3;6;6;4;8;6;6;7;4;4;7;8;0;1;5;10;4;9;9;1;7;12;6;5;9;3;2;1;4;1;0;6;2;9;6;8;6;5;2;2;3;2;6;2;1;1;2;1;10;1;9;4;2;0;7;3;2;4;7;3;3;4;5;3;6;6;2;4;2;7;4;4;5;11;5;2;4;4;0;1;1;3;8;3;6;6;4;6;11;6;3;8;3;3;6;5;5;2;8;5;3;3;2;8;2;5;7;8;11;5;0;0;1;1;3;6;10;4;4;8;7;12;6;6;7;2;6;8;5;7;6;2;6;4;3;5;8;11;5;11;4;1;1;8;6;6;10;6;2;10;9;10;9
+Anthanthrene;18;13;12;13;14;12;12;9;8;16;11;7;10;10;12;15;12;13;16;17;16;18;67;16;20;16;14;23;12;24;12;15;21;13;22;15;35;9;5;15;20;15;19;2;21;15;16;16;16;10;9;13;13;14;16;14;13;11;16;16;19;17;15;13;17;12;11;13;16;13;10;17;18;16;15;13;12;8;3;26;14;15;15;14;14;14;15;19;34;22;9;7;15;10;10;19;18;21;15;24;32;20;19;20;25;16;15;16;14;15;12;12;13;13;13;11;9;12;13;25;8;10;11;21;12;22;19;7;8;6;38;16;11;18;8;12;11;14;22;19;15;15;16;8;12;8;13;6;10;16;5;11;15;13;13;21;10;10;13;5;15;34;19;21;21;23;26;20;24;37;32;16;13;11;14;9;5;11;15;14;14;6;21;21;10;17;11;1;14;20;36;15;19;8;20;9;9;15;15;13;17;15;16;19;19;10;17;31;7;24;24;19;19;17;14;13;26;24;4;8;16;15;19;13;14;18;16;20;14;17;19;20;14;11;17;17;16;25;22;15;20;11;10;18;22;2;6;12;26;8;19;20;7;13;34;10;13;18;11;4;4;7;6;5;12;6;28;16;16;11;7;4;18;10;6;14;4;8;12;8;9;28;4;21;10;10;6;15;6;7;17;14;4;13;12;8;6;22;17;13;15;8;19;5;6;8;18;18;7;8;13;2;1;3;10;15;9;16;20;18;20;20;21;8;23;14;12;15;15;16;10;17;12;9;11;17;33;9;10;17;15;28;15;4;3;9;9;12;17;18;12;11;18;25;33;24;9;17;10;19;29;16;19;19;11;19;9;16;25;26;37;30;32;13;3;3;30;20;31;31;16;7;29;24;31;28
+Dibenzanthracene;9;15;8;9;10;6;7;9;8;10;6;7;9;11;13;14;12;15;16;16;13;16;16;22;9;4;6;8;3;11;4;5;13;11;6;4;10;5;3;3;6;5;6;0;5;7;7;7;7;5;4;8;7;7;5;5;5;3;6;5;6;6;4;3;6;3;3;4;6;4;4;5;3;7;6;4;0;1;1;7;3;4;6;4;3;3;7;6;6;6;2;2;7;1;1;4;5;2;3;6;7;2;3;7;4;6;8;7;7;7;6;6;5;9;6;8;6;7;7;10;4;6;7;7;1;3;4;0;1;0;11;2;5;6;7;2;1;2;7;6;7;5;7;6;6;1;1;2;4;7;3;3;1;4;6;4;4;3;5;4;7;10;3;8;5;6;10;5;8;11;10;11;5;4;7;2;4;2;5;4;4;2;7;6;6;6;8;2;5;6;15;9;9;7;12;8;9;10;12;10;11;10;11;14;10;6;7;14;1;10;11;8;7;9;3;5;12;9;1;1;7;6;7;7;7;6;5;6;5;7;6;6;4;3;8;6;5;8;7;6;11;2;2;8;6;2;3;7;11;5;11;11;3;8;11;6;4;9;3;2;0;4;1;1;6;3;12;7;10;7;5;3;5;1;4;6;3;2;0;0;2;13;0;11;2;1;3;8;4;3;4;9;4;2;6;5;3;8;8;2;4;0;9;4;4;5;8;8;3;4;7;0;1;2;2;9;4;8;8;3;4;12;7;3;9;4;3;8;2;5;2;8;4;1;3;3;9;2;6;7;10;12;7;3;2;3;3;7;8;11;7;6;5;9;11;11;4;8;3;7;11;9;10;7;3;13;4;9;9;13;16;7;14;4;2;1;14;3;9;12;4;0;12;12;14;12
+Coronene;9;7;8;13;14;8;9;8;8;12;14;9;11;6;8;7;6;6;8;8;8;10;20;9;47;11;9;15;14;22;9;7;15;12;18;7;25;10;3;11;8;11;9;1;11;12;12;11;11;8;7;10;10;13;11;10;7;7;8;12;7;10;9;9;8;7;8;9;7;10;7;8;10;16;9;8;7;3;2;16;8;8;13;9;12;10;11;16;27;15;11;6;11;7;6;7;8;21;15;20;25;14;14;21;20;10;11;14;7;8;4;5;10;11;11;8;6;12;10;23;11;8;9;16;6;13;11;4;5;4;24;9;3;11;5;8;10;11;17;12;8;15;9;5;9;6;8;5;6;7;4;5;15;9;7;20;15;11;10;5;15;21;13;13;13;15;18;9;10;28;26;11;11;8;14;10;2;8;12;9;8;4;15;14;4;7;8;0;8;10;19;12;8;4;11;7;7;14;15;11;15;11;15;16;20;7;14;22;10;13;23;14;15;12;10;13;15;23;2;5;9;13;12;11;13;10;10;9;10;8;7;7;8;7;6;7;9;15;12;7;8;15;11;14;14;2;3;4;16;7;15;14;3;9;24;6;12;6;5;6;3;3;1;3;5;2;19;13;12;5;4;2;14;11;5;13;4;4;13;6;5;20;4;14;11;10;6;12;1;4;13;10;4;9;8;6;9;20;16;15;10;9;8;3;5;5;11;14;6;4;8;1;1;1;11;9;7;8;10;10;8;15;10;10;13;11;12;10;7;10;10;14;10;8;3;11;26;5;5;8;9;20;11;2;3;6;5;9;3;12;10;11;14;19;24;15;3;14;3;11;15;12;10;12;8;15;5;11;15;20;21;20;20;3;1;2;22;10;23;23;13;5;24;15;24;22
+Dicofol;8;5;2;9;9;7;8;5;3;4;7;5;4;4;7;6;6;6;7;7;6;4;16;4;11;68;11;15;16;28;6;16;21;8;26;8;28;9;4;9;16;11;28;5;14;13;14;12;13;4;4;14;13;16;14;9;10;7;14;16;13;14;11;10;12;8;8;14;13;14;11;13;22;25;20;19;19;7;7;22;23;20;22;21;24;21;21;26;33;15;14;8;13;11;12;18;16;27;23;27;42;17;20;24;29;7;7;6;4;7;3;3;11;7;7;10;11;12;8;33;21;10;7;32;22;18;16;13;16;15;37;15;8;15;6;15;14;14;20;18;10;15;12;5;12;6;11;3;4;9;3;8;13;13;12;24;9;9;7;5;11;23;25;20;16;16;34;15;18;36;28;15;8;16;14;8;2;6;12;7;8;7;16;9;10;7;10;2;11;13;32;9;16;8;16;6;5;16;14;10;15;14;14;12;12;2;19;18;10;18;7;15;19;14;15;9;23;24;3;9;11;13;20;12;13;14;12;17;15;14;15;17;13;8;15;16;17;17;15;16;13;14;9;11;17;3;4;2;14;10;11;11;11;9;25;8;13;7;10;5;9;3;0;8;6;4;30;15;16;2;2;5;16;15;8;14;4;7;12;9;12;28;11;16;14;6;8;11;2;4;14;12;3;8;9;2;2;17;14;14;12;14;13;3;1;3;9;11;12;2;10;4;2;3;12;12;8;12;21;14;12;9;17;3;18;12;3;14;12;9;7;12;10;11;11;10;46;8;5;13;9;22;11;8;10;4;4;14;13;11;12;15;7;21;26;23;5;8;6;11;28;13;9;11;6;16;12;16;29;23;24;24;29;6;3;2;16;15;23;21;9;7;21;16;28;25
+Benzophenone;7;6;7;11;13;9;12;5;4;10;9;4;8;6;5;6;6;6;7;8;6;6;14;6;9;11;26;14;12;17;14;10;10;12;12;11;23;8;4;6;13;11;13;4;6;6;7;5;8;8;8;7;10;11;7;8;7;3;7;8;10;8;6;6;9;4;3;7;8;6;6;8;11;12;15;12;9;6;8;17;16;14;17;16;16;16;16;17;13;11;11;4;8;10;10;10;11;17;17;9;21;14;13;14;15;7;6;5;4;4;4;4;5;5;3;6;6;11;7;18;3;8;6;15;6;7;6;7;7;6;17;12;13;13;6;14;10;10;16;14;14;14;15;12;15;9;10;3;8;11;5;11;9;10;15;17;14;14;12;6;15;15;8;9;11;7;14;9;12;12;14;11;12;9;10;10;3;6;15;14;14;7;11;10;8;10;4;1;11;11;17;10;18;10;14;5;6;15;15;12;18;14;15;9;11;7;14;17;7;15;11;13;16;12;5;12;21;14;3;2;10;13;7;16;12;8;8;8;6;9;9;10;6;4;10;10;17;13;15;9;13;12;10;11;7;5;5;4;15;7;12;13;4;7;20;9;9;12;8;7;4;6;3;4;6;3;16;10;15;5;2;4;19;10;5;15;3;3;11;7;4;14;4;16;9;4;6;8;4;7;11;6;4;10;8;5;3;17;16;9;10;4;10;5;7;6;5;7;12;2;8;2;1;2;7;11;11;11;10;4;11;12;11;5;12;8;5;8;9;13;12;17;7;6;5;12;18;5;6;8;14;15;13;5;7;0;2;8;7;7;7;6;11;17;16;16;2;11;10;9;18;9;7;4;2;10;4;11;16;17;15;16;18;9;2;2;16;14;21;18;13;3;20;14;21;19
+2-tert-Butyl-4-methoxyphenol;8;5;6;7;9;11;5;6;6;8;22;12;5;4;4;4;5;6;6;6;10;9;23;8;15;15;14;49;27;31;19;22;21;9;23;20;43;20;13;15;17;21;19;0;17;14;16;14;16;11;7;14;16;10;20;16;18;14;19;19;16;17;16;15;21;16;14;17;16;17;11;16;25;29;26;25;16;16;7;21;23;25;26;21;25;15;17;24;24;18;14;9;20;10;13;29;26;24;20;23;34;21;25;23;24;14;12;9;10;10;10;15;15;11;15;9;5;9;7;32;11;8;4;23;14;16;15;11;11;11;28;30;15;34;11;21;27;23;33;29;23;32;22;12;24;14;24;7;20;28;7;21;27;28;24;37;26;27;26;12;32;28;22;24;18;14;28;15;21;38;35;16;9;14;13;17;6;9;18;14;15;4;26;17;12;16;14;0;10;13;36;14;32;11;24;9;7;15;25;12;22;16;17;12;19;7;36;32;15;26;22;20;34;27;23;19;33;30;7;12;24;17;20;12;18;18;17;20;16;16;16;17;20;16;13;18;30;33;30;18;22;25;19;23;20;9;6;13;28;19;11;11;9;9;28;14;30;20;16;11;13;12;6;6;10;14;35;22;21;14;9;8;20;27;12;26;6;14;20;18;14;27;14;31;25;14;3;12;1;10;18;15;6;17;15;6;8;33;19;25;18;19;21;6;8;14;10;12;13;8;21;7;0;3;24;25;8;22;26;18;19;22;30;10;32;21;10;21;19;31;16;27;27;24;11;10;34;13;13;23;22;19;29;2;5;13;13;10;13;17;12;14;17;23;37;15;6;14;10;21;24;22;18;18;11;22;9;14;26;28;24;24;31;10;4;8;24;17;30;35;19;12;35;28;46;44
+Butylated hydroxytoluene;7;2;3;9;11;11;7;5;5;12;11;7;5;4;6;4;2;2;2;2;3;4;12;3;14;16;12;27;42;30;16;15;12;9;20;16;40;24;10;7;10;5;20;0;12;13;11;13;14;3;3;9;15;7;13;3;9;7;10;10;8;8;10;7;11;7;7;9;8;9;7;9;18;21;26;26;12;9;8;18;19;19;20;17;26;15;20;21;23;12;13;16;19;12;14;17;17;21;17;23;34;13;19;18;24;5;3;3;4;5;4;5;7;6;4;3;3;7;5;28;12;6;3;19;12;12;11;5;11;5;17;28;9;24;8;21;26;22;24;26;13;25;15;7;20;9;16;5;14;19;5;15;21;22;15;31;28;27;30;10;34;16;13;8;9;8;18;5;8;29;23;8;5;10;7;18;7;10;20;14;12;5;25;15;12;9;16;0;8;8;26;7;27;9;24;8;7;19;22;12;22;14;15;11;20;6;24;26;17;30;17;18;29;19;18;21;18;33;6;13;21;19;12;15;6;6;4;10;6;7;8;9;10;8;7;8;15;19;17;8;23;20;15;19;16;9;8;7;28;12;15;14;10;8;26;12;24;12;14;10;14;12;5;4;9;9;23;19;21;8;4;7;25;20;10;16;5;10;16;16;15;24;15;30;24;18;8;9;2;8;15;12;5;22;18;7;6;29;23;24;25;22;21;6;7;10;8;13;16;6;20;15;1;3;24;28;8;24;21;13;13;18;23;10;22;19;9;11;13;24;13;26;21;20;11;11;27;16;12;15;25;11;23;7;6;7;4;11;14;10;5;12;16;19;37;17;1;13;7;19;17;24;16;14;8;21;5;15;27;33;23;33;39;10;6;9;20;30;34;38;21;9;38;34;42;39
+Bumetrizole;13;6;10;9;11;12;11;6;6;6;17;8;7;5;8;8;6;6;7;7;10;11;24;11;22;28;17;31;30;91;19;23;30;13;40;20;55;24;9;14;17;17;28;2;24;30;29;28;31;6;6;17;12;17;28;16;16;12;14;19;16;20;19;14;17;13;14;17;14;17;9;16;31;36;42;33;22;17;14;35;40;34;38;31;33;26;32;40;47;26;18;12;28;23;23;29;29;39;36;42;58;29;31;40;47;10;8;7;8;9;6;8;12;14;12;8;9;20;10;49;21;13;9;33;24;22;20;10;19;12;41;31;11;32;11;25;25;26;29;29;16;28;20;12;22;14;20;6;17;22;7;18;20;20;17;40;27;24;27;7;29;32;36;25;25;31;42;20;26;63;52;20;18;15;17;16;7;13;37;25;28;9;31;27;21;17;16;3;14;23;56;14;28;15;27;10;9;24;27;16;29;19;22;19;30;10;31;37;19;30;35;32;41;25;27;24;35;37;9;17;29;29;19;17;18;20;20;22;20;17;19;19;21;14;12;19;24;28;22;18;32;24;21;26;27;8;5;15;34;16;31;31;22;23;46;9;33;14;15;12;18;12;4;9;12;9;50;28;30;13;9;8;41;26;11;27;5;10;22;12;20;40;20;29;22;22;15;17;5;13;28;26;10;21;23;6;12;43;30;34;32;25;22;7;9;13;17;31;27;12;18;14;1;4;27;33;14;22;29;21;15;33;42;14;34;30;23;26;26;20;15;23;28;25;15;27;50;17;13;13;21;37;19;5;13;16;12;21;24;24;18;21;18;40;51;31;7;14;14;32;38;26;18;31;21;34;10;30;45;53;44;42;53;12;6;9;44;37;63;46;19;7;46;34;64;48
+4-Methylbenzophenone;4;4;7;9;11;8;6;4;4;10;12;8;5;4;4;4;4;4;5;5;4;4;12;4;9;6;14;19;16;19;25;10;13;12;13;15;25;11;7;5;12;10;15;5;7;8;7;6;9;12;8;5;8;7;12;4;11;7;11;6;13;8;6;6;11;4;6;10;11;9;6;12;12;16;14;13;11;9;11;15;17;18;19;15;18;12;16;17;16;10;11;4;14;13;16;13;14;19;17;17;22;13;16;12;14;9;7;6;4;4;5;8;5;8;7;7;4;9;6;16;6;8;5;13;6;10;8;5;7;5;17;13;10;21;4;13;16;13;21;18;16;23;16;11;19;14;12;5;12;15;7;15;13;12;17;21;16;12;15;7;21;15;6;7;12;6;12;8;9;16;14;6;12;9;6;10;3;4;21;17;17;5;18;13;7;10;8;0;9;6;17;11;17;4;12;7;6;14;16;12;13;15;12;11;10;10;19;19;12;16;18;16;20;12;8;12;19;16;2;4;12;9;6;10;7;7;5;8;5;15;14;14;12;6;15;12;16;13;16;11;12;15;13;13;9;3;6;9;19;10;10;10;5;6;19;12;15;13;9;8;8;7;3;4;9;6;15;11;16;9;4;5;19;13;9;14;3;5;12;7;8;18;8;16;14;9;4;9;2;8;14;8;3;15;11;6;8;20;15;17;11;9;11;3;10;10;7;6;9;3;10;3;0;1;12;14;9;10;9;7;11;15;14;9;15;12;7;9;13;16;13;15;12;10;6;12;21;7;8;13;13;12;12;4;3;5;4;7;8;7;6;6;12;18;21;12;1;15;9;13;16;11;9;5;4;14;3;5;11;20;12;17;21;10;2;4;13;16;24;21;17;5;21;16;23;22
+2,4,6-Tribromophenol;9;4;9;7;9;10;5;3;3;5;4;6;7;5;5;5;5;6;6;7;5;4;15;5;7;16;10;22;15;23;10;85;31;7;35;13;35;14;4;21;39;24;52;18;13;15;16;14;17;15;21;21;4;15;20;22;26;22;26;28;42;26;26;23;28;23;22;26;27;27;21;36;24;26;27;29;15;11;3;17;24;25;23;21;23;15;16;22;23;22;12;7;17;10;16;27;24;19;21;24;35;14;20;19;20;19;22;18;22;13;18;18;15;19;12;25;30;32;20;66;48;27;29;36;27;24;25;13;9;9;38;22;8;22;7;23;14;15;21;23;15;20;15;13;16;8;11;6;17;21;9;17;16;12;13;24;14;11;15;3;13;36;29;31;39;27;45;23;27;36;43;21;9;17;16;9;2;14;15;12;12;4;16;14;10;11;12;1;10;9;31;11;18;8;18;6;5;12;18;8;16;9;8;8;14;7;21;23;17;22;18;19;30;17;20;26;28;22;6;9;16;9;47;15;15;25;22;30;24;38;40;42;28;22;39;29;40;39;36;28;20;19;14;11;16;4;7;11;22;16;6;6;12;12;24;10;17;14;11;6;16;10;5;4;13;10;35;25;21;8;5;4;12;16;8;13;5;11;11;11;9;19;17;21;9;10;10;13;1;11;24;13;3;15;13;4;8;24;14;15;13;10;15;7;7;9;10;12;11;5;10;8;2;3;16;23;8;12;21;14;16;20;22;11;24;15;6;16;12;13;12;19;18;17;5;13;43;10;10;17;16;27;15;1;10;6;6;14;13;16;15;14;11;22;23;23;6;6;7;13;30;15;12;20;9;13;13;19;23;30;19;24;29;11;5;6;20;19;30;26;8;8;26;18;38;35
+2,6-Dichloro-4-nitroaniline;5;11;12;12;13;10;10;11;9;12;19;8;11;9;12;11;11;11;12;12;7;9;21;13;15;21;10;21;12;30;13;31;94;17;32;9;44;9;2;17;27;23;40;5;15;14;14;15;16;20;14;23;13;23;22;21;25;20;26;23;28;28;24;17;27;20;21;27;29;27;20;29;15;21;26;20;16;8;6;23;27;24;30;26;26;17;22;26;33;30;13;10;12;9;10;18;17;25;20;29;42;24;20;25;35;21;25;22;18;17;13;17;19;19;21;21;19;34;20;43;29;22;17;37;20;17;21;13;8;7;36;24;9;22;11;17;13;18;21;22;16;21;12;9;16;10;13;4;10;19;7;13;14;12;12;27;22;18;16;8;20;33;27;22;29;22;45;20;22;37;44;26;18;25;21;9;6;9;21;15;17;6;14;13;14;18;15;4;17;21;50;19;28;15;27;13;11;19;21;15;23;17;18;20;24;11;23;31;14;29;20;26;28;19;20;19;28;33;5;11;20;23;22;18;22;25;23;29;23;28;29;28;29;23;27;30;35;36;32;29;18;16;11;15;35;6;5;14;36;17;17;15;13;19;45;5;19;16;12;9;8;6;5;2;14;5;46;22;26;12;4;10;24;13;15;23;5;5;11;7;10;36;8;29;14;8;7;15;6;6;20;17;4;10;3;4;8;33;26;15;11;9;23;4;9;7;15;22;15;9;19;3;3;7;11;15;10;24;26;18;14;22;22;7;21;16;11;22;10;22;12;20;13;11;11;21;53;7;15;19;24;25;24;9;11;7;11;18;19;18;13;15;11;35;30;26;12;16;12;21;34;21;18;28;11;19;11;19;33;40;33;33;46;12;5;4;26;21;42;33;13;5;36;24;56;46
+1-Methylphenanthrene;11;10;10;11;12;9;9;11;10;15;17;13;19;9;14;13;10;11;12;12;8;9;13;11;12;8;12;9;9;13;12;7;17;27;11;10;19;6;1;4;7;12;14;2;6;6;6;6;6;10;9;7;12;17;6;10;7;4;6;8;9;9;7;6;7;4;4;5;6;5;4;7;7;10;9;7;4;4;7;9;9;8;8;8;10;5;8;11;9;10;5;5;10;7;8;6;7;8;9;9;14;10;9;11;16;9;11;9;8;5;5;6;5;8;8;13;9;9;8;13;7;7;7;16;4;8;6;5;6;4;21;11;10;10;7;4;6;5;12;9;11;13;14;9;11;8;7;1;6;10;4;8;8;10;12;12;8;7;8;5;12;12;8;9;12;7;12;8;9;14;13;10;6;12;13;3;1;2;15;8;10;3;14;6;3;6;5;0;9;13;18;17;14;7;20;11;12;17;16;16;17;17;17;16;12;11;13;14;4;11;14;12;16;12;7;8;13;18;1;2;10;11;9;10;12;11;11;10;7;9;9;10;7;4;12;9;11;11;11;9;8;12;5;10;13;2;6;6;15;2;13;13;2;6;16;7;12;13;2;5;1;4;3;5;3;4;15;5;8;7;3;7;10;7;6;10;3;5;7;4;3;20;1;15;8;3;1;11;0;2;7;9;5;6;4;7;4;11;13;9;3;9;9;1;6;8;4;3;9;6;10;1;0;1;7;6;3;9;9;6;8;12;13;7;9;10;4;9;8;6;8;11;6;5;6;10;17;4;8;12;14;16;11;5;4;5;4;4;2;8;5;4;10;14;15;20;3;12;6;10;15;9;12;4;2;10;9;3;10;17;15;18;17;6;1;2;12;11;12;11;8;3;15;13;21;19
+Triclosan;10;7;7;14;15;15;13;11;10;10;14;12;6;8;11;11;6;7;7;7;9;7;22;6;18;26;12;23;20;40;13;35;32;11;93;15;44;17;4;25;40;36;45;9;25;22;22;24;22;26;25;34;17;27;35;33;35;29;35;43;40;33;35;29;35;32;30;36;38;37;28;40;32;31;26;26;17;8;14;28;30;25;25;22;30;23;23;33;37;38;17;11;28;19;23;26;22;33;31;38;53;25;30;34;36;29;32;27;26;25;23;25;25;20;26;28;24;34;22;47;33;24;19;42;29;31;30;14;13;8;56;22;8;18;11;25;18;19;22;26;13;23;17;10;18;8;20;6;8;10;8;11;13;11;19;25;20;17;19;7;24;54;32;49;63;49;66;52;59;62;68;30;19;27;24;14;5;18;25;24;23;7;27;16;12;12;18;2;17;22;48;11;31;11;31;10;9;22;21;16;24;16;17;13;38;10;23;33;13;26;35;37;32;21;24;22;40;32;8;9;21;20;24;24;28;39;37;43;36;41;40;45;36;32;36;38;40;50;41;38;27;19;13;12;27;6;8;13;29;16;14;13;19;21;38;9;23;11;9;9;19;7;3;8;15;9;47;34;28;9;6;5;30;19;14;18;6;7;12;11;19;44;21;24;18;13;15;23;5;10;32;28;5;18;17;8;7;32;29;24;24;19;19;6;10;13;28;21;22;12;13;10;1;3;16;28;15;17;23;26;14;18;33;14;30;23;18;19;15;17;13;21;17;15;11;23;55;13;15;19;18;44;16;7;13;14;14;11;17;26;17;15;19;38;32;39;11;19;11;26;47;27;21;26;12;22;20;32;33;47;45;37;38;10;5;6;31;33;45;39;15;7;39;26;50;38
+Drometrizole;8;5;7;7;9;9;7;4;4;8;15;9;6;5;6;5;5;5;6;6;5;4;15;4;7;8;11;20;16;20;15;13;9;10;15;29;29;14;11;6;8;12;16;3;8;10;11;9;11;7;6;6;3;4;11;8;9;8;8;5;8;8;7;7;9;6;7;7;8;7;4;7;15;16;13;15;11;9;10;19;18;18;21;18;20;17;18;20;20;13;14;6;17;16;18;14;13;21;19;19;26;14;17;11;13;7;7;7;5;6;5;8;6;5;6;5;4;7;6;19;8;6;4;8;5;10;8;6;5;5;14;20;13;19;7;15;18;17;18;16;14;20;15;10;14;12;14;5;15;18;8;15;17;13;18;25;18;15;19;8;21;14;4;10;13;8;18;7;9;21;19;10;11;5;4;10;4;4;20;17;17;7;18;12;10;10;4;0;13;16;23;13;19;9;17;6;7;16;16;11;13;14;13;13;12;11;19;19;8;14;14;16;18;12;8;14;20;20;5;6;15;14;7;11;15;12;11;9;7;8;8;9;10;8;10;8;12;11;9;8;12;17;12;12;14;5;4;6;20;13;8;6;4;5;17;7;14;14;7;4;9;10;4;3;11;9;19;14;16;5;8;5;20;15;9;17;7;8;11;7;11;17;9;21;12;9;10;12;3;10;17;7;4;17;9;5;8;17;16;19;11;8;13;5;8;12;7;12;9;1;15;8;0;2;16;16;12;11;10;8;9;13;16;9;14;16;6;7;8;18;11;17;10;10;6;10;22;9;12;13;15;13;18;5;5;3;2;11;13;7;3;6;10;20;25;11;1;11;5;10;22;13;7;7;6;16;3;11;18;19;21;18;19;11;3;6;17;23;27;29;15;7;28;21;27;25
+Enzacamene;15;9;14;14;17;15;14;12;11;16;32;17;12;12;12;14;10;11;12;13;12;10;35;10;25;28;23;43;40;55;25;35;44;19;44;29;118;32;16;19;27;22;64;2;44;43;43;41;43;11;9;17;29;20;31;17;22;15;25;22;26;22;19;20;24;16;14;19;21;20;12;22;35;45;51;48;29;16;20;52;46;47;50;47;63;51;52;57;59;36;35;16;32;30;35;36;31;53;50;56;80;44;51;48;62;13;11;8;12;13;13;16;18;14;13;8;5;14;11;62;20;10;6;41;24;23;21;12;17;10;42;46;15;39;14;37;37;37;37;37;21;43;28;14;29;20;32;8;21;32;10;22;32;29;27;63;41;38;43;16;54;47;39;21;22;23;50;14;17;87;78;15;28;20;16;26;9;11;48;42;41;15;49;46;26;31;21;1;22;32;66;29;46;23;41;14;12;32;42;25;39;30;31;25;36;15;42;56;28;55;51;43;54;40;36;35;48;71;9;23;33;52;19;27;23;22;19;25;16;25;26;26;24;14;22;26;37;43;39;25;47;36;29;36;37;12;13;20;62;27;31;30;21;23;65;15;42;22;17;17;22;14;7;13;20;12;65;42;38;16;13;12;58;34;22;35;9;15;25;20;28;63;23;50;43;28;22;22;2;15;41;25;11;38;28;10;14;66;56;44;45;29;36;8;13;18;21;32;37;17;32;17;3;6;36;46;22;32;38;31;20;47;52;17;39;42;20;31;28;44;27;43;29;27;15;39;78;22;19;30;37;34;39;12;19;17;15;33;24;25;16;21;41;60;84;37;7;37;20;42;55;39;31;33;20;40;14;34;61;72;70;65;77;18;8;10;51;70;97;76;26;13;74;53;103;101
+2,4-Di-tert-butyl-6-(5-chloro-2H-benzotriazol-2-yl)phenol;11;4;6;4;6;7;4;4;4;8;12;8;3;4;5;4;4;4;4;4;3;3;9;5;10;9;8;20;24;24;11;14;9;6;17;14;32;40;12;5;9;7;12;1;4;7;6;7;8;7;4;6;5;3;9;6;8;8;10;9;9;9;7;9;9;8;8;10;9;10;7;9;12;16;17;15;5;4;5;17;14;12;14;10;17;15;18;18;19;10;13;10;10;11;13;10;8;14;12;15;22;8;11;16;17;5;4;4;5;5;5;6;7;8;6;4;5;14;10;24;12;10;7;12;9;7;8;4;7;8;14;23;10;17;6;15;22;18;21;19;8;22;15;9;19;6;12;4;12;13;5;12;19;16;14;26;20;18;20;7;21;14;14;7;6;7;11;5;9;20;13;6;1;5;3;14;3;8;13;11;10;2;19;14;5;5;11;3;7;8;17;4;22;2;18;5;5;17;17;15;20;15;16;13;11;8;23;15;14;19;8;20;23;19;10;19;12;21;7;5;20;13;9;10;9;8;8;10;7;11;11;11;10;9;11;11;15;18;14;11;19;14;11;4;12;6;3;5;14;7;10;10;7;7;19;5;18;9;6;7;10;7;2;2;9;9;17;10;16;3;3;5;18;16;9;12;2;8;5;10;11;16;11;15;24;9;5;10;1;6;11;7;6;12;13;5;6;18;17;19;19;15;11;4;6;9;9;11;15;5;9;12;2;2;18;28;10;11;12;5;5;7;18;7;15;16;5;14;8;13;8;15;17;16;6;5;14;15;10;9;12;23;16;3;1;5;1;11;11;7;3;6;4;14;31;9;8;9;0;6;17;13;5;12;7;16;4;10;17;22;13;18;21;9;7;9;11;19;25;26;11;9;27;22;32;27
+Octrizole;2;5;2;2;3;3;2;1;1;2;5;5;1;3;2;2;4;5;5;5;1;1;5;3;3;4;4;13;10;9;7;4;2;1;4;11;16;12;16;1;6;2;9;1;3;4;3;2;4;1;1;2;1;1;4;1;2;2;4;3;4;1;1;1;3;2;2;4;3;4;2;4;7;11;7;7;5;6;4;8;6;7;9;9;10;6;9;9;10;4;4;4;4;5;4;7;8;8;7;8;11;6;7;7;10;1;1;1;3;3;2;2;3;2;1;2;2;3;3;10;5;4;2;4;4;6;5;5;5;5;7;12;8;12;4;5;10;10;12;10;6;12;8;6;9;7;8;4;10;8;3;7;12;7;8;13;6;6;7;2;9;9;5;3;2;3;5;2;4;11;8;2;2;3;1;7;1;2;10;11;9;4;12;11;5;4;4;0;2;2;7;3;10;2;9;1;1;3;6;5;6;6;5;10;4;2;11;11;7;9;2;8;9;6;6;7;5;13;4;2;7;5;4;3;3;2;1;2;1;4;4;4;4;2;4;4;3;4;3;4;10;11;10;6;6;0;1;4;11;7;4;3;3;2;6;5;11;7;6;1;7;6;0;3;4;6;7;4;6;3;1;6;8;9;5;10;2;5;7;6;6;8;8;6;8;8;1;2;1;7;5;3;1;9;7;4;3;10;7;13;6;8;7;3;3;7;2;4;7;2;7;3;0;1;10;9;4;7;8;1;4;7;10;3;9;12;4;3;7;10;3;6;8;7;6;2;8;6;4;6;5;4;7;2;0;0;0;5;4;3;1;4;2;7;14;3;0;7;0;2;7;7;3;10;2;10;1;5;8;13;8;8;14;5;3;3;8;10;16;15;6;8;15;13;16;15
+1,2,7,9-Tetrachlorodibenzofuran;6;3;5;7;7;10;7;3;3;6;4;7;3;5;4;4;4;4;4;4;4;5;15;3;11;9;6;15;7;14;5;21;17;4;25;6;19;5;1;51;22;29;24;7;14;11;11;11;10;21;14;20;11;10;26;25;24;20;26;23;28;29;25;22;27;19;19;27;24;28;20;24;17;11;14;13;10;7;1;11;12;10;11;10;13;10;11;16;20;27;6;0;8;5;5;18;12;18;14;20;19;13;19;12;14;30;28;28;28;31;32;31;39;17;24;21;18;24;11;21;10;15;18;25;12;20;22;7;5;5;43;5;2;15;7;11;6;3;15;17;14;15;6;5;7;2;4;3;8;11;3;5;8;7;8;15;4;6;5;2;7;27;32;30;38;38;38;29;31;41;39;20;8;10;10;5;1;11;11;7;11;4;7;6;6;4;4;0;11;10;25;9;14;9;12;6;3;10;14;6;7;7;8;7;19;3;16;21;3;18;27;19;18;7;9;8;24;11;0;5;10;10;21;18;24;30;27;30;25;29;29;30;26;22;28;28;35;42;38;28;8;12;9;12;13;0;8;7;15;8;8;8;6;12;20;7;8;9;8;5;7;7;3;1;8;5;31;16;17;5;5;4;7;6;4;12;3;6;6;6;3;17;8;19;7;4;6;13;0;4;20;15;4;8;4;2;3;14;7;5;7;3;10;2;2;6;21;11;7;4;8;0;2;5;3;10;5;11;14;15;10;10;13;4;11;3;11;12;7;12;10;14;10;7;2;8;26;2;10;11;13;25;12;5;7;5;7;4;8;16;8;9;18;18;15;14;10;12;3;14;21;11;10;15;10;4;9;12;18;15;18;10;17;2;3;3;21;4;14;15;9;4;15;13;21;18
+2,2',3,4,5,5',6-Heptachlorobiphenyl;7;6;7;7;9;9;5;4;3;7;8;8;6;5;6;6;7;6;8;9;3;5;20;6;8;16;13;17;10;17;12;39;27;7;40;8;27;9;6;22;111;29;78;23;29;29;29;27;28;33;35;31;9;9;24;24;58;47;70;66;91;45;43;39;62;45;48;68;74;71;54;87;19;21;14;24;15;5;3;16;29;24;14;16;19;15;14;20;26;40;12;7;20;12;13;20;19;19;26;26;34;20;21;22;21;44;47;54;28;22;23;28;21;26;26;42;26;42;22;48;31;21;20;38;24;37;30;14;10;9;59;12;11;19;9;20;6;10;21;21;14;17;15;11;18;5;10;5;6;10;7;12;8;12;13;18;5;7;7;3;7;57;24;46;63;54;72;43;50;57;73;26;12;13;11;6;2;10;10;10;10;2;10;10;10;19;11;0;7;12;31;15;21;9;14;5;5;9;15;9;10;10;9;14;27;5;19;21;8;19;39;27;20;19;13;14;27;17;6;9;14;16;38;13;17;28;25;50;38;85;95;96;61;52;96;78;71;66;68;72;12;10;11;16;26;3;8;12;17;13;5;4;13;14;28;11;15;15;7;6;10;4;3;5;15;7;43;25;20;4;2;5;11;10;7;11;5;6;9;7;8;29;12;14;12;9;13;12;6;7;23;16;5;11;6;4;6;15;18;11;13;8;7;5;6;7;26;17;10;5;9;4;1;2;9;12;12;7;14;19;15;11;11;11;15;14;18;11;10;13;12;15;13;12;7;20;50;5;12;17;12;42;15;0;15;12;18;12;12;18;12;14;11;26;24;21;13;14;4;27;29;15;11;14;12;12;8;18;24;27;32;14;26;10;3;2;27;6;14;22;10;7;23;18;19;17
+2,4,6-Trichlorobiphenyl;6;7;6;11;11;15;12;7;6;10;15;13;10;9;9;9;8;8;9;9;7;5;15;5;11;11;11;21;5;17;10;24;23;12;36;12;22;7;2;29;29;54;27;6;26;24;26;24;26;25;21;34;15;16;22;40;40;36;33;29;30;47;47;39;40;34;36;35;37;36;26;29;18;18;14;16;7;8;2;15;16;16;14;14;11;9;12;15;19;19;9;3;15;6;9;18;13;18;14;16;24;16;17;15;18;29;27;25;24;26;26;24;19;21;25;24;15;25;18;30;19;15;15;21;12;16;13;10;11;9;39;5;6;20;9;15;6;6;17;21;15;14;13;8;11;6;13;2;8;12;5;11;11;8;10;16;9;6;10;4;9;42;17;31;40;27;39;30;34;38;40;32;15;20;18;4;3;8;13;10;11;4;12;7;6;12;7;1;12;17;28;15;20;11;17;5;4;12;17;10;14;11;13;10;32;6;18;24;7;18;22;22;25;15;13;14;26;13;3;9;12;15;18;22;33;45;42;48;44;30;29;30;37;37;29;38;40;35;40;36;12;12;10;15;21;0;8;14;24;15;12;11;13;17;26;5;14;9;11;5;9;5;4;3;9;6;38;17;19;11;6;7;13;10;6;14;5;7;10;4;6;33;9;24;8;6;11;17;1;6;24;19;4;10;2;3;3;22;19;9;10;4;14;4;5;6;23;9;9;16;9;3;1;3;6;11;10;12;15;17;9;17;17;9;18;9;17;19;8;17;15;21;7;6;9;16;32;3;12;13;20;39;18;3;7;10;12;9;9;19;9;9;16;23;17;31;4;14;11;24;35;13;20;21;16;6;15;11;16;23;32;19;25;4;3;2;31;13;23;16;7;1;18;13;28;26
+2,2',3,3',4,5',6,6'-Octachlorobiphenyl;6;6;12;10;11;5;8;8;7;12;21;11;13;8;10;11;9;9;10;9;4;5;19;6;9;28;13;19;20;28;15;52;40;14;45;16;64;12;9;24;78;27;189;19;18;18;20;18;18;34;37;31;11;19;31;23;49;39;68;57;81;36;32;31;53;39;41;66;69;68;52;78;20;19;28;33;16;7;15;34;33;31;32;31;43;33;31;33;36;35;24;9;16;21;23;18;15;30;34;35;45;25;28;27;37;41;45;49;35;26;31;31;30;28;31;39;27;36;25;68;27;16;23;55;29;40;31;13;11;10;65;20;7;18;8;22;12;11;16;21;13;22;13;11;15;12;15;3;7;10;4;9;10;12;12;25;18;23;25;8;34;51;29;48;62;50;78;40;48;58;67;23;22;17;19;12;3;11;30;25;25;10;15;25;19;12;7;0;17;19;51;19;20;12;21;7;6;16;22;14;20;14;16;20;19;15;17;31;13;35;33;33;32;17;20;18;32;37;8;9;18;25;45;12;20;29;26;41;30;86;87;90;55;45;95;74;75;62;59;69;23;12;10;13;45;3;9;13;36;14;20;18;14;24;52;11;21;14;12;8;10;4;4;8;9;5;45;20;22;10;2;8;36;10;9;29;6;4;8;4;13;40;12;34;15;16;10;21;3;4;27;18;6;19;10;6;7;33;31;22;17;14;24;4;8;9;23;18;20;7;22;6;1;2;12;20;10;23;23;14;10;28;23;12;18;20;20;14;10;34;21;28;13;12;8;32;93;6;15;16;28;39;26;9;20;11;13;14;13;27;11;14;14;44;41;31;10;22;10;30;45;20;16;19;9;22;17;20;34;47;41;44;49;8;2;3;27;50;63;57;18;5;53;38;71;51
+Mirex;0;0;0;0;0;0;0;0;0;0;0;0;1;3;1;2;0;0;1;1;0;0;2;0;1;5;4;0;0;2;5;18;5;2;9;3;2;1;1;7;23;6;19;86;7;6;7;6;6;16;20;5;1;12;14;4;17;11;19;26;31;9;8;7;17;13;12;18;28;20;13;26;6;1;1;9;1;4;0;0;12;11;0;0;2;1;1;2;8;16;1;0;8;3;5;3;2;2;2;7;10;3;5;4;5;27;32;38;25;17;22;29;8;10;17;30;28;34;25;42;39;26;30;25;10;43;45;13;10;4;57;2;1;3;1;1;1;1;2;4;1;3;1;1;0;2;1;0;0;0;1;0;1;0;2;2;0;0;0;0;0;47;39;54;62;61;44;54;57;33;61;11;0;15;14;0;0;6;1;0;1;1;0;0;1;8;5;0;2;0;2;2;1;1;0;0;0;0;0;0;0;1;0;3;6;0;1;3;1;2;25;8;6;9;3;2;9;3;3;8;5;4;47;1;3;6;3;12;6;29;32;33;19;13;46;25;53;47;44;22;0;2;2;4;4;0;3;1;2;8;1;1;4;2;4;1;1;2;0;0;6;2;0;1;3;1;16;13;5;1;1;0;0;1;0;3;1;1;1;0;1;4;7;3;0;1;6;5;0;2;8;2;1;3;1;0;2;1;2;1;2;1;1;0;0;1;4;4;2;2;1;0;0;0;1;3;0;1;1;0;8;2;2;3;1;1;7;3;3;1;0;2;1;1;3;8;29;1;2;3;3;12;3;0;6;2;4;2;4;5;2;1;2;6;3;5;5;0;2;5;7;1;1;4;4;1;1;3;4;2;9;3;1;0;0;0;1;1;1;1;2;2;1;1;2;2
+beta-Hexachlorocyclohexane;4;4;6;9;11;9;6;7;6;6;8;3;3;5;6;6;4;4;4;4;5;4;21;5;11;14;6;17;12;24;7;13;15;6;25;8;44;4;3;14;29;26;18;7;69;58;60;58;57;17;10;18;25;15;13;22;35;29;37;44;34;36;34;28;42;26;32;39;39;41;31;33;8;16;16;10;9;3;8;21;11;10;11;8;13;9;16;16;25;23;8;14;28;10;10;7;10;17;20;21;26;17;20;21;20;18;18;9;12;10;10;10;11;10;15;14;12;26;17;19;14;9;7;18;4;25;27;13;12;15;51;17;6;10;9;10;18;24;14;14;10;10;8;6;6;5;15;6;2;6;5;5;13;12;11;26;18;16;16;6;20;53;38;33;43;45;56;34;37;64;62;19;8;16;16;5;6;19;19;19;18;7;18;12;15;16;13;3;9;19;37;11;19;15;17;7;6;12;13;11;13;12;13;13;50;0;14;30;5;23;34;24;22;22;20;15;33;35;4;20;19;30;16;14;18;28;25;43;35;32;31;31;38;31;17;43;30;44;39;41;15;15;13;27;14;8;7;9;29;20;21;21;15;14;17;7;13;12;8;9;4;6;6;7;15;2;51;18;30;10;6;7;35;19;13;24;3;4;15;4;17;35;4;21;16;8;18;12;7;8;24;18;5;14;7;2;3;37;34;32;15;13;19;4;2;11;14;27;11;14;13;12;1;4;18;20;11;17;11;31;22;18;30;11;15;10;16;25;14;18;10;20;5;4;14;16;27;5;8;14;14;39;21;8;3;22;17;29;17;20;12;8;27;31;35;22;8;20;13;34;33;21;21;28;27;20;18;24;40;39;47;25;34;7;3;5;37;28;43;36;10;6;33;19;45;38
+alpha-1,2,3,4,5,6-Hexachlorocyclohexane;5;2;5;7;8;10;5;5;4;3;9;2;3;5;6;4;2;2;2;2;3;4;15;7;12;13;6;14;13;30;8;15;14;6;22;10;43;7;4;11;29;24;18;6;58;62;60;57;60;13;11;13;18;14;9;21;33;28;32;38;29;33;32;27;37;26;30;36;34;37;27;28;13;18;19;12;7;7;7;22;13;12;18;10;14;10;17;18;23;20;11;13;27;15;16;14;12;18;18;23;23;18;23;19;19;14;16;8;9;6;7;5;9;9;13;11;9;22;16;16;14;8;6;14;4;26;26;11;11;13;48;19;6;10;9;12;14;22;12;13;10;11;8;7;7;6;17;4;6;8;5;6;11;8;11;20;13;10;11;4;14;46;38;24;39;31;52;29;31;59;48;15;3;15;15;2;5;13;14;12;13;7;15;9;13;12;12;3;7;14;26;7;18;10;13;6;5;11;9;10;10;12;11;9;44;2;13;25;6;19;30;19;22;18;17;17;29;24;4;22;19;28;19;13;19;26;23;38;32;29;27;27;36;28;18;39;24;35;32;37;20;9;8;24;10;3;7;9;22;13;13;12;15;13;15;6;11;12;10;7;6;4;2;7;12;4;39;21;22;6;8;4;31;14;9;19;3;5;17;3;13;29;6;18;11;9;16;10;6;7;24;21;4;15;11;2;5;32;33;23;17;11;13;3;2;7;12;22;12;8;12;10;5;5;14;17;11;14;12;25;15;17;22;9;20;14;11;22;19;17;14;20;7;6;13;10;26;4;8;11;10;33;15;9;3;19;17;23;14;17;10;8;26;30;26;18;6;18;12;24;32;12;15;30;20;15;13;18;36;33;39;24;32;7;3;5;39;23;40;31;9;4;29;19;42;36
+Lindane;5;3;5;7;7;9;5;5;4;3;8;1;3;5;6;4;3;3;3;3;4;4;16;7;12;14;7;16;11;29;7;16;14;6;22;11;43;6;3;11;29;26;20;7;60;60;67;60;62;15;11;14;18;15;10;22;33;28;33;40;30;35;33;27;39;26;30;35;35;37;28;30;13;17;19;12;7;7;6;25;13;12;19;10;14;11;18;19;22;20;11;15;28;15;17;14;13;18;18;22;23;17;23;17;20;15;16;9;9;6;8;6;10;10;12;13;9;20;15;18;14;9;7;16;5;28;28;14;14;16;51;19;6;12;10;12;13;23;13;13;11;11;8;7;6;8;19;4;7;8;4;6;11;8;11;21;13;10;9;4;13;49;42;26;44;34;55;31;33;63;51;16;3;16;17;1;5;16;14;13;14;8;15;10;14;12;11;3;9;15;26;10;18;10;15;6;5;12;9;10;10;12;11;9;44;2;14;29;5;19;32;22;24;22;18;17;30;26;4;23;20;28;19;12;19;27;24;40;33;31;29;29;35;28;19;40;28;37;35;38;21;9;7;25;11;4;9;9;23;15;14;13;15;14;17;6;11;12;10;6;5;3;2;7;13;3;43;21;23;7;8;4;31;13;10;20;4;4;17;2;14;31;5;18;13;8;15;11;7;5;26;22;6;15;11;2;4;31;35;23;17;10;16;3;2;7;13;23;14;10;14;11;5;6;13;18;10;15;11;27;15;17;23;8;23;12;13;24;18;15;13;19;6;5;13;10;29;3;7;12;10;37;16;9;3;18;16;25;13;18;12;9;26;32;28;17;7;17;13;27;35;11;17;32;20;15;14;18;39;35;42;25;33;6;2;4;41;24;41;32;8;4;29;18;44;39
+delta-Hexachlorocyclohexane;5;3;4;7;7;8;5;5;4;3;8;1;3;5;6;4;3;3;3;3;3;4;16;7;11;12;5;14;13;28;6;14;15;6;24;9;41;7;2;11;27;24;18;6;58;57;60;64;59;14;11;14;20;15;12;21;32;27;33;38;29;33;32;26;37;25;30;35;36;37;28;28;12;18;16;9;5;4;4;21;11;9;18;8;14;8;17;18;21;19;8;12;25;15;14;14;11;17;16;23;22;14;19;17;19;14;16;8;10;6;7;8;7;9;13;13;10;21;15;18;15;9;7;14;6;24;26;11;11;12;46;20;6;11;9;12;15;21;10;13;8;11;7;5;7;6;17;4;5;8;4;4;10;8;10;20;14;11;10;5;14;48;41;25;44;33;54;31;33;59;50;17;6;15;15;1;5;13;12;10;11;7;13;6;14;11;12;3;8;16;27;10;16;11;16;6;5;11;9;10;11;11;11;9;44;2;12;27;8;21;32;20;22;20;19;16;28;24;3;21;19;26;18;12;18;26;23;38;33;28;27;26;34;28;16;39;27;38;35;37;22;9;5;23;11;3;7;9;19;14;13;12;14;11;17;4;10;9;9;6;3;2;2;7;14;2;41;20;23;6;6;4;29;12;10;18;3;3;16;3;11;30;3;18;11;10;15;9;7;5;25;19;5;14;12;2;4;30;32;20;17;10;16;3;2;6;12;24;13;10;14;8;5;7;12;16;9;16;9;26;15;19;21;8;22;12;13;24;16;14;12;18;7;6;13;11;26;4;8;12;10;34;17;9;3;18;16;24;13;18;10;9;26;29;28;16;6;19;11;27;34;13;16;29;19;15;13;20;36;33;40;23;32;6;2;4;40;24;38;30;8;3;26;20;42;37
+epsilon-Hexachlorocyclohexane;5;3;4;7;8;10;5;5;4;3;9;2;3;5;6;4;3;3;3;3;4;4;16;7;11;13;8;16;14;31;9;17;16;6;22;11;43;8;4;10;28;26;18;6;57;60;62;59;66;14;11;15;18;16;11;22;33;28;34;39;28;34;33;27;37;26;30;35;33;37;26;28;15;20;21;14;9;9;7;23;15;14;21;12;15;10;19;22;23;21;13;15;29;15;17;14;15;20;21;24;24;18;24;17;20;14;16;8;9;5;7;5;7;10;13;12;9;22;16;19;14;9;6;16;6;28;29;13;13;13;50;20;7;12;10;13;13;21;13;15;11;13;9;9;6;8;18;5;8;10;5;9;11;9;11;20;14;11;12;4;15;47;40;24;43;31;55;28;30;62;51;17;3;17;18;3;5;14;15;13;14;8;16;11;15;14;14;3;9;15;29;9;18;10;15;7;5;12;9;10;11;11;11;9;46;2;14;27;7;18;33;22;23;20;18;17;31;25;5;23;20;26;20;13;19;28;25;38;33;29;27;27;35;28;19;40;25;34;32;38;22;11;7;23;11;4;8;9;20;17;12;11;15;12;17;6;13;13;10;7;7;4;3;6;13;5;43;23;24;6;7;4;31;15;10;18;3;5;17;4;13;30;7;19;13;10;15;14;7;7;26;22;6;16;11;2;5;32;32;23;17;11;15;3;2;6;13;22;15;9;13;11;5;6;13;18;10;15;13;27;16;19;22;8;24;13;12;25;18;16;12;19;10;9;13;11;26;4;7;10;10;34;16;9;6;19;17;23;14;20;13;11;26;32;28;18;7;18;13;26;37;12;16;33;20;16;13;19;36;36;41;28;36;7;3;5;40;25;41;32;9;5;30;21;43;37
+Pentachlorobenzene;8;5;6;6;7;4;4;5;5;6;9;10;9;6;6;6;5;5;6;6;4;5;10;5;8;4;8;11;3;6;12;15;20;10;26;7;11;7;1;21;33;25;34;16;17;13;15;14;14;52;33;30;5;7;16;21;33;27;36;27;41;32;29;27;35;27;28;37;37;38;28;38;7;4;2;2;1;1;0;3;6;5;1;0;5;3;7;6;10;16;4;4;12;3;5;6;2;4;7;9;8;3;4;4;8;36;33;31;17;17;19;21;18;18;25;24;16;24;18;28;15;18;19;16;3;24;25;8;5;5;36;4;5;14;5;15;3;2;12;16;12;11;10;11;10;5;5;2;3;5;4;5;3;3;9;7;3;3;3;3;6;40;23;35;46;38;44;30;34;42;49;17;6;7;8;3;2;5;8;7;7;1;5;4;5;10;5;0;6;6;22;12;11;6;11;6;6;8;11;9;9;8;8;7;18;6;12;12;6;14;25;15;20;14;7;8;19;6;1;9;9;8;26;8;15;26;24;33;26;41;40;42;35;29;43;37;40;41;37;36;4;3;5;9;15;1;5;6;8;13;5;5;9;16;20;7;5;12;4;5;2;2;3;0;12;4;23;15;14;6;1;4;3;3;5;5;4;1;2;0;2;9;3;10;5;2;6;12;5;2;16;14;5;6;4;4;4;4;7;4;6;0;8;1;3;7;18;6;7;4;5;1;0;0;3;10;6;5;3;8;11;11;4;9;10;2;18;7;3;6;6;9;6;4;4;9;21;2;10;14;8;22;7;0;5;5;8;6;6;10;3;1;4;13;9;15;5;6;3;15;17;5;7;7;5;5;3;8;8;10;15;3;10;6;1;1;19;2;5;6;5;2;7;4;12;8
+Hexachlorobenzene;7;4;5;7;8;5;5;6;5;5;8;7;8;5;6;6;5;4;5;5;3;4;9;4;7;4;8;7;3;6;8;21;14;9;25;6;9;4;1;14;35;21;37;20;10;11;11;11;11;33;50;25;2;6;16;17;35;27;36;19;37;28;26;25;36;29;26;37;39;37;28;37;5;6;2;6;3;1;2;4;9;7;3;3;5;3;4;5;9;14;5;4;11;4;5;11;3;6;6;10;9;5;6;7;5;32;35;33;20;19;19;21;15;15;19;23;20;31;20;29;16;12;17;15;1;15;17;6;4;3;29;3;5;10;4;12;3;3;8;14;9;8;10;9;7;4;5;2;2;6;3;6;2;2;8;7;3;3;3;2;6;27;21;29;42;32;33;29;33;28;37;14;5;6;7;3;0;3;5;5;5;1;5;3;3;8;2;1;4;7;20;11;10;5;10;6;6;7;10;9;9;8;9;6;16;4;8;8;3;8;20;10;16;12;4;7;14;4;1;7;11;6;19;8;13;21;19;29;25;40;41;41;34;30;42;37;40;37;34;36;3;2;1;4;12;1;3;6;4;12;5;5;5;13;18;4;4;7;0;6;4;2;1;3;9;2;27;14;10;2;2;3;6;1;3;6;4;0;3;0;2;7;4;9;5;2;5;15;1;2;12;12;5;5;1;3;3;4;4;2;5;1;4;2;3;4;12;5;3;2;5;0;0;1;3;6;5;6;4;4;9;5;5;8;5;3;7;4;0;5;5;6;3;2;4;7;19;2;7;9;9;18;5;0;6;2;5;4;4;4;4;3;1;8;8;17;4;3;3;14;15;2;5;7;4;1;2;4;6;7;10;2;7;4;1;1;7;4;5;6;5;1;8;6;10;6
+2,4'-Dichlorodiphenyldichloroethylene;4;10;4;13;13;10;8;11;9;6;11;8;8;5;8;5;6;9;10;10;6;8;13;8;10;14;7;14;9;17;5;21;23;7;34;6;17;6;2;20;31;34;31;5;18;13;14;14;15;30;25;53;18;37;21;32;39;34;36;16;31;39;39;37;40;36;34;34;38;37;27;31;17;19;8;9;9;4;3;13;16;15;10;8;10;9;11;13;16;23;5;8;15;9;9;16;13;19;13;21;25;15;17;16;19;24;20;20;16;18;17;16;18;16;20;20;13;16;14;33;18;11;10;20;15;12;11;7;3;2;24;3;5;10;9;12;6;5;16;18;10;9;9;6;8;4;7;2;5;9;4;5;8;9;11;12;5;6;6;3;7;26;17;33;41;30;47;30;34;42;45;50;7;29;38;4;5;15;8;5;6;4;10;8;7;10;12;1;8;20;29;11;17;12;14;7;6;10;11;8;9;9;9;9;23;4;15;21;8;12;22;13;18;10;13;14;22;12;4;2;14;15;16;17;25;35;32;42;38;34;33;33;42;37;29;38;32;30;33;35;7;10;6;12;19;1;3;9;17;11;12;12;13;16;26;3;10;9;7;5;11;3;3;5;8;7;36;18;20;10;3;5;15;9;6;9;4;3;7;4;6;28;12;19;7;6;12;14;1;6;15;19;5;4;2;2;4;14;20;9;10;8;11;2;2;5;20;12;6;6;6;2;1;2;5;11;10;9;12;16;9;16;14;7;14;8;11;18;9;17;8;14;10;8;7;13;30;4;10;8;18;34;11;1;7;8;10;7;9;17;10;11;15;19;14;28;4;10;5;18;30;10;16;16;11;8;12;12;18;20;20;17;20;3;2;3;20;8;19;13;7;0;13;11;24;20
+2,4'-Dichlorodiphenyldichloroethane;3;4;3;14;15;12;8;11;9;12;15;9;4;5;10;9;2;4;5;6;9;7;13;7;10;13;10;16;15;12;8;4;13;12;17;3;29;5;1;11;9;15;11;1;25;18;18;20;18;5;2;18;45;40;13;11;10;5;6;11;5;12;11;9;9;6;6;5;6;5;3;4;6;12;15;7;10;3;11;16;10;9;13;10;13;10;9;15;23;25;10;9;15;6;5;7;6;14;15;16;21;18;17;18;23;17;15;15;16;11;11;11;12;12;13;5;5;11;7;21;10;5;2;23;10;13;12;0;3;2;28;7;5;9;8;16;12;14;11;11;6;20;6;1;3;6;10;3;4;5;2;2;10;11;5;20;11;11;10;7;14;25;15;19;29;15;36;14;17;35;42;20;14;38;38;3;4;12;12;12;12;2;12;10;7;12;12;1;6;19;28;15;11;8;12;5;4;9;9;7;9;9;9;11;24;2;7;27;5;24;19;18;17;9;9;12;20;31;2;7;16;20;8;14;16;14;12;11;11;6;5;5;7;5;3;5;19;24;17;5;13;17;13;15;19;4;3;10;22;13;19;18;5;11;18;5;12;11;6;9;5;7;3;5;9;3;32;11;19;8;4;5;15;13;6;13;3;3;7;8;4;25;6;19;10;8;11;15;0;5;14;8;4;4;8;1;3;23;19;9;10;10;8;2;4;9;13;17;7;5;8;2;2;1;5;14;9;10;13;20;6;18;14;5;13;13;16;12;7;14;10;18;9;6;10;16;29;2;7;8;16;27;13;7;4;14;13;7;10;21;16;10;22;21;27;21;2;18;16;21;24;18;21;16;10;20;12;15;25;30;30;24;28;3;0;0;20;20;32;21;9;4;20;13;26;22
+2,4'-Dichlorodiphenyltrichloroethane;4;4;3;12;12;9;8;13;11;12;13;11;6;4;11;9;2;3;4;4;8;8;14;7;13;16;11;10;7;17;7;15;23;17;27;4;20;3;1;10;9;16;19;12;15;14;15;15;16;7;6;37;40;66;19;12;14;10;8;33;11;17;15;13;15;10;9;8;14;8;4;9;12;15;12;21;16;10;8;15;15;16;13;11;18;16;12;14;24;26;8;8;14;9;9;17;11;22;15;22;31;20;19;20;28;12;14;14;20;12;11;12;14;8;10;20;15;22;15;37;25;15;19;31;17;22;24;7;6;3;40;5;5;9;8;13;3;6;16;16;9;11;8;3;5;7;9;3;4;6;1;4;9;11;9;14;5;4;5;3;6;42;20;34;44;35;52;36;40;47;60;37;24;47;59;3;3;13;11;7;6;6;13;6;7;9;18;1;9;20;35;14;15;9;15;4;3;14;17;9;16;10;12;13;21;5;13;25;8;19;20;13;18;10;12;10;25;18;5;4;16;20;14;13;15;14;12;18;16;9;8;8;11;10;16;9;39;48;36;8;9;14;6;17;19;4;7;8;22;11;15;15;8;17;23;5;14;14;4;6;6;2;1;6;4;5;37;17;15;8;3;3;19;10;3;13;1;5;9;5;4;33;7;21;11;7;11;14;0;4;12;13;5;7;7;1;3;18;19;11;8;13;7;1;3;4;12;12;10;7;6;1;1;1;4;11;9;8;13;16;9;18;13;6;15;11;13;18;13;14;8;13;9;8;9;17;38;2;11;9;19;31;12;3;15;13;14;4;6;26;18;15;33;19;14;19;7;16;12;22;29;19;25;20;11;13;17;13;25;24;27;30;24;2;0;1;26;10;28;14;6;2;15;10;24;21
+1,2,7,9-Tetrachlorodibenzo-p-dioxin;8;5;5;8;7;10;6;5;5;5;6;6;3;6;7;5;6;6;6;6;5;4;16;5;11;14;7;20;13;28;12;20;22;6;35;11;31;9;4;26;24;22;31;14;13;9;10;12;11;16;16;21;13;19;66;19;31;23;29;27;29;28;28;23;32;26;24;29;30;30;21;27;18;18;19;16;15;9;4;13;21;23;15;14;18;15;15;22;24;20;8;3;11;12;13;21;17;19;15;24;33;11;21;22;20;32;34;30;22;25;19;22;23;33;33;21;19;28;16;36;19;16;15;24;20;25;21;9;9;7;42;14;7;20;7;17;11;10;19;21;11;17;11;6;13;9;10;4;10;13;4;9;12;8;10;19;11;13;15;4;16;33;19;34;42;34;43;32;36;45;44;16;13;10;21;8;4;13;16;13;12;2;13;15;8;9;10;3;10;12;30;9;16;10;16;7;4;12;15;5;11;7;7;6;20;8;17;22;10;20;19;18;23;9;14;14;23;19;6;7;16;10;15;15;17;22;21;32;24;27;27;32;34;29;30;31;29;34;32;29;15;11;11;13;21;3;6;8;21;9;8;7;9;21;26;8;15;9;7;7;12;7;2;5;9;6;38;13;23;7;3;4;16;11;7;15;3;6;8;8;9;27;12;16;14;11;10;14;3;5;22;15;5;11;11;5;3;22;13;12;14;6;15;5;7;9;19;12;7;5;10;4;0;3;12;15;5;13;17;12;9;14;20;8;18;14;15;11;11;18;9;13;11;8;3;11;36;7;8;14;17;29;12;4;7;6;7;7;11;18;3;8;9;19;19;15;5;10;5;18;28;13;13;15;11;14;7;12;20;21;17;18;23;6;2;6;23;17;26;26;12;3;24;22;35;25
+2,4,4'-Trichlorobiphenyl;4;6;5;11;11;15;12;7;6;6;10;11;6;7;7;7;6;6;7;7;5;5;14;5;10;9;8;16;3;16;4;22;21;10;33;8;17;6;1;25;24;40;23;4;22;21;22;21;22;21;17;32;11;12;19;40;33;32;28;22;24;38;39;33;33;32;32;29;30;29;22;24;14;17;12;12;3;5;2;11;12;12;12;13;9;7;9;12;15;14;6;3;11;5;7;16;10;15;12;13;19;14;13;12;16;23;22;20;22;24;23;22;18;18;19;18;12;18;17;21;13;13;11;17;8;12;10;7;7;6;31;4;4;12;9;13;4;4;12;17;10;9;8;4;6;4;8;2;6;9;5;7;8;4;8;11;9;5;9;2;8;37;15;27;33;23;31;26;30;31;33;29;10;18;16;4;3;6;13;9;11;3;10;7;5;9;6;1;9;14;24;11;17;11;14;5;4;10;15;9;12;9;12;6;27;5;14;21;5;11;16;20;20;12;11;11;19;8;3;6;9;11;14;22;31;40;39;39;38;25;23;24;31;32;24;31;31;28;31;29;9;11;9;11;16;0;4;11;20;11;12;11;9;11;19;2;12;7;10;5;7;5;3;3;7;5;30;14;17;10;6;6;12;8;6;12;4;7;9;4;5;26;7;19;3;4;10;14;1;6;21;15;3;5;1;2;3;15;16;7;5;3;10;2;4;4;19;9;7;16;7;2;1;3;5;10;9;8;11;12;6;14;14;7;14;8;11;15;6;15;11;18;6;5;6;14;23;2;10;8;18;31;15;3;7;7;10;7;7;14;6;6;14;19;13;24;3;10;8;20;26;11;16;17;14;6;14;10;12;18;26;17;20;4;2;2;26;11;17;14;5;0;15;12;20;18
+2,2',4,5,5'-Pentachlorobiphenyl;5;4;6;6;6;11;6;5;4;6;9;10;5;7;6;6;5;4;5;5;3;5;13;5;7;10;7;18;9;16;11;26;25;7;35;9;22;8;2;24;58;40;49;17;35;33;33;32;33;33;35;39;10;14;31;33;81;55;66;66;66;59;52;45;78;56;55;64;65;65;47;60;20;13;12;19;11;9;2;10;24;23;9;9;14;10;6;10;15;25;7;6;19;8;11;22;15;16;18;21;25;15;17;15;18;36;38;36;24;23;23;29;20;27;30;24;16;31;23;38;24;17;14;20;13;24;24;14;10;9;49;7;6;17;9;23;8;9;19;22;15;13;12;8;13;2;7;3;6;10;5;11;8;11;10;19;10;8;9;4;8;56;19;48;60;49;57;46;48;59;56;35;12;21;17;4;4;10;9;7;7;0;11;8;7;13;10;1;5;13;29;14;19;10;14;5;4;10;14;9;9;9;9;10;37;5;19;21;5;18;29;18;22;19;14;14;27;13;3;12;15;16;18;16;24;39;36;61;51;65;67;66;72;59;52;66;45;57;61;65;11;11;10;16;21;1;6;13;24;14;7;7;16;17;26;7;16;13;6;7;17;7;4;4;14;6;40;23;22;6;6;5;9;12;5;8;4;5;10;3;10;29;18;22;10;10;9;12;2;8;23;15;4;10;2;2;4;18;17;12;14;8;10;2;6;11;22;14;7;7;8;4;1;3;9;17;12;9;13;18;13;17;14;10;15;12;17;13;14;15;11;18;10;9;8;14;43;6;12;15;20;47;18;0;11;17;17;8;8;18;12;9;12;21;18;33;9;11;6;26;34;15;20;21;18;9;13;13;18;26;32;16;22;8;3;2;25;9;18;21;8;2;23;15;25;21
+2,3',4,4',5-Pentachlorobiphenyl;5;4;5;5;5;10;5;4;4;4;6;8;4;5;4;4;4;4;4;4;2;3;11;3;7;7;3;14;7;12;7;22;20;4;29;8;15;8;2;20;47;36;39;11;29;28;28;27;28;27;27;34;5;10;23;32;55;58;49;49;51;47;46;44;57;51;55;49;51;48;42;49;16;11;10;16;7;5;2;9;20;21;6;7;12;8;5;8;13;18;6;5;12;9;12;17;11;12;13;17;19;12;13;12;13;29;29;25;21;19;20;23;16;21;26;18;14;25;19;25;18;14;13;15;11;22;21;11;9;8;38;6;3;12;7;18;7;9;14;19;12;11;8;4;9;2;4;2;5;6;5;5;7;7;7;14;10;7;8;4;6;45;13;36;46;39;43;33;35;45;43;28;10;20;13;3;2;5;7;7;7;0;8;7;7;8;9;1;4;11;21;8;17;7;12;4;3;7;10;6;7;7;6;9;29;4;15;19;5;12;23;14;17;14;11;15;18;8;3;8;10;12;14;13;20;37;35;50;46;50;51;50;55;53;42;47;36;46;48;47;10;10;7;12;15;1;4;9;16;11;6;6;11;15;21;5;14;10;6;5;12;4;2;1;9;4;30;18;16;5;5;4;8;10;3;5;4;4;7;3;7;23;12;17;7;8;8;9;2;4;20;13;4;7;2;2;3;14;14;10;10;7;8;2;6;7;21;10;6;7;4;4;1;3;7;14;11;6;10;11;10;14;8;10;14;11;16;8;9;11;10;15;8;8;4;10;35;5;10;10;16;37;15;0;8;9;10;6;6;15;10;5;9;14;13;27;8;9;5;21;27;12;12;17;15;6;11;9;12;21;26;13;19;6;3;2;18;7;15;17;5;2;17;12;19;16
+2,2',3,4,4',5'-Hexachlorobiphenyl;6;5;5;5;7;9;6;3;3;5;9;10;5;6;5;6;7;6;7;7;4;5;16;6;8;14;7;19;10;14;11;26;26;6;35;8;25;10;4;26;70;33;68;19;37;32;33;33;34;36;36;36;6;8;29;28;66;49;94;94;81;47;40;41;70;49;50;79;74;82;58;73;12;11;12;23;8;5;4;10;26;21;7;11;18;11;8;12;17;30;7;6;13;8;8;15;11;10;14;16;26;14;13;14;14;45;45;39;26;27;30;32;25;22;34;28;17;26;20;37;23;17;15;25;21;33;33;12;15;8;55;9;6;16;9;20;6;9;18;21;15;13;11;8;14;3;6;3;5;7;5;8;7;11;10;17;6;7;8;3;7;52;23;52;64;55;65;49;55;58;69;30;8;19;11;6;2;8;9;7;7;1;10;8;9;12;13;0;6;11;32;13;20;10;14;6;5;7;13;7;9;7;7;10;29;4;19;25;5;17;32;22;20;17;11;13;24;13;4;8;13;17;29;15;21;34;31;52;41;76;84;82;69;55;68;84;65;69;68;82;10;10;10;16;17;3;5;9;16;15;6;5;10;19;27;8;15;13;6;8;9;5;3;3;13;7;37;23;19;6;3;5;11;12;4;9;5;4;9;5;8;26;10;18;10;9;8;12;5;7;26;15;5;9;2;3;4;16;14;10;15;8;9;3;7;9;23;12;8;4;7;5;1;3;9;19;11;8;14;16;12;15;12;10;14;10;19;13;9;18;12;17;11;10;6;19;40;6;12;14;16;43;15;1;9;14;15;7;9;17;10;9;11;23;20;30;11;12;5;20;30;16;11;13;10;9;9;11;17;20;33;12;20;7;4;3;23;9;16;23;9;4;22;18;19;17
+2,2',4,4',5,5'-Hexachlorobiphenyl;9;6;3;6;8;10;8;5;5;6;5;8;5;7;6;7;5;6;7;7;6;6;16;5;12;16;8;19;10;19;6;28;23;8;43;5;22;9;3;23;66;29;57;26;44;38;40;38;39;27;19;16;11;33;27;22;66;49;94;118;78;44;41;37;70;47;51;90;84;96;64;71;18;13;13;33;13;9;6;11;24;26;10;12;22;15;8;12;24;37;8;7;19;10;10;23;15;16;15;24;32;17;19;19;19;42;50;44;26;19;25;21;21;29;39;31;24;41;27;47;25;23;24;41;19;44;42;18;12;10;65;11;5;17;9;19;6;12;15;21;14;13;13;7;15;3;6;2;6;8;5;8;8;10;9;13;5;4;5;5;4;69;32;55;84;64;85;56;61;74;84;24;14;22;35;6;4;26;7;6;6;2;11;6;10;16;14;1;7;11;40;7;19;10;20;5;4;17;20;12;20;13;14;13;31;4;17;25;5;12;45;18;21;18;7;9;26;13;5;10;12;20;32;13;18;27;25;51;40;73;77;80;70;55;66;99;71;77;72;96;9;10;11;17;21;3;6;9;23;11;3;2;10;10;25;8;19;10;7;9;13;4;4;7;9;5;47;21;22;4;4;5;13;13;4;10;4;4;10;8;12;31;15;23;12;6;11;9;5;6;22;10;5;6;2;4;4;15;15;11;13;9;11;2;7;9;20;13;8;11;7;6;1;3;8;14;11;9;12;20;14;14;15;7;16;12;25;16;12;19;13;21;11;10;7;16;61;4;11;19;21;45;17;2;17;17;19;9;9;28;17;8;24;26;19;24;11;12;7;26;29;22;16;21;17;15;14;24;22;20;40;15;19;8;3;2;35;9;20;23;6;6;22;18;22;15
+2,2',3,4,4',5,5'-Heptachlorobiphenyl;7;8;8;7;9;8;6;4;4;7;10;9;9;5;6;7;9;8;10;10;3;5;19;6;7;13;10;16;8;16;13;42;28;9;40;8;26;9;4;28;91;30;81;31;34;29;30;29;28;41;37;31;5;11;29;24;66;51;81;78;122;47;44;40;70;50;52;78;83;82;58;100;12;14;12;27;9;4;2;11;27;23;10;13;18;14;12;14;24;44;9;8;15;10;11;16;11;17;23;26;35;15;17;17;19;58;57;63;39;30;33;40;29;29;34;51;30;45;26;54;31;22;21;43;20;40;33;15;13;9;65;13;8;19;8;21;5;7;17;19;13;16;14;12;16;3;7;3;6;9;8;10;5;9;12;16;5;7;7;3;7;67;30;58;71;67;81;52;57;68;85;26;11;13;15;7;1;11;10;9;9;1;10;9;9;14;8;0;7;13;30;18;23;11;18;8;7;9;16;8;9;9;8;17;30;6;17;23;5;17;44;28;25;22;12;14;30;15;4;11;15;18;37;14;21;29;27;53;40;104;112;111;69;57;108;91;83;78;77;88;11;9;9;17;26;3;8;10;20;14;6;5;14;17;27;10;13;15;5;11;11;5;3;4;15;6;45;28;21;5;2;5;9;8;6;13;6;4;6;4;9;32;12;18;10;7;13;14;6;6;27;16;5;11;4;4;5;13;15;7;13;6;10;3;7;9;31;14;9;5;10;4;1;3;8;15;11;10;15;19;13;11;14;11;12;13;23;10;12;14;12;15;11;9;3;19;52;6;15;19;17;47;16;0;15;14;18;8;9;20;11;12;10;28;25;26;12;14;3;25;32;16;13;13;13;11;8;16;20;28;36;13;25;9;5;4;29;4;12;21;11;5;22;17;20;18
+2,2',5,5'-Tetrachlorobiphenyl;7;7;6;9;9;13;9;7;6;10;11;10;6;10;11;11;9;8;9;9;5;6;17;6;10;14;8;17;8;20;8;26;28;9;33;8;22;9;1;29;45;47;36;9;36;33;35;33;34;32;28;39;12;17;28;38;59;47;47;44;47;70;55;51;62;47;48;48;52;50;41;43;22;25;14;15;7;8;2;10;20;22;10;10;9;7;10;12;19;22;8;6;17;8;11;21;13;17;16;22;26;18;19;16;18;31;29;27;21;23;22;27;20;26;27;21;13;27;21;30;18;18;15;18;11;22;19;13;9;10;48;8;6;18;8;21;8;8;18;24;14;11;12;8;11;2;7;2;5;10;5;10;10;11;11;20;9;7;9;4;9;53;20;42;50;40;50;42;44;49;52;33;14;24;20;3;3;11;7;4;5;0;9;6;7;15;10;2;6;18;33;15;24;10;14;6;5;13;16;12;12;13;13;12;39;5;20;20;7;18;25;21;25;19;16;15;25;14;2;13;13;15;17;19;29;50;44;67;58;46;45;43;59;47;35;54;42;44;46;51;13;12;9;13;22;2;7;13;24;12;11;11;19;21;30;5;16;10;9;7;16;4;4;3;12;4;44;25;22;7;6;5;11;11;5;11;3;7;11;5;9;32;16;23;10;9;15;15;1;4;22;19;4;9;2;3;3;17;14;15;12;7;11;3;4;9;23;12;9;10;9;4;1;3;7;15;12;10;15;17;9;16;15;9;15;8;16;17;16;17;12;17;7;6;6;13;38;5;12;11;22;42;19;2;7;18;20;11;13;18;9;8;16;20;17;34;6;12;6;27;38;12;23;23;19;8;13;17;23;23;34;16;23;7;3;2;31;11;23;16;8;1;19;13;25;23
+2,3',4,6-Tetrachlorobiphenyl;6;6;5;10;10;13;9;7;6;8;11;11;5;8;8;8;7;6;7;7;4;4;15;4;9;11;6;16;10;19;6;26;24;7;35;7;19;7;1;25;43;47;32;8;34;32;33;32;33;29;26;39;11;15;28;39;52;46;40;41;44;55;61;47;54;46;47;43;46;46;35;41;18;21;15;14;7;8;2;11;19;20;11;12;10;8;8;12;17;18;7;5;17;6;10;21;13;13;17;21;21;17;17;20;16;29;28;25;19;21;20;24;17;24;25;21;12;23;20;25;16;17;15;20;15;20;18;12;8;8;42;7;4;16;7;18;8;8;16;23;13;12;10;6;10;2;7;3;5;8;5;9;10;10;9;19;10;8;10;4;8;49;17;39;47;35;45;37;39;46;47;33;14;22;19;4;3;9;9;5;6;0;10;8;6;11;9;1;5;16;33;12;20;10;13;5;4;11;17;11;11;12;11;9;36;4;18;21;5;18;21;17;20;17;13;12;23;13;2;12;13;13;15;19;27;47;42;57;50;42;42;41;51;46;31;48;40;42;45;46;12;12;10;12;19;1;5;13;25;11;10;10;18;19;26;5;16;8;8;6;13;5;3;3;12;6;40;23;22;8;5;6;12;11;4;9;3;7;10;5;8;32;13;21;8;11;13;17;2;6;21;19;3;8;2;2;3;17;13;11;11;7;10;2;5;8;22;11;8;7;7;3;1;3;8;14;11;9;15;15;10;18;14;7;16;9;15;16;15;14;10;17;7;6;7;14;35;5;13;11;20;39;18;1;7;16;18;9;11;16;10;8;11;19;16;33;5;13;8;22;35;10;19;19;15;9;13;13;23;23;29;20;24;7;3;2;31;10;23;17;8;1;19;13;24;24
+2,3',5',6-Tetrachlorobiphenyl;7;5;5;8;8;13;8;6;5;7;8;10;4;9;8;8;7;6;7;7;4;3;13;3;9;10;6;15;7;14;6;23;17;6;29;7;20;9;1;22;39;39;31;7;28;27;27;26;27;27;25;37;9;13;23;33;45;44;41;37;40;51;47;51;46;42;43;41;43;42;36;39;16;18;13;12;7;7;2;10;16;18;8;8;10;7;9;9;15;15;7;4;13;6;9;17;10;14;13;18;17;13;15;14;13;25;25;21;18;19;19;21;14;21;23;16;10;19;16;21;14;15;13;14;10;17;15;11;8;8;37;7;4;14;7;16;8;9;15;22;12;10;9;5;9;2;6;2;5;7;5;7;9;8;8;17;8;6;9;3;7;44;12;33;41;31;36;31;33;38;37;29;10;19;17;2;3;6;7;4;4;0;8;6;5;10;9;1;5;14;25;10;17;8;11;4;3;10;14;9;10;10;9;8;33;4;17;18;6;14;19;13;18;14;12;13;20;9;1;8;11;11;14;18;26;41;35;51;48;40;39;39;46;43;31;45;32;35;38;44;12;11;8;10;17;2;5;10;17;12;10;10;15;17;22;4;14;8;7;4;11;4;3;2;11;4;33;22;17;6;5;4;10;10;3;8;3;6;8;4;7;24;11;20;8;8;12;12;0;4;20;17;4;8;2;2;3;14;13;10;11;7;10;2;4;6;19;10;9;6;6;4;1;3;8;14;12;8;12;11;8;15;10;7;14;7;11;11;11;13;11;16;7;6;4;13;30;5;11;10;18;35;18;1;6;16;17;10;12;13;8;7;11;14;14;27;4;11;5;22;30;9;15;16;15;7;11;12;17;20;27;15;20;5;3;2;21;9;19;14;5;0;16;12;21;19
+2,2',3,4',5-Pentachlorobiphenyl;6;6;6;6;6;11;6;5;4;6;9;10;5;8;6;7;7;6;7;7;4;7;17;6;8;12;9;21;11;17;11;28;27;7;35;9;24;9;3;27;62;40;53;17;42;37;39;37;37;35;36;40;9;15;32;33;78;57;70;70;70;62;54;46;89;57;59;69;70;70;52;66;23;15;14;19;11;8;3;10;28;28;9;11;16;12;8;12;19;28;8;7;19;8;11;27;17;17;18;24;30;21;21;19;20;37;42;35;25;27;27;31;23;28;32;25;17;35;23;39;24;18;15;24;13;25;25;15;13;12;53;9;6;21;9;27;8;11;19;23;16;15;13;8;15;2;7;3;6;10;5;10;9;12;12;20;10;8;9;4;8;60;23;52;65;54;63;49;51;64;60;37;13;23;19;4;4;13;9;7;7;1;12;8;7;16;11;1;6;13;32;14;21;11;15;5;4;10;14;9;9;9;9;12;39;5;21;26;6;19;32;18;26;20;16;15;28;16;5;13;16;19;22;17;24;39;36;68;55;70;74;72;78;62;56;73;50;61;67;71;12;13;12;19;23;1;7;13;26;14;7;7;16;21;29;7;19;14;8;8;16;5;4;5;14;6;45;23;23;7;7;5;9;14;5;9;4;6;11;5;12;32;17;22;11;8;13;15;3;8;28;16;4;9;2;2;4;19;17;15;15;9;11;2;6;11;26;13;8;10;8;5;1;4;8;18;12;10;14;19;14;17;15;10;18;13;17;16;15;16;11;18;13;12;8;14;48;5;13;17;21;50;18;0;12;17;19;9;9;21;12;10;14;24;22;35;11;10;7;27;36;18;21;23;19;8;14;14;20;26;36;15;23;8;3;2;27;10;19;25;9;5;26;17;26;21
+2,3,3',4,5-Pentachlorobiphenyl;4;3;4;6;6;11;6;5;4;4;5;6;4;4;4;3;3;3;3;3;2;3;12;3;7;8;4;16;7;13;4;23;20;4;32;6;16;8;2;19;45;34;39;13;26;26;26;25;26;27;29;36;6;10;26;32;56;51;49;47;50;47;46;42;57;58;51;49;54;49;42;47;15;12;10;15;7;6;2;9;20;19;5;7;11;8;5;7;12;18;6;4;12;6;9;15;12;12;13;16;18;13;13;12;13;30;30;26;20;19;19;24;16;23;25;15;12;25;20;26;16;15;11;15;11;19;18;10;9;8;37;6;4;12;8;18;7;9;14;20;11;12;9;4;9;2;7;2;5;6;5;5;7;6;9;13;10;7;8;3;6;44;12;36;44;40;41;32;34;43;43;30;9;18;13;3;2;7;7;6;6;0;7;7;6;6;7;1;4;12;23;7;18;7;14;4;3;9;10;8;8;8;8;7;29;4;16;18;5;13;22;14;19;16;13;13;18;9;3;8;10;14;14;15;21;35;34;50;47;49;51;50;54;51;39;49;34;44;47;48;10;10;7;10;15;1;3;10;16;9;6;6;12;12;19;4;15;9;5;5;12;4;2;4;10;4;29;19;18;5;5;4;8;9;3;5;4;4;7;3;7;22;12;16;8;6;9;12;1;5;21;13;4;6;2;2;3;12;12;8;11;7;8;1;5;8;19;10;7;6;4;5;1;3;7;15;12;5;9;11;10;14;10;10;14;9;14;9;11;9;9;14;8;7;5;12;34;5;10;9;16;35;13;0;8;9;12;5;5;13;10;7;8;14;14;27;7;8;6;21;28;13;11;18;16;6;10;9;13;20;25;11;17;7;3;2;18;7;14;17;5;2;17;13;18;15
+3,3',4,5,5'-Pentachlorobiphenyl;5;4;5;5;5;10;5;4;4;4;5;6;4;6;4;4;4;4;4;4;2;3;11;3;8;8;3;14;7;14;6;22;21;4;30;7;14;8;2;19;48;36;41;12;32;30;30;30;30;28;26;34;6;9;24;32;55;55;50;51;52;48;47;43;59;51;59;50;52;50;44;51;16;11;11;16;7;5;2;9;22;21;7;7;12;8;5;9;14;17;6;5;14;8;11;18;12;13;15;17;21;14;13;14;14;30;30;26;20;18;18;23;14;20;26;17;14;26;19;28;17;15;12;17;11;21;19;11;10;8;38;6;3;13;7;17;6;9;14;18;11;10;8;4;8;2;4;2;5;6;5;5;7;7;7;13;10;7;8;4;5;46;14;36;46;39;45;33;35;45;44;29;10;18;14;3;3;7;7;7;7;0;8;7;7;8;7;1;4;11;20;7;16;9;12;4;3;8;11;7;8;7;7;9;32;4;14;20;5;13;22;14;17;16;11;13;18;8;5;8;10;12;15;12;19;36;34;52;45;51;53;52;58;53;41;50;35;46;47;50;10;10;7;11;16;1;4;10;18;11;6;6;12;14;21;5;14;11;5;6;12;4;3;2;9;4;32;18;18;5;5;4;8;9;4;5;4;4;8;3;7;21;13;17;7;7;8;9;2;4;18;12;4;7;2;2;3;14;13;10;10;7;10;1;6;7;20;11;6;7;5;5;1;3;7;14;11;8;11;12;10;14;10;9;14;10;15;10;10;10;11;15;8;7;4;10;34;5;12;11;16;37;16;0;9;10;12;7;7;15;9;6;9;14;13;27;9;9;5;22;26;13;11;19;16;6;11;12;14;22;26;13;20;6;3;2;19;7;16;16;4;2;16;11;20;15
+2,3',4,4',5',6-Hexachlorobiphenyl;5;5;4;5;7;9;6;4;4;4;9;9;5;7;5;4;6;5;6;6;2;4;13;4;9;14;7;17;9;17;10;26;27;5;36;7;19;10;4;27;68;35;66;18;39;36;35;35;35;37;37;34;5;8;29;29;64;49;79;90;78;48;43;41;69;49;50;92;77;90;62;77;13;12;10;21;9;7;3;10;27;22;9;11;16;11;8;12;18;31;7;5;14;9;10;18;12;12;17;18;25;15;16;17;15;50;48;42;25;27;28;27;24;24;34;28;23;30;20;35;24;20;17;25;22;30;30;12;14;8;49;7;5;17;9;20;6;9;16;18;15;14;10;8;14;2;6;3;4;8;5;9;7;9;12;16;6;7;8;3;6;56;25;55;63;55;61;50;54;58;67;31;8;17;11;8;3;10;9;8;7;0;9;7;9;12;9;1;5;11;29;11;18;11;12;6;5;8;13;7;9;7;7;9;32;4;18;22;4;15;36;24;21;16;10;13;24;10;4;8;13;16;27;14;22;34;32;55;43;79;81;83;70;56;67;87;63;72;70;84;9;12;11;16;20;2;6;10;18;14;5;5;12;16;27;7;15;12;6;7;9;5;4;5;13;6;40;22;21;5;4;6;10;11;5;11;4;5;9;5;9;26;10;19;8;8;7;12;5;6;24;14;5;9;2;4;4;16;13;10;13;8;11;3;6;8;27;13;7;6;9;5;1;3;9;14;12;10;11;16;12;13;11;9;14;10;20;14;10;16;11;17;11;10;6;18;41;7;13;15;15;46;16;0;12;14;15;8;10;20;10;8;8;24;20;29;14;11;6;23;28;16;10;16;13;9;10;14;17;21;34;11;21;6;4;3;23;7;15;20;9;6;22;15;21;16
+2,3,3',4,5,6-Hexachlorobiphenyl;5;6;5;6;7;8;6;5;4;5;10;10;5;6;5;6;7;6;7;7;3;5;16;6;7;13;8;16;8;14;11;27;29;6;38;8;21;9;3;24;74;37;69;28;39;34;35;36;33;37;39;38;6;14;30;30;65;51;74;84;83;52;46;43;70;54;52;77;104;81;57;79;14;16;9;21;7;5;3;10;29;23;5;7;14;11;7;8;18;37;6;7;17;8;9;20;11;14;17;20;29;14;13;15;16;51;55;47;31;26;30;33;23;26;35;36;26;37;25;43;29;17;19;26;19;34;33;11;14;9;55;8;6;16;11;19;5;8;17;19;13;13;10;8;14;2;7;2;4;8;3;8;4;8;13;13;6;6;7;2;7;65;26;60;67;63;68;59;64;63;78;39;11;24;15;4;3;14;8;7;7;0;8;7;9;11;12;1;6;12;33;12;22;10;16;5;4;8;14;7;8;7;7;12;39;4;16;21;7;16;37;24;23;19;10;16;24;13;6;11;12;18;30;16;21;35;32;58;45;83;86;84;68;58;80;87;74;75;72;84;8;9;10;15;25;3;6;9;19;14;8;7;13;17;26;7;15;13;4;10;12;4;4;8;17;7;45;24;21;6;5;6;9;9;6;9;6;4;6;3;7;27;13;20;11;7;15;17;5;7;30;19;5;7;2;2;3;13;15;8;13;5;11;3;8;8;26;18;8;7;8;5;1;2;7;17;13;9;12;17;15;14;10;10;13;10;21;12;10;16;12;19;11;9;7;19;42;5;13;19;19;47;17;0;12;15;17;9;10;22;11;10;13;26;19;33;13;15;5;25;31;16;16;16;14;8;10;15;18;20;36;9;20;10;2;1;23;5;13;20;8;4;20;14;20;16
+2,3,3',4',5',6-Hexachlorobiphenyl;5;5;4;5;7;9;6;4;4;4;9;9;5;7;5;4;6;5;6;6;2;4;13;4;10;14;6;17;9;17;9;27;27;5;37;7;20;10;4;28;71;36;68;20;41;37;37;37;37;38;37;37;5;8;30;29;65;48;82;96;82;50;46;42;70;49;50;90;81;97;64;80;14;11;12;22;9;6;6;10;27;22;8;11;17;12;7;11;18;32;6;6;16;7;8;21;13;13;17;20;24;15;16;16;15;50;49;43;24;28;29;28;25;26;36;27;21;31;22;36;23;20;19;24;22;31;31;13;14;10;51;9;5;17;9;20;5;9;16;18;15;14;10;8;14;2;6;3;4;8;5;9;7;9;12;15;6;7;8;3;6;58;26;57;66;58;65;53;57;61;72;32;8;16;11;8;3;13;9;7;7;0;9;7;8;14;9;1;5;11;30;11;20;10;14;6;5;8;14;7;9;6;7;9;35;4;18;22;4;14;36;24;22;17;10;12;24;11;4;10;13;17;26;14;22;35;33;57;44;81;84;86;70;57;69;92;66;74;73;90;9;11;11;16;21;2;6;9;18;16;5;4;13;16;25;7;16;12;6;10;10;4;4;6;14;6;43;23;22;5;4;6;9;11;5;11;5;5;9;5;10;28;11;20;9;7;11;14;5;6;25;16;5;8;2;3;4;14;13;10;14;7;12;3;8;7;28;14;7;8;9;5;1;3;8;16;12;10;12;19;12;13;12;9;14;10;20;14;11;17;11;18;11;10;6;16;44;6;14;16;18;48;17;0;12;15;17;8;10;22;10;10;11;25;20;30;14;12;5;25;28;17;13;17;14;9;11;14;16;21;38;14;22;8;4;3;27;7;15;20;9;6;22;15;20;16
+2,3,3',4',5,6-Hexachlorobiphenyl;4;5;3;5;5;7;6;3;3;3;5;6;4;5;3;4;5;5;5;5;2;4;10;4;7;11;6;11;7;9;6;21;20;4;28;4;12;7;2;20;54;26;52;13;31;27;28;28;26;28;28;27;3;4;21;22;47;42;58;64;58;41;35;36;52;42;44;62;57;64;64;60;9;7;6;18;6;3;2;7;18;14;5;7;10;8;6;9;13;23;6;4;9;5;5;14;9;8;13;15;19;10;10;12;10;36;35;29;18;20;19;20;19;19;25;15;11;18;15;25;15;14;13;17;13;22;19;10;9;7;35;5;3;12;7;16;4;6;11;12;11;9;6;5;9;1;3;1;2;5;4;5;4;4;9;10;5;7;6;2;6;42;17;36;43;40;42;31;35;41;46;22;6;14;6;5;2;8;5;7;6;0;7;5;7;7;7;0;5;9;19;7;17;9;10;5;4;7;10;7;8;6;7;7;25;3;11;19;4;9;25;18;16;14;7;11;16;8;3;4;8;10;20;10;14;25;24;46;37;56;59;59;52;47;46;63;49;53;53;61;7;8;8;9;14;2;5;9;12;13;5;5;9;12;19;4;11;11;4;8;9;2;3;3;10;3;33;17;18;4;3;4;8;7;3;7;5;2;5;3;5;19;10;15;9;4;6;10;5;2;15;11;5;5;1;3;2;8;9;7;10;5;10;2;6;4;20;11;6;3;7;4;1;3;6;12;10;8;7;8;9;9;8;6;11;7;15;8;8;10;9;14;8;7;2;13;30;5;12;12;13;35;13;0;9;11;12;6;7;13;6;5;4;17;13;23;11;7;3;19;19;10;5;11;10;7;5;11;13;16;23;6;14;6;3;2;15;2;11;14;8;4;13;11;13;9
+2,3,3',4',5,5',6-Heptachlorobiphenyl;4;7;5;4;6;7;5;3;3;5;9;8;6;4;4;5;7;6;8;8;2;4;17;5;8;13;8;16;9;16;12;36;29;7;40;7;22;9;4;24;87;29;78;26;33;28;30;28;28;38;37;31;4;9;27;24;60;49;73;71;100;43;41;39;66;47;51;77;79;80;60;111;13;15;12;23;10;3;2;10;25;22;9;14;18;14;11;16;25;41;8;7;15;11;12;16;11;14;22;27;32;14;17;16;17;52;51;56;36;29;29;34;26;26;34;41;27;41;23;49;30;18;19;38;17;35;30;15;11;8;59;10;5;17;7;19;5;8;15;18;11;15;10;9;14;3;6;3;5;8;5;9;6;8;10;14;6;8;8;3;8;62;22;56;66;60;75;46;52;62;77;23;12;11;12;7;1;8;10;10;10;1;9;8;9;11;8;0;8;9;27;13;21;9;13;6;5;7;13;7;8;7;8;13;29;5;17;22;4;16;39;23;20;19;11;12;26;13;4;8;13;15;31;11;19;28;27;50;38;98;105;108;66;55;97;87;84;73;74;84;10;8;9;17;22;4;9;10;18;16;5;4;12;14;27;9;13;13;5;9;8;4;3;3;13;6;43;24;19;5;2;5;12;9;5;13;5;4;6;4;8;26;9;17;10;5;13;11;6;5;26;16;5;9;4;4;5;11;14;9;12;6;10;3;8;8;28;15;9;5;9;5;1;3;8;15;10;9;12;16;13;12;11;10;12;11;21;11;10;13;10;15;12;10;3;17;50;6;13;19;13;42;14;0;13;15;19;7;8;16;11;10;9;25;20;21;11;12;3;27;25;17;10;14;11;11;8;15;20;27;33;11;24;9;4;4;25;5;13;21;11;5;22;17;18;15
+cis-Prallethrin;5;2;5;4;5;10;5;0;0;5;8;2;4;0;1;1;1;2;2;2;4;3;18;3;10;22;11;25;18;31;12;24;15;7;32;15;35;12;7;17;19;18;20;6;8;13;13;12;15;7;5;17;6;12;18;14;20;16;12;18;12;22;18;16;23;15;16;13;14;14;9;13;55;38;29;34;24;16;11;25;31;28;30;28;29;22;20;34;32;20;16;10;17;17;19;31;32;35;29;30;39;18;25;25;33;14;10;13;9;11;9;11;15;12;10;11;11;15;9;36;22;14;9;26;22;21;17;18;20;13;33;22;13;28;3;25;20;25;30;23;16;26;21;11;20;12;19;6;17;18;4;18;23;17;18;29;13;10;13;4;14;24;22;29;28;33;41;26;27;32;38;13;8;13;10;10;4;11;20;14;16;7;20;16;7;9;12;1;12;6;30;7;13;2;17;3;2;14;16;10;14;12;11;5;11;5;26;27;16;20;18;21;23;13;18;18;30;32;9;7;13;13;21;11;12;15;15;28;25;13;14;13;21;16;12;12;28;31;30;12;18;19;18;17;14;1;9;8;26;14;10;8;12;7;30;10;21;12;15;2;22;8;4;7;9;11;31;15;16;6;6;7;18;21;6;17;3;13;16;14;15;28;24;11;12;13;8;10;2;9;15;11;3;16;15;4;4;35;14;22;20;15;11;4;4;7;14;14;19;4;6;7;0;2;20;17;8;12;31;21;14;15;25;7;27;16;15;20;19;8;12;11;22;19;11;17;36;12;6;15;9;22;11;6;12;7;7;11;14;20;15;14;9;33;25;26;6;10;8;21;28;24;15;14;6;20;9;24;25;29;22;26;30;10;4;5;17;21;32;31;11;12;28;18;40;39
+trans-Prallethrin;8;4;4;7;9;10;7;4;4;9;10;5;6;3;5;4;2;4;4;5;7;5;16;7;16;25;12;29;21;36;16;26;21;10;31;16;45;16;11;11;21;18;19;1;16;18;17;18;20;4;6;19;12;15;18;17;13;11;11;13;14;25;21;18;15;12;11;12;16;11;7;15;38;64;33;32;26;16;14;26;31;30;32;27;32;24;22;34;30;19;15;12;23;18;20;32;36;35;30;34;44;30;35;30;38;8;6;6;10;9;7;9;10;12;9;4;5;14;7;39;18;9;6;31;20;17;16;13;15;13;28;29;11;29;5;25;24;25;30;29;18;28;21;13;22;16;19;8;18;22;8;19;28;20;20;35;18;13;15;7;19;32;23;20;22;37;44;20;24;43;48;19;14;15;15;12;5;13;24;22;20;4;22;21;11;8;17;2;10;11;35;11;20;6;22;6;5;17;23;14;21;17;17;12;28;7;33;34;19;22;24;25;30;19;25;22;32;32;8;9;16;18;17;12;12;19;17;27;25;14;14;14;17;11;12;12;25;27;27;11;25;25;21;19;13;4;8;13;26;16;16;14;15;13;31;13;32;13;17;6;17;9;3;7;11;10;39;15;20;12;5;7;24;23;9;21;5;13;16;17;18;28;18;14;20;15;20;12;1;11;22;16;7;20;18;5;10;40;23;28;22;20;13;6;6;11;12;20;24;9;13;14;0;2;24;24;12;17;27;21;15;25;30;12;31;26;16;23;20;13;17;14;25;26;11;19;37;17;8;16;13;26;14;5;12;16;12;17;17;25;15;20;17;37;32;27;8;15;9;23;30;28;16;25;10;26;11;21;33;41;26;31;44;10;5;8;23;26;35;41;13;13;35;22;51;46
+cis-Resmethrin;8;3;4;4;5;9;6;2;2;6;7;3;3;4;2;1;3;3;4;4;4;3;15;6;9;20;15;26;26;42;14;27;26;9;26;13;51;17;7;14;14;14;28;1;16;19;19;16;21;2;2;8;15;12;19;12;12;10;12;13;12;14;15;13;14;10;11;10;9;12;6;12;29;33;74;47;22;14;10;38;42;36;45;32;38;32;37;45;45;13;23;18;31;19;22;29;30;43;40;41;52;24;36;39;43;4;5;2;6;6;3;6;11;9;5;8;9;15;11;44;18;12;7;34;23;23;21;15;21;18;36;32;8;29;7;32;22;29;24;23;16;23;18;14;15;12;16;7;18;24;6;18;19;14;12;31;24;23;26;9;30;28;44;17;18;14;36;14;16;54;30;13;13;18;16;10;5;8;24;16;16;11;27;21;17;9;11;3;11;8;31;6;29;11;26;11;9;23;33;18;29;18;21;6;22;2;25;30;14;25;14;29;31;16;21;18;29;33;7;12;15;20;16;14;17;16;15;16;12;13;14;13;15;11;8;13;11;23;13;13;29;21;16;20;21;9;9;14;31;14;20;18;16;13;34;11;28;14;16;12;16;8;6;5;11;9;40;14;24;12;6;9;31;21;14;21;4;10;16;12;24;32;18;30;24;14;11;14;1;8;21;14;5;19;18;4;5;45;32;26;24;16;23;6;6;11;7;23;29;8;15;13;4;11;24;33;9;25;25;20;14;27;39;10;24;23;7;32;17;23;17;25;19;19;10;14;41;16;9;14;22;26;24;11;17;14;11;21;20;16;13;20;13;40;46;24;3;16;12;22;31;22;11;39;15;33;11;29;46;53;35;47;55;12;6;11;37;37;58;43;14;7;43;30;55;43
+trans-Resmethrin;3;2;6;5;8;10;6;1;1;6;7;5;2;0;0;0;2;2;2;2;3;1;13;4;8;19;12;25;26;33;13;29;20;7;26;15;48;15;7;13;24;16;33;9;10;12;12;9;14;2;6;9;7;21;16;12;19;16;23;33;27;15;14;12;19;15;16;21;21;22;18;23;34;32;47;59;17;14;11;28;37;38;35;31;31;21;27;33;30;19;19;12;22;20;25;27;25;36;32;30;43;27;32;24;30;9;12;11;10;6;9;9;16;11;11;8;6;15;8;36;17;7;5;30;18;19;16;13;12;10;30;32;10;26;7;29;25;28;25;23;16;28;18;12;20;11;17;6;18;20;6;18;20;19;16;33;21;19;21;9;23;38;17;17;35;30;49;22;26;33;44;16;9;27;23;10;4;13;19;13;14;8;23;12;11;9;10;1;10;8;27;7;24;5;23;10;8;23;26;18;25;18;19;6;11;3;29;23;13;29;18;20;26;19;16;21;33;33;10;7;15;18;16;12;13;16;15;21;17;21;26;25;23;18;24;26;22;32;30;26;31;17;15;16;16;9;8;8;24;15;7;7;19;14;28;10;24;11;15;7;23;9;5;5;11;11;34;15;20;8;4;8;29;23;9;16;5;12;16;13;15;28;24;23;19;13;13;12;2;7;12;12;6;14;17;4;5;39;28;20;27;17;14;5;4;9;10;15;22;6;10;13;2;4;23;27;10;14;27;15;15;19;27;10;28;18;16;27;15;15;15;20;17;17;12;13;43;12;9;12;18;19;18;9;15;5;5;17;17;15;10;16;8;29;32;20;9;13;8;19;27;21;12;22;7;25;11;20;35;36;19;37;39;11;6;8;14;28;38;39;13;8;39;27;48;44
+cis-Tetramethrin;5;1;2;2;3;5;4;2;2;5;6;5;4;3;5;5;3;3;3;4;6;1;12;0;7;19;9;16;12;22;11;15;16;4;17;11;29;5;5;10;15;7;16;1;9;7;7;5;9;1;3;9;10;16;15;3;11;7;8;13;9;7;7;7;11;7;7;9;7;9;6;10;24;26;22;17;41;16;7;22;22;20;20;17;20;17;15;24;20;21;10;10;17;18;18;22;21;25;22;23;29;19;24;20;22;8;9;9;8;7;5;5;9;8;7;5;4;7;2;26;11;9;4;18;17;12;11;14;16;13;22;14;5;19;2;11;9;12;19;15;15;18;12;10;9;11;11;4;14;18;2;12;13;13;9;21;8;9;11;3;13;23;15;11;15;15;30;9;11;29;28;12;9;12;14;9;4;10;16;13;13;5;14;14;10;9;8;1;6;4;21;7;8;3;7;0;0;6;11;4;8;7;5;7;10;2;18;17;6;13;14;20;15;11;15;9;21;19;6;8;7;5;12;9;9;8;6;9;7;7;8;8;13;8;12;9;14;21;19;9;8;16;13;12;12;1;6;10;15;11;13;13;11;9;19;9;17;13;12;5;9;5;2;3;7;6;24;9;12;9;2;6;15;13;5;13;3;7;13;11;13;16;10;13;10;9;9;9;2;7;11;12;4;11;6;2;4;20;11;16;13;9;14;4;3;7;8;8;9;3;9;4;1;1;9;9;6;13;18;8;14;12;13;5;15;15;11;15;12;8;9;12;15;13;6;13;28;13;4;11;10;15;8;5;7;5;9;9;12;6;7;14;10;19;18;15;4;11;10;13;16;15;7;17;8;15;4;16;18;27;16;20;25;5;2;4;14;17;23;24;10;8;21;16;34;29
+trans-Tetramethrin;0;1;2;0;1;3;2;0;0;0;4;2;3;1;0;0;1;1;1;1;3;3;8;1;3;7;6;16;9;17;9;11;8;4;8;9;16;4;6;7;5;8;7;4;3;7;7;4;9;1;1;4;3;10;9;5;9;5;5;9;4;8;8;7;8;6;5;7;5;6;3;3;16;16;14;14;16;22;7;11;19;18;17;16;13;6;8;13;12;9;6;7;11;17;18;19;19;19;15;17;17;12;16;9;14;5;4;3;2;4;1;2;6;7;3;0;1;2;1;12;5;4;1;8;11;11;11;10;10;8;13;8;5;17;2;6;5;9;15;11;13;15;9;9;6;8;7;4;12;14;1;13;13;11;6;18;4;3;4;0;5;15;11;8;11;13;16;7;9;17;17;6;3;10;8;6;2;9;13;9;9;5;10;9;5;5;5;1;2;0;13;6;2;1;3;1;0;3;5;1;4;2;2;1;4;2;17;16;7;8;8;13;12;4;13;6;16;14;5;5;6;2;10;3;5;7;7;10;9;3;4;4;12;7;6;6;7;11;12;6;6;15;11;12;10;0;4;6;10;9;7;6;7;8;13;8;15;12;8;1;10;6;2;3;2;8;17;5;5;4;4;5;6;15;2;8;2;8;14;9;5;11;11;6;4;8;8;7;1;7;5;8;1;7;6;2;2;12;7;11;9;11;5;3;3;4;6;4;10;1;4;2;0;0;9;6;3;5;17;7;11;12;10;3;14;10;8;12;11;5;4;7;13;13;6;7;18;11;2;9;4;10;3;0;4;4;5;4;7;6;3;8;5;17;10;10;4;4;7;7;13;8;5;14;4;10;2;5;9;17;11;15;17;2;1;2;7;7;11;16;7;9;14;7;21;20
+Bifenthrin;0;0;1;6;7;5;6;1;0;4;7;2;0;0;0;0;0;0;0;0;0;0;3;1;2;7;8;7;8;14;11;3;6;7;14;10;20;5;4;1;3;2;15;0;8;7;6;4;7;0;2;3;11;8;4;2;2;2;4;6;2;2;2;2;3;2;2;3;3;6;2;2;11;14;10;11;7;7;21;19;17;17;16;17;17;12;17;19;12;8;16;8;14;17;17;13;12;17;19;16;18;16;19;14;15;0;0;0;1;0;2;0;3;2;4;0;1;3;1;10;1;1;1;5;4;8;6;1;3;2;11;7;2;4;0;7;3;5;5;5;3;7;3;2;3;7;7;2;4;4;1;3;3;4;3;7;10;8;9;3;14;13;5;2;8;10;17;5;6;20;11;4;10;9;8;8;1;6;17;13;13;6;11;12;8;3;5;0;6;4;16;0;4;4;7;3;3;8;8;8;9;7;9;2;8;5;5;14;2;6;8;15;5;2;9;3;10;10;2;5;4;14;1;7;4;3;3;2;2;2;3;2;5;3;2;6;2;3;3;6;6;5;3;8;7;2;4;5;12;4;12;10;6;4;11;5;9;5;6;0;8;4;1;6;2;3;13;8;8;4;0;4;17;5;4;11;1;3;5;3;8;18;8;9;8;5;12;10;0;3;9;9;2;7;6;3;3;6;19;13;6;7;9;1;4;4;5;12;10;3;9;2;0;2;3;10;8;11;11;8;5;12;6;3;9;6;5;9;9;6;6;9;10;10;2;10;17;3;2;3;7;12;8;6;9;5;3;10;11;13;6;5;12;19;11;13;0;10;6;11;15;14;5;8;2;15;4;11;12;21;15;21;20;3;1;2;9;17;20;18;12;3;19;12;15;10
+Fenpropathrin;9;5;5;13;14;12;13;6;5;9;14;6;4;4;5;7;5;6;6;7;11;8;26;7;16;22;17;21;18;35;15;17;23;9;28;19;52;17;8;11;16;15;34;0;21;22;25;21;23;3;4;13;16;15;13;11;10;9;10;11;11;10;11;10;10;9;9;10;10;10;7;10;25;26;38;28;22;11;19;69;32;33;51;45;44;37;45;46;40;17;35;16;25;23;26;19;22;48;49;44;50;27;34;36;36;5;5;4;5;7;5;5;10;6;8;6;6;11;8;31;7;6;5;20;18;15;16;8;14;9;32;22;9;21;8;18;16;20;20;21;11;19;13;11;11;11;18;6;14;19;3;15;15;10;12;24;21;19;21;6;30;26;39;12;10;10;32;9;13;54;33;15;20;16;14;15;6;10;30;25;21;12;26;24;23;15;10;2;17;20;41;8;21;17;22;11;9;22;24;17;23;22;22;12;25;11;18;37;9;26;17;35;20;17;25;14;33;29;4;15;15;19;12;20;19;13;12;13;10;9;10;10;11;9;7;13;13;15;12;11;36;14;10;23;24;8;7;14;32;13;20;18;11;13;33;11;24;11;14;7;9;8;4;7;13;6;35;17;21;13;4;11;38;13;14;27;8;9;12;9;21;42;10;27;21;16;14;19;9;7;22;20;4;20;15;7;9;38;44;24;25;13;29;8;8;9;15;20;19;12;24;5;7;10;15;17;16;28;25;22;18;31;31;11;31;22;9;25;13;25;17;29;12;12;9;17;45;7;5;11;20;29;26;10;16;14;13;25;25;18;13;22;19;42;43;25;5;25;15;26;35;28;15;31;16;28;11;28;45;51;44;52;56;8;4;8;39;42;54;43;18;5;43;30;59;46
+cis-Phenothrin;5;3;7;5;6;7;8;0;0;5;7;7;2;1;2;1;3;3;3;3;3;2;14;3;8;23;16;23;19;40;17;24;27;9;30;18;46;14;6;12;29;16;33;12;11;13;13;11;15;6;9;16;10;15;21;12;24;20;26;24;27;20;19;16;28;20;22;27;29;27;18;25;31;31;42;37;22;19;17;32;62;46;38;36;39;29;30;41;37;14;25;12;20;26;29;30;29;42;40;36;47;27;34;31;33;13;15;19;9;8;8;12;11;16;14;11;10;21;12;44;25;14;10;27;24;25;21;26;14;10;37;27;8;25;5;25;16;23;25;21;16;21;16;15;15;14;19;5;16;19;5;16;16;16;11;26;24;21;23;9;29;36;25;29;28;38;43;29;30;32;48;10;15;18;17;13;4;17;25;18;20;10;21;14;13;9;8;2;12;5;33;7;17;9;22;8;6;20;25;16;24;16;19;5;13;7;24;24;12;19;15;25;24;15;18;17;28;28;4;6;12;12;21;12;13;15;15;21;19;23;26;28;31;21;20;27;29;36;31;26;24;15;13;13;21;6;9;12;25;11;7;8;16;22;35;12;24;13;14;10;17;5;4;7;9;8;39;18;22;8;5;7;31;20;12;20;4;8;16;9;20;34;19;27;14;9;13;15;5;8;15;14;3;14;13;4;3;35;25;23;17;17;18;5;7;11;9;20;15;7;15;10;0;4;17;19;12;21;26;15;16;18;22;8;26;14;10;23;16;16;15;21;17;15;9;16;42;11;8;12;18;23;20;8;18;8;12;17;17;26;15;18;10;34;30;27;8;18;12;20;34;21;9;22;9;28;13;25;33;44;27;43;46;11;5;8;22;34;42;38;16;7;39;27;47;37
+trans-Phenothrin;5;2;7;4;6;8;6;1;1;5;5;3;2;3;2;3;3;3;3;4;4;1;15;4;8;20;14;25;19;34;18;25;24;8;25;18;47;12;7;10;24;16;31;11;10;12;12;9;14;5;7;15;9;16;23;12;23;21;21;26;23;22;20;18;28;19;21;22;23;22;14;22;28;30;36;38;20;18;17;33;46;55;39;37;40;29;29;38;31;15;26;13;21;26;30;29;29;38;38;35;42;25;32;25;29;10;10;16;9;8;7;9;8;14;14;7;6;17;9;40;25;11;6;26;15;21;18;21;11;9;34;27;7;23;1;22;16;22;23;21;15;20;15;13;15;15;16;6;15;17;4;17;18;14;11;24;24;19;22;8;28;32;21;26;25;34;41;26;26;27;44;10;16;17;16;13;4;15;27;20;22;9;21;16;13;9;8;1;10;6;26;6;17;6;19;7;6;18;21;16;21;19;18;4;12;8;23;23;12;18;13;25;20;13;16;12;26;25;4;7;9;11;17;9;13;17;16;22;22;24;24;24;29;22;17;22;30;31;28;21;21;16;13;15;17;5;9;9;28;13;8;9;12;17;32;12;23;14;15;7;21;6;4;7;8;10;36;15;19;7;2;7;33;19;12;20;4;10;16;11;17;31;23;24;12;9;15;13;5;6;17;12;2;13;12;3;6;30;24;23;15;15;16;4;10;12;11;18;13;4;13;8;1;3;15;18;12;16;24;15;16;21;20;8;22;11;12;21;16;18;14;19;15;15;9;13;41;8;7;13;19;16;20;8;15;7;8;19;17;25;14;15;7;32;24;25;5;17;10;13;29;22;11;16;5;26;12;20;28;38;24;40;39;14;3;6;19;32;43;38;18;7;41;25;45;36
+cis-Cyphenothrin;4;4;6;11;14;12;11;2;2;6;10;4;4;3;2;4;4;4;4;4;2;2;15;6;13;22;17;26;20;38;19;23;30;8;25;21;50;14;9;11;14;14;32;0;11;18;19;18;21;1;3;10;13;13;15;12;9;6;7;10;10;10;11;8;9;5;7;9;5;8;5;9;30;32;45;35;20;17;16;51;38;39;69;55;50;40;45;47;45;14;30;17;25;19;23;28;32;49;50;46;52;27;37;36;38;3;4;3;3;6;3;3;11;7;4;4;4;5;4;33;10;5;2;25;21;20;21;10;17;12;30;23;8;27;3;20;16;20;23;22;16;24;15;14;16;13;18;7;18;23;4;21;19;14;13;25;16;13;15;4;22;20;40;9;9;8;34;8;10;46;31;11;15;13;12;15;5;7;32;25;26;11;31;24;18;13;10;4;15;9;35;10;16;12;18;10;9;19;24;14;21;16;17;7;19;11;22;32;14;21;11;31;22;11;22;11;32;30;5;10;12;19;14;15;18;14;13;11;11;8;9;9;11;8;7;11;13;16;13;9;25;18;17;19;23;6;6;11;33;15;16;14;13;11;33;13;33;12;17;5;11;10;5;7;8;12;31;14;16;10;5;8;33;20;11;28;6;13;17;13;14;43;12;24;14;20;14;14;6;10;19;17;6;18;17;6;8;40;33;22;30;21;21;7;6;10;8;20;24;8;22;5;6;7;16;19;10;25;27;19;19;31;34;9;28;22;7;28;17;22;16;19;19;19;10;13;46;9;5;12;22;27;20;11;16;13;8;22;20;16;14;19;14;46;30;23;5;19;17;22;33;24;11;26;13;31;10;22;41;46;35;45;53;6;4;5;31;36;46;40;17;8;41;21;54;40
+trans-Cyphenothrin;4;2;4;10;12;11;10;4;3;6;6;3;3;3;3;6;3;2;3;3;2;1;14;4;9;21;16;21;17;31;15;21;26;8;22;18;47;10;9;10;16;14;31;0;8;10;10;8;12;0;3;8;10;11;14;13;9;7;11;12;13;10;12;8;11;7;7;11;7;11;7;14;28;27;32;31;17;16;17;45;36;37;55;64;42;30;39;45;34;13;33;10;17;18;22;27;29;44;44;38;45;25;33;25;34;2;2;4;7;4;5;4;10;7;4;6;8;6;7;27;8;4;2;21;21;18;18;10;9;8;29;20;8;24;4;16;13;16;21;19;14;20;14;12;13;10;14;6;17;20;2;18;18;13;11;24;15;11;12;3;18;19;22;10;10;9;30;7;9;28;27;9;15;12;10;16;4;5;26;19;20;9;23;22;17;9;7;4;12;9;31;10;15;11;17;8;7;17;20;13;19;14;16;6;12;9;19;30;14;16;9;23;18;9;20;10;28;24;4;8;12;13;13;16;16;14;13;13;11;10;14;13;10;7;9;13;10;14;11;12;17;17;15;16;18;5;6;8;31;13;10;8;11;8;29;11;21;11;15;5;10;9;4;6;5;11;29;13;14;7;3;9;29;18;9;25;5;12;15;13;13;35;11;20;10;10;12;12;6;6;12;15;1;15;12;7;5;27;27;17;13;12;19;5;6;8;9;16;15;4;19;5;4;8;14;16;12;22;22;15;19;24;23;7;24;15;6;23;14;18;14;19;14;13;11;9;47;6;2;11;17;17;18;8;13;3;4;19;16;15;13;23;8;36;20;21;2;14;14;19;33;22;10;20;6;24;10;21;32;38;29;43;46;7;2;5;19;33;38;34;16;8;35;19;47;34
+Flucythrinate_isomer1;6;2;9;7;9;7;8;5;5;10;12;10;7;4;7;8;4;4;4;4;3;1;14;3;12;24;16;25;26;33;18;23;26;10;30;20;63;17;10;13;19;11;43;2;13;14;14;14;15;5;5;10;13;18;18;9;14;12;18;22;18;9;10;10;16;11;12;16;14;17;10;18;29;32;38;31;20;13;17;44;39;40;50;42;73;49;55;53;49;13;33;18;23;28;30;22;23;45;47;45;58;33;42;39;47;5;6;5;6;7;7;6;13;7;7;8;6;11;8;35;15;9;4;26;18;24;26;12;12;21;43;30;10;21;5;26;25;25;25;24;15;27;18;10;21;15;18;7;11;13;5;16;22;17;18;30;29;25;31;12;37;23;36;14;15;14;35;11;15;50;35;10;20;17;16;17;2;9;30;23;24;10;30;23;19;11;11;1;15;12;35;10;21;9;24;7;7;22;22;17;22;20;19;11;17;10;27;27;21;36;10;29;26;18;23;21;26;41;4;10;16;24;11;14;12;12;10;15;9;16;18;17;18;12;15;20;17;23;19;18;33;20;16;19;23;7;7;7;29;14;15;14;10;13;40;12;31;11;13;6;14;8;1;7;13;9;28;15;21;5;3;8;41;21;11;24;6;10;14;15;18;48;15;26;25;15;20;14;6;9;25;12;4;20;18;7;8;37;33;31;25;20;17;5;11;14;11;21;26;5;15;10;1;3;21;27;12;19;29;16;18;20;28;9;27;22;6;30;14;27;18;28;23;23;11;14;50;16;12;16;18;25;25;10;13;9;5;19;17;24;9;16;17;45;38;23;6;20;10;19;37;26;16;23;8;27;16;21;35;43;38;46;48;13;5;10;22;47;57;52;20;11;51;37;59;43
+Flucythrinate_isomer2;6;1;7;7;7;6;7;4;3;9;5;4;4;4;6;6;3;3;3;4;5;1;14;3;10;21;16;15;15;26;12;15;17;5;23;17;51;15;6;10;15;9;33;1;9;10;11;8;10;3;3;9;10;16;15;7;10;8;11;15;14;7;8;7;12;8;8;11;11;12;8;14;22;24;32;21;17;6;12;37;29;29;40;30;49;61;43;41;37;10;27;13;13;18;20;15;18;37;34;31;46;28;32;25;37;3;4;3;4;5;5;4;9;6;5;3;2;4;4;27;10;5;2;20;13;18;18;11;11;18;32;21;6;14;3;18;15;14;15;15;7;17;12;6;12;8;11;3;8;8;3;10;15;11;11;20;19;18;23;7;26;18;28;12;11;11;29;9;13;47;25;9;16;9;14;14;2;5;23;17;18;8;20;18;16;6;8;1;12;8;27;8;15;5;17;3;3;16;14;11;13;15;13;9;12;10;14;21;15;21;9;24;16;15;16;12;18;27;2;8;10;17;6;9;8;9;8;13;7;11;12;13;12;8;12;14;12;16;16;13;25;11;11;11;18;4;4;3;20;9;9;9;6;8;27;7;22;6;9;4;11;5;1;5;8;7;24;13;14;2;2;3;31;10;7;18;4;7;6;10;14;32;11;21;19;8;15;8;6;3;24;9;4;16;13;3;7;24;21;20;19;10;15;2;9;11;9;19;18;1;13;6;3;2;12;21;9;14;21;9;13;16;18;3;16;15;6;25;10;21;16;20;17;17;6;14;41;10;8;11;11;21;19;9;12;6;3;14;13;13;6;11;12;35;33;16;5;14;7;12;26;14;9;15;8;18;11;18;32;31;31;35;37;12;1;6;21;37;47;41;12;8;39;28;48;36
+cis-Fenvalerate;7;6;4;10;12;9;11;4;3;9;9;6;3;5;5;8;8;8;9;9;5;3;15;7;11;21;16;17;20;32;16;16;22;8;23;18;52;18;9;11;14;12;31;1;16;17;18;17;19;7;4;11;9;12;15;9;6;5;8;8;12;10;8;9;8;5;5;8;7;7;6;11;20;22;37;27;15;8;17;45;30;29;45;39;55;43;65;51;43;15;34;14;25;26;26;14;21;47;44;39;53;30;36;36;42;3;6;3;5;9;5;6;12;9;7;6;7;13;9;35;12;8;7;16;13;18;19;8;11;12;36;21;10;12;5;22;18;20;16;17;9;18;15;9;14;13;20;6;8;11;5;10;12;10;13;18;20;18;19;7;27;21;37;12;10;9;35;7;13;49;29;12;17;12;11;15;4;7;31;22;23;10;27;22;16;15;10;3;14;9;31;4;22;12;21;11;11;24;19;17;23;21;21;9;19;10;17;23;13;24;20;32;16;16;15;16;22;25;5;10;9;21;9;17;15;12;11;12;11;10;10;11;8;5;11;10;14;19;17;8;27;11;10;15;21;10;7;9;25;17;21;19;12;19;34;10;26;8;13;4;10;5;1;7;12;5;26;15;23;6;1;8;40;14;14;25;6;6;8;9;15;46;11;22;17;12;16;15;7;4;18;16;4;19;15;7;6;32;37;24;31;14;17;6;6;10;13;24;23;5;17;11;3;4;14;23;13;20;19;15;16;19;28;8;21;18;11;31;11;20;14;20;13;12;9;12;40;10;8;12;16;34;20;11;12;6;2;27;25;22;11;13;13;42;37;24;4;17;10;23;34;29;13;24;11;31;11;28;42;51;33;40;51;10;8;9;21;40;50;41;16;5;39;26;43;30
+trans-Fenvalerate;9;6;3;10;13;12;12;4;4;11;9;6;3;6;8;10;7;8;9;10;7;3;19;6;16;26;17;24;21;40;17;22;26;11;33;20;57;18;9;16;20;15;33;2;16;18;19;18;22;6;5;13;15;14;22;12;10;8;12;12;14;12;12;9;12;7;9;12;8;11;9;16;34;34;45;33;24;13;19;46;41;38;47;45;53;41;51;82;58;14;35;17;28;26;30;25;28;50;50;49;64;33;44;48;53;6;5;6;5;6;5;6;14;11;8;9;9;14;9;45;17;11;9;29;27;23;21;12;17;16;42;25;10;20;7;23;18;25;25;22;12;23;17;11;16;13;19;8;14;19;4;15;16;14;13;26;21;17;18;7;27;27;49;17;16;12;38;12;18;62;33;14;20;17;14;15;4;9;34;24;26;12;29;24;17;18;12;2;16;12;36;9;19;12;22;10;9;21;24;18;25;19;21;13;20;9;23;33;14;27;21;28;20;21;24;17;27;33;8;12;15;21;17;19;20;16;14;15;12;11;14;15;12;8;13;12;15;22;17;11;28;17;12;17;22;8;9;13;32;17;22;20;16;23;39;10;30;12;14;8;11;8;3;9;11;8;37;17;23;10;4;10;38;18;12;25;7;9;16;11;20;53;13;24;20;17;14;16;7;8;21;17;4;22;16;7;8;39;37;28;26;18;20;6;7;10;14;26;25;7;19;10;2;5;17;22;14;23;29;20;18;27;30;8;29;24;11;34;15;20;15;26;16;15;9;17;50;11;6;12;17;31;24;9;16;5;3;25;23;25;17;20;17;46;36;31;5;21;12;24;41;30;16;31;16;31;15;27;44;57;39;44;61;10;8;9;27;43;55;43;18;6;43;27;55;41
+Deltamethrin;11;5;6;13;15;14;11;5;4;12;16;8;5;7;5;10;6;5;6;6;4;2;34;6;27;33;13;24;23;47;16;23;33;9;37;20;59;19;10;20;26;19;36;8;25;23;22;21;23;10;9;16;23;24;24;15;15;13;17;24;24;19;17;15;19;12;14;18;18;18;13;25;32;30;45;30;20;12;12;40;37;31;45;34;49;37;43;58;144;27;31;17;24;23;28;27;23;51;47;64;83;40;42;60;66;18;16;14;11;16;9;12;16;12;12;12;12;29;17;47;23;14;12;47;28;40;38;16;20;25;63;26;10;24;7;19;24;25;30;23;17;29;22;11;19;15;25;5;14;18;7;14;17;18;18;31;23;22;25;8;31;42;55;28;30;30;55;25;30;82;62;18;21;24;21;19;4;19;28;22;22;11;38;25;16;23;17;2;17;19;48;14;25;12;28;7;7;23;22;16;24;19;21;14;26;10;21;42;17;33;32;31;33;21;20;18;28;39;8;14;18;31;20;21;24;22;19;22;21;23;27;29;19;14;22;22;29;43;31;19;26;26;22;28;34;8;8;9;37;17;23;21;13;26;48;8;35;12;14;10;14;12;2;8;10;8;50;29;27;8;7;7;41;20;8;26;4;11;20;16;19;74;16;30;35;19;16;20;8;8;22;16;1;23;17;10;9;39;41;31;29;23;16;5;6;8;13;26;27;10;15;10;1;2;25;29;16;17;40;23;19;28;46;11;30;25;18;29;24;27;18;22;18;16;10;23;63;14;12;16;26;38;24;7;12;9;10;22;17;22;23;26;27;51;44;39;10;26;10;29;46;26;17;36;19;29;18;25;48;61;62;52;68;12;4;5;39;40;73;48;20;8;45;34;63;51
+Chlorpyrifos oxon;5;9;6;7;7;9;5;8;6;7;12;9;7;7;9;11;8;9;10;10;7;8;22;6;15;15;11;18;12;26;10;22;30;10;38;13;36;10;4;27;40;19;35;16;23;20;20;19;21;16;14;23;25;26;20;14;25;18;30;37;44;22;18;15;28;18;17;31;37;32;23;41;20;19;13;19;21;9;8;17;14;15;14;13;13;10;15;14;27;93;10;6;21;9;11;16;16;21;22;29;31;19;29;20;22;25;31;34;28;26;22;23;25;20;22;26;17;42;15;37;26;13;17;30;17;38;40;17;13;12;56;19;10;21;8;22;13;15;14;14;11;16;12;10;10;7;12;6;7;12;4;10;14;15;14;20;9;10;8;4;9;57;40;48;57;47;63;45;47;65;73;28;17;17;26;5;3;19;20;17;18;1;10;17;4;21;17;1;16;16;39;14;19;10;18;5;3;11;11;6;10;9;8;17;33;1;16;25;11;32;56;31;30;17;22;18;32;32;7;11;13;16;29;18;25;22;18;25;20;41;41;43;28;21;48;36;63;61;51;34;22;16;13;19;25;4;10;10;25;16;8;7;14;16;35;7;9;12;10;6;17;3;4;4;12;5;50;25;23;4;6;7;19;19;8;9;4;8;7;8;15;26;17;14;16;4;11;18;6;6;36;18;2;7;9;2;3;30;26;20;15;9;8;4;3;8;23;20;13;11;6;6;0;1;9;16;13;8;14;23;18;8;19;5;20;14;22;15;17;5;13;6;16;13;10;19;33;7;10;21;17;43;9;5;11;18;18;10;16;23;16;14;35;27;33;29;15;18;5;33;38;18;19;22;10;17;10;29;31;32;44;18;29;7;2;4;29;14;26;25;11;5;27;18;38;33
+lambda-Cyhalothrin;3;0;1;10;11;9;8;3;2;4;6;2;1;2;2;3;1;1;1;1;2;0;9;2;11;14;11;14;13;18;11;12;13;5;17;14;35;13;4;6;12;9;24;1;8;11;11;8;13;4;5;5;10;8;8;6;7;6;7;8;9;8;7;7;8;6;6;7;6;6;6;8;16;15;23;19;10;6;16;35;25;26;30;33;33;27;34;35;31;10;41;16;17;18;21;11;12;34;33;32;35;25;29;27;26;3;4;2;2;2;3;3;5;7;5;2;2;6;3;18;2;3;2;11;9;14;15;7;9;17;27;15;5;9;2;15;10;12;9;12;7;15;9;6;6;7;12;5;8;9;2;7;9;10;8;13;16;13;12;5;19;16;24;10;8;4;21;7;9;30;24;5;15;10;7;11;2;9;22;17;20;7;17;14;13;9;5;1;9;6;25;3;11;7;14;6;6;16;14;13;17;13;16;3;13;8;9;16;8;14;9;20;12;9;8;9;18;17;5;8;7;15;5;12;11;8;7;10;7;8;8;9;8;7;8;9;11;10;9;7;15;6;8;9;14;6;5;4;19;11;11;10;8;16;23;8;16;5;11;1;7;5;2;5;6;4;20;9;11;2;1;4;27;8;8;18;3;6;5;6;12;30;8;15;12;7;12;9;5;3;14;10;2;11;8;6;4;16;23;16;16;10;14;2;7;5;9;15;14;4;11;5;0;2;9;10;10;14;19;14;13;14;13;6;14;9;7;24;6;13;11;16;13;11;7;7;30;4;1;7;9;20;16;8;11;8;7;16;14;15;10;10;12;30;24;16;2;15;9;17;22;17;11;17;11;19;11;17;26;32;29;28;33;5;1;3;18;28;33;30;14;5;29;19;28;19
+Tefluthrin;1;1;2;4;5;4;2;5;4;3;8;2;2;1;2;3;0;1;1;1;2;2;7;2;6;8;4;9;16;12;4;7;10;5;11;6;16;10;4;0;7;3;9;0;14;13;15;12;15;4;4;8;9;8;3;3;6;5;6;7;8;6;5;4;7;4;5;5;7;6;4;7;10;12;18;12;10;7;8;16;12;13;17;10;18;13;14;17;17;6;16;26;18;12;13;8;13;19;14;18;22;17;19;16;20;1;3;2;3;0;1;2;1;4;1;4;5;10;5;13;3;2;1;8;3;11;11;5;7;8;21;11;2;5;4;9;8;9;7;8;4;9;5;3;3;4;6;2;5;5;1;4;5;11;4;14;11;10;9;5;11;13;13;8;7;9;18;8;10;22;17;9;3;9;9;5;3;11;11;8;9;4;11;9;8;9;6;0;6;6;16;3;12;4;10;4;4;7;6;7;10;7;8;4;17;0;7;13;5;8;15;10;7;12;5;7;11;15;8;9;8;11;4;6;4;4;4;6;5;8;8;7;7;6;8;7;6;8;5;6;9;6;4;7;7;3;4;4;9;11;12;11;8;10;14;5;13;6;4;2;5;4;1;3;8;5;17;9;9;3;2;2;16;7;3;6;4;4;7;3;10;19;5;8;6;9;10;5;2;5;7;10;2;10;5;2;1;10;17;10;12;12;5;3;6;7;4;8;15;5;4;6;1;2;6;13;5;6;14;11;5;11;14;7;12;11;7;9;8;8;3;11;11;10;5;9;14;6;4;5;7;18;7;2;3;9;7;7;9;8;2;2;12;16;22;16;1;9;4;14;16;11;10;19;9;12;7;7;17;21;17;18;21;4;2;3;15;17;21;19;10;3;19;12;21;20
+Transfluthrin;5;6;3;7;9;11;8;7;6;9;10;7;6;8;7;8;4;6;6;6;6;5;15;7;11;13;8;20;19;28;14;17;12;10;28;17;32;10;4;8;20;15;16;8;28;27;28;25;29;12;11;15;15;14;11;11;19;12;13;19;15;17;17;13;19;12;14;14;17;16;9;15;17;23;31;22;17;11;14;25;20;21;25;17;23;13;25;28;24;21;17;18;55;18;23;18;20;30;31;32;34;26;35;24;29;15;15;13;6;4;4;8;6;11;10;16;14;25;17;25;16;11;9;22;11;17;18;9;10;11;38;18;6;16;7;17;15;19;19;19;13;16;14;9;11;9;11;6;10;11;4;11;11;12;12;19;14;12;16;7;19;34;29;18;27;21;36;24;26;43;35;22;6;16;15;4;9;15;24;16;16;8;22;15;20;16;12;4;10;11;26;10;22;8;18;9;8;15;15;12;15;13;13;14;28;5;16;23;7;16;25;22;13;18;15;13;28;22;7;16;8;21;17;14;13;17;14;17;16;19;15;16;18;16;17;16;18;22;18;15;15;11;7;16;15;6;10;10;22;15;19;17;17;14;22;9;23;12;9;5;11;6;4;6;14;7;32;12;20;8;7;6;20;12;9;9;4;7;15;7;15;29;12;17;14;8;14;13;0;7;19;11;5;12;10;5;5;28;27;19;22;15;16;3;5;9;15;19;18;9;13;9;1;5;18;25;12;12;22;24;14;18;28;11;22;13;17;23;14;11;8;19;22;20;12;12;31;11;8;12;13;32;11;4;10;17;15;18;17;18;13;11;14;33;35;22;4;17;10;25;26;22;16;31;15;26;15;25;34;34;32;30;34;9;3;4;24;28;41;28;14;6;26;18;31;24
+cis-Permethrin;3;0;4;4;5;5;7;1;1;4;7;2;2;1;1;1;1;1;1;1;1;0;10;1;7;11;10;10;12;23;13;10;9;7;19;16;30;11;5;5;12;6;21;3;10;15;15;15;15;3;4;9;6;9;12;5;8;9;8;10;10;8;6;6;8;6;8;9;8;7;5;11;17;18;19;20;18;17;17;23;26;26;19;18;28;18;26;26;23;9;18;12;18;35;31;13;18;28;26;28;30;15;22;19;23;7;4;4;2;3;2;2;6;4;5;3;4;9;7;16;8;4;3;12;7;12;10;4;10;3;19;17;4;7;1;13;10;12;8;10;6;9;7;6;7;13;10;4;6;6;3;6;5;5;6;8;17;14;16;5;22;17;13;4;10;17;15;10;11;24;23;8;13;9;6;8;2;10;21;18;17;7;14;10;12;10;7;1;8;7;18;3;12;6;13;4;4;14;14;13;15;15;14;3;13;8;9;17;6;12;15;18;8;5;10;8;17;16;7;7;5;12;2;8;6;9;8;13;10;9;9;9;9;9;7;9;13;10;12;7;14;7;5;9;11;3;7;7;17;6;14;12;4;7;21;8;18;7;9;3;7;2;1;6;10;3;17;5;16;5;0;5;28;7;10;12;1;4;8;4;15;25;8;15;11;5;12;11;3;3;10;8;1;9;10;3;4;20;25;18;23;9;11;3;6;7;8;19;16;4;11;5;0;1;8;11;11;14;15;14;10;15;18;6;15;15;12;13;12;10;9;11;6;7;6;12;25;8;5;7;9;21;12;7;10;7;5;16;19;17;4;6;6;29;20;18;1;16;4;15;21;20;11;17;7;24;11;20;25;29;23;30;27;11;3;4;18;27;30;23;15;4;26;19;24;17
+trans-Permethrin;3;0;5;4;5;7;7;1;1;4;6;3;2;0;0;0;0;0;0;0;1;0;10;1;6;12;10;13;14;23;16;16;10;8;23;18;35;13;4;5;13;9;23;5;10;16;17;14;17;5;5;9;5;9;13;7;11;12;8;10;11;11;10;9;11;9;11;10;9;8;5;12;19;20;22;25;18;18;17;26;29;30;23;22;30;20;26;30;28;11;21;13;23;31;39;15;20;31;30;33;35;20;27;20;25;9;5;5;2;3;2;2;6;5;5;4;4;10;7;18;9;5;3;14;10;14;13;7;11;7;22;20;4;11;1;16;12;15;12;13;8;13;10;7;9;13;12;5;9;10;5;9;9;9;9;13;21;16;19;6;24;20;18;7;12;20;15;13;14;26;25;9;12;10;7;8;2;9;23;19;19;8;17;10;10;9;7;1;9;6;18;3;13;6;13;5;5;17;16;14;16;14;15;4;16;9;13;19;6;13;17;21;12;9;12;11;18;16;7;8;7;11;5;8;6;11;11;15;14;12;11;12;12;12;11;10;16;11;13;8;17;11;8;10;11;4;8;8;20;10;13;11;7;9;22;9;21;9;11;3;10;5;2;5;8;6;18;9;17;6;3;5;27;10;10;11;2;7;10;6;17;28;11;19;13;6;11;12;3;6;10;9;1;9;10;3;5;24;24;19;25;11;13;3;7;7;10;19;19;4;11;6;0;1;10;15;10;14;17;15;12;17;19;7;17;15;14;15;14;11;10;15;10;9;7;12;30;9;6;8;10;22;15;7;10;8;5;15;18;17;6;8;6;31;21;21;2;16;6;17;22;19;12;22;8;23;11;20;25;32;25;34;30;12;3;4;21;30;31;27;16;6;30;20;30;22
+cis-Allethrin;6;3;6;3;5;8;3;2;2;3;6;6;4;3;2;2;3;3;4;4;6;6;19;4;7;18;10;29;17;29;13;27;18;6;26;14;36;10;7;18;20;18;18;3;7;14;14;14;14;6;11;16;7;17;21;16;22;17;15;23;16;21;21;17;27;15;18;18;20;21;14;16;31;32;29;27;22;19;13;19;30;29;28;27;22;15;14;25;27;16;11;8;18;13;15;51;36;28;22;30;33;18;24;23;24;13;11;10;9;9;10;12;13;16;11;8;6;14;4;31;20;10;6;25;20;14;14;17;15;11;25;19;9;29;4;20;17;19;29;23;20;24;17;14;17;13;15;7;20;24;4;21;25;19;17;32;10;8;9;4;9;31;17;26;29;32;39;27;30;27;37;14;7;13;14;9;5;11;17;11;13;6;18;16;6;8;12;1;9;6;25;11;13;5;13;3;2;9;16;6;11;9;7;7;12;5;29;25;14;20;21;15;24;10;20;19;32;25;9;6;16;8;22;9;14;19;16;28;22;15;16;16;27;18;16;20;27;31;30;19;15;24;21;21;15;2;10;14;28;12;7;6;9;11;24;12;22;17;13;4;20;9;5;6;7;12;37;12;14;10;8;7;12;21;3;19;3;12;18;15;13;26;20;16;14;11;15;13;1;10;15;12;3;15;13;4;5;32;12;18;20;13;12;7;4;10;12;8;12;3;11;5;0;1;19;16;9;13;27;17;14;19;26;6;27;15;12;23;23;10;10;14;20;19;9;12;37;10;7;15;13;15;12;2;11;7;11;9;15;20;13;16;9;25;21;23;4;9;8;15;24;23;15;14;5;17;6;16;24;23;19;24;28;8;3;4;20;16;26;26;9;12;23;13;47;41
+trans-Allethrin;3;2;4;2;2;5;5;0;0;3;5;1;3;2;1;1;1;2;2;3;6;5;18;5;8;16;11;26;17;29;14;24;17;7;22;13;31;8;8;12;19;13;15;2;10;12;13;11;15;2;3;13;6;11;17;10;15;11;11;15;11;13;13;10;17;12;12;12;11;13;9;11;32;36;30;25;21;19;12;22;29;29;32;29;23;18;21;28;23;16;12;13;20;18;20;36;47;31;31;32;36;22;30;24;26;9;6;6;6;7;5;6;8;13;10;3;4;9;3;31;12;7;3;22;17;18;16;16;15;11;25;19;8;28;4;17;12;15;28;19;20;22;15;13;16;12;14;5;19;24;3;22;22;17;14;27;10;8;9;2;11;28;21;13;18;33;33;16;20;32;38;16;8;13;12;9;5;14;18;14;15;8;17;18;10;10;14;2;9;3;22;9;11;6;10;4;3;10;15;6;11;10;8;7;17;5;24;28;14;15;23;20;18;12;18;14;32;22;6;8;12;14;17;8;11;14;13;17;15;10;10;11;17;13;10;14;18;20;18;12;12;22;19;19;13;2;6;13;26;12;16;14;13;10;22;13;25;17;16;3;19;9;5;5;5;14;29;10;12;9;9;6;12;20;4;17;3;13;16;14;9;20;19;13;11;12;11;12;1;11;11;8;3;11;13;4;5;28;15;20;22;14;11;5;4;9;14;13;11;3;11;5;0;1;15;13;6;13;23;22;15;22;24;8;26;20;18;21;21;9;10;12;19;19;10;15;31;8;4;13;12;20;11;4;9;13;13;14;13;17;14;16;12;29;18;18;4;9;9;17;23;21;12;12;7;22;6;18;21;31;21;26;29;6;1;3;18;16;30;26;10;12;24;11;39;35
+cis-Cypermethrin_isomer1;6;2;5;12;13;12;10;4;3;7;11;6;4;5;4;4;3;3;4;4;4;2;21;2;21;27;17;24;21;39;19;19;25;8;33;21;53;14;8;18;19;18;30;2;17;18;18;17;20;4;6;19;14;22;19;15;16;12;10;16;17;17;13;14;17;12;13;12;14;13;8;14;35;35;43;36;25;19;17;48;42;38;49;44;45;37;47;50;51;21;34;19;30;28;31;28;31;80;52;47;57;37;47;41;53;14;8;11;7;8;8;8;13;11;10;9;9;17;11;42;18;9;5;26;21;32;24;15;21;9;53;27;9;26;9;22;17;24;27;26;14;26;18;12;14;14;21;6;17;19;6;18;17;14;16;27;19;16;17;6;22;44;40;18;31;32;53;22;23;59;48;19;17;21;20;15;5;22;30;22;21;10;28;26;14;15;11;2;13;11;42;8;22;8;21;8;6;22;24;15;24;18;21;8;22;9;25;30;13;23;24;28;25;19;16;17;28;34;7;10;15;21;16;16;20;19;18;17;17;16;17;16;18;13;15;16;21;31;25;12;19;20;15;16;26;5;9;14;33;15;20;18;15;22;45;10;34;12;13;8;13;9;3;8;11;10;45;20;23;8;7;10;35;20;11;25;4;12;19;11;17;52;15;24;21;11;16;13;5;9;19;20;6;20;16;8;7;34;37;26;31;20;19;6;5;12;12;21;26;9;17;10;0;2;17;20;13;23;29;22;15;27;28;9;29;23;12;31;20;20;13;20;19;20;12;18;54;14;9;13;16;40;19;8;14;13;14;22;20;24;18;22;19;46;34;30;5;19;14;25;35;27;18;32;16;33;16;27;37;53;37;46;57;9;4;7;39;40;53;46;17;8;44;31;52;38
+trans-Cypermethrin_isomer1;6;1;5;12;13;12;12;3;2;7;11;6;3;2;2;3;0;1;1;2;4;2;15;3;15;23;17;20;17;36;17;21;20;9;31;19;50;12;7;14;26;14;34;2;20;18;18;16;21;7;6;13;15;15;15;12;18;13;14;15;23;16;17;13;18;13;15;17;17;17;13;22;29;30;40;32;22;15;19;49;40;38;50;44;47;34;44;50;47;22;33;14;31;26;30;22;31;52;72;48;54;36;41;39;43;14;9;7;3;9;5;4;11;11;8;7;9;16;10;37;12;6;4;26;20;22;21;12;17;10;42;22;9;19;6;24;14;19;21;23;12;20;16;13;12;11;19;6;13;18;5;16;13;10;14;22;20;15;18;6;24;34;33;18;26;25;47;19;26;55;42;16;18;17;15;13;5;16;31;22;23;10;26;21;17;14;7;0;12;10;34;7;20;13;22;8;7;21;23;17;21;18;19;10;25;10;18;24;10;21;23;30;19;17;14;13;28;30;8;12;9;19;13;16;16;17;16;18;16;20;21;21;19;15;13;19;21;31;26;17;21;13;12;13;20;6;8;11;30;16;19;16;16;21;37;9;26;10;13;9;15;8;4;8;9;8;40;18;22;6;3;8;34;14;11;19;5;9;12;9;18;47;17;23;17;11;16;18;5;7;16;18;2;14;15;6;7;33;36;25;33;14;20;5;7;9;15;26;26;8;18;7;0;2;12;18;14;22;24;23;16;26;28;10;25;19;12;25;16;23;18;24;14;15;10;13;45;12;6;10;17;33;25;10;17;12;11;25;20;18;15;18;14;43;27;30;5;18;10;26;31;23;14;29;15;30;13;28;38;49;39;45;49;10;3;5;30;37;49;41;16;6;43;24;47;33
+cis-Cypermethrin_isomer2;10;5;5;9;10;11;9;5;4;9;13;6;4;9;4;8;6;5;6;6;3;3;24;6;20;27;9;23;23;42;17;24;29;9;38;19;56;15;8;20;26;16;35;7;21;23;22;23;24;9;10;21;16;22;24;13;21;17;16;24;26;22;21;18;24;16;17;18;20;20;15;27;30;34;41;30;23;17;16;44;36;35;46;38;45;31;39;49;64;29;32;18;32;28;33;30;32;47;48;95;57;32;43;50;56;23;23;21;13;14;13;15;15;14;19;17;14;23;13;50;23;10;12;27;27;31;24;14;20;10;52;22;9;19;6;19;16;19;23;24;13;20;16;9;15;14;21;8;12;17;7;12;15;15;16;25;19;16;18;7;25;42;48;24;38;36;54;28;29;57;53;19;16;21;21;13;7;22;27;23;23;7;28;29;11;14;10;2;9;14;44;11;24;15;26;10;8;21;24;16;20;19;20;13;28;11;22;34;13;23;32;30;27;18;20;18;29;36;8;10;16;19;19;18;17;20;17;26;25;28;28;29;26;20;26;27;37;42;38;22;25;18;12;19;28;7;9;16;32;15;20;18;14;29;38;11;28;14;14;8;16;8;5;9;9;8;50;25;25;12;7;8;35;18;12;19;6;10;15;11;20;62;17;22;24;13;16;17;5;9;22;25;6;17;15;8;11;36;37;29;30;20;20;5;9;9;20;31;23;9;16;7;2;3;14;22;15;20;36;23;18;29;32;11;30;29;16;26;18;15;14;16;19;18;12;25;55;13;12;17;19;43;23;5;10;14;12;22;20;19;17;23;19;46;35;32;5;19;10;23;41;23;15;36;16;30;11;30;40;53;38;45;56;11;6;7;38;38;52;45;19;8;41;26;51;36
+trans-Cypermethrin_isomer2;12;5;10;15;18;17;16;8;7;16;21;12;7;6;11;9;7;7;7;7;6;4;32;7;25;42;21;34;34;58;22;35;42;14;53;26;80;22;11;19;34;24;45;10;26;23;23;22;24;8;9;25;21;31;33;19;25;19;26;32;35;26;21;17;30;18;21;25;29;24;19;32;39;44;52;43;29;17;18;50;47;42;52;45;58;46;53;64;83;31;35;22;34;30;35;33;36;57;54;57;141;48;52;62;73;25;18;16;15;14;14;18;16;17;17;18;17;27;18;66;29;18;11;48;33;48;37;24;27;19;79;36;14;30;12;35;33;36;37;31;19;36;25;13;26;16;25;8;17;24;9;19;26;26;23;45;32;30;34;11;40;59;54;38;44;47;83;36;43;87;79;29;23;29;30;19;5;27;37;27;29;11;39;30;21;19;24;1;21;23;57;20;36;15;35;13;12;32;30;23;32;27;30;21;36;11;33;52;23;42;41;37;41;29;25;27;42;52;10;15;23;30;26;25;23;27;24;30;25;29;30;31;29;23;27;30;43;58;44;25;39;31;23;24;33;10;11;13;38;21;25;23;20;34;56;14;44;18;15;11;21;13;5;13;19;11;54;33;34;11;8;8;50;25;14;29;7;14;22;16;25;67;23;38;35;21;26;27;5;13;31;25;7;25;21;8;12;54;47;42;38;26;25;6;11;16;24;32;34;8;20;16;3;5;33;37;20;24;51;30;27;31;47;14;40;32;26;29;24;28;20;35;32;29;19;26;75;22;14;24;24;53;35;11;18;13;13;22;22;31;28;29;27;60;58;44;12;26;11;26;57;35;24;40;15;37;18;34;57;61;58;55;62;15;7;12;45;47;81;58;23;11;57;40;74;65
+cis-Cyfluthrin_isomer1;3;3;5;9;11;11;8;6;5;10;14;6;6;8;8;9;3;3;4;5;3;2;20;2;14;17;14;21;13;29;13;14;24;10;25;14;44;8;6;13;20;16;25;3;17;18;17;14;18;3;5;15;18;20;11;14;15;12;14;17;15;18;17;13;21;13;14;15;14;15;10;14;18;30;24;27;19;12;16;27;27;25;27;25;33;28;30;33;40;19;25;17;26;15;20;18;22;37;36;32;48;66;45;40;43;11;3;3;2;9;7;6;13;10;8;9;9;13;8;26;7;4;3;21;15;21;19;8;14;13;41;17;7;18;8;13;15;13;19;20;13;22;14;9;12;9;13;5;11;11;6;13;13;11;14;23;16;13;15;7;17;37;31;13;23;24;43;16;20;47;39;15;15;19;19;10;3;16;25;16;15;8;22;22;12;15;10;0;14;13;35;14;16;9;16;6;5;14;13;10;12;14;13;12;23;4;19;26;11;19;20;25;18;18;16;12;24;28;7;11;12;19;8;12;16;18;16;19;17;12;14;14;22;16;10;18;16;23;16;15;18;17;12;19;21;6;5;7;27;18;16;16;16;24;31;10;23;11;12;8;18;8;3;7;9;8;32;19;22;7;5;9;27;15;5;13;2;10;15;11;18;36;18;17;17;12;14;19;3;9;18;11;3;14;12;6;8;23;27;23;27;18;11;5;8;8;13;15;17;11;10;8;1;2;14;19;7;13;24;23;10;20;30;7;20;19;14;24;17;18;14;24;15;14;11;18;39;12;6;11;17;25;22;8;15;14;12;13;14;19;17;10;23;39;27;23;9;18;12;19;35;18;13;24;13;22;14;17;33;33;35;29;31;10;2;3;27;25;39;34;18;7;33;23;42;34
+trans-Cyfluthrin_isomer1;7;3;3;8;9;10;7;5;4;12;14;7;7;9;10;9;3;4;4;5;4;2;19;3;14;20;13;25;19;31;16;20;20;9;30;17;51;11;7;19;21;17;28;5;20;23;23;19;24;4;6;17;17;19;21;13;17;13;13;19;17;19;17;15;21;13;13;16;13;16;10;17;25;35;36;32;24;16;19;34;34;32;37;33;42;32;36;44;42;29;29;19;35;22;27;24;30;47;41;43;52;45;77;44;50;13;9;6;6;12;8;7;19;12;10;9;10;17;11;35;15;9;6;28;17;24;25;19;22;20;47;24;8;22;6;20;16;19;23;24;14;22;15;10;13;11;14;7;13;17;4;15;17;15;14;27;19;17;17;9;24;36;40;23;30;28;48;24;28;60;46;17;16;22;20;15;7;22;32;22;22;10;26;23;16;18;14;3;17;11;43;15;16;7;17;5;3;16;18;11;19;13;15;15;27;6;21;30;15;23;30;25;27;21;20;18;29;36;9;14;19;28;13;12;20;19;18;24;19;19;18;18;23;16;16;20;22;30;25;17;26;20;13;22;27;3;8;12;29;18;18;17;16;25;36;11;28;14;14;9;17;8;4;10;14;10;39;17;20;6;8;6;28;17;8;19;2;12;17;11;22;41;18;24;18;13;15;19;4;10;19;16;3;20;14;6;8;35;34;34;24;20;14;6;6;8;17;21;24;11;13;9;1;5;18;22;12;18;31;26;16;23;31;7;24;22;15;23;21;19;14;25;23;23;10;19;48;10;8;14;16;34;24;8;14;16;15;20;17;25;21;23;25;44;33;26;8;19;17;28;36;24;20;28;17;31;16;25;45;45;39;38;43;7;3;5;32;36;48;44;19;11;44;31;53;39
+cis-Cyfluthrin_isomer2;12;4;6;11;12;9;8;5;5;8;16;8;4;7;6;7;5;4;5;6;7;4;20;7;21;24;14;23;18;40;12;19;25;11;34;11;48;16;7;12;22;15;27;4;21;19;17;17;17;4;7;16;18;20;22;12;15;12;14;19;17;16;20;14;19;12;14;17;15;16;12;16;25;30;39;24;20;9;14;36;31;25;36;25;39;25;36;48;60;20;27;16;24;19;20;23;24;41;39;50;62;40;44;89;55;17;13;14;10;11;8;9;14;15;11;13;13;18;15;43;21;9;8;28;27;25;21;13;20;20;44;20;10;21;8;18;17;17;26;21;14;21;16;9;18;10;18;7;8;11;6;10;13;15;16;28;18;16;16;8;25;42;42;30;27;32;45;26;28;62;47;21;20;20;21;14;5;19;23;17;17;7;26;22;13;18;17;2;13;11;39;13;19;12;20;7;6;14;22;13;22;14;16;15;25;5;20;31;14;26;32;24;26;19;17;16;22;33;8;12;20;21;11;16;17;15;14;22;17;14;17;17;20;14;17;18;19;34;25;17;25;22;15;17;23;5;6;9;32;13;25;23;12;20;38;11;33;14;11;11;11;8;4;9;8;6;37;19;19;11;5;5;29;15;7;21;1;6;16;9;20;48;11;24;26;20;12;16;7;11;23;14;3;17;17;8;10;37;30;29;29;23;12;3;6;11;18;18;27;12;9;10;1;5;19;25;14;14;33;14;11;23;33;8;27;27;16;28;20;22;16;20;16;17;12;20;49;12;10;18;15;35;19;3;10;10;13;11;10;21;11;17;20;48;36;24;8;21;13;20;33;24;14;35;14;27;13;24;34;48;36;37;49;8;4;7;29;34;53;41;15;6;40;28;52;36
+trans-Cyfluthrin_Isomer2;9;4;1;9;10;9;10;6;6;14;20;8;10;5;8;9;4;4;5;5;6;2;25;4;20;29;15;24;24;47;14;20;35;16;36;13;62;17;10;14;21;18;37;5;20;19;20;19;20;8;5;19;23;28;20;16;18;13;14;19;19;18;16;13;20;13;14;15;16;15;10;17;33;38;43;30;22;14;15;36;33;29;38;34;47;37;42;53;66;22;26;20;29;23;25;24;26;53;43;56;73;43;50;55;104;16;12;12;11;10;9;8;14;9;11;11;13;20;11;48;21;14;10;38;27;33;30;18;26;25;58;27;9;24;6;20;22;21;28;27;14;25;15;11;17;15;21;6;13;18;5;16;18;17;16;31;23;23;24;10;27;45;50;27;30;35;62;22;27;78;60;20;23;26;26;17;4;20;33;24;24;10;34;27;20;17;16;1;18;16;45;13;20;11;24;7;5;18;22;15;24;14;18;19;22;8;26;37;21;29;32;36;28;21;30;20;30;43;9;19;18;32;16;17;20;21;20;22;18;17;19;20;22;15;20;20;27;31;28;18;28;26;16;23;27;4;12;13;40;14;26;25;13;29;51;11;37;17;13;9;12;8;3;11;13;8;47;19;26;12;1;11;40;20;13;26;1;8;15;13;20;50;14;26;30;15;18;18;4;10;27;17;5;20;17;5;8;35;42;27;26;23;18;7;6;10;13;19;30;13;17;11;4;7;21;23;10;22;35;19;18;28;36;8;25;28;18;30;20;22;20;21;22;22;11;26;52;14;8;19;21;38;25;10;15;16;14;17;13;20;20;20;23;46;43;32;10;21;12;27;38;30;21;36;14;30;18;23;47;56;46;50;60;6;3;6;34;41;63;51;20;10;47;33;67;52
+1,2,3,4,7,8-Hexachlorodibenzo-p-dioxin;7;6;5;8;8;10;6;7;7;6;7;11;7;9;8;7;5;6;6;6;5;5;16;6;10;7;7;14;5;10;9;19;21;9;29;7;13;5;1;30;44;29;41;27;18;14;15;14;14;36;32;24;17;12;32;23;36;29;45;42;58;31;29;25;37;30;30;50;51;50;36;52;14;8;4;9;8;5;0;5;13;10;3;2;5;3;3;6;18;25;3;1;15;7;9;13;9;14;14;23;25;11;13;17;16;90;69;66;40;33;37;40;27;37;51;44;31;49;33;41;28;20;25;28;11;31;30;18;14;9;51;6;6;15;8;14;5;3;16;19;15;15;11;8;9;3;7;1;6;8;5;4;5;3;10;12;3;6;6;4;10;56;30;51;54;48;59;50;57;53;61;28;10;11;15;2;5;17;6;8;7;1;6;6;6;5;7;2;10;11;29;15;16;10;17;8;6;10;16;7;10;6;8;10;27;5;14;12;3;13;33;15;20;18;7;9;24;8;4;12;12;8;26;17;23;28;26;36;28;57;55;56;39;35;59;56;54;51;49;53;4;6;7;13;19;2;8;9;17;11;4;4;7;18;25;9;6;10;2;8;7;5;2;3;10;4;39;16;23;4;2;4;6;3;4;7;7;2;3;3;3;10;8;19;8;5;10;15;3;2;21;16;4;8;4;5;3;10;5;3;7;0;11;3;4;7;23;8;4;6;8;0;1;2;3;8;8;10;5;15;9;9;12;7;9;5;27;12;4;11;9;13;4;2;5;8;31;2;12;11;20;31;13;0;6;13;16;4;8;15;11;7;6;12;17;19;6;7;4;15;29;7;10;13;11;8;3;13;15;9;19;6;13;4;1;2;20;4;10;9;10;2;10;9;20;13
+1,2,3,4,6,7,8-Heptachlorodibenzo-p-dioxin;9;8;7;9;9;11;8;8;8;8;5;10;9;10;9;9;6;8;8;8;7;7;15;8;11;7;6;12;3;8;7;22;25;11;32;7;11;4;1;28;47;27;45;32;18;16;16;16;16;33;35;20;15;14;34;22;38;29;45;50;57;29;28;25;42;30;30;48;55;49;35;51;10;6;5;12;9;4;0;5;15;10;4;2;6;4;6;5;16;31;4;3;15;4;5;11;6;8;9;23;18;3;9;13;12;69;112;79;50;34;37;40;31;36;51;56;31;48;33;43;29;27;31;24;14;31;22;16;12;10;55;6;4;15;6;19;4;2;12;17;15;13;10;8;6;4;6;2;5;10;4;3;3;2;7;11;2;4;4;4;8;64;28;57;69;52;82;58;64;45;75;30;16;15;19;3;3;17;6;9;8;1;8;6;5;7;8;1;12;10;29;13;15;9;14;9;7;13;19;10;16;10;12;14;31;5;14;11;3;14;37;14;23;18;9;9;27;10;5;10;15;9;37;21;24;26;25;34;27;58;57;62;41;33;73;59;68;54;52;55;5;5;5;12;17;2;8;8;19;16;4;4;7;14;23;11;5;12;1;9;4;5;2;4;11;2;37;24;22;4;4;3;8;5;2;9;7;1;4;3;3;17;5;19;8;5;8;15;2;2;25;21;5;8;5;6;3;11;6;4;7;0;10;3;5;7;18;8;6;3;6;2;1;3;2;10;8;8;6;11;11;7;10;9;6;8;22;15;4;8;8;12;5;3;4;9;32;2;15;12;19;32;10;1;7;18;22;5;8;16;8;5;12;9;17;16;5;9;4;20;26;10;11;17;10;7;4;15;13;10;21;8;15;5;1;3;22;3;12;8;9;2;9;8;18;12
+Octachlorodibenzo-p-dioxin;9;7;7;9;9;10;7;8;8;7;4;10;8;9;8;8;5;7;7;7;8;7;16;7;14;6;5;9;3;7;6;18;22;9;27;7;8;4;1;28;54;25;49;38;9;8;9;8;8;31;33;20;15;14;30;20;36;25;39;44;63;27;25;21;35;26;26;42;47;43;29;56;13;6;2;11;9;3;0;4;19;16;3;4;5;3;3;6;14;34;2;2;13;4;5;10;6;11;7;21;16;3;6;14;12;66;79;116;48;34;36;42;28;32;45;55;33;59;28;44;36;35;33;40;19;33;27;16;7;3;54;4;4;11;6;20;4;2;13;14;12;12;10;8;6;4;6;1;5;7;4;3;3;2;7;8;2;3;3;4;6;56;25;50;67;47;74;46;51;40;67;25;15;10;17;2;2;18;6;8;9;1;4;7;2;6;6;0;12;9;28;12;15;5;11;7;6;10;16;9;12;9;9;9;21;5;12;9;3;17;34;14;18;16;4;9;21;9;2;9;10;8;42;21;22;25;23;28;23;59;64;64;36;27;60;51;58;56;56;45;2;4;3;7;18;1;7;7;15;13;4;4;5;15;23;10;2;7;0;6;8;5;1;2;10;2;31;20;22;2;2;2;6;4;1;5;6;1;2;3;1;9;9;15;5;5;10;14;2;1;22;15;6;7;4;6;3;8;3;4;6;0;6;3;4;6;17;4;4;2;4;1;0;0;2;9;9;5;5;8;9;5;6;9;6;5;23;6;2;6;6;10;4;2;4;10;28;2;12;9;16;29;6;0;2;11;14;2;4;12;9;8;9;7;15;12;2;7;1;11;23;7;10;10;6;5;3;10;9;6;18;3;11;4;1;1;22;3;11;7;9;1;9;8;14;10
+Octachlorodibenzofuran;10;7;7;8;8;9;7;8;8;9;5;9;7;7;7;8;5;7;7;7;8;8;14;7;7;4;4;10;4;8;4;22;18;8;26;5;12;5;3;28;28;24;35;25;12;9;9;10;9;17;20;16;16;20;22;22;24;21;26;26;39;21;19;18;25;20;20;25;31;24;18;36;9;10;6;10;8;2;1;5;9;9;3;7;6;4;5;5;11;28;2;3;6;2;2;9;6;7;3;13;15;2;6;10;11;40;50;48;90;44;52;51;28;21;33;24;30;47;26;35;18;19;26;29;14;24;22;11;5;5;34;6;5;9;6;17;6;5;11;14;11;13;8;6;8;2;6;1;5;5;4;1;4;3;9;9;3;4;4;4;6;37;27;49;49;46;59;36;39;35;59;22;13;18;21;3;1;11;5;6;7;0;8;7;4;5;7;0;9;8;19;9;13;5;16;7;5;13;19;11;14;9;11;15;19;5;10;9;2;14;26;9;14;7;7;8;18;7;2;2;5;6;38;17;19;24;23;23;19;37;37;39;23;19;48;28;61;58;52;27;6;8;4;8;14;1;5;5;13;10;6;6;3;9;19;9;5;10;1;5;7;5;1;3;6;3;27;14;12;2;2;3;5;3;1;6;5;2;2;4;1;14;7;10;5;6;4;9;0;2;18;10;4;6;5;6;3;10;10;6;7;2;3;1;4;3;18;6;6;7;3;0;0;1;5;10;6;3;5;9;7;4;7;5;6;10;12;3;5;6;7;7;5;4;0;7;24;4;10;10;11;24;5;1;5;4;7;1;2;14;6;8;20;13;18;12;8;9;0;15;16;12;15;12;8;7;14;10;8;12;12;4;14;4;1;1;10;3;10;9;6;1;10;9;15;11
+1,2,3,7,8-Pentachlorodibenzofuran;6;5;4;7;6;11;7;5;5;5;4;9;5;6;5;5;4;5;5;5;6;7;15;7;8;7;4;10;5;9;4;13;17;5;25;6;13;5;3;31;22;26;26;17;10;6;6;6;5;17;19;18;11;12;25;24;23;19;27;19;30;23;21;19;27;19;18;27;26;28;20;29;11;9;6;6;7;4;0;7;8;8;6;4;7;5;9;6;16;26;2;0;4;3;3;9;7;8;9;14;14;9;12;11;10;33;34;34;44;55;46;45;33;24;30;26;18;22;14;23;9;11;14;19;11;21;26;10;6;6;42;4;5;13;8;14;7;5;13;15;11;13;8;6;8;2;5;2;5;7;4;3;5;3;9;10;2;4;4;3;7;26;39;41;43;43;41;39;40;39;43;23;11;13;13;4;1;9;8;8;10;2;7;5;3;4;5;0;11;9;24;10;16;8;15;8;5;12;15;7;9;6;10;8;14;5;12;16;3;12;28;15;16;5;7;8;17;9;2;3;5;5;18;18;22;25;25;28;23;29;30;32;27;21;32;28;47;54;53;28;6;8;6;7;17;0;5;6;10;7;4;4;5;8;17;7;5;9;3;5;6;5;0;2;6;3;24;15;14;2;3;2;6;1;2;9;5;2;4;3;3;13;6;12;5;3;4;12;0;2;24;12;3;4;3;4;4;13;3;8;7;2;6;2;4;3;19;5;4;4;5;0;2;5;5;11;6;6;12;9;4;4;9;4;8;8;11;7;2;8;7;8;5;4;1;11;17;3;12;11;13;19;6;3;3;0;5;0;4;7;4;9;15;14;19;10;9;7;2;8;19;11;5;8;3;2;5;17;10;9;12;5;10;4;2;3;11;2;9;12;9;3;15;13;16;11
+1,2,3,4,7,8-Hexachlorodibenzofuran;7;5;5;6;6;9;5;5;6;5;5;10;5;6;5;5;4;5;5;5;6;6;12;6;4;3;4;10;4;6;5;18;13;5;23;5;13;5;2;32;23;26;31;22;10;7;8;7;7;19;19;17;11;11;19;23;23;20;30;25;33;22;20;19;27;19;18;28;30;29;19;29;9;7;3;9;5;1;2;5;8;7;3;5;7;5;5;5;9;22;3;1;4;2;2;10;5;8;5;13;14;7;8;8;9;37;37;36;52;46;65;54;31;20;30;28;21;32;18;17;8;22;23;16;9;19;20;9;8;5;34;5;4;11;7;13;6;3;12;13;11;12;7;5;9;2;5;1;5;6;4;2;4;3;9;10;2;4;4;4;7;31;26;32;41;42;44;34;37;32;42;18;12;12;12;3;2;9;5;6;7;2;6;5;3;7;6;0;13;8;19;10;13;7;13;6;4;9;13;6;8;5;7;11;17;5;12;9;2;12;26;12;16;6;6;8;19;7;2;5;6;6;24;15;18;24;23;27;20;29;32;33;24;20;42;29;58;54;55;29;4;7;4;9;14;0;6;4;10;6;5;5;4;11;16;8;4;10;2;5;6;5;1;3;6;3;22;13;13;2;2;1;5;1;1;8;5;1;2;3;3;15;7;9;4;5;4;14;0;3;24;14;3;5;4;5;4;10;6;5;7;2;4;1;4;2;20;5;4;7;3;0;1;3;4;9;4;4;7;10;6;3;6;5;7;8;10;4;3;7;7;7;5;4;1;6;17;3;12;10;11;22;6;2;5;1;2;1;4;10;5;5;12;11;17;11;3;8;1;9;20;11;10;7;4;4;9;10;8;8;18;4;9;3;1;2;12;2;9;12;8;2;12;11;17;11
+1,2,3,4,6,7,8-Heptachlorodibenzofuran;8;6;6;6;6;8;4;6;7;7;10;10;5;6;5;7;5;6;6;6;5;7;12;6;5;3;4;15;5;8;8;18;17;6;25;8;16;6;2;31;28;24;31;29;10;5;6;8;5;21;21;16;11;12;22;22;29;23;32;21;40;27;24;21;31;24;23;27;33;28;20;34;11;9;6;9;5;2;0;5;12;9;3;4;6;4;6;6;12;23;3;2;8;2;2;12;6;8;4;15;18;6;7;9;8;40;40;42;51;45;54;90;30;19;31;27;23;38;26;28;12;22;25;20;13;26;30;11;8;8;42;9;6;14;7;18;9;6;17;19;14;17;11;7;12;3;8;2;7;8;6;4;4;5;12;13;5;6;6;5;10;31;34;46;47;46;50;40;43;44;62;18;11;11;13;3;2;15;7;7;10;1;9;6;4;6;9;0;10;11;25;14;19;9;18;7;5;12;18;9;12;8;10;14;15;5;15;11;3;17;28;12;18;10;7;10;18;9;3;4;7;4;28;16;21;23;22;30;23;36;39;41;31;25;44;29;68;70;67;29;7;10;6;9;18;3;5;4;10;10;4;4;6;13;22;8;6;10;1;6;7;6;2;2;12;5;27;18;18;2;3;2;6;3;1;6;5;2;2;3;4;14;7;12;9;7;9;14;0;4;23;13;4;7;7;5;6;13;8;7;9;3;5;1;4;5;16;10;8;5;5;0;1;2;8;16;6;7;6;9;7;3;13;6;8;9;10;7;2;9;9;9;5;4;3;11;24;4;12;13;13;27;8;1;1;2;5;2;7;11;5;9;13;12;20;13;5;7;0;9;19;11;9;7;4;7;7;12;9;10;18;3;12;5;1;2;11;3;11;12;11;2;14;12;20;13
+2,3,7,8-Tetrachlorodibenzofuran;6;5;5;8;7;10;7;5;5;5;4;9;5;5;5;5;4;5;5;5;5;6;13;5;10;11;5;15;7;12;5;15;19;5;25;6;18;7;3;39;21;19;30;8;11;9;10;7;7;18;15;18;12;14;23;18;20;16;25;21;29;20;17;14;23;16;14;24;23;25;19;26;15;10;11;16;9;6;3;10;11;8;11;10;13;9;12;14;16;25;5;1;6;6;6;13;8;13;11;15;16;13;19;14;14;27;31;28;28;33;31;30;50;20;25;20;18;25;13;20;13;15;17;23;9;20;25;8;7;7;39;4;7;16;8;14;7;6;14;16;13;14;9;7;10;3;6;4;6;8;5;7;7;3;10;13;5;5;4;3;8;25;35;30;36;37;40;26;31;42;40;19;9;9;15;8;1;7;12;9;10;4;11;10;6;6;6;0;15;7;25;12;14;8;16;9;6;13;13;8;10;6;11;7;12;5;16;18;5;14;23;15;18;8;10;12;25;14;2;5;9;9;18;17;20;19;19;22;17;27;30;31;23;17;31;26;35;44;35;26;11;9;6;8;15;1;2;7;11;8;5;5;7;13;20;7;8;8;7;6;8;7;1;2;8;5;27;13;13;4;4;3;7;7;4;8;5;6;6;5;4;17;8;15;9;5;6;12;0;5;22;10;4;6;8;6;3;17;8;8;12;4;7;3;5;6;15;9;11;4;6;1;2;5;8;14;9;6;14;9;8;6;12;5;14;10;12;8;6;9;10;10;6;6;4;10;23;3;10;11;12;19;6;3;5;2;4;5;8;14;6;6;15;12;21;12;9;10;2;10;22;13;8;8;5;6;8;16;16;12;13;7;15;6;3;3;15;5;15;13;10;4;16;11;20;14
+2,3,7,8-Tetrachlorodibenzo-p-dioxin;6;8;4;8;8;9;6;7;7;7;6;9;6;8;7;7;6;8;8;8;7;7;13;9;11;7;5;11;6;14;8;19;19;8;20;5;14;8;2;17;26;21;28;10;10;9;10;9;10;18;15;16;12;8;33;18;27;21;22;29;29;26;24;21;28;23;20;24;26;26;19;26;12;12;9;11;8;7;2;6;16;14;7;7;7;6;9;11;12;20;7;4;11;4;5;16;13;11;11;14;17;10;12;15;9;37;36;32;21;24;20;19;20;52;34;21;22;35;16;30;16;15;14;15;11;19;19;7;5;4;33;6;6;12;9;15;6;5;16;13;11;9;9;8;7;3;7;3;4;8;4;5;6;4;7;9;4;5;6;4;8;35;16;34;38;33;37;29;33;36;37;20;10;10;9;5;4;15;8;8;7;1;7;7;6;9;10;2;11;9;25;8;16;7;14;8;6;12;14;6;11;5;8;8;19;6;14;12;7;10;28;16;16;12;10;15;23;14;6;11;11;8;16;17;16;22;22;28;22;27;26;28;26;25;37;25;27;29;28;24;8;6;6;11;17;3;4;11;13;7;5;5;8;21;15;9;11;9;4;6;9;4;1;1;7;2;27;15;20;6;3;4;6;4;5;10;6;2;2;5;8;16;10;14;5;4;7;13;1;3;14;11;4;7;6;5;4;13;6;8;10;3;9;5;5;10;16;7;6;8;6;3;0;3;5;9;10;7;9;15;3;9;10;8;11;8;18;11;5;12;8;10;7;5;4;10;25;5;7;8;17;29;9;1;5;12;12;7;7;14;4;6;9;16;21;15;6;8;5;19;25;11;14;15;8;12;5;8;12;19;19;9;16;6;2;4;24;8;14;13;9;3;12;13;17;14
+1,2,3,7,8-Pentachlorodibenzo-p-dioxin;6;6;4;8;7;10;6;7;7;7;5;9;6;7;9;9;6;7;7;7;6;5;13;6;11;7;3;15;4;12;7;12;21;8;26;6;13;6;1;24;26;25;31;17;15;13;12;13;13;25;19;20;13;10;33;19;30;26;34;39;34;27;25;23;32;25;26;34;35;36;25;34;10;9;5;11;7;3;4;8;14;14;4;4;7;5;7;8;12;22;5;1;10;5;5;11;10;10;8;19;17;8;10;11;11;51;51;45;33;30;30;31;25;34;65;27;24;34;25;29;15;19;20;18;14;26;26;14;11;8;40;5;4;15;8;15;6;4;13;16;14;11;9;7;5;3;7;2;5;8;5;5;4;3;8;9;4;5;5;4;9;45;22;42;47;43;49;38;40;43;46;22;10;11;13;3;3;16;8;8;7;0;6;6;6;6;8;2;12;10;26;10;14;11;19;10;9;11;16;9;12;9;11;9;27;6;14;12;6;12;27;14;19;12;5;13;19;11;3;11;11;6;26;18;19;24;23;31;27;34;32;33;33;31;43;37;42;35;34;36;7;5;6;9;18;4;6;10;14;9;4;4;7;17;16;8;8;10;2;10;8;5;2;2;9;3;35;17;19;4;3;3;8;3;7;8;7;1;2;5;7;20;10;14;10;3;5;17;1;2;19;18;3;6;5;4;4;13;7;5;10;2;10;4;4;7;17;7;6;5;5;1;1;4;4;10;8;7;8;12;4;8;18;9;8;4;21;8;6;11;10;9;5;3;4;11;27;3;10;10;16;32;8;2;8;16;20;7;8;14;7;5;10;11;18;22;5;7;2;20;24;13;9;17;12;10;5;11;11;13;15;9;17;6;1;3;23;5;12;11;11;2;12;11;16;11
+2,3,4,5-Tetrabromo-6-chlorotoluene;10;8;7;9;9;7;8;9;10;8;5;8;9;8;9;10;6;8;8;8;7;8;11;8;8;10;6;9;3;8;7;25;21;13;28;5;8;4;2;21;42;24;39;30;14;11;13;13;12;24;23;20;5;20;21;18;24;18;28;31;51;21;21;16;25;15;17;28;36;27;15;41;11;4;8;8;5;0;0;6;11;7;4;6;8;3;6;9;12;26;2;4;16;3;4;8;3;9;7;17;18;9;9;13;11;44;56;55;24;26;28;27;20;21;27;110;72;88;56;61;51;47;60;52;24;26;21;24;11;8;47;4;4;11;7;18;1;3;9;16;11;7;9;9;6;2;3;2;2;6;3;3;4;2;5;8;2;3;3;4;5;46;34;40;68;46;53;37;42;41;60;26;11;21;24;6;3;11;5;4;4;1;10;8;8;11;10;2;10;13;28;12;12;11;19;8;7;10;17;11;14;9;12;12;20;5;11;11;3;9;28;15;20;14;13;9;21;4;1;10;11;4;54;14;20;23;22;25;23;53;54;57;27;22;61;37;58;60;50;33;3;6;5;10;21;3;7;5;12;13;5;5;8;11;21;8;7;11;3;8;4;2;0;1;5;2;36;17;17;6;3;3;5;5;4;11;5;4;7;2;5;14;4;15;1;3;3;13;1;4;16;14;3;6;2;6;3;10;6;2;1;0;9;3;4;4;15;7;2;7;7;0;1;5;2;10;6;11;4;5;13;9;10;7;11;5;7;11;4;7;3;9;3;2;6;5;27;2;7;11;15;34;6;1;9;3;5;5;5;17;9;4;15;15;12;16;4;7;6;13;25;7;5;9;7;8;5;11;10;14;11;6;12;6;2;4;18;5;5;5;3;2;7;6;13;7
+2,3,4,5,6-Pentabromotoluene;8;6;5;8;8;10;7;9;9;7;3;7;7;7;9;9;5;6;6;6;5;6;9;6;6;11;6;5;3;9;4;30;19;9;24;4;5;5;2;18;26;15;27;28;12;9;9;10;9;16;20;13;5;15;19;12;16;14;17;24;30;13;12;10;17;12;14;23;26;21;11;27;11;5;9;6;4;1;1;6;10;6;4;8;6;2;7;9;12;17;2;5;14;4;4;6;4;9;9;14;17;9;10;13;13;31;31;33;30;18;21;23;18;22;24;72;95;79;52;49;41;53;59;57;16;20;24;23;10;7;42;2;4;7;7;15;1;4;5;10;7;4;8;7;4;2;2;2;3;6;3;3;2;1;4;6;3;4;4;3;6;36;30;34;45;38;43;29;33;37;43;23;5;17;18;5;3;10;6;5;5;1;10;7;8;8;9;2;11;11;21;7;12;10;19;9;7;11;15;10;14;7;11;9;18;5;5;11;5;7;23;13;16;12;9;11;16;2;2;6;7;3;50;14;15;14;14;17;15;33;32;36;19;18;44;29;44;44;39;27;4;4;3;4;19;3;4;6;7;10;6;6;9;8;14;6;6;9;1;8;5;3;0;4;4;1;25;15;16;3;4;1;5;1;5;8;5;3;4;1;6;14;5;10;2;3;5;11;0;3;13;10;2;4;3;7;2;11;8;2;1;1;9;3;5;3;12;7;2;3;4;0;1;5;3;9;7;8;5;4;12;5;9;8;9;6;5;5;2;5;3;7;3;2;4;3;21;2;6;8;9;25;4;1;7;3;5;7;7;11;11;5;10;10;9;14;3;6;3;12;19;11;5;9;8;10;5;12;12;15;9;7;12;7;2;4;12;5;9;4;3;1;5;6;9;3
+2,3,4,5,6-Pentabromoethylbenzene;9;6;7;11;11;13;10;11;10;10;12;6;7;8;9;10;5;6;6;6;6;6;12;7;12;12;11;9;7;20;9;32;34;9;34;7;14;14;3;24;42;25;36;34;26;22;20;21;22;24;31;16;11;22;28;18;31;25;26;41;45;27;23;19;35;25;26;30;37;31;18;41;15;14;15;15;7;2;3;11;21;17;5;6;11;4;13;14;29;42;6;10;25;9;10;14;9;17;16;23;27;13;17;18;20;49;48;59;47;22;32;38;25;35;34;88;79;168;64;71;56;59;71;71;40;34;42;28;9;8;70;7;8;15;11;22;7;8;15;19;13;12;16;12;13;7;10;5;5;12;7;8;4;4;9;11;8;8;9;4;11;63;48;61;78;57;77;49;56;63;79;28;7;24;26;12;4;23;12;12;14;1;20;13;13;13;17;3;18;19;38;9;25;11;28;11;9;20;23;17;23;16;21;17;32;9;14;15;16;19;46;17;26;21;10;19;30;9;4;14;18;6;76;19;26;25;23;34;27;43;45;50;37;31;65;37;64;76;66;35;9;5;4;9;25;2;8;7;14;14;6;6;10;12;26;7;10;12;3;14;12;4;1;5;12;2;38;23;34;2;5;2;9;2;9;8;5;5;5;2;8;23;12;21;10;4;10;16;4;5;17;20;3;7;6;10;5;19;15;9;8;4;15;5;9;10;21;25;5;7;10;2;4;8;7;16;19;13;12;16;20;7;19;12;12;9;18;13;4;11;9;16;8;5;9;11;37;4;13;13;16;44;12;2;13;7;9;16;17;20;15;10;16;22;19;22;8;12;3;21;32;18;10;21;13;18;10;25;26;31;21;17;28;11;4;6;23;8;15;9;9;2;11;10;18;10
+2,3,5,6-Tetrabromo-p-xylene;7;7;8;13;13;13;12;12;11;8;7;7;7;9;10;10;5;7;7;7;6;7;13;7;10;8;7;7;5;10;6;20;20;8;22;6;11;10;3;11;22;18;25;25;17;16;15;15;16;18;20;14;7;15;16;17;23;19;20;27;26;21;20;16;23;20;19;20;25;22;15;23;9;7;11;8;2;1;1;8;12;9;4;7;8;4;9;9;17;15;3;5;17;7;7;4;3;11;10;13;18;8;11;15;11;33;33;28;26;14;18;26;13;16;25;56;52;64;72;41;34;46;48;23;22;20;20;18;7;7;43;6;9;8;10;17;6;8;9;14;9;8;15;9;10;4;9;3;3;6;7;4;3;1;11;8;4;4;5;4;8;42;33;37;41;34;38;34;40;36;45;22;6;20;19;7;2;9;7;7;7;0;14;8;9;7;6;2;10;17;29;6;20;11;24;9;8;14;18;14;17;12;16;10;18;6;9;12;5;9;19;9;19;17;5;12;12;7;3;7;10;5;40;14;18;19;18;23;19;29;26;26;23;20;26;24;30;42;34;23;8;5;3;4;14;2;2;4;8;9;5;5;8;8;16;5;10;9;1;10;8;4;0;3;9;2;28;18;21;2;4;1;10;2;9;3;4;4;5;2;7;12;8;15;7;3;5;12;4;4;11;12;2;3;5;6;5;15;13;7;9;4;10;1;5;4;14;19;6;4;7;3;4;8;6;12;16;9;9;7;11;6;17;7;10;8;12;7;3;10;6;14;4;4;5;9;23;4;9;9;13;27;8;1;7;2;5;12;11;12;13;7;8;19;13;16;3;6;4;13;23;13;7;12;8;15;5;19;20;25;14;12;22;10;4;6;13;6;9;6;4;1;9;7;11;5
+Allyl 2,4,6-tribromophenyl ether;17;8;7;9;11;13;13;8;8;11;14;11;8;10;10;10;7;9;9;10;12;8;25;10;23;33;18;32;28;49;16;66;43;13;47;19;62;24;10;21;48;30;68;42;19;16;18;18;19;28;29;33;21;37;36;21;38;25;37;47;54;30;25;21;39;26;28;35;43;36;25;49;36;39;44;36;26;12;10;31;44;40;33;27;35;27;35;45;47;37;18;13;25;16;18;31;31;42;37;50;66;26;35;43;48;41;43;44;35;23;17;28;20;30;29;61;49;71;41;168;79;44;50;69;42;42;42;30;19;16;77;29;12;29;9;30;25;30;32;32;14;29;21;10;24;14;22;6;14;19;5;14;19;17;23;34;27;23;23;13;31;71;52;62;80;68;84;54;62;85;88;36;20;33;40;15;8;21;21;14;15;8;28;21;18;18;18;4;22;24;61;17;35;15;39;10;8;26;33;19;28;23;24;20;27;10;31;40;21;41;44;29;44;30;30;29;37;42;10;12;20;22;72;25;30;29;26;34;29;58;54;58;39;31;61;42;69;78;69;42;28;23;15;21;34;7;10;18;38;23;17;15;21;16;50;10;31;15;11;13;22;10;5;10;16;11;57;30;39;13;8;7;34;21;19;23;8;10;16;12;20;45;23;36;24;13;22;23;4;12;33;16;7;18;16;7;9;47;33;32;24;20;24;6;7;16;17;29;23;14;17;13;4;8;24;30;16;27;37;17;20;26;33;9;32;27;16;28;18;23;13;29;23;22;13;32;83;15;15;21;29;37;26;7;19;13;14;23;18;28;28;26;21;46;41;30;12;16;13;26;46;34;18;34;13;30;18;27;47;56;41;40;55;14;8;9;36;36;50;43;15;8;41;31;61;51
+2-Bromoallyl(2,4,6-tribromophenyl) ether;6;3;7;3;3;5;2;5;5;6;6;9;6;4;6;5;3;3;3;3;3;3;8;4;11;21;3;11;12;21;6;48;29;7;33;8;20;12;5;10;31;19;27;39;14;14;14;15;14;15;16;18;10;25;19;13;24;18;23;25;31;18;16;14;24;16;17;24;29;23;15;30;22;18;18;17;11;5;1;7;25;25;10;8;15;10;12;17;23;26;2;3;16;8;9;20;12;18;12;23;29;7;15;21;21;28;29;36;18;9;8;12;13;16;15;51;41;56;34;79;103;38;41;42;25;33;29;22;14;12;51;12;6;14;4;16;12;12;15;14;8;11;10;5;12;8;11;5;5;8;5;8;10;7;8;15;8;7;8;4;7;47;30;36;51;40;52;45;49;51;56;20;8;21;25;6;1;14;12;8;8;1;15;11;6;9;13;1;8;8;29;10;15;4;16;2;2;7;12;5;9;6;5;9;12;5;14;16;13;21;33;16;20;16;17;20;22;19;9;10;12;13;58;9;16;19;19;20;20;35;35;36;25;20;39;33;49;53;39;30;13;12;9;11;11;1;4;6;15;12;7;7;13;10;16;5;14;9;8;6;16;6;0;4;10;5;33;18;19;3;5;4;8;10;7;9;4;8;8;7;8;20;18;15;17;10;13;8;0;5;23;10;1;11;11;3;3;22;15;17;13;8;4;5;5;7;7;17;11;4;6;7;0;1;11;18;8;6;15;9;11;11;14;7;21;14;8;15;12;5;4;6;10;13;8;14;33;8;11;13;11;20;6;1;10;6;5;11;10;20;16;11;9;24;17;19;4;8;3;8;28;14;9;12;7;12;10;17;18;21;15;17;24;10;4;5;19;11;17;14;4;4;16;14;23;19
+Pentabromobenzene;7;6;6;8;7;8;6;7;7;6;4;6;9;7;8;8;5;6;6;6;6;6;10;6;8;10;8;8;6;13;8;27;22;7;24;6;10;10;4;15;21;15;16;26;9;8;9;9;9;18;12;11;5;15;16;13;17;14;17;23;22;18;17;15;18;15;15;20;17;20;14;18;14;9;12;7;9;4;1;6;14;11;5;4;9;5;8;11;14;13;3;2;11;4;5;10;7;9;6;10;18;4;9;9;14;20;27;35;19;11;22;22;15;15;19;47;53;59;46;44;38;84;58;45;36;23;22;24;16;15;40;5;7;13;7;17;6;8;10;13;12;10;12;9;10;8;7;4;6;10;5;7;6;4;7;10;5;5;5;3;8;33;20;32;38;27;29;33;37;26;34;20;5;18;19;6;3;8;14;11;12;1;10;8;5;8;8;2;10;9;23;7;13;8;18;8;6;11;15;9;15;9;12;9;10;6;9;11;10;10;14;7;20;11;7;13;16;9;5;10;11;4;46;10;13;15;15;19;17;21;21;20;17;15;33;21;35;33;28;21;9;8;7;5;12;2;2;5;8;9;4;4;6;8;16;7;10;12;3;7;6;3;0;1;9;3;22;13;21;2;4;2;5;4;8;7;3;4;7;4;8;12;8;10;6;4;6;6;0;4;7;7;2;6;7;6;4;14;4;7;4;5;7;4;5;4;10;9;6;5;4;1;2;5;8;12;7;6;12;4;13;5;11;5;14;8;6;6;6;3;3;5;8;5;5;4;27;5;7;8;8;20;4;1;8;1;4;6;8;9;12;7;9;5;12;13;3;5;1;10;17;6;5;6;4;7;8;11;14;12;8;10;13;7;1;4;15;6;12;7;5;3;9;9;13;7
+Hexabromobenzene;9;8;7;8;7;7;7;8;8;8;2;5;7;8;8;9;5;7;8;8;6;8;11;7;9;7;6;4;3;9;5;29;17;7;19;4;6;7;2;18;20;15;23;30;7;6;7;7;6;19;17;10;2;19;15;11;14;13;15;24;21;15;15;13;15;11;12;17;19;19;13;19;9;6;7;5;4;1;1;5;10;6;2;2;4;2;7;9;12;17;2;1;9;3;3;6;3;5;4;12;11;3;6;8;10;25;31;33;26;14;23;25;17;14;20;60;59;71;48;50;41;58;109;38;26;22;25;21;8;7;45;1;4;6;6;15;1;3;5;10;7;5;7;7;5;3;3;2;3;6;4;2;2;1;4;6;3;4;4;3;6;34;23;36;45;38;34;39;41;26;41;21;8;19;22;7;2;9;9;7;8;1;6;6;6;7;10;1;11;10;23;6;10;8;18;7;5;11;14;9;14;9;12;11;10;6;5;10;6;7;21;8;15;9;7;11;14;3;3;7;8;2;49;10;13;12;12;17;14;24;21;22;15;12;42;20;43;37;38;18;5;4;3;4;15;0;2;5;5;8;6;6;5;7;12;7;6;10;1;6;4;3;0;4;6;1;21;14;17;2;3;1;3;1;6;6;4;2;3;1;4;11;4;10;3;3;5;6;1;3;10;10;2;3;4;7;3;10;4;3;2;1;7;2;5;3;10;8;3;3;5;0;2;5;3;9;7;7;7;2;12;5;7;4;9;6;9;2;3;3;1;6;4;2;4;4;28;2;6;6;7;18;2;1;7;0;3;6;7;8;8;5;8;6;9;12;4;5;1;10;15;5;3;6;4;6;5;12;11;10;7;6;10;6;1;3;11;4;7;4;3;1;5;6;8;3
+2,3,4,5,6-Pentabromobenzyl alcohol;6;6;8;7;8;7;10;7;7;10;17;7;11;5;9;7;6;7;7;7;9;5;21;7;16;32;15;23;19;33;13;36;37;16;42;8;41;12;4;25;38;21;55;25;18;14;16;14;16;16;15;20;23;31;24;17;20;15;25;41;43;18;20;14;24;15;17;25;26;24;17;38;26;31;34;30;18;8;5;20;27;26;25;21;26;20;16;29;47;30;11;8;22;12;14;25;22;26;26;27;48;21;28;28;38;28;24;40;29;19;16;20;23;15;18;52;57;71;23;69;42;45;38;195;43;31;35;22;19;16;63;18;7;23;8;24;18;17;24;27;16;19;16;13;16;13;13;3;8;20;4;12;17;16;15;27;12;12;16;4;20;46;51;38;53;41;73;36;42;60;71;26;12;31;32;9;4;18;19;14;16;4;25;15;11;14;14;1;9;18;45;17;23;11;24;8;6;19;26;14;19;14;19;23;19;6;22;34;14;26;30;20;31;17;21;16;33;30;5;8;17;20;61;16;23;22;20;26;19;45;46;49;26;18;56;33;56;58;44;31;19;18;15;18;36;5;11;13;33;14;13;13;15;14;39;7;21;13;7;11;12;4;4;6;6;7;49;14;27;11;4;5;23;14;8;17;3;6;16;9;9;31;13;26;20;7;15;17;3;7;22;11;3;8;9;5;3;38;19;20;13;10;19;7;4;6;14;16;13;9;16;5;5;9;19;21;9;24;23;14;13;20;29;7;26;15;11;25;17;15;14;20;19;14;9;25;75;8;11;16;22;36;16;3;18;8;10;6;7;21;20;26;16;32;32;29;13;17;12;20;31;14;15;19;9;21;16;16;36;40;33;33;39;8;2;4;20;25;33;29;12;6;26;21;51;41
+2-Ethylhexyl 2,3,4,5-Tetrabromobenzoate;2;2;3;6;6;6;3;2;2;2;5;1;2;4;4;3;2;2;2;2;2;2;12;1;6;22;6;14;12;24;6;27;20;4;29;5;24;9;4;12;24;12;29;10;4;4;5;6;6;3;1;15;10;17;20;8;13;11;21;19;20;11;15;10;13;11;11;22;19;22;13;17;22;20;23;18;17;11;4;18;24;15;21;21;18;13;13;27;28;17;9;3;11;7;10;20;17;21;20;27;33;15;17;27;27;11;14;19;14;11;9;13;9;11;14;24;16;40;22;42;25;36;26;43;114;24;21;11;13;9;36;9;6;21;7;8;9;13;17;14;10;17;8;10;10;5;9;3;10;17;3;12;13;14;8;23;5;5;6;1;7;27;33;18;29;29;36;18;20;38;34;19;5;18;19;6;2;11;12;6;9;5;13;11;7;7;9;2;7;8;23;9;8;6;12;3;0;8;16;2;11;6;5;8;5;2;13;20;9;13;13;14;21;9;17;10;19;21;4;5;8;9;37;11;14;13;11;15;13;24;23;23;17;13;24;26;24;20;20;26;14;12;11;10;18;2;5;9;17;8;3;3;8;8;21;5;15;8;5;7;8;5;5;4;5;5;29;12;14;6;5;5;8;12;8;11;2;5;9;8;12;22;9;13;7;11;6;8;2;8;10;12;3;10;8;3;3;25;14;10;8;14;16;4;3;3;10;10;9;6;7;3;3;5;10;12;6;15;23;8;12;16;21;2;20;11;6;22;11;6;9;11;12;11;10;8;48;6;4;10;8;14;9;3;10;5;8;6;7;11;13;22;10;19;14;13;6;8;9;15;21;11;7;20;9;11;15;16;26;25;15;27;25;3;2;4;18;15;22;18;6;7;17;12;31;25
+syn-Dechlorane plus;4;3;2;1;3;5;2;4;4;6;7;10;2;3;4;5;2;2;3;3;4;3;22;3;13;18;7;16;12;22;10;24;17;8;31;10;23;7;6;20;37;16;40;43;25;26;28;24;28;24;15;12;13;22;25;12;24;22;33;44;40;22;20;17;25;19;21;30;34;31;22;35;21;17;23;19;12;11;8;15;25;21;20;18;24;18;18;23;40;38;14;11;17;12;14;14;18;32;22;31;48;21;24;25;33;31;31;33;24;21;19;26;20;19;26;26;20;34;20;42;33;23;22;31;24;161;138;24;21;26;141;13;7;18;1;10;10;15;19;18;11;16;13;10;12;13;11;3;13;14;2;14;13;13;10;18;9;7;8;4;11;84;79;72;97;92;105;87;92;109;117;13;9;19;19;6;2;21;16;10;12;8;18;15;6;15;14;1;11;9;25;5;10;5;17;7;4;10;10;7;12;10;8;8;21;3;16;24;11;13;42;21;23;16;15;8;24;17;5;14;9;21;51;6;9;16;15;25;19;43;43;43;26;22;57;30;62;78;64;28;15;14;10;18;28;2;7;6;22;14;12;11;8;20;26;10;18;14;6;4;7;4;3;8;3;8;34;21;10;4;3;5;19;13;6;18;5;6;12;10;11;39;9;17;15;8;15;14;3;4;17;13;2;8;10;5;2;17;15;14;10;13;9;5;5;8;14;12;11;7;5;4;0;2;13;12;4;8;17;16;16;12;17;8;19;14;24;15;12;14;11;14;13;13;7;8;61;6;4;8;15;40;13;5;6;12;12;9;8;17;16;11;27;22;17;17;10;14;7;22;31;16;11;18;12;20;11;17;27;26;31;28;25;7;2;4;46;11;21;22;11;8;22;16;22;19
+anti-Dechlorane plus;1;3;1;2;5;6;2;5;5;4;6;8;2;4;5;4;3;3;3;3;4;2;19;4;11;16;6;15;11;20;8;25;21;6;30;8;21;8;5;22;30;13;31;45;27;26;28;26;29;25;17;11;12;24;21;10;24;21;33;42;33;19;18;15;25;18;19;30;33;31;19;30;17;16;21;16;11;11;6;16;21;18;21;18;26;18;19;21;38;40;15;11;18;10;13;14;16;24;21;24;37;19;25;21;30;30;22;27;22;26;20;30;25;19;26;21;24;42;20;42;29;22;25;35;21;138;162;21;21;20;147;11;6;13;3;10;9;16;16;19;11;14;11;10;9;10;11;4;9;12;2;12;12;12;9;16;9;7;8;3;10;82;83;71;93;100;103;84;91;114;124;12;11;20;20;7;3;19;17;8;10;7;17;16;10;18;18;2;10;10;30;5;12;6;14;8;6;11;10;7;12;8;8;8;22;2;13;22;9;13;43;22;19;16;15;10;25;19;5;15;8;19;43;8;11;14;13;23;18;35;34;37;25;23;43;31;48;68;53;29;15;13;9;16;26;4;7;8;18;16;11;10;9;21;21;9;18;9;6;3;8;3;2;6;5;7;34;23;12;2;5;4;16;11;7;17;4;6;10;9;11;40;9;16;15;8;17;11;5;4;18;11;4;6;11;4;3;19;15;12;12;15;8;6;4;7;19;14;14;6;6;3;1;3;11;14;6;8;19;17;16;9;17;9;19;15;20;15;10;14;11;14;15;15;7;7;50;6;5;7;14;37;15;3;5;13;14;11;9;18;16;16;26;23;18;18;12;13;7;23;34;18;13;22;12;20;14;17;31;26;34;29;26;5;2;3;40;10;22;20;10;8;19;13;22;16
+alpha-1,2-Dibromo-4-(1,2-dibromoethyl)cyclohexane;2;0;2;0;0;1;0;0;0;1;4;3;6;0;1;1;0;0;0;0;3;1;7;0;4;13;7;11;5;10;5;13;13;5;14;6;12;4;5;7;14;10;13;13;13;11;14;11;13;8;6;7;0;7;9;7;14;11;12;18;15;13;12;11;15;10;11;12;11;13;10;15;18;13;15;13;14;10;1;8;26;21;10;10;12;11;8;12;16;17;7;5;9;4;7;17;16;15;12;14;24;8;19;13;18;18;16;16;11;10;9;11;8;7;14;24;23;28;18;30;22;24;21;22;11;24;21;42;39;35;41;8;7;13;2;11;6;10;11;13;11;10;9;9;7;7;8;3;9;11;2;11;10;5;8;14;3;3;3;0;4;31;23;29;30;24;34;23;25;33;33;9;4;13;10;4;2;13;10;6;7;2;10;7;4;11;8;2;8;4;16;11;9;4;13;2;0;4;6;2;7;2;4;6;11;0;12;10;7;11;11;11;17;12;11;6;19;15;5;12;11;11;21;5;11;10;10;15;13;16;16;18;17;13;22;13;21;28;22;13;11;9;9;7;13;2;4;4;9;10;1;1;10;8;10;8;10;11;3;3;11;3;2;3;4;4;22;9;7;0;3;3;4;7;2;9;2;6;10;6;9;14;12;9;9;5;7;3;0;4;9;7;2;7;7;2;0;15;3;6;9;6;4;3;1;5;6;1;8;8;1;4;1;3;8;11;2;3;13;6;14;4;13;2;14;10;8;8;9;3;4;5;7;8;5;6;26;3;3;13;6;15;5;0;5;5;9;2;1;9;14;11;9;13;10;15;6;3;4;12;14;3;6;8;5;7;6;6;13;10;15;12;12;6;0;2;16;9;9;10;2;5;8;7;15;11
+beta-1,2-Dibromo-4-(1,2-dibromoethyl)cyclohexane;1;0;2;0;0;5;1;1;1;3;4;4;6;1;3;1;0;0;0;0;3;0;8;1;5;16;7;11;11;19;7;9;8;6;13;5;17;7;5;5;10;11;11;10;12;11;14;11;13;5;4;3;3;6;9;7;10;9;15;12;13;9;8;8;13;9;10;14;14;14;9;11;20;15;21;12;16;10;3;14;14;11;17;9;12;11;11;17;20;13;9;7;10;10;11;15;15;21;17;20;27;14;22;20;26;14;12;7;5;6;8;8;7;5;11;11;10;9;7;19;14;16;8;19;13;21;21;39;43;35;42;11;8;14;3;9;11;18;13;15;10;12;10;9;9;7;11;3;9;12;2;11;12;7;9;21;5;6;6;3;9;36;29;25;28;21;31;20;22;41;36;8;2;9;8;5;3;13;13;7;8;5;11;8;4;13;12;3;11;4;15;10;10;2;11;1;0;4;9;2;10;2;4;6;11;0;14;18;9;11;19;16;19;15;14;6;18;17;9;12;11;11;9;9;12;11;11;11;9;14;15;15;14;11;12;17;19;23;20;17;16;11;11;13;9;3;5;9;13;11;11;11;10;12;12;9;17;12;4;5;6;3;2;4;8;4;27;13;9;1;4;3;11;12;3;8;1;4;12;10;14;18;8;9;12;5;5;3;0;4;12;9;2;16;9;1;0;25;5;9;15;5;7;3;1;5;5;5;15;8;2;4;1;4;9;12;4;6;15;10;11;8;18;2;16;14;13;13;9;6;4;6;7;8;7;8;20;6;3;12;9;25;5;2;6;5;8;3;6;10;13;11;14;16;23;16;4;3;7;15;16;10;10;15;9;10;6;15;18;14;17;15;18;5;0;3;22;13;21;12;4;6;11;10;21;17
+1,2,5,6-Tetrabromocyclooctane;3;0;2;0;0;1;0;0;0;0;4;3;5;0;1;1;0;0;0;0;3;1;6;0;4;15;6;11;5;12;5;9;7;4;8;5;10;8;5;5;9;9;10;4;15;13;16;12;13;5;3;2;2;3;7;6;9;8;8;10;9;10;8;8;12;8;8;8;9;10;7;8;13;13;18;10;13;8;2;9;10;9;12;8;21;18;12;16;25;12;17;8;11;3;7;11;11;9;10;10;19;13;20;20;25;9;10;3;5;6;5;8;7;4;8;8;7;8;7;16;12;15;7;16;9;26;20;35;35;42;37;8;8;13;2;8;7;9;11;11;11;12;10;8;8;7;12;3;8;10;2;10;9;5;10;15;3;3;3;0;4;28;24;20;21;18;31;18;19;34;30;5;2;7;6;4;2;10;11;6;7;3;11;8;6;9;8;1;5;0;10;9;7;2;10;0;0;3;5;2;6;2;3;4;14;0;12;9;6;10;13;9;16;12;11;6;17;18;7;13;12;11;8;4;8;9;9;12;9;8;10;10;12;9;9;11;12;20;15;11;10;9;9;8;8;1;3;3;10;11;1;1;8;5;10;8;11;12;3;3;5;3;1;4;4;4;24;8;6;0;2;3;8;8;2;8;2;4;10;6;9;24;6;8;15;5;4;5;1;3;11;4;3;8;8;1;1;16;6;11;10;8;5;3;1;5;5;2;10;8;1;6;1;3;12;12;3;3;16;5;12;3;16;5;15;10;7;11;12;6;4;7;7;8;5;5;18;5;3;13;5;15;5;1;3;6;6;5;2;6;10;8;10;16;14;11;5;3;3;12;15;5;7;11;7;7;6;5;17;12;15;10;9;5;0;3;18;8;19;10;2;5;9;5;15;14
+1,1-Dibromo-2,3,3,4,4,5-hexachloro-2-cyclopenta-2,4-dien-1-ylcyclooctane;6;6;7;11;13;15;10;10;9;13;16;15;10;8;11;14;7;7;8;8;12;11;38;11;24;37;17;28;17;41;17;38;36;21;56;14;42;14;7;43;59;39;65;57;51;48;51;46;50;36;29;24;28;40;42;31;49;38;55;65;65;48;42;37;53;37;38;49;55;51;35;59;33;28;36;30;22;13;11;32;37;34;30;29;43;32;36;42;63;56;27;21;38;19;22;25;25;53;42;52;79;41;47;44;58;51;55;54;34;42;34;42;39;33;40;47;42;70;43;77;51;40;45;63;36;141;147;41;42;37;267;19;9;26;13;22;17;24;28;30;20;27;19;11;14;14;16;6;15;19;7;17;20;15;17;28;18;13;15;6;17;137;116;112;139;128;163;115;128;178;182;31;19;40;41;12;7;36;29;20;20;9;30;19;20;33;23;4;17;24;53;19;26;14;29;13;12;21;22;17;21;19;19;19;43;5;25;43;12;25;65;50;38;37;25;17;49;36;11;28;28;43;88;25;32;39;37;54;43;68;66;71;51;42;85;58;84;123;100;53;25;25;17;35;49;8;11;14;41;25;27;26;19;31;39;13;33;20;11;9;16;10;3;10;15;11;70;38;28;11;10;11;28;18;11;27;7;9;21;11;16;75;17;32;22;11;23;26;6;11;36;20;8;13;14;6;5;31;35;23;25;22;19;7;6;14;33;26;27;21;13;8;2;7;18;26;15;20;29;32;28;25;37;14;35;22;33;32;24;22;16;27;17;17;15;21;103;10;14;22;26;69;25;7;13;22;26;20;18;39;32;25;48;45;35;42;18;24;17;49;55;33;29;41;28;30;29;27;51;49;68;46;45;10;6;7;66;23;41;33;14;8;33;27;40;35
+alpha-Amylcinnamaldehyde;10;1;10;6;7;7;8;1;1;8;24;12;8;2;3;4;2;2;2;2;2;1;16;2;9;15;12;30;28;31;13;22;24;11;22;20;46;23;12;5;12;5;20;2;17;19;19;20;20;4;3;3;7;5;14;4;7;6;9;11;13;8;7;7;9;6;6;7;8;9;5;10;22;29;32;32;14;8;7;22;27;27;23;20;30;21;21;25;26;19;15;11;18;17;20;19;19;27;22;22;36;17;24;20;27;6;6;4;6;4;5;9;4;6;5;4;2;7;6;29;12;5;1;18;9;13;11;8;11;8;19;50;15;29;11;34;28;29;27;27;14;30;26;11;23;14;26;5;19;26;9;18;23;24;21;36;29;23;28;16;29;27;17;13;12;7;28;8;11;35;35;6;6;9;4;13;5;11;18;15;16;7;27;13;12;17;8;1;13;17;33;13;32;16;30;11;10;25;28;19;31;20;23;13;13;8;31;27;18;34;25;20;32;24;20;26;22;41;8;10;23;25;8;12;7;6;6;9;3;13;13;13;9;5;12;12;23;23;19;13;36;24;20;15;20;8;9;15;35;19;7;7;13;12;32;9;19;16;13;13;21;12;6;6;9;11;28;19;20;7;4;8;30;26;19;20;7;11;12;17;21;27;22;25;27;20;12;9;1;6;21;14;7;20;20;4;9;39;34;25;32;16;22;6;7;14;5;22;24;7;21;15;2;4;25;30;10;24;16;14;13;16;33;13;20;26;13;13;12;24;17;25;21;21;10;15;27;15;12;20;20;14;25;8;9;11;9;19;18;10;8;13;16;26;42;16;1;12;6;21;25;23;16;22;9;25;7;18;33;37;29;36;37;15;4;9;26;33;46;44;15;12;41;38;48;48
+trans-Cinnamaldehyde;4;5;7;8;10;10;7;5;4;9;9;5;8;4;7;7;6;6;7;7;5;5;11;5;3;8;13;15;9;11;10;8;9;10;8;13;15;10;8;2;11;6;7;1;6;6;6;6;7;5;5;5;5;5;7;4;6;3;6;5;8;6;4;4;6;4;3;5;6;5;3;5;13;11;8;10;5;5;2;9;8;7;8;8;10;6;10;10;10;10;5;2;6;4;4;9;8;9;9;9;14;7;8;10;9;6;4;4;5;5;4;6;7;6;4;4;4;8;9;12;6;7;4;7;6;7;6;7;8;8;9;15;15;12;5;13;13;14;14;13;13;14;13;11;14;7;14;4;10;11;9;12;12;12;14;15;8;8;9;3;8;9;8;5;7;7;11;5;8;13;11;7;3;7;5;6;2;4;9;8;8;2;14;10;3;9;4;0;5;11;13;13;13;9;13;8;9;14;15;12;13;13;13;10;8;6;15;9;8;10;4;6;10;12;8;8;13;12;6;5;10;7;7;10;8;4;4;6;4;7;7;8;6;3;8;8;4;8;6;8;12;11;9;6;5;3;2;3;9;7;2;2;3;3;12;9;11;12;5;3;8;6;4;6;4;4;11;8;10;2;1;4;10;13;5;8;2;6;8;6;4;10;9;11;10;8;2;4;0;4;2;7;4;9;10;5;4;12;6;11;12;8;7;3;5;6;3;4;10;2;8;4;0;0;13;13;9;5;10;5;7;3;14;4;11;12;6;4;7;7;3;10;8;9;6;6;7;10;10;12;10;7;9;0;1;0;1;5;5;8;3;5;4;9;15;8;1;4;2;4;12;8;2;4;2;6;1;5;10;9;6;7;9;12;3;4;6;7;11;12;5;5;15;10;14;14
+Citral (Geranial);8;3;8;4;5;6;6;2;2;10;26;13;7;3;3;4;4;3;4;4;7;6;18;6;11;15;13;34;24;32;21;22;22;10;18;19;39;17;12;15;19;20;18;3;10;10;12;11;12;14;10;10;9;9;20;12;17;12;16;17;19;18;16;14;21;12;13;17;16;17;12;17;28;29;29;26;19;17;4;21;25;23;27;24;21;14;12;20;24;21;9;5;16;7;11;29;28;26;19;19;30;18;22;21;24;15;15;11;9;13;11;14;16;12;15;11;7;15;8;29;14;13;6;23;21;18;13;13;14;13;26;29;12;45;12;17;26;21;29;29;22;28;23;15;25;14;21;8;20;28;10;23;27;29;22;39;20;20;20;10;24;30;20;19;21;17;33;18;19;28;35;13;7;11;11;15;5;9;16;11;12;4;21;15;7;20;8;1;7;15;34;17;31;15;27;8;7;20;27;15;22;17;18;19;14;10;32;30;15;26;24;14;33;29;18;16;28;28;4;10;23;13;21;10;14;17;15;18;16;17;18;19;19;15;14;18;28;29;28;19;19;26;22;23;18;8;9;13;31;16;3;3;10;9;29;11;25;20;18;10;14;12;7;3;8;13;34;21;19;13;8;9;12;23;16;21;8;12;19;15;17;22;16;26;20;14;2;10;1;13;16;15;3;20;13;6;9;32;14;23;15;16;21;7;8;13;11;10;12;8;20;6;2;6;25;21;7;22;24;14;20;17;31;10;30;21;12;23;21;26;19;21;20;19;14;8;32;14;16;22;25;16;21;3;8;9;11;11;13;9;8;17;12;22;34;14;5;8;10;18;23;18;13;16;11;19;5;14;26;24;19;23;30;12;4;8;18;14;25;31;16;12;31;23;43;41
+1-Fluronaphthalene;4;7;4;9;9;12;9;11;9;4;6;8;6;8;8;7;5;7;7;7;5;5;8;7;5;6;6;11;8;11;4;7;11;7;11;7;14;6;4;7;9;9;8;1;9;9;10;9;10;5;4;9;8;8;7;9;9;7;9;9;8;8;7;7;9;8;7;9;11;9;7;7;3;5;7;7;2;2;0;8;5;1;3;4;5;3;5;7;7;8;2;4;7;1;1;4;4;9;6;6;12;8;6;8;6;8;6;6;6;8;7;7;8;9;8;7;7;11;10;9;4;7;6;8;7;1;3;2;3;2;13;11;5;12;17;9;7;8;9;7;9;12;8;5;7;3;7;1;8;12;3;6;5;5;9;13;5;6;7;6;8;12;8;8;11;9;13;8;11;15;13;11;0;6;8;3;3;3;3;3;3;1;4;3;6;8;7;1;5;11;15;9;12;6;9;8;7;9;12;7;10;8;10;8;10;4;11;9;3;11;9;11;7;12;2;10;11;12;1;3;7;8;8;11;10;9;9;8;8;10;8;8;8;7;8;10;9;12;9;10;8;7;4;5;9;3;2;5;9;6;5;5;6;5;10;4;7;6;3;5;5;4;0;1;7;5;14;13;11;6;3;5;6;7;6;7;3;2;4;2;3;8;5;10;9;4;2;5;1;5;5;5;6;5;2;4;4;14;8;6;9;5;13;4;4;2;7;7;7;4;10;3;3;4;7;5;9;10;7;5;6;4;10;5;4;5;4;4;2;9;3;10;4;3;6;6;12;4;8;6;7;10;7;0;1;8;9;5;6;5;5;8;5;9;15;7;5;4;3;10;9;6;5;11;8;6;4;7;11;11;10;6;12;4;3;3;5;5;11;11;7;2;10;10;13;15
+alpha-Hexylcinnamaldehyde;5;2;4;9;10;11;7;8;7;8;6;8;2;1;6;4;2;2;2;2;2;2;12;2;8;15;14;21;21;25;13;23;17;4;25;15;37;15;5;11;20;15;22;1;10;12;12;12;13;15;12;12;16;13;17;13;23;18;20;19;21;21;18;16;27;18;17;20;19;20;16;19;25;25;32;29;11;6;7;18;25;22;20;16;26;18;22;23;19;22;15;9;17;13;16;20;17;22;24;19;35;13;20;18;20;14;19;20;17;14;13;18;14;15;15;18;15;22;17;30;16;17;15;24;8;10;10;11;9;8;22;34;13;17;9;47;23;28;18;21;10;18;19;8;16;8;17;4;8;12;6;10;13;12;18;27;25;21;26;11;25;31;15;22;24;14;32;13;16;26;35;15;18;16;15;9;3;9;16;12;13;5;18;8;9;8;9;1;11;10;34;7;32;6;29;8;7;21;22;16;24;16;19;6;22;2;21;17;16;33;22;20;33;22;18;22;24;31;5;10;14;18;9;16;15;15;15;21;17;21;21;20;19;15;18;19;28;30;25;19;32;13;12;12;15;9;7;8;19;15;8;8;14;10;28;8;18;10;11;9;20;5;2;7;10;6;28;17;24;3;4;4;25;17;7;8;4;8;11;10;22;21;20;24;21;13;11;14;2;5;23;11;6;16;17;2;4;39;22;24;29;14;12;3;4;12;9;21;24;6;8;16;2;7;21;25;14;13;14;17;11;11;29;9;21;18;14;14;11;10;13;19;18;18;12;12;26;13;17;15;18;24;16;6;12;6;6;17;16;18;15;15;12;26;35;25;2;15;8;23;33;25;16;20;6;22;5;22;29;31;21;27;30;12;5;10;20;26;38;32;11;5;32;25;40;35
+Lilial;7;2;7;3;5;7;3;4;4;5;16;11;4;5;2;2;2;2;2;2;2;1;11;1;10;14;10;27;26;25;16;14;13;6;18;18;37;22;10;6;6;6;12;1;18;14;13;15;13;3;3;6;12;3;11;4;8;7;6;6;5;8;8;8;8;7;6;6;5;5;4;5;20;24;22;25;9;5;3;16;16;16;16;13;25;15;18;18;24;13;10;8;15;10;12;17;12;17;14;16;33;15;16;17;22;5;4;4;6;7;6;9;7;6;6;1;1;7;6;25;12;6;1;18;9;10;9;6;11;7;17;28;13;26;7;23;38;29;25;23;12;30;20;7;25;10;18;5;16;22;9;18;25;19;21;34;26;24;26;11;28;17;10;11;10;6;23;7;8;24;28;6;5;6;3;14;7;7;14;10;9;4;25;11;9;9;8;0;7;9;22;8;26;11;23;8;8;16;22;12;23;14;15;11;18;5;27;23;18;35;11;18;27;23;15;22;15;34;6;9;18;18;8;16;6;6;5;7;7;5;5;5;9;7;6;5;15;18;15;5;25;23;19;16;15;11;7;9;25;16;8;8;10;7;23;7;22;9;16;14;17;9;6;5;9;8;28;22;24;11;4;11;20;21;15;17;4;9;13;15;14;22;18;25;21;15;6;8;0;10;16;11;2;18;20;3;8;32;20;28;27;20;22;3;6;8;6;14;19;4;20;15;1;3;28;31;5;21;18;10;8;11;30;9;23;19;12;6;15;25;12;23;20;20;8;9;23;21;14;14;21;13;21;8;6;9;4;9;12;10;3;6;10;15;35;12;1;10;4;9;19;19;10;17;8;17;6;15;26;31;20;20;31;11;6;9;17;24;30;35;19;11;35;30;38;37
+alpha-Amylcinnamyl alcohol;7;3;5;3;6;9;4;6;5;5;12;8;2;6;4;3;2;3;3;3;3;1;14;2;11;14;10;23;22;26;13;15;18;5;19;17;37;18;10;3;10;6;11;1;24;22;23;21;21;2;3;5;14;6;10;4;9;9;9;12;7;8;8;9;11;9;9;9;8;9;6;8;25;25;29;28;12;9;5;20;23;22;20;16;25;14;20;25;25;15;12;9;19;12;15;19;15;24;19;19;36;13;19;17;21;3;2;2;5;5;3;6;6;5;4;3;4;8;8;30;12;8;3;17;13;15;16;10;18;9;24;29;14;21;8;28;29;40;22;21;11;26;22;9;22;10;18;5;12;18;7;14;23;19;19;32;27;21;24;8;26;23;19;10;10;10;26;7;10;33;32;9;5;10;6;11;8;8;13;11;11;6;23;10;11;15;9;2;9;9;25;6;25;11;23;11;10;17;24;15;25;15;17;8;22;2;25;23;17;32;17;20;28;24;16;24;19;33;7;11;15;19;10;14;9;7;6;10;8;9;8;8;12;9;6;10;15;19;16;10;28;25;21;18;14;10;9;11;26;21;10;10;13;9;23;7;23;11;16;10;18;7;5;6;10;8;33;23;24;9;5;12;23;22;13;21;4;9;19;14;17;24;19;25;18;16;10;9;1;11;16;12;4;20;20;3;6;37;25;26;26;19;20;3;4;9;8;19;20;6;16;14;2;5;26;26;8;20;20;14;9;13;27;10;24;20;12;8;16;22;11;22;19;20;10;10;26;18;14;14;19;14;19;7;7;9;4;17;17;11;9;12;18;19;34;16;3;11;9;15;26;23;12;24;10;21;7;20;30;35;22;27;34;12;6;8;22;24;33;34;15;12;35;31;39;37
+Eugenol;6;5;9;9;11;11;5;5;4;11;24;13;8;4;8;7;6;6;7;7;7;7;22;7;17;20;16;33;24;29;21;21;21;12;22;18;37;21;12;15;21;17;16;2;14;12;13;10;13;12;8;16;11;16;19;12;19;14;18;15;17;18;16;15;19;14;14;16;17;16;11;15;30;30;24;25;19;15;5;20;25;23;23;21;25;15;16;25;30;14;9;7;19;8;12;29;28;27;21;23;37;19;23;26;28;16;12;13;11;13;12;17;14;16;13;9;5;15;9;32;15;10;5;24;17;19;16;11;13;11;28;27;14;29;9;18;25;22;45;27;21;34;23;13;25;15;22;7;18;25;8;20;26;25;25;34;22;21;19;10;25;28;20;17;23;17;32;16;20;33;35;19;7;18;16;16;6;10;20;13;14;4;25;19;5;14;14;0;7;18;32;17;30;13;26;9;8;20;28;16;24;18;19;16;12;11;32;25;19;25;23;14;31;24;18;19;32;33;6;9;24;14;22;15;15;16;13;18;14;14;16;16;19;12;18;16;19;26;23;16;20;26;20;23;19;7;9;7;26;15;11;11;10;11;32;14;27;16;12;11;15;12;6;8;10;13;30;22;18;12;7;7;16;25;11;19;6;14;22;16;11;26;17;32;21;17;3;11;0;13;16;15;6;20;17;8;11;28;18;25;18;21;21;6;10;13;14;9;15;5;19;7;0;3;27;26;7;21;30;14;16;15;26;14;35;22;8;15;23;24;17;27;23;21;13;8;29;14;17;20;22;16;25;1;3;9;10;9;8;14;11;15;15;22;33;15;6;14;7;12;23;21;14;20;8;18;9;15;23;22;23;20;24;13;4;6;21;12;25;30;19;12;34;24;38;38
+Isoeugenol;9;4;7;10;11;13;10;6;5;11;19;11;8;4;7;7;4;6;6;6;9;5;19;6;12;18;14;29;26;29;18;23;22;9;26;16;37;19;10;17;21;21;21;4;14;13;13;13;15;16;14;18;11;16;21;17;22;19;21;21;19;24;23;22;23;20;18;18;19;18;12;18;23;29;23;23;15;11;5;21;21;21;22;19;24;15;17;22;23;14;12;8;19;10;13;23;19;26;23;24;31;20;24;21;27;19;17;14;14;15;13;19;16;13;16;16;10;19;14;32;14;13;10;27;14;18;19;13;15;11;30;27;13;29;7;21;23;21;27;43;18;28;23;12;22;15;22;8;17;24;7;19;22;20;22;31;21;23;23;14;25;31;20;20;26;21;32;19;21;33;35;19;9;19;17;12;6;14;16;12;11;4;21;18;9;13;12;0;8;19;33;13;31;12;30;9;6;21;28;17;22;21;20;17;14;9;26;22;17;28;20;13;30;24;21;19;26;32;8;9;20;16;17;15;19;19;16;26;19;18;20;20;22;19;17;19;24;27;25;19;22;23;14;17;16;7;8;7;25;15;8;8;11;12;37;12;24;12;8;12;14;11;4;7;12;13;31;20;21;9;6;6;17;21;10;19;5;12;20;16;11;26;15;30;19;15;6;11;0;11;17;14;5;19;18;9;10;29;19;26;16;20;23;6;10;10;13;9;16;8;20;8;1;5;23;24;11;24;24;15;17;13;28;12;29;22;9;15;18;20;13;24;19;18;11;11;27;12;15;18;23;20;24;2;7;7;9;9;10;11;11;12;13;17;32;19;3;12;5;16;27;17;16;19;9;18;9;13;28;24;27;21;28;11;5;6;22;19;27;33;16;11;33;27;39;37
+4-Methoxybenzyl alcohol;7;7;11;8;10;10;7;6;6;10;16;10;11;6;7;7;7;7;8;8;8;7;15;7;8;10;14;23;13;16;16;15;16;11;13;14;21;8;6;14;14;15;13;1;10;10;11;8;11;12;9;10;6;9;11;10;15;12;15;14;13;14;13;12;16;11;11;15;13;15;11;11;16;18;16;16;15;13;3;11;16;15;16;14;15;7;9;12;17;11;7;4;13;6;8;20;20;14;12;13;19;13;14;14;14;15;15;12;11;11;11;14;13;11;14;11;7;13;9;14;8;12;7;16;10;11;11;11;10;11;20;14;13;22;9;10;12;11;21;18;25;21;21;12;21;13;14;7;14;18;8;17;17;18;21;22;10;9;11;9;13;20;14;12;15;12;20;12;15;21;22;13;3;11;8;9;1;7;17;13;14;3;15;13;5;12;9;0;7;11;20;15;21;9;18;10;9;16;18;13;16;15;16;14;9;11;23;16;7;14;16;7;18;13;11;8;23;18;3;4;13;8;15;8;11;15;13;15;11;12;12;13;16;12;12;15;17;18;19;15;11;19;18;18;10;2;6;7;20;10;3;3;5;7;20;12;17;12;11;6;6;10;3;3;8;12;20;13;14;6;7;5;7;15;7;14;6;9;16;11;10;15;7;19;12;9;1;8;0;9;9;9;3;13;9;10;8;16;8;10;9;8;12;5;11;7;7;4;5;6;14;2;0;1;14;11;6;12;17;10;14;13;18;9;22;13;4;15;16;16;13;16;15;12;10;4;21;6;9;16;16;13;13;1;2;9;10;6;8;7;8;9;8;15;21;12;4;9;5;13;15;8;10;10;12;10;6;6;12;12;11;11;15;9;3;4;12;5;13;17;11;9;18;13;24;22
+Methyleugenol;8;5;10;6;8;10;5;5;4;11;25;16;10;5;6;6;6;6;7;7;5;6;15;5;15;15;14;32;25;28;23;20;21;13;23;20;43;22;12;15;17;14;22;3;10;11;11;11;13;11;8;9;20;11;17;9;13;11;13;13;16;11;12;10;15;12;10;14;13;14;9;15;26;28;23;28;18;15;7;19;21;20;24;20;27;17;18;23;29;16;15;9;16;9;13;24;22;26;20;20;36;22;22;21;25;15;13;12;13;13;12;17;14;9;11;7;4;12;8;29;11;10;5;19;17;16;14;10;12;12;27;30;14;28;12;18;30;26;34;28;21;44;27;13;27;17;23;7;18;26;9;20;25;24;25;38;25;26;28;14;32;26;16;18;14;16;30;14;18;30;37;10;6;14;10;16;7;9;21;16;15;4;30;16;5;16;11;0;11;15;31;16;37;12;27;9;8;23;31;17;29;20;22;15;11;12;32;30;23;33;20;21;32;28;20;25;32;40;7;8;22;19;15;17;15;13;10;14;10;16;16;17;15;11;20;14;26;26;24;14;23;28;22;16;20;11;6;7;31;16;12;12;12;8;29;14;34;16;11;14;18;13;5;7;13;12;28;22;21;10;7;8;20;28;14;21;8;14;20;18;12;28;19;33;23;20;3;10;0;13;21;12;7;21;23;9;10;35;18;31;24;29;22;5;12;13;11;8;24;6;19;12;1;2;33;33;7;24;26;12;13;17;29;14;32;27;10;12;22;30;19;31;26;24;13;9;30;18;17;22;25;12;26;6;5;9;9;7;9;15;5;9;18;25;39;17;4;14;8;14;24;22;17;16;8;19;9;12;26;32;19;23;33;13;4;7;23;19;31;37;23;12;39;29;43;44
+Cinnamyl alcohol;10;7;13;12;14;15;12;8;7;13;18;13;9;6;10;10;8;8;9;9;7;7;16;7;9;12;15;22;15;20;16;15;12;14;17;15;28;15;8;6;15;13;13;1;8;8;8;7;9;10;10;9;6;8;11;8;12;8;11;13;14;12;10;9;13;9;8;10;10;10;6;10;21;21;18;18;12;9;3;13;16;15;15;14;18;12;15;17;22;12;9;5;14;7;10;17;15;18;16;16;25;14;15;16;15;11;10;10;8;8;7;11;9;9;9;9;8;16;15;21;10;12;7;16;8;13;11;9;10;10;19;26;13;23;8;19;20;22;23;23;21;27;29;14;24;17;23;7;14;19;9;18;17;20;22;28;16;13;15;10;16;18;15;9;15;11;19;13;16;21;20;12;4;10;8;10;2;7;15;13;14;2;18;13;4;14;5;0;6;19;25;17;24;14;23;13;12;19;22;19;20;19;19;18;10;12;25;15;15;20;14;6;22;20;14;16;22;23;7;7;17;10;11;13;12;11;9;13;8;13;13;14;13;8;13;13;14;17;14;13;19;19;15;11;14;7;7;5;15;14;2;2;8;7;25;13;20;17;7;6;15;10;4;6;9;8;19;13;17;3;4;5;18;17;10;14;6;10;14;14;10;18;16;20;17;13;3;7;0;8;9;10;5;16;17;9;10;25;12;20;20;14;14;5;8;9;5;6;15;6;12;7;0;3;23;22;9;13;16;10;11;6;25;12;21;17;6;9;14;14;11;17;14;15;9;6;16;15;15;16;16;12;18;1;2;6;6;10;8;10;3;8;8;17;25;13;1;6;2;8;18;15;7;9;7;13;3;7;15;16;10;13;18;17;4;7;13;11;20;23;11;9;26;19;28;26
+Benzyl alcohol;5;6;7;9;11;7;6;5;5;9;10;6;8;6;7;7;7;7;8;9;7;6;8;6;5;5;12;12;7;12;11;13;9;9;10;10;14;9;6;5;11;8;11;1;6;7;7;5;9;11;9;6;1;3;6;4;8;4;8;7;12;8;6;5;8;4;4;8;8;8;5;9;11;13;14;12;10;9;2;11;15;13;14;12;10;6;9;11;11;10;6;3;9;6;7;14;13;12;13;9;13;9;10;9;11;8;8;8;6;6;5;7;7;8;7;9;7;12;9;10;5;9;7;13;10;10;10;9;9;8;11;11;11;15;5;8;7;9;13;12;12;13;14;17;12;10;11;6;12;14;8;14;10;9;13;13;6;5;6;2;8;11;10;6;10;8;13;6;6;13;14;6;1;5;3;7;3;6;11;10;11;2;10;8;4;7;4;0;6;7;13;9;12;9;15;7;8;12;14;11;15;13;12;12;7;7;13;8;8;7;8;6;15;7;7;9;14;11;3;3;8;5;12;8;7;7;6;8;5;12;12;13;9;6;15;11;10;7;7;11;12;8;9;5;9;1;4;5;12;6;3;3;4;5;16;8;9;12;5;7;4;4;4;3;5;5;14;9;10;3;1;4;7;7;5;9;3;5;8;6;6;11;5;11;8;5;1;6;0;4;4;11;3;7;8;6;5;13;4;9;6;6;9;7;5;6;5;2;6;3;8;2;0;0;10;12;6;6;10;6;8;4;14;5;12;8;2;8;8;10;10;9;9;8;5;1;11;4;9;10;9;9;8;0;4;2;3;6;6;1;5;8;1;12;12;10;3;7;3;6;11;4;3;7;3;8;1;5;10;12;4;12;13;10;2;3;5;7;10;13;8;6;13;10;16;15
+Estragole;8;5;9;8;10;10;6;4;3;11;24;13;7;4;7;7;6;6;7;7;3;4;12;6;9;12;15;24;20;22;19;16;16;11;18;14;29;19;9;7;18;11;15;0;6;7;6;7;6;10;7;8;3;5;13;6;13;9;14;15;16;11;10;9;15;9;8;14;14;14;9;14;20;22;15;20;9;6;3;11;15;15;16;13;21;12;14;16;19;10;6;3;11;7;9;17;16;14;12;15;26;12;13;18;17;9;6;6;8;8;9;12;10;7;5;6;4;13;10;24;12;10;5;16;10;12;9;7;9;8;14;23;14;25;7;16;25;22;25;22;21;27;24;12;29;15;20;7;16;22;7;17;19;19;23;27;16;17;17;11;19;18;9;10;14;11;19;10;15;20;21;8;3;7;5;14;2;8;17;13;12;1;23;16;3;13;9;0;5;15;19;14;25;9;22;10;9;20;22;17;21;20;19;16;7;13;26;17;19;23;15;8;23;20;16;19;22;25;6;6;18;11;11;9;10;8;6;14;7;14;15;15;16;9;15;15;17;17;19;15;19;21;18;12;10;8;5;7;24;12;2;2;8;6;23;12;22;15;9;7;15;12;4;5;12;10;17;14;16;5;3;6;15;22;12;12;7;10;15;16;11;17;16;23;18;17;3;6;0;9;12;8;4;17;20;9;10;25;14;22;19;17;17;5;12;10;8;5;17;5;16;9;0;2;26;23;8;15;16;10;8;9;21;10;23;21;7;8;18;19;15;20;16;17;8;5;16;16;14;15;18;11;20;1;2;6;5;7;6;9;3;6;8;16;27;10;1;8;0;5;13;17;7;12;5;14;4;8;17;17;11;13;19;13;4;6;13;12;25;26;13;10;26;19;27;29
+Benzyl benzoate;2;1;4;3;4;4;4;1;1;4;12;7;3;2;1;1;1;1;1;1;2;1;8;1;6;6;9;14;9;14;14;8;10;8;8;12;20;6;7;2;5;6;12;2;5;6;8;6;8;5;4;4;6;7;9;4;2;2;3;3;3;2;2;2;2;2;2;2;2;2;1;3;12;16;12;11;11;8;7;11;14;15;13;10;15;8;13;13;15;7;7;4;9;13;13;13;12;14;11;14;16;9;11;10;15;3;4;4;2;2;2;3;3;3;3;2;2;7;4;14;8;8;3;13;5;13;10;7;7;7;14;14;7;14;3;8;10;10;15;15;13;17;17;10;15;20;19;8;10;15;6;12;10;8;13;16;9;6;10;4;12;10;5;5;6;3;12;4;4;14;14;4;5;7;5;5;0;4;16;17;16;5;13;15;1;6;5;0;6;5;14;6;13;5;10;3;2;6;7;5;6;8;5;5;4;8;18;13;11;14;10;7;12;7;9;11;15;16;3;2;7;14;5;6;5;4;4;2;2;4;3;4;3;2;6;2;13;10;7;2;9;12;11;9;9;1;5;6;14;9;8;7;4;2;14;10;15;9;6;2;5;5;1;5;4;6;14;8;11;6;3;5;11;9;5;11;4;5;13;9;9;15;6;11;9;8;2;7;0;7;11;8;2;8;10;4;6;16;12;15;9;8;7;7;5;4;1;4;6;3;5;2;0;0;10;9;5;7;8;10;7;10;13;8;13;11;2;7;10;8;6;8;7;7;6;9;14;5;6;9;7;9;5;3;3;2;4;5;4;8;4;4;10;16;19;8;0;9;2;12;13;9;7;4;4;11;3;4;10;16;8;14;17;6;2;3;12;15;20;16;10;5;16;17;19;16
+Benzyl cinnamate;6;1;6;8;9;8;6;4;3;5;19;9;3;2;2;1;1;1;1;1;2;1;13;1;8;11;10;24;16;20;12;11;13;7;20;14;32;12;8;4;10;13;15;1;15;17;19;17;18;5;5;7;10;9;10;8;7;4;6;6;7;7;7;6;7;7;4;6;7;6;3;6;19;19;16;17;11;7;7;18;19;16;18;14;18;11;20;19;25;12;12;6;11;10;12;15;14;21;19;21;25;13;14;18;21;7;6;6;6;5;5;8;6;7;7;3;2;10;9;22;11;7;3;13;9;11;11;8;11;12;16;26;14;21;7;17;18;18;22;22;14;23;23;11;20;19;36;8;12;16;8;13;14;13;19;26;13;12;13;8;15;16;12;13;11;13;21;11;13;22;26;10;11;11;6;10;1;7;19;19;19;5;21;20;3;10;10;0;5;17;24;9;23;5;22;5;4;11;16;9;12;12;11;8;11;6;26;17;13;22;14;10;18;16;15;13;19;35;7;7;14;23;9;12;11;10;10;8;7;6;6;7;7;5;9;6;14;16;12;6;18;14;14;16;15;4;6;6;18;13;10;8;7;5;21;9;18;8;5;3;11;8;0;9;8;7;27;16;17;3;5;3;21;16;6;10;4;7;13;15;14;27;12;16;19;15;10;7;1;9;13;9;3;17;17;5;8;28;26;22;17;17;7;7;5;7;6;9;15;5;6;13;0;2;18;20;10;8;16;18;9;14;25;13;23;19;7;9;18;17;11;11;12;12;8;16;21;10;11;14;11;19;12;1;2;5;6;13;8;11;8;6;16;22;31;20;0;16;7;17;22;20;13;10;12;16;5;10;21;27;26;23;26;10;4;5;15;25;33;27;10;7;24;22;33;29
+Benzyl salicylate;2;2;2;2;3;4;1;1;1;1;4;2;1;1;1;1;2;2;2;2;3;3;6;2;5;3;3;7;5;6;5;6;4;1;6;5;8;4;4;3;5;2;3;0;6;4;4;4;5;2;2;2;3;3;4;2;3;2;3;2;3;2;3;2;3;2;2;3;2;3;1;3;6;8;7;6;4;4;2;6;5;6;7;6;7;3;6;8;5;6;5;2;6;4;5;7;5;6;6;8;8;5;7;7;6;1;2;1;1;2;1;2;4;3;2;2;2;5;3;6;5;4;2;3;3;3;4;3;3;3;6;5;4;8;1;4;5;5;7;8;7;7;7;6;7;8;8;8;5;7;4;7;6;4;5;7;4;3;4;1;3;6;3;5;6;4;6;4;5;7;7;4;2;2;3;4;0;3;7;7;7;1;7;8;0;4;5;0;3;2;6;5;5;2;3;2;2;3;5;3;4;3;3;4;5;2;8;6;4;8;5;3;3;3;6;5;7;8;2;2;6;3;3;3;4;2;2;3;2;3;3;3;4;2;2;3;5;5;4;3;5;6;6;5;3;1;1;2;3;5;2;2;2;2;4;5;7;3;5;2;3;5;0;1;4;4;7;5;6;1;3;2;6;4;3;3;1;5;5;4;3;3;4;2;4;6;1;4;0;5;5;4;2;5;5;3;7;7;7;7;3;4;3;3;4;4;2;4;2;1;2;1;0;1;6;6;4;3;4;4;3;6;6;5;7;7;1;5;5;3;2;4;5;5;4;3;7;2;3;5;2;3;3;0;0;0;0;3;3;1;5;1;4;6;8;6;0;7;0;3;5;4;2;2;0;5;1;4;6;7;4;4;8;4;2;2;3;6;8;8;4;4;8;6;8;8
+Camphor;3;2;6;2;3;6;3;2;2;3;15;9;5;2;2;2;2;2;2;2;4;3;10;4;6;4;8;20;14;17;12;17;10;6;8;15;21;12;10;8;6;8;7;0;2;6;7;5;8;3;2;5;4;4;10;6;6;5;5;6;6;5;5;5;6;5;5;4;4;4;2;5;17;18;18;18;14;12;4;14;16;15;18;17;11;8;8;14;14;7;8;5;10;6;9;20;19;17;13;12;17;11;13;8;13;6;5;5;5;5;5;7;6;4;5;2;3;5;3;14;5;6;3;8;10;13;9;9;9;8;15;19;10;20;8;8;16;12;18;17;14;18;14;12;16;10;12;5;21;20;7;14;17;18;15;21;15;15;16;7;16;12;8;2;6;3;13;3;4;11;15;6;2;5;4;9;4;5;13;11;12;5;14;11;7;10;5;1;5;9;17;8;19;8;16;5;3;9;13;7;11;9;9;7;6;6;20;17;5;11;10;11;16;17;10;7;18;13;4;4;13;9;13;6;9;7;7;5;5;6;6;6;6;5;5;3;11;11;11;3;12;15;14;15;9;5;6;10;18;10;3;3;5;5;14;11;12;14;13;6;6;8;6;2;3;10;20;12;10;11;5;7;8;13;9;15;6;8;10;9;7;10;7;16;13;8;1;5;1;8;6;8;4;11;7;6;7;16;8;11;5;6;14;5;8;10;3;3;5;5;12;2;0;0;14;12;4;12;14;6;11;12;16;7;16;13;8;12;11;17;10;15;13;11;6;5;17;5;10;14;16;5;14;2;4;4;5;5;9;5;6;8;7;10;18;9;3;7;6;6;12;12;4;7;5;11;2;9;13;13;9;14;16;7;3;4;13;8;13;17;9;9;19;13;21;21
+Eucalyptol;5;5;6;3;5;8;3;3;3;8;20;11;7;5;5;4;5;5;5;5;8;6;16;7;7;9;11;28;19;22;15;21;19;10;10;18;32;13;8;11;10;12;10;0;6;8;8;8;10;5;6;9;5;6;13;9;10;6;7;8;9;10;8;7;10;6;6;8;8;8;5;8;18;22;24;20;18;14;4;19;19;17;23;20;13;8;11;19;18;12;9;5;11;6;10;24;24;19;18;17;24;11;17;11;18;8;10;7;5;7;6;8;8;8;8;6;6;12;6;19;8;10;6;20;17;14;12;11;12;10;19;26;11;28;12;12;22;18;25;24;18;26;19;14;22;15;16;7;20;33;8;22;22;21;19;31;16;16;17;9;19;18;15;7;11;7;26;8;10;25;25;12;2;8;9;11;6;8;14;10;11;3;16;12;11;14;9;3;6;12;27;13;28;13;19;8;6;13;21;10;17;10;13;13;8;9;30;24;7;18;17;15;25;23;16;7;25;22;4;6;20;12;16;11;14;12;11;10;9;9;9;9;9;7;9;8;18;19;18;8;12;20;18;18;12;5;8;12;26;13;7;7;7;9;23;11;16;18;15;10;5;10;7;2;6;12;28;19;19;10;7;9;10;17;11;18;7;10;11;13;10;13;6;24;17;9;3;10;1;11;10;11;7;11;7;7;8;24;12;11;7;7;20;9;9;10;7;9;7;8;17;2;2;4;15;13;5;19;20;11;16;20;22;9;19;18;6;17;11;21;16;23;17;13;6;6;23;5;12;14;19;10;18;3;9;7;10;13;14;5;11;15;10;13;31;14;3;6;8;17;16;16;7;15;7;16;3;13;21;23;13;23;27;7;4;6;17;10;19;27;14;11;26;21;33;32
+Coumarin;3;3;6;6;7;6;6;3;3;5;5;4;4;3;4;4;4;4;4;4;3;3;5;3;4;3;5;7;5;7;7;9;7;4;8;8;10;5;3;3;7;5;4;1;5;5;4;4;5;4;3;4;2;1;4;5;5;5;5;5;8;5;5;5;5;5;5;5;3;5;4;5;4;8;6;6;2;1;1;3;5;4;4;2;5;3;5;4;7;4;2;1;4;3;5;4;3;6;5;7;9;6;4;6;5;5;4;4;4;4;4;6;5;4;5;3;3;7;7;5;5;5;4;4;3;2;2;2;2;2;7;9;9;10;3;6;9;7;8;7;8;9;9;8;7;6;8;4;7;8;10;7;7;7;10;10;5;5;6;2;5;5;3;3;6;4;7;3;4;7;5;4;1;3;1;3;1;1;6;6;6;0;8;4;3;7;3;0;2;10;10;8;10;9;10;7;7;6;8;7;7;6;7;6;6;5;10;9;4;6;5;4;8;7;3;5;7;7;0;3;7;3;4;5;4;5;5;5;5;6;7;7;6;5;7;7;6;6;3;7;5;10;9;4;1;2;1;3;6;6;2;2;6;2;6;4;8;7;5;4;5;6;3;0;6;4;8;9;10;3;3;4;5;8;5;4;1;3;2;3;2;7;5;7;4;5;0;2;0;5;2;3;2;5;7;3;9;9;2;8;7;6;6;1;5;3;3;4;6;2;6;4;0;1;6;8;4;6;3;4;3;3;8;6;6;6;5;2;6;4;3;6;5;4;5;1;6;7;8;8;8;6;7;0;0;1;0;4;3;4;0;0;2;4;10;3;0;4;0;2;4;4;1;7;3;3;1;2;5;7;5;2;6;7;4;3;3;3;8;9;5;3;10;7;9;10
+Limonene;6;3;7;4;6;6;3;2;2;9;19;6;5;3;4;4;4;3;4;5;3;3;11;3;5;8;11;21;15;18;15;17;13;8;11;15;22;12;7;5;12;11;9;0;5;6;6;4;9;5;6;5;2;4;9;7;11;5;8;8;10;10;9;7;10;5;5;9;8;9;5;9;18;19;18;18;12;13;3;15;16;17;21;18;16;10;10;15;14;10;7;4;11;6;9;21;22;18;16;12;19;13;15;10;16;4;3;3;1;3;2;4;7;5;5;3;3;8;4;14;8;7;2;12;12;14;12;11;11;10;17;18;12;23;6;10;18;14;20;19;17;20;18;14;17;12;13;7;14;22;7;24;19;19;16;22;12;10;11;6;12;15;11;6;10;4;17;8;9;19;17;6;4;4;6;9;3;6;14;11;11;3;18;12;5;13;6;0;5;13;19;14;17;11;19;7;7;14;15;10;15;13;12;11;9;10;21;14;11;16;13;7;18;16;10;11;19;19;4;7;13;6;11;6;10;10;9;11;7;8;10;10;11;7;9;10;12;12;12;10;13;17;14;13;9;5;4;8;19;12;1;1;5;6;18;10;18;13;8;7;9;10;5;3;7;14;17;13;12;3;5;5;10;16;9;11;6;14;13;12;7;13;10;18;16;9;2;8;0;9;8;11;3;12;11;6;9;19;9;13;9;11;15;7;8;10;4;3;7;7;17;4;0;1;17;16;4;16;16;8;13;10;23;8;20;15;6;12;13;15;15;17;14;14;10;3;17;10;7;14;16;9;15;1;5;6;6;9;9;3;5;8;5;13;19;12;3;5;3;5;13;8;4;8;5;13;2;6;13;14;9;14;16;10;2;4;10;9;16;17;12;10;19;13;24;24
+Isomethyl-alpha-ionone;2;3;4;6;8;8;3;7;6;5;11;6;5;5;5;5;2;3;3;3;3;3;15;1;15;13;9;27;21;20;13;16;14;8;13;17;32;19;12;8;8;11;10;1;13;11;11;10;11;3;2;8;10;9;12;8;8;7;7;8;5;10;10;9;9;7;7;7;4;7;4;6;23;28;19;20;13;13;3;15;16;18;19;18;22;15;12;16;17;14;9;5;11;5;9;25;22;17;13;15;26;13;17;13;18;5;3;3;4;5;4;4;7;6;4;4;2;4;3;19;10;6;2;17;13;13;12;10;12;9;20;23;12;27;5;13;25;23;26;22;17;25;17;10;19;10;14;6;17;22;7;19;32;22;19;31;23;23;21;6;23;18;15;11;9;8;19;5;7;24;25;9;4;10;9;14;8;6;16;13;13;4;22;13;10;10;10;0;6;9;21;11;22;9;16;5;4;12;15;8;16;9;11;8;18;5;27;24;16;24;9;21;25;17;17;15;22;24;5;13;22;12;18;12;11;10;9;11;10;6;5;6;9;7;6;6;13;14;13;6;16;23;20;19;11;8;8;8;25;13;13;13;7;5;18;10;27;13;16;9;13;8;5;3;6;12;26;15;18;12;6;10;14;25;14;22;3;14;16;17;10;17;14;25;14;12;3;5;0;10;15;10;3;13;15;4;4;25;14;21;14;18;23;5;6;8;6;9;13;6;20;7;1;3;22;21;4;25;24;12;15;16;23;8;28;18;11;13;19;22;12;21;24;24;10;6;22;13;7;16;19;10;22;9;3;9;5;6;9;8;7;12;9;18;26;10;4;14;6;10;14;15;10;12;10;16;6;13;21;23;23;22;25;8;3;7;19;16;19;30;12;13;31;24;31;32
+delta-Iraldeine;4;4;9;5;7;7;4;4;3;6;17;7;5;3;4;4;5;4;5;5;4;5;13;4;9;13;10;28;22;20;12;12;12;10;11;13;29;16;7;7;12;8;12;0;12;8;8;8;9;3;2;9;11;11;8;4;11;7;11;10;9;11;10;8;12;6;7;9;8;9;4;8;17;20;14;19;13;11;4;10;16;14;14;13;17;11;10;14;18;15;10;11;12;5;9;19;17;14;10;15;26;11;15;15;17;3;2;2;3;3;3;5;3;4;3;2;1;4;1;17;7;4;1;16;14;13;12;5;7;5;15;24;12;29;5;12;19;19;25;20;18;24;20;9;19;8;13;4;18;21;7;19;22;31;19;30;15;15;15;8;16;18;12;6;9;10;18;5;8;24;26;9;1;13;11;12;1;9;12;6;7;4;17;9;2;15;10;0;7;12;25;12;21;11;17;5;5;13;18;9;15;10;12;11;11;4;25;19;13;21;16;11;20;20;14;14;17;24;6;7;18;12;17;8;5;8;6;12;8;7;9;9;11;6;8;10;9;11;12;10;16;20;17;15;9;7;8;9;23;12;9;9;8;6;23;9;23;15;14;10;9;6;6;2;6;11;20;10;16;9;5;6;10;18;11;15;3;11;15;15;9;15;10;20;15;14;4;4;0;6;7;9;3;14;12;3;5;23;16;21;16;23;15;3;3;11;7;8;13;6;14;9;1;1;17;19;3;17;26;12;12;13;23;5;23;14;9;13;14;13;13;19;24;21;12;3;24;13;10;14;16;7;19;4;2;9;6;5;7;7;7;12;13;16;23;10;2;11;7;8;15;12;10;14;8;11;6;10;23;26;13;21;23;7;4;8;15;15;17;24;11;11;24;19;31;30
+Safrole;6;6;8;10;12;11;9;6;4;8;18;10;8;5;7;7;7;7;8;8;6;7;13;6;7;12;15;24;15;17;17;13;12;12;19;18;27;14;8;8;13;10;12;2;11;11;11;10;11;9;8;11;5;9;10;8;10;7;10;9;12;11;9;8;12;9;7;12;13;12;9;10;18;20;12;16;9;6;3;12;11;11;13;11;18;11;13;13;18;14;8;4;12;6;9;17;14;16;14;16;23;14;14;16;16;10;7;7;9;9;9;12;10;7;8;5;4;9;11;23;8;7;4;15;8;10;9;8;9;10;17;21;14;22;9;18;21;19;25;22;21;25;22;13;23;13;19;5;15;19;10;16;19;19;28;25;18;15;16;9;18;15;12;17;13;10;21;15;18;21;21;13;4;11;7;13;4;4;12;9;9;2;19;11;4;13;3;0;6;18;25;13;25;13;21;8;9;19;22;16;18;17;17;10;10;8;25;19;13;20;12;10;19;18;12;16;21;26;6;5;11;11;12;9;12;10;9;13;8;11;11;11;12;8;13;12;14;20;15;12;18;21;19;15;13;9;5;5;20;12;6;6;5;4;16;9;21;13;7;6;15;9;5;6;8;9;22;16;19;7;5;4;16;18;8;17;4;8;11;13;9;19;15;22;15;11;3;6;0;8;9;6;3;16;17;5;9;25;13;22;19;16;15;2;7;10;11;6;18;6;18;8;0;3;21;19;10;14;17;11;9;8;23;10;23;19;6;10;13;17;11;20;16;16;10;6;16;12;13;16;18;11;18;1;3;5;8;7;9;12;4;9;9;18;25;7;5;7;2;10;13;13;11;10;8;13;6;6;17;16;15;13;15;15;3;6;13;13;23;24;13;9;25;20;28;28
+Cashmeran;11;7;11;12;14;10;6;11;9;13;23;15;8;9;9;9;7;7;8;8;5;6;21;4;20;24;17;37;31;40;21;24;27;12;25;25;63;26;13;15;18;16;25;2;26;20;21;20;20;7;7;12;20;14;19;11;19;14;17;13;16;20;19;17;20;13;13;16;13;15;10;14;29;35;31;33;21;18;7;24;26;24;25;24;30;20;18;26;31;20;13;14;19;8;13;32;27;27;22;25;45;23;27;28;31;12;11;8;9;10;10;13;13;9;9;8;6;11;8;34;15;10;6;27;23;18;16;14;21;15;28;36;15;39;13;27;34;32;34;31;22;38;28;13;27;16;26;7;21;31;10;22;31;30;25;65;33;36;36;12;41;29;24;19;16;15;35;14;16;44;43;15;7;19;17;20;8;8;26;18;18;7;33;20;12;16;15;0;11;17;44;23;40;16;29;7;7;21;31;14;26;18;18;19;26;10;39;38;23;46;29;30;42;35;27;29;34;50;7;13;31;26;24;19;14;17;14;20;13;15;17;17;20;14;15;16;25;30;29;17;35;33;25;32;22;12;13;11;41;21;21;21;14;11;36;14;35;19;17;17;22;14;6;7;13;13;45;30;35;16;8;11;25;33;18;31;5;14;26;17;19;32;23;41;30;26;5;11;0;13;25;18;7;29;24;6;12;49;25;36;31;33;36;6;9;16;13;16;21;11;31;15;2;6;36;33;8;36;36;19;17;27;42;12;39;29;11;17;23;35;23;33;33;31;13;13;39;21;20;26;31;17;33;10;7;14;9;13;16;10;9;15;18;30;52;20;5;18;14;20;31;24;17;22;14;25;5;24;40;46;34;40;49;12;6;12;32;31;47;54;23;13;54;42;65;63
+Celestolide;6;5;7;10;11;7;7;10;9;12;14;9;4;6;9;10;4;5;5;5;5;5;10;4;15;9;14;26;28;27;16;14;22;8;20;18;41;20;6;4;5;9;18;0;18;13;13;14;14;3;3;5;11;5;11;9;10;10;6;5;5;9;10;8;10;10;10;6;6;6;5;6;13;18;24;21;8;4;10;21;24;24;16;15;29;19;20;21;23;9;16;11;14;17;21;10;10;19;20;19;32;16;19;18;23;3;2;2;3;2;2;5;5;4;4;2;3;8;4;27;8;5;3;12;5;9;9;3;5;3;18;29;8;20;5;25;26;27;22;21;10;25;16;6;16;9;13;4;15;16;5;12;23;15;18;33;42;34;34;14;35;18;14;6;6;3;14;4;5;28;23;7;12;8;5;17;7;5;20;18;14;10;22;14;13;8;9;0;13;13;30;5;23;12;27;9;8;25;24;18;26;17;22;11;24;7;24;23;10;27;12;21;25;20;11;18;17;32;4;11;17;22;4;14;11;11;11;9;8;4;4;4;9;9;3;5;12;15;11;5;27;25;20;14;17;12;8;9;27;13;17;17;9;10;27;8;15;7;11;10;10;10;4;5;9;8;29;21;23;13;4;6;27;20;15;18;6;7;10;11;16;24;10;30;24;12;12;12;1;10;13;9;5;18;13;4;7;29;26;16;22;11;27;4;8;11;3;20;20;9;22;10;1;5;18;29;9;27;11;8;9;14;25;12;13;15;7;12;5;26;13;30;17;16;8;7;29;11;13;9;25;10;31;10;10;7;1;14;19;11;5;9;10;18;38;19;0;16;6;12;19;21;12;16;9;20;8;17;23;31;29;28;32;11;4;9;20;32;40;37;17;10;40;32;42;38
+Phantolide;5;5;6;9;10;6;7;9;8;9;13;10;5;6;9;9;4;5;5;5;3;3;10;3;11;9;14;27;27;24;12;11;18;7;17;15;38;18;6;6;7;6;23;0;16;10;10;11;11;3;3;6;11;4;13;5;8;7;7;4;7;7;8;6;8;7;7;7;6;7;7;8;10;13;23;19;9;3;8;19;21;19;13;11;25;18;18;17;22;10;13;10;12;14;16;8;8;16;15;16;30;13;17;16;23;6;4;3;4;4;4;6;5;5;5;3;4;8;4;23;7;5;4;12;5;7;7;3;6;3;13;23;8;20;6;21;24;21;21;23;9;26;13;5;17;6;12;3;15;16;5;10;23;15;15;36;34;40;37;13;37;14;13;9;7;4;11;5;6;23;24;6;11;7;5;15;7;6;17;15;13;10;20;10;14;9;8;0;14;13;27;6;25;12;26;7;6;20;25;14;23;14;19;11;21;5;23;20;10;27;12;21;21;19;10;16;14;30;3;10;15;22;3;13;9;8;7;7;3;6;6;6;7;7;4;6;13;16;13;6;25;27;23;11;19;11;8;8;26;11;14;14;8;9;28;8;13;8;10;12;8;9;4;3;7;5;26;21;23;14;4;7;28;21;16;18;5;5;6;13;16;21;8;30;25;9;12;9;1;6;12;8;5;19;10;4;4;27;19;15;20;9;25;4;7;11;3;17;18;7;23;11;1;5;17;27;9;26;10;7;7;11;21;10;12;14;10;8;2;29;13;30;14;12;6;9;24;10;12;7;23;11;31;9;11;6;2;9;16;9;2;6;7;15;36;18;1;14;5;9;18;19;9;14;9;18;6;17;21;27;25;26;28;11;4;9;19;35;38;36;19;11;35;29;40;34
+Tonalide;6;4;8;8;9;7;7;11;10;16;15;12;5;9;13;14;3;4;4;4;2;3;13;5;10;7;12;26;30;27;15;15;16;8;19;19;43;20;7;5;7;10;25;0;16;11;9;10;12;3;3;6;10;5;15;9;9;8;8;5;7;9;10;9;9;8;8;8;7;8;6;8;13;15;26;21;11;4;9;21;23;22;15;12;31;23;19;18;25;8;12;9;16;16;19;9;9;17;18;18;34;15;17;16;24;6;4;3;4;4;4;6;4;6;5;3;4;9;5;23;8;5;4;16;6;8;8;3;6;3;15;28;9;20;7;26;26;24;19;23;11;28;15;6;17;10;13;4;16;17;6;11;21;15;16;36;34;37;46;13;41;10;12;7;7;4;12;6;7;30;21;6;13;7;5;18;7;6;22;18;15;12;22;16;16;9;5;0;16;10;24;7;28;12;24;6;6;19;25;15;23;14;18;14;24;6;23;22;10;29;13;26;21;20;12;17;15;33;3;11;14;23;4;16;11;12;11;10;5;7;7;8;10;9;6;7;11;13;11;7;30;29;23;13;21;11;7;9;32;13;17;17;8;9;29;6;16;8;14;12;12;8;4;3;8;6;29;23;25;16;4;7;28;24;14;19;6;6;11;13;21;22;12;34;26;11;10;12;4;12;13;7;4;18;9;5;7;32;22;19;19;10;28;3;9;10;4;20;14;10;24;13;1;4;20;27;10;27;11;7;6;15;28;12;14;16;9;10;7;27;15;30;14;13;7;10;25;11;13;8;25;10;31;9;11;9;3;12;18;7;1;5;11;19;42;15;1;15;8;16;23;19;11;16;12;19;6;21;26;32;31;31;32;12;5;10;21;37;43;40;18;9;41;35;45;42
+Traseolide;5;3;3;6;6;6;4;5;5;6;9;8;3;3;4;3;2;3;3;3;3;3;5;4;5;5;6;12;10;7;7;3;8;5;7;8;16;7;2;2;3;4;8;0;6;4;4;5;4;3;2;3;7;3;4;2;4;4;3;5;3;4;4;3;4;3;4;3;2;3;2;3;4;7;9;9;3;0;3;6;9;8;4;3;12;7;7;7;8;4;5;5;7;5;6;4;2;6;6;7;11;7;9;8;10;4;4;4;4;3;4;5;3;4;4;4;3;4;4;13;4;3;3;4;1;4;3;0;3;0;6;16;3;10;6;11;11;8;10;14;9;14;10;2;11;4;8;1;7;9;2;6;6;8;9;12;14;13;13;17;15;6;3;3;4;2;7;4;4;7;11;5;3;3;2;3;2;1;5;2;2;2;6;2;4;7;4;0;7;8;15;5;11;5;15;6;5;11;14;9;13;11;12;7;7;5;12;6;5;13;8;5;9;12;3;7;6;13;0;1;9;9;4;6;3;5;4;3;2;2;2;2;3;2;3;2;6;8;8;2;12;7;7;7;8;5;3;6;12;5;4;4;2;8;15;4;4;3;3;5;4;6;0;2;4;2;11;11;9;5;1;2;12;7;6;5;6;1;3;7;11;10;4;12;12;5;4;5;0;1;6;5;2;9;5;3;2;13;9;8;10;4;8;1;4;7;2;8;8;2;9;5;0;1;6;9;4;10;5;4;2;7;12;5;4;7;3;3;0;12;6;11;8;7;1;2;11;6;7;3;13;8;12;5;5;7;4;6;7;5;1;2;4;7;15;6;0;5;1;6;9;10;6;7;7;9;3;10;9;11;6;10;10;5;4;7;9;11;17;15;8;2;16;13;16;16
+Galaxolide;7;6;8;11;12;10;8;11;10;16;17;12;7;10;12;13;5;7;7;7;3;5;15;7;15;11;15;32;34;29;21;13;20;12;24;21;54;21;9;7;7;9;34;0;20;14;13;14;15;6;6;7;14;6;16;8;8;6;7;4;7;9;8;7;8;6;5;6;7;6;6;8;14;19;30;23;13;5;14;30;29;28;22;18;37;26;27;27;31;9;19;11;19;22;24;9;11;22;24;25;40;17;24;25;27;10;8;6;6;7;7;10;8;8;9;5;6;11;8;31;7;8;6;20;7;11;10;4;9;4;17;29;8;24;8;25;28;26;25;25;13;32;16;8;19;12;15;3;16;19;5;12;23;16;18;41;35;37;41;15;59;15;14;11;9;7;17;8;9;35;33;7;20;11;7;20;9;8;28;23;22;12;27;16;21;13;11;0;22;12;30;9;35;14;31;9;7;23;32;19;31;17;22;15;26;10;25;28;13;32;20;33;27;21;17;17;21;43;4;11;18;30;4;19;14;12;11;8;5;7;6;7;7;6;8;6;18;18;16;6;31;33;27;16;24;11;9;11;36;12;21;21;9;16;38;10;15;12;13;14;9;11;3;4;10;6;32;25;27;17;3;8;40;27;18;24;7;5;14;17;24;26;9;43;31;10;11;16;3;11;14;9;3;22;14;6;7;38;28;27;23;10;31;4;10;15;8;21;21;12;29;11;3;6;19;27;15;30;12;10;7;17;28;12;13;14;12;11;5;34;19;34;14;12;8;16;36;9;12;8;33;16;35;10;13;8;5;14;18;14;2;8;18;27;48;22;1;18;12;23;30;25;17;20;12;25;8;24;33;39;34;39;41;11;4;10;26;48;57;48;23;11;50;42;57;49
+Aldrin;12;11;9;12;13;15;10;10;9;12;18;12;9;10;11;12;10;11;13;13;10;9;34;10;21;23;15;28;16;32;15;36;33;12;54;14;47;14;9;27;57;42;51;47;53;46;49;48;47;40;27;26;25;42;33;37;56;45;52;69;67;53;49;44;60;44;46;56;65;58;42;62;24;32;28;38;23;15;13;26;36;32;20;19;23;18;21;27;42;57;16;13;34;17;20;31;28;44;34;42;59;37;36;42;45;56;64;56;37;26;31;31;25;35;45;46;36;63;42;71;47;33;34;46;27;84;82;31;36;28;137;27;9;30;12;31;17;23;28;31;20;26;18;11;18;10;16;6;12;18;5;15;18;18;15;29;18;14;10;6;15;166;72;95;125;114;120;103;111;132;144;48;28;33;49;8;7;38;25;23;22;4;24;18;15;32;22;4;17;20;62;20;30;16;31;10;8;22;30;18;26;21;21;21;49;6;26;45;19;34;73;37;43;37;25;26;50;38;12;24;19;29;44;25;35;47;44;61;49;64;65;68;58;49;69;62;96;108;96;58;18;20;20;24;29;7;12;16;46;26;18;18;23;33;38;10;22;17;14;12;22;7;7;8;17;9;77;36;34;11;9;11;31;24;12;21;5;13;21;12;18;47;24;36;19;9;21;26;5;14;42;18;6;16;13;6;6;43;34;28;26;10;27;5;7;14;19;29;19;20;17;6;4;9;14;15;16;26;21;29;26;28;37;9;28;26;35;30;21;22;19;31;15;15;14;27;70;4;13;21;28;68;30;7;15;27;30;22;28;31;27;16;37;44;40;52;10;24;15;60;58;36;35;44;26;31;21;40;48;51;55;31;53;13;3;4;69;18;48;33;9;8;37;21;50;41
+Endosulfan;3;2;4;10;9;9;9;4;3;4;7;2;4;3;4;3;1;2;2;2;4;4;19;3;13;25;8;22;13;36;6;29;27;8;32;4;39;14;5;32;24;17;29;39;38;38;42;41;40;23;21;17;15;20;19;15;19;13;23;32;30;20;17;12;23;12;14;25;26;26;17;22;22;23;44;17;15;11;5;39;25;21;40;22;36;28;37;49;55;40;24;13;29;13;18;17;21;40;33;48;54;31;40;42;50;30;28;25;27;39;26;34;35;16;22;34;30;48;33;52;30;20;23;51;33;79;83;23;29;24;116;17;8;20;8;15;10;19;20;20;14;16;15;10;9;5;12;3;8;15;3;11;15;12;12;24;14;13;12;3;14;72;156;76;93;108;105;76;84;122;114;25;9;26;23;10;4;22;14;9;10;11;28;18;16;20;10;4;8;14;36;12;18;12;24;7;3;14;21;10;15;9;14;9;30;3;19;30;7;16;46;28;32;22;26;12;35;27;7;24;18;21;40;14;22;24;23;27;21;32;32;34;25;19;37;31;58;84;64;28;33;16;14;19;25;1;8;14;28;18;15;15;9;20;26;8;28;14;10;10;6;3;5;7;12;3;50;17;17;10;10;8;24;12;11;20;2;5;17;8;17;51;7;26;19;13;12;14;3;7;18;24;4;11;10;3;2;41;30;23;20;22;22;4;1;6;14;24;19;11;13;8;6;9;19;20;7;21;28;30;17;24;36;4;24;16;14;30;18;18;13;20;20;19;11;11;36;9;10;17;16;44;22;9;10;15;16;17;12;18;19;22;30;41;33;21;10;19;15;31;33;19;22;45;30;28;18;26;50;59;47;54;57;5;6;11;53;34;53;36;8;9;33;22;68;46
+Heptachlor;6;7;6;8;7;6;5;7;7;7;6;11;7;9;6;9;6;7;8;8;10;10;21;8;13;20;9;24;8;25;7;31;22;9;49;10;21;7;3;30;46;31;48;54;33;24;26;25;24;35;29;33;19;34;34;27;48;36;52;55;58;42;39;33;52;36;36;55;60;57;36;56;29;20;17;17;11;8;2;12;29;26;9;10;14;12;12;17;28;48;10;8;18;4;7;26;13;18;18;24;38;13;23;30;27;51;57;50;49;41;32;46;30;34;42;40;34;61;37;62;36;32;36;38;18;72;71;29;25;20;112;13;5;19;8;22;11;10;17;20;12;18;9;6;10;5;13;5;2;7;3;6;11;6;17;19;6;9;7;3;11;95;76;135;116;101;109;109;118;97;114;46;23;41;38;7;4;24;10;6;9;3;10;5;13;19;15;3;17;13;37;17;24;9;23;6;6;11;22;8;15;6;10;12;35;4;20;29;8;20;54;32;35;24;17;12;30;21;7;23;12;20;36;19;29;32;30;49;40;56;59;66;52;42;68;58;87;98;88;56;9;13;12;23;26;5;9;10;23;21;6;6;17;26;25;8;17;16;9;10;18;4;2;5;16;6;61;28;27;10;7;8;12;16;10;17;3;6;9;6;11;32;19;21;13;2;13;21;3;5;45;13;3;9;5;3;1;27;18;15;13;8;15;5;2;10;28;14;11;11;11;4;3;7;8;14;10;16;14;23;15;15;29;4;21;19;29;23;11;17;11;19;11;10;12;26;60;5;12;21;22;50;12;6;12;10;16;7;11;22;21;15;27;35;23;31;12;11;10;33;38;18;23;22;16;13;14;26;31;30;28;15;26;5;2;5;45;15;24;19;6;4;23;16;27;19
+cis-Heptachlor epoxide;6;6;5;11;11;12;9;8;7;7;9;12;9;10;8;8;5;6;7;7;7;6;21;5;13;16;11;18;9;25;12;39;29;12;63;13;22;6;2;38;63;40;62;62;43;39;44;44;43;46;42;41;29;44;42;33;60;46;64;84;71;50;47;41;65;44;46;63;67;66;43;66;28;22;18;35;15;11;8;10;28;25;9;10;15;11;10;16;30;57;8;7;27;10;12;29;18;31;26;38;44;23;30;27;30;54;69;67;49;43;41;47;36;38;47;68;45;78;41;80;51;38;45;53;29;97;93;30;28;21;139;12;7;21;11;24;10;10;23;26;15;14;15;10;14;6;11;6;6;11;6;10;9;9;13;16;6;7;7;4;9;125;93;116;193;117;144;119;130;144;155;52;30;40;45;7;6;33;13;11;10;1;13;10;12;27;21;3;14;18;53;23;26;14;23;10;7;14;24;11;17;11;13;10;44;7;23;42;12;30;70;36;35;27;18;15;53;23;5;21;18;22;63;22;34;42;38;57;47;70;71;77;64;52;90;70;108;102;97;67;8;11;13;28;26;8;10;16;27;31;11;12;19;32;25;10;19;15;13;12;17;1;6;4;17;8;85;38;34;10;4;8;11;21;10;11;4;7;10;8;14;32;17;27;13;8;19;27;4;7;46;22;4;15;6;2;3;35;20;17;13;6;14;5;2;11;24;26;10;13;11;4;2;7;9;13;13;18;15;28;25;25;24;9;26;16;44;27;11;17;17;22;11;10;15;33;62;7;14;21;24;63;19;5;21;18;23;14;22;41;26;16;28;38;28;45;8;15;10;43;58;33;25;31;21;17;14;38;37;30;55;16;28;7;4;7;56;8;24;13;8;4;15;12;29;20
+Endosulfan sulphate;6;3;3;8;8;10;8;7;7;4;8;7;5;6;5;5;2;3;3;3;8;7;23;6;15;16;7;14;8;31;6;27;22;7;49;8;23;7;3;38;54;27;50;61;45;31;34;33;31;38;32;30;15;35;34;23;49;39;55;64;67;40;35;31;54;40;39;55;63;58;40;60;33;37;14;30;15;13;10;10;38;34;8;9;14;11;9;12;30;47;4;9;21;17;20;32;33;32;25;36;47;24;28;32;35;48;52;47;46;43;42;46;37;33;43;46;38;57;34;68;40;27;38;41;29;92;100;24;21;18;128;7;7;17;9;14;6;10;17;21;12;16;11;8;11;3;13;4;3;7;4;4;8;10;10;15;3;4;4;2;7;114;108;101;117;167;135;104;113;123;136;41;16;35;37;6;3;28;15;13;12;2;11;12;9;23;17;3;13;16;38;16;18;7;20;8;5;11;19;9;13;9;11;7;34;2;17;32;8;20;65;26;30;19;30;15;44;20;8;18;17;22;48;21;26;31;27;46;40;65;68;74;56;45;74;64;86;100;90;60;11;11;8;20;21;1;8;9;19;18;8;8;24;22;28;7;15;13;8;7;24;4;2;6;11;5;60;29;16;6;5;4;11;9;4;13;2;4;10;7;11;30;24;20;12;10;25;19;2;5;27;26;6;9;9;5;4;26;26;21;15;8;10;3;3;9;27;18;17;10;6;7;2;7;9;17;13;12;18;30;16;14;23;8;23;17;29;23;26;13;11;14;11;11;8;24;50;2;12;15;20;55;14;3;15;16;21;6;13;31;20;10;34;43;23;34;10;15;5;34;48;30;22;31;20;13;14;29;33;28;40;15;26;5;2;3;38;6;21;15;5;7;16;9;21;15
+Endrin ketone;7;8;8;12;13;14;9;11;9;11;15;13;10;7;10;10;6;7;8;8;7;7;26;10;18;34;14;28;18;42;12;45;45;12;66;18;50;11;5;38;72;39;78;44;56;52;55;54;55;44;33;47;36;52;43;31;57;43;65;85;81;50;45;36;63;41;45;60;68;65;42;75;41;44;36;49;30;16;17;32;43;41;34;30;35;29;35;38;55;63;21;18;36;15;15;39;33;53;47;54;83;43;48;45;62;59;82;74;59;41;44;50;40;37;49;53;43;77;38;84;52;29;34;73;36;105;103;34;31;31;163;28;11;33;13;32;23;26;32;32;20;30;19;13;19;12;21;6;13;26;7;17;19;18;21;35;14;11;12;7;17;120;105;109;144;135;234;121;130;195;189;61;25;47;53;9;8;36;28;18;20;5;27;19;22;27;25;5;20;24;70;21;35;21;37;12;10;22;31;16;25;21;20;20;54;4;31;52;21;42;80;38;48;37;28;23;58;45;10;23;28;46;50;26;33;42;38;61;46;83;83;89;62;48;104;75;113;126;105;70;27;26;21;38;39;7;16;18;47;32;17;17;28;39;45;10;31;17;13;12;27;9;4;11;21;11;95;48;36;9;9;9;38;25;18;22;8;9;18;15;22;68;29;37;29;19;27;33;7;11;55;33;8;19;22;4;6;55;40;29;35;22;22;7;3;16;37;37;28;14;16;12;4;9;22;32;18;25;36;46;25;28;48;12;37;31;39;40;29;24;26;22;24;23;17;36;86;10;17;24;32;83;25;9;22;29;30;23;27;44;37;29;46;56;56;59;18;19;14;52;65;41;37;46;28;39;28;46;70;60;71;41;63;14;5;8;71;22;55;33;15;7;33;26;55;44
+trans-Chlordane;5;4;5;5;5;9;6;8;7;6;9;11;5;7;7;7;5;4;5;5;7;7;20;5;9;15;9;15;5;20;8;23;20;8;52;7;14;5;2;29;43;30;40;54;34;29;31;31;28;30;29;30;14;36;32;26;46;33;49;56;52;42;37;31;49;32;33;50;59;53;31;46;26;20;14;22;9;7;5;9;29;26;8;7;11;9;7;12;25;45;7;8;24;10;13;27;16;22;19;28;36;16;24;26;22;50;58;46;36;39;34;40;26;29;38;37;29;49;34;54;45;33;39;36;18;87;84;23;20;18;115;8;5;18;8;13;7;7;16;19;12;14;13;6;10;4;11;4;3;8;3;8;5;5;15;14;4;5;6;4;8;103;76;109;119;104;121;140;138;99;121;46;14;39;37;6;3;27;11;7;8;2;9;5;8;17;14;2;10;17;37;18;21;11;21;8;7;12;20;11;15;9;13;10;28;5;17;28;7;21;53;23;30;24;17;9;40;16;4;17;12;18;44;16;24;33;28;49;35;52;51;52;46;37;65;54;86;96;78;50;6;7;7;21;19;3;7;10;21;22;4;4;18;27;24;7;14;11;5;7;18;4;3;7;14;5;58;29;19;6;5;5;11;6;10;12;2;4;9;3;7;32;18;19;12;4;17;22;2;6;37;14;1;9;6;3;2;21;16;9;10;4;11;5;3;9;24;17;9;9;10;3;2;7;6;12;14;14;13;26;12;10;25;5;16;10;29;19;13;15;14;12;5;5;10;24;54;4;11;15;19;48;14;2;15;11;17;8;9;24;22;14;22;35;17;32;11;10;9;28;39;17;21;20;15;9;11;25;28;25;27;11;20;8;2;5;39;7;17;8;6;2;11;7;17;13
+cis-Chlordane;6;7;6;7;8;11;8;9;8;7;9;12;6;8;8;9;7;7;8;8;8;9;24;8;10;18;12;21;8;26;9;27;22;9;59;9;17;9;4;31;50;34;48;57;37;31;33;33;30;34;33;34;17;40;36;30;48;35;55;61;57;44;39;33;51;34;35;54;64;57;35;52;27;24;16;26;11;9;6;13;30;26;10;9;15;13;13;18;30;47;9;10;26;11;14;30;20;23;26;29;43;20;28;28;27;57;64;51;39;40;37;43;31;33;40;42;33;56;40;62;49;37;41;42;20;92;91;25;22;19;128;11;8;19;11;16;8;10;20;21;15;18;16;6;15;4;13;5;4;10;4;9;7;8;18;16;5;6;7;4;9;111;84;118;130;113;130;138;158;113;134;48;15;41;41;7;4;30;17;10;11;2;11;8;10;21;17;2;12;19;41;19;27;13;25;9;9;13;22;12;16;10;14;14;35;6;21;32;8;24;59;29;34;28;21;12;47;19;6;19;14;22;48;21;30;38;33;51;37;57;56;60;49;40;75;60;95;108;88;55;9;11;10;25;19;4;8;12;23;26;7;7;21;30;27;8;19;14;8;8;18;5;3;8;19;8;65;33;24;7;6;7;12;9;11;16;4;6;10;7;8;36;18;22;14;5;20;24;3;9;40;16;3;10;7;4;2;26;21;11;14;7;14;7;4;12;27;19;13;10;12;3;3;8;7;16;15;17;15;29;14;14;29;7;23;13;32;23;15;17;17;16;9;9;12;27;58;5;14;18;21;52;16;2;14;11;18;12;12;27;23;17;27;41;20;37;12;11;9;30;45;22;23;24;17;12;15;29;34;28;32;16;22;9;3;5;41;8;20;13;7;6;15;10;22;16
+Endrin aldehyde;8;7;10;13;14;11;9;11;10;13;23;11;10;9;10;11;8;8;9;11;9;8;37;11;28;36;12;38;29;63;16;36;37;14;62;21;87;20;11;41;57;38;58;33;64;59;63;59;62;42;28;42;35;47;45;31;59;45;58;74;68;49;46;38;64;43;45;58;63;61;41;62;32;43;54;33;29;17;20;54;32;27;46;28;50;47;49;62;82;65;30;22;43;24;26;27;32;59;55;57;87;47;60;62;78;53;45;40;35;39;32;44;42;36;43;41;37;63;36;85;51;26;26;60;38;109;114;33;41;34;178;35;13;28;15;26;24;33;33;33;21;30;21;13;20;14;22;7;11;25;7;19;24;24;21;44;28;23;30;7;35;132;122;97;144;123;195;99;113;279;206;54;16;44;48;16;9;40;45;34;33;16;44;33;34;39;25;5;23;26;67;21;31;19;31;12;9;21;27;16;23;21;20;23;62;11;30;60;22;48;93;56;53;46;42;27;55;75;12;36;32;51;52;19;30;41;38;60;47;67;68;72;62;50;70;69;100;131;106;64;48;31;26;42;46;9;9;22;55;29;34;33;24;38;47;12;43;20;19;14;19;10;6;10;20;10;92;38;36;13;12;11;55;27;22;34;3;10;24;15;33;85;20;46;39;24;26;30;9;13;47;32;9;22;25;2;11;67;55;42;49;30;37;7;4;14;34;47;37;20;29;18;6;12;31;43;18;40;43;54;32;44;67;13;41;36;41;49;31;37;26;37;26;27;19;34;90;18;18;29;36;82;37;13;14;33;36;33;34;47;33;37;51;70;91;49;19;37;26;66;71;43;39;61;38;49;31;47;92;92;97;80;102;15;6;10;81;68;111;81;15;10;69;48;112;91
+Endrin;8;7;9;13;15;14;9;11;10;11;16;14;8;9;8;10;4;6;7;7;8;9;32;10;26;28;14;35;23;52;14;43;44;13;68;19;78;13;8;39;73;40;67;61;62;48;51;50;51;49;37;45;42;60;44;33;56;43;69;84;85;52;47;37;60;43;44;67;78;72;46;77;38;48;30;44;28;17;11;33;48;44;31;27;35;25;29;33;62;73;24;17;35;23;25;37;38;48;42;53;79;39;46;47;60;61;75;67;59;43;42;62;40;37;46;60;43;79;45;88;56;34;41;71;34;117;124;33;36;30;182;35;11;35;13;35;28;32;35;35;22;37;20;14;21;14;26;7;15;25;5;17;25;26;21;43;23;24;21;11;33;144;114;114;155;136;189;121;134;206;247;57;31;56;58;11;8;40;24;21;24;9;25;17;20;32;30;4;26;28;83;19;35;21;39;12;10;20;30;17;25;19;21;21;58;4;33;62;27;48;92;54;50;38;39;30;64;54;11;28;27;45;55;24;32;43;39;62;47;84;87;91;60;48;92;76;120;121;114;72;29;28;23;37;41;9;16;24;48;32;26;24;29;41;50;12;27;21;18;15;25;11;6;9;18;13;93;44;43;14;9;10;42;28;16;31;5;12;17;17;26;65;27;38;31;18;29;32;7;12;59;37;9;24;16;4;7;67;60;41;31;22;21;7;4;17;35;38;27;23;15;13;3;8;16;28;21;26;36;46;30;35;51;13;38;30;43;41;30;31;28;29;26;24;17;47;83;8;20;27;32;81;28;10;17;25;26;25;26;49;36;29;52;67;59;64;18;27;16;58;75;42;42;55;32;34;30;47;68;63;68;40;67;11;6;7;81;26;57;59;19;11;54;37;78;63
+4,4'-Dichlorodiphenyldichloroethylene;7;10;7;13;13;12;10;13;11;9;8;9;10;8;10;8;6;9;10;10;10;11;16;11;11;15;11;16;8;20;6;21;26;10;30;10;15;6;2;20;26;32;23;11;19;15;16;17;17;17;14;50;20;37;16;29;35;28;30;24;26;33;33;29;37;30;29;31;39;32;22;23;13;19;13;16;12;6;4;15;10;10;11;9;10;9;12;14;18;28;5;9;22;8;9;14;16;19;16;19;29;15;17;21;20;28;30;25;22;23;18;18;19;20;22;26;23;28;22;36;20;20;21;26;19;13;12;9;8;5;31;6;7;13;11;15;6;9;19;19;13;10;12;6;8;4;10;4;6;12;4;6;9;9;13;15;7;6;6;5;7;48;25;46;52;41;61;46;48;54;57;67;18;31;40;4;6;15;10;9;9;5;13;9;8;13;12;2;12;19;33;15;21;14;20;7;6;17;23;13;21;13;16;14;25;6;18;20;6;15;19;23;23;15;12;13;26;15;6;7;15;17;19;21;25;32;29;38;33;25;25;25;36;31;21;35;38;41;43;33;6;12;9;14;20;5;3;11;24;16;15;14;10;15;24;5;14;14;7;9;10;5;4;4;7;7;40;24;23;8;6;4;14;11;8;11;5;5;10;4;8;29;11;24;9;9;13;15;1;7;22;17;5;6;6;5;5;23;20;13;11;7;14;2;5;7;19;16;8;9;7;1;2;5;5;15;9;12;17;17;10;17;18;8;20;17;23;20;13;16;6;17;9;7;7;14;34;4;14;11;21;35;12;2;12;13;15;10;11;19;14;16;22;20;23;29;6;13;6;25;33;13;21;22;13;15;11;19;23;24;22;18;23;5;1;4;22;10;24;12;6;0;14;11;29;24
+Methoxychlor;6;2;1;8;9;5;6;4;4;10;4;4;4;8;6;8;3;3;5;6;8;5;13;5;11;8;12;9;5;18;12;9;18;6;19;11;28;1;2;8;12;15;22;0;8;3;3;6;3;6;5;7;14;24;13;10;12;10;8;14;11;14;14;10;13;9;10;8;11;8;6;12;8;14;13;9;9;3;10;20;15;16;15;15;20;16;17;20;21;17;15;3;6;13;12;7;8;17;18;16;23;15;16;20;23;10;16;15;13;11;12;11;9;10;10;11;5;7;6;20;8;5;8;12;5;9;11;4;2;2;19;6;3;7;0;18;5;5;7;9;3;6;4;1;3;5;11;2;2;2;1;4;4;1;4;7;12;11;13;3;20;28;9;23;30;16;25;14;15;16;31;18;41;19;23;7;1;5;15;15;13;5;10;11;11;5;4;0;11;11;28;5;10;9;12;4;4;11;14;8;15;10;11;12;9;8;6;23;8;10;10;21;9;3;16;10;7;10;0;5;6;11;0;9;16;15;13;15;11;9;10;11;12;10;11;10;23;27;21;8;6;7;5;7;17;7;4;3;20;6;18;18;10;5;21;4;7;5;8;7;5;2;1;4;9;1;21;14;18;5;2;6;21;11;5;12;1;3;2;4;10;17;5;21;9;3;10;7;5;5;16;7;0;11;4;4;5;16;13;17;6;4;10;0;4;7;15;13;6;4;12;5;1;3;3;5;8;11;7;13;5;18;11;4;6;12;11;12;3;16;13;14;3;3;6;16;29;4;3;7;13;17;14;9;11;4;6;11;11;14;2;5;12;21;14;19;1;9;3;12;19;15;12;12;4;16;8;15;17;20;21;19;22;2;0;2;17;24;31;23;15;1;22;18;29;21
+4,4'-Dichlorodiphenyldichloroethane;0;3;1;14;15;11;9;11;9;7;15;9;5;2;8;5;1;2;3;3;6;5;11;4;8;16;9;14;10;15;9;17;25;12;27;5;20;5;3;10;13;20;17;15;16;15;16;15;17;7;6;29;38;47;10;18;21;20;19;22;13;24;22;19;23;18;18;17;24;16;14;11;13;15;18;27;12;10;9;16;18;17;13;12;17;9;12;17;24;17;10;9;16;9;10;13;13;21;17;21;29;19;22;20;26;11;15;10;18;13;12;11;9;10;11;21;17;24;20;33;21;18;19;31;18;19;20;13;9;7;40;9;7;11;6;16;6;10;18;19;11;14;10;5;7;7;11;2;5;8;3;4;10;13;11;19;8;7;7;3;11;33;26;41;40;35;47;39;41;44;56;31;19;60;50;4;2;12;12;9;9;5;16;5;8;11;13;2;12;20;34;7;18;13;18;5;4;13;17;11;16;11;14;10;17;1;16;25;8;16;5;11;21;10;14;10;26;18;7;2;15;18;14;14;17;20;19;27;23;13;15;13;19;16;12;17;31;41;35;15;13;15;7;15;19;6;5;7;20;9;16;15;10;10;21;5;19;15;4;9;9;4;1;7;5;5;40;15;19;7;5;3;20;11;6;11;1;5;12;8;10;32;9;19;11;8;9;11;0;5;10;14;3;6;5;1;1;22;24;11;11;15;8;2;3;5;15;12;10;7;6;2;2;6;6;12;9;11;15;19;10;16;20;8;17;13;15;17;10;10;7;12;12;11;10;19;41;3;9;10;16;29;9;3;12;12;18;8;8;26;16;16;26;22;16;24;4;18;13;23;31;20;24;27;14;17;16;14;28;30;25;33;28;6;2;5;24;12;24;17;8;4;18;12;23;19
+4,4'-Dichlorodiphenyltrichloroethane;4;5;3;12;12;10;8;12;10;11;12;10;5;5;11;9;3;4;5;5;8;9;14;7;14;14;10;13;7;17;6;16;21;13;24;4;16;3;1;10;11;18;19;14;16;15;17;15;18;8;7;38;38;59;21;16;17;13;11;35;15;20;19;17;19;13;14;11;15;11;6;12;10;15;16;23;14;8;8;14;17;16;12;10;16;14;11;14;21;26;7;9;15;6;7;14;12;20;15;21;30;19;20;21;26;15;19;17;21;13;12;13;15;9;13;24;18;26;19;40;25;19;22;32;19;19;20;10;8;6;41;4;5;11;8;15;3;6;16;17;8;10;8;3;5;5;6;3;4;9;1;6;9;11;7;17;5;5;5;2;7;49;23;38;45;37;53;37;41;48;58;40;23;50;68;3;4;14;11;7;6;4;11;6;7;12;16;2;7;19;35;12;15;11;14;3;2;13;18;9;16;10;12;14;19;3;13;27;8;14;19;12;24;12;12;10;25;14;5;4;17;18;15;13;16;18;16;21;17;12;11;11;14;12;20;11;39;49;37;10;7;14;7;17;20;4;5;9;22;11;14;14;12;16;22;4;15;16;4;9;7;3;2;5;3;6;39;18;17;8;6;3;17;11;4;12;2;5;11;5;6;29;8;22;9;6;10;13;1;6;12;13;4;6;5;1;3;21;18;11;8;12;8;1;3;4;15;13;7;8;6;1;2;5;4;10;9;10;12;13;8;17;15;7;16;14;13;19;12;15;8;14;9;8;6;15;37;3;12;8;22;34;12;2;16;14;19;5;8;25;17;15;33;16;11;21;6;15;13;23;29;18;23;25;13;13;14;16;27;25;30;28;25;2;0;3;28;9;25;15;5;1;13;11;24;20
+Tris(4-tert-butylphenyl) phosphate;4;4;2;4;5;6;5;4;3;7;14;8;6;4;2;3;3;4;4;4;2;3;9;2;10;8;10;17;18;16;10;9;9;3;14;10;26;14;7;5;6;4;12;0;5;2;1;1;3;3;3;4;3;3;8;4;4;3;6;6;7;3;4;2;4;3;3;8;4;8;5;7;10;12;10;10;9;6;8;15;13;13;15;16;17;14;15;15;19;5;11;5;4;8;8;9;9;15;13;13;19;10;15;14;17;2;3;2;3;4;3;3;8;5;3;6;5;12;7;15;6;6;7;9;6;6;7;4;5;4;12;13;6;15;3;9;14;11;16;12;9;16;10;7;14;5;10;4;9;11;3;9;14;12;13;20;17;15;18;3;20;8;10;7;7;6;9;6;7;16;11;4;7;4;3;36;2;5;18;15;14;5;24;14;3;2;6;0;7;4;17;6;12;4;10;4;4;13;13;10;14;8;12;7;5;6;17;16;10;9;4;15;14;10;9;9;11;16;2;4;11;8;7;7;7;4;4;5;3;4;6;7;5;3;8;7;8;12;9;6;13;14;11;9;8;4;0;2;15;4;10;10;3;7;15;6;13;7;10;6;8;8;1;2;4;8;11;9;10;5;2;3;20;13;4;12;2;7;7;11;7;14;8;15;8;9;5;6;3;5;6;5;2;10;8;6;4;13;11;11;9;9;11;3;7;7;5;6;7;0;10;6;0;1;12;13;8;14;13;8;10;7;11;6;13;8;8;8;7;13;9;12;12;12;4;8;19;7;4;6;8;8;11;5;5;3;2;5;4;6;1;6;6;15;21;8;0;8;5;6;11;10;6;6;0;12;7;6;15;21;11;22;24;6;2;5;10;18;21;26;17;9;25;20;30;27
+Tri-n-butyl-phosphate;2;3;0;1;2;3;2;3;3;2;1;2;1;3;3;2;1;3;3;3;3;3;5;4;2;2;3;6;7;7;3;2;6;1;5;4;9;3;1;1;2;3;3;0;6;5;5;5;5;2;0;5;4;3;4;3;4;2;2;4;1;3;3;3;4;2;3;3;3;3;2;1;4;5;5;4;4;2;1;6;4;4;5;4;2;2;4;4;4;3;2;3;9;2;2;5;5;5;5;7;5;3;7;5;4;5;3;2;1;1;2;2;1;4;3;3;3;4;2;8;1;3;2;4;2;2;3;2;3;2;7;5;2;5;3;3;7;8;6;6;1;7;2;3;2;0;1;0;4;6;1;3;8;1;4;8;7;7;7;2;9;7;4;4;6;3;8;3;4;9;8;6;1;2;4;2;10;5;1;2;2;3;6;1;9;5;4;3;1;3;7;2;7;4;4;3;2;3;3;2;5;3;3;5;9;1;6;5;1;3;5;5;6;4;5;3;8;4;1;8;3;4;3;7;5;4;4;3;4;3;2;2;4;4;3;4;4;6;4;4;3;6;7;4;5;6;2;5;8;3;5;5;4;2;4;2;5;4;3;1;1;3;5;1;5;3;8;7;7;2;2;3;8;5;5;5;2;3;0;1;2;6;1;10;3;0;3;1;1;2;0;2;1;2;1;1;1;3;7;5;2;0;9;1;1;5;1;8;3;2;7;0;0;1;3;3;4;9;2;5;4;5;7;0;3;1;1;6;1;8;4;9;2;1;2;4;4;0;2;2;7;5;6;1;3;2;1;7;7;5;5;5;3;4;10;3;1;3;4;6;4;5;4;5;4;7;5;8;8;6;6;7;8;2;0;1;6;7;8;10;3;3;9;9;10;10
+Tris(1,3-dichloro-2-propyl)phosphate;2;3;4;3;3;5;2;3;2;5;8;1;0;3;3;2;2;3;3;3;1;2;11;2;8;6;6;9;10;13;4;14;9;2;18;4;11;8;2;11;10;8;11;6;19;13;16;13;14;5;3;15;12;13;13;6;10;5;8;26;11;11;9;6;13;7;7;10;14;13;8;8;11;13;8;13;10;9;6;10;17;15;7;5;9;5;7;9;19;19;9;11;15;10;9;11;14;22;16;22;27;16;22;19;20;17;17;18;11;9;9;15;7;15;16;11;10;23;9;21;14;8;9;18;11;21;19;13;13;10;36;11;4;9;3;9;7;8;10;14;7;9;7;6;8;4;7;3;5;8;1;6;6;9;4;8;5;6;6;1;8;38;22;24;33;28;36;27;30;40;40;15;5;12;14;5;5;52;11;11;10;3;7;9;5;14;17;1;5;6;17;2;11;4;11;3;2;8;7;6;10;8;7;10;19;3;10;15;8;8;26;13;16;12;8;6;21;10;8;6;10;10;8;9;13;8;8;13;11;9;10;9;11;7;15;15;24;37;25;13;3;8;6;8;15;1;6;7;14;9;2;3;5;13;14;5;6;6;6;5;9;4;4;6;9;2;24;13;14;3;3;4;4;9;4;3;4;3;5;6;7;19;10;14;7;3;10;8;0;3;11;8;1;4;5;4;0;7;10;7;8;3;8;3;4;3;8;10;5;6;5;0;0;0;3;12;10;6;8;16;9;5;8;4;12;7;12;14;10;10;7;12;7;5;8;11;23;0;3;6;11;28;9;2;4;13;14;7;8;17;14;10;20;19;14;17;4;8;3;14;19;10;14;18;14;12;12;10;16;10;22;11;12;4;0;0;25;7;8;10;7;3;9;6;15;13
+Tri-o-cresyl phosphate;7;4;8;11;12;8;8;6;5;11;17;10;9;8;5;7;3;4;4;4;5;5;15;5;12;12;15;18;20;37;21;15;21;15;25;20;48;13;10;11;10;13;30;1;19;14;14;12;15;8;5;8;12;11;16;13;9;7;9;7;10;7;9;7;9;7;7;9;8;9;5;10;20;24;24;19;16;13;17;30;25;27;32;26;30;23;31;34;28;20;22;11;24;21;23;17;18;30;31;27;37;25;32;23;33;6;6;6;5;8;5;7;12;8;8;5;6;12;7;21;12;14;9;19;12;16;17;10;13;11;29;18;9;16;3;16;14;13;20;16;17;21;15;11;17;16;19;7;13;14;6;14;16;12;12;26;20;17;22;5;28;25;14;10;13;15;28;11;17;45;24;10;15;12;11;18;1;11;62;38;38;8;34;33;12;7;9;0;17;12;36;11;11;9;14;5;5;12;13;11;14;12;13;10;20;12;18;34;17;21;21;31;24;9;20;14;28;33;7;10;18;20;12;14;13;15;15;10;7;7;9;10;10;8;10;9;17;17;10;9;24;15;16;20;18;3;6;9;31;12;23;22;11;16;27;12;22;12;12;5;7;6;2;7;9;8;29;17;17;8;3;7;30;14;9;23;3;7;14;9;18;38;8;23;20;13;14;14;2;6;29;21;6;17;12;7;6;26;29;17;14;14;16;5;10;13;13;13;26;9;17;5;2;6;19;35;13;15;23;17;12;25;30;12;27;16;8;17;20;22;15;24;18;15;7;20;41;10;9;16;20;33;19;8;11;11;6;12;13;18;6;5;20;34;42;32;5;22;16;25;40;20;12;21;9;18;9;22;25;36;32;34;38;10;2;4;29;28;49;38;24;8;40;26;50;32
+Tri-m-cresyl phosphate;9;6;7;8;9;7;7;6;6;8;11;5;6;10;6;8;5;6;6;6;4;5;14;4;9;7;14;14;14;25;17;12;15;8;24;17;42;11;11;7;10;10;25;0;19;12;13;10;13;7;5;5;12;7;13;9;7;7;7;6;9;4;5;4;7;6;7;8;7;7;7;10;14;22;16;13;13;9;13;25;18;20;25;19;23;17;22;24;22;17;17;8;16;18;19;11;14;22;22;23;27;16;22;17;24;8;9;8;6;8;6;7;9;8;8;4;5;12;7;14;8;11;7;14;6;10;8;6;7;6;20;15;8;11;3;12;10;11;13;12;13;16;13;10;13;17;19;7;11;10;6;11;13;6;9;18;18;15;18;2;23;23;9;6;11;13;18;7;10;34;21;9;15;9;7;15;2;11;38;50;45;4;23;26;13;4;6;0;15;10;29;9;11;10;12;4;4;9;10;9;11;10;10;13;19;10;14;25;12;21;17;28;18;5;12;12;26;24;6;6;14;16;8;17;13;10;10;6;4;8;9;10;8;8;9;8;16;16;12;7;20;14;14;13;12;2;6;11;25;7;23;23;5;12;18;10;16;10;8;4;5;5;1;4;9;5;24;12;20;10;2;8;27;12;9;17;2;5;15;6;16;29;6;15;13;9;10;9;4;6;30;19;3;17;11;7;6;16;26;17;9;9;16;5;10;12;12;10;15;11;17;4;1;1;16;27;13;13;18;14;12;18;24;8;20;14;8;9;12;18;11;17;16;13;6;19;31;7;8;11;17;29;13;6;5;7;6;12;11;14;5;4;17;26;35;22;2;20;14;15;29;12;6;18;5;15;5;18;21;32;28;21;30;10;2;3;20;29;41;34;20;6;41;27;41;27
+Tri-p-cresyl-phosphate;9;5;7;8;9;7;6;6;6;6;10;5;6;9;5;6;4;5;5;5;4;6;14;4;8;8;14;15;12;28;17;12;17;10;23;17;41;10;9;11;10;11;25;1;18;13;14;11;14;7;5;6;12;6;12;11;7;7;7;6;9;5;6;4;7;6;7;7;7;7;6;10;16;20;16;14;13;9;13;21;20;22;26;20;24;18;23;26;22;18;20;9;16;17;19;13;15;21;23;23;29;15;22;17;24;7;8;9;7;10;7;10;10;7;7;4;5;14;7;15;8;12;8;16;9;12;10;7;8;7;20;16;8;12;3;13;9;11;14;11;14;15;14;11;12;16;19;7;12;11;6;11;13;7;9;18;14;13;15;2;22;22;10;9;10;12;20;8;11;33;24;9;13;9;6;14;2;10;38;45;51;4;21;25;12;4;5;0;16;10;30;10;12;9;12;4;4;8;9;8;10;9;9;9;16;9;13;26;13;21;17;30;19;4;10;12;28;23;6;5;13;15;10;16;13;12;12;8;5;8;9;10;8;7;11;7;18;18;13;7;19;12;14;15;15;2;7;11;27;7;21;21;6;14;18;11;17;11;9;3;5;5;2;4;8;5;25;11;19;8;2;10;25;12;8;19;2;5;12;6;16;28;6;15;15;8;11;8;3;6;31;20;3;18;11;6;6;17;27;16;8;9;14;5;9;12;12;11;16;11;12;4;1;1;15;26;13;8;20;13;12;18;21;8;22;12;8;12;12;16;11;15;15;11;7;20;31;7;8;12;14;30;11;5;5;6;5;12;13;13;5;4;15;26;36;24;2;21;13;16;31;11;7;20;5;14;4;16;21;30;25;22;27;10;2;3;24;29;43;34;18;6;39;24;41;27
+Isodecyl diphenyl phosphate;3;5;3;3;3;4;4;1;1;4;3;2;2;2;0;1;4;5;5;5;1;0;6;2;4;7;7;4;5;9;5;4;6;3;7;7;15;2;4;4;2;4;10;1;7;7;8;7;8;1;1;4;2;6;2;3;0;0;1;2;1;0;0;0;1;0;0;0;0;0;0;1;7;4;11;8;5;5;6;12;10;9;11;9;10;8;10;12;11;1;7;4;8;7;8;6;8;10;10;7;11;8;10;7;10;1;1;1;0;2;2;1;4;1;0;1;1;1;0;8;1;1;1;4;5;8;7;2;5;3;9;7;2;4;1;5;4;6;4;4;3;4;2;2;1;5;5;1;5;3;0;3;4;4;2;7;10;10;12;2;12;4;11;3;1;2;5;2;2;16;9;5;5;5;4;5;3;3;8;4;4;19;12;2;6;7;3;1;14;1;12;3;1;6;4;1;1;6;4;4;6;4;5;7;11;2;4;12;1;7;0;11;4;3;8;5;9;7;2;7;2;8;3;5;5;3;3;0;0;1;0;1;0;0;2;1;4;3;3;0;13;6;3;7;5;2;4;2;11;4;11;11;2;5;9;6;4;3;5;1;1;2;1;3;3;2;9;5;6;4;2;1;10;7;5;9;2;2;6;1;6;12;1;13;6;5;4;6;0;4;9;2;2;8;4;1;0;11;11;8;7;4;10;2;1;5;2;10;4;5;8;1;2;2;4;4;3;9;5;2;5;9;14;2;6;5;2;7;6;8;5;11;4;3;3;6;12;0;0;2;8;6;12;8;7;4;1;6;6;5;3;2;8;11;9;10;2;10;6;9;12;11;5;6;8;13;3;10;14;16;12;15;16;1;1;3;16;15;18;15;8;2;14;12;17;15
+Tris(isopropylphenyl)phosphate;11;4;7;8;10;8;8;5;4;15;28;14;9;5;8;8;3;4;4;4;6;7;21;7;15;16;11;26;25;31;18;16;14;14;27;18;49;19;12;7;10;12;15;0;18;15;15;13;16;5;5;10;12;13;13;10;11;8;10;11;10;9;10;8;12;7;8;9;8;9;7;9;20;22;27;23;14;10;11;26;21;21;31;23;30;20;27;29;38;10;17;11;22;14;17;18;17;28;26;28;39;22;26;26;34;6;8;4;8;7;6;9;11;7;6;10;10;20;14;28;15;10;6;25;13;18;17;10;11;11;30;27;14;21;4;18;25;23;25;21;15;30;18;10;23;13;21;7;14;16;8;18;22;17;19;33;22;20;22;6;27;24;28;10;13;11;27;9;11;44;25;13;10;16;11;24;6;7;34;23;21;12;81;26;15;13;18;0;14;18;36;15;21;9;21;8;7;19;19;12;19;13;16;18;19;10;26;36;15;29;10;26;31;16;18;19;23;39;4;18;27;16;10;11;11;11;10;12;10;8;10;10;11;8;9;9;13;20;14;8;28;21;18;20;25;7;4;7;25;11;25;24;8;15;33;12;35;13;10;8;16;11;6;5;10;10;29;14;20;7;8;6;30;23;11;22;2;10;15;13;15;42;17;25;29;19;9;11;5;9;15;15;5;14;19;9;9;36;34;28;24;24;16;4;12;13;9;11;21;10;14;10;1;3;26;38;9;16;21;23;13;21;34;9;26;22;10;15;18;16;11;26;25;22;11;16;38;15;10;16;22;30;19;5;4;12;10;7;8;23;8;11;22;34;51;26;3;22;10;21;30;20;16;18;12;21;13;8;29;50;36;41;50;11;6;10;34;42;55;39;19;10;43;29;57;51
+Tris(3,5-xylenyl)phosphate;7;7;5;4;5;8;6;4;4;8;10;6;7;8;8;8;8;8;9;9;7;7;21;6;14;9;10;17;15;27;13;14;13;6;16;12;46;14;11;6;10;7;25;0;12;9;10;6;11;4;3;8;10;6;15;7;8;7;8;6;9;6;8;6;8;7;7;7;7;7;5;8;16;21;21;12;14;9;12;24;14;16;24;22;23;18;22;24;25;17;14;9;15;10;10;16;18;26;21;29;30;22;23;22;27;6;6;7;7;5;5;6;10;7;6;8;7;13;8;21;11;8;6;15;11;15;16;7;8;8;19;13;10;15;3;8;11;10;19;18;13;16;13;8;16;15;20;8;11;12;4;12;13;9;11;20;14;10;16;2;16;18;18;5;10;12;19;5;8;33;17;9;11;5;6;14;1;9;33;26;25;2;26;52;10;9;8;0;12;9;24;12;10;5;10;4;3;7;10;6;8;8;7;12;15;13;17;25;11;23;14;21;14;10;17;16;19;29;7;5;13;10;12;11;10;8;8;10;8;7;9;9;10;7;8;8;9;14;10;8;20;16;11;12;12;1;6;8;22;9;19;17;6;10;21;10;21;10;6;4;8;8;1;7;10;9;24;10;14;8;4;4;19;14;2;18;3;9;15;8;10;25;9;12;22;14;11;15;2;7;17;18;4;12;15;8;7;23;20;18;10;14;11;5;8;5;8;13;17;4;9;3;0;1;18;31;10;13;22;11;9;20;25;8;25;20;4;8;17;16;5;16;20;19;8;16;24;12;7;12;12;23;13;1;3;8;6;11;9;13;7;3;11;26;39;22;2;13;8;12;30;16;10;17;4;19;4;9;23;28;26;22;32;9;2;4;22;30;45;32;13;5;33;20;44;30
+Tris(2-butoxyethyl) phosphate;3;6;0;3;4;5;7;6;6;7;6;2;3;8;8;8;5;7;7;8;4;2;10;6;4;10;8;12;12;21;7;10;14;3;12;10;26;5;5;6;10;6;19;1;15;13;14;14;15;5;3;7;7;7;8;5;7;7;9;10;9;7;6;5;7;6;7;9;9;8;7;9;7;11;17;11;10;5;8;23;13;13;18;17;19;16;16;17;16;4;13;8;20;12;10;6;10;14;17;11;21;12;16;13;20;6;5;2;4;3;3;4;6;6;6;8;8;13;9;18;6;5;6;11;7;6;10;4;4;6;20;12;3;7;6;9;9;11;5;9;5;5;4;4;3;1;3;0;7;11;3;5;10;2;4;12;13;14;16;4;21;15;16;13;12;9;22;8;10;34;20;8;11;8;7;3;9;5;12;13;12;6;15;10;39;10;7;4;7;11;23;7;15;11;11;8;6;11;13;9;15;9;10;13;17;4;6;18;3;5;7;15;12;9;12;6;15;11;1;19;5;20;8;13;11;7;6;8;8;13;10;10;8;8;9;11;15;17;14;9;13;9;8;10;14;8;4;8;17;7;12;12;10;8;19;3;10;4;9;5;2;1;4;2;9;2;24;10;16;6;2;8;22;6;10;12;3;2;3;1;9;16;2;22;10;2;12;9;6;2;11;8;2;4;2;2;1;12;20;8;4;7;23;4;5;6;6;19;9;7;23;4;2;9;9;17;11;23;8;10;11;11;20;3;5;4;4;10;3;22;11;22;12;12;5;12;21;2;3;4;15;12;18;5;9;3;4;15;17;13;6;9;8;20;29;13;5;8;8;18;17;14;9;17;13;21;8;20;27;26;25;25;29;3;5;4;17;24;31;24;8;3;22;16;32;21
+Tris(2-chloroethyl) phosphate;8;8;4;2;5;7;3;2;2;7;18;10;5;4;5;6;8;8;9;11;6;5;17;6;7;7;10;16;9;17;10;11;18;6;12;10;31;5;4;4;19;12;12;8;16;12;12;11;14;10;8;10;12;9;9;9;13;8;12;16;14;15;11;10;16;6;8;12;11;14;7;11;9;8;9;9;9;5;3;15;9;9;13;9;11;6;15;18;23;21;9;9;16;10;9;8;10;15;14;14;19;15;18;18;17;5;7;6;5;4;7;6;6;9;6;11;8;13;7;18;9;8;7;14;7;15;18;11;13;9;33;17;9;20;8;8;9;15;14;13;12;16;14;7;13;6;10;4;10;14;7;13;10;15;13;16;8;9;9;7;13;32;20;19;27;23;27;17;21;39;32;13;5;11;12;2;5;14;7;4;4;7;13;9;10;42;13;2;9;15;26;16;19;7;13;8;6;8;12;6;10;8;9;16;21;4;17;18;7;16;27;16;17;18;11;13;18;17;5;14;14;23;5;10;16;11;9;16;11;14;14;14;13;7;17;16;18;19;16;15;11;11;8;13;16;6;4;6;20;14;10;10;9;10;21;5;12;14;11;3;5;6;5;1;10;6;34;16;13;5;4;7;10;13;7;10;2;6;10;7;12;22;5;19;13;7;6;7;2;7;8;8;3;9;7;3;3;19;13;11;13;7;8;5;2;3;10;12;9;12;11;6;0;4;10;14;8;11;8;18;9;9;14;11;15;12;11;8;8;18;8;16;5;5;8;4;18;4;4;11;15;18;12;1;2;11;11;12;9;13;11;5;16;16;20;20;5;14;7;13;23;9;11;18;9;14;10;10;22;21;34;18;20;9;2;2;25;15;26;22;9;3;21;18;32;27
+Tris(1-chloro-2-propyl) phosphate;7;4;3;7;9;8;5;6;6;7;11;9;4;3;7;5;3;4;4;4;5;6;11;8;8;10;4;14;16;16;8;12;15;5;18;4;21;11;4;4;11;7;7;5;13;12;11;12;14;5;2;12;12;18;10;6;10;9;13;14;8;10;9;9;11;7;7;9;12;9;7;8;12;17;11;10;8;5;5;10;8;8;10;7;11;8;10;12;17;17;5;6;12;7;7;12;14;11;7;10;24;10;14;17;16;7;8;6;7;5;6;9;6;10;8;10;9;17;6;18;13;8;10;14;9;14;18;8;12;8;23;8;4;8;7;9;8;9;14;12;9;11;5;4;9;5;10;5;5;9;3;6;10;10;3;15;9;8;5;4;11;22;10;15;21;17;25;14;17;25;30;12;4;13;16;6;4;17;9;6;5;3;18;8;7;13;34;1;8;12;22;7;8;3;9;5;4;10;10;8;11;10;9;15;19;6;9;19;12;9;18;14;17;12;12;14;16;18;6;13;13;16;10;9;11;10;8;13;10;7;9;9;9;8;10;9;18;21;14;9;13;10;10;11;8;1;2;4;13;10;10;10;8;10;10;8;9;4;9;3;3;6;3;3;8;3;22;11;13;4;3;5;13;10;4;9;3;4;6;10;10;17;4;12;11;11;10;9;1;8;11;12;5;6;9;5;1;21;17;13;9;9;8;7;6;5;8;5;8;5;6;4;0;1;10;14;8;7;11;18;10;15;16;10;15;8;13;7;10;10;5;11;13;12;7;10;21;5;6;5;14;21;7;3;3;11;9;10;7;12;14;11;16;17;16;15;5;11;5;19;23;11;12;11;8;9;9;11;16;20;20;16;19;4;3;2;24;11;20;15;9;5;16;14;21;19
+Tris(2-ethylhexyl) phosphate;0;2;0;0;0;1;0;1;1;1;0;0;0;3;3;2;2;2;2;2;0;0;1;2;0;2;1;0;0;3;0;1;4;0;2;0;1;3;0;0;0;1;0;0;3;3;3;3;3;0;1;1;1;1;3;1;1;1;0;1;0;2;1;1;1;1;1;1;1;1;0;0;1;2;3;1;1;1;0;2;2;1;4;4;1;1;3;2;2;1;1;0;4;1;1;1;2;2;0;2;1;0;3;2;1;2;1;0;0;0;0;0;0;2;2;2;2;3;2;4;1;2;1;1;2;1;2;2;3;1;4;1;0;1;1;1;0;2;0;0;0;0;0;0;0;0;0;0;1;3;0;0;0;0;0;0;0;0;0;0;0;4;4;3;3;3;5;2;2;5;4;2;0;2;2;0;3;1;0;0;0;1;0;0;4;2;1;6;0;1;2;1;2;1;1;1;1;1;2;0;3;1;2;2;3;0;0;2;0;0;2;2;2;2;1;1;1;0;0;3;1;1;0;3;4;3;2;2;3;3;1;1;2;2;1;2;1;2;1;2;2;0;0;2;3;1;1;3;3;0;1;1;2;1;0;0;1;1;0;2;1;0;1;0;1;0;5;1;2;0;2;0;1;0;3;0;1;0;1;0;2;1;1;3;0;0;1;2;1;1;0;2;0;1;0;0;0;3;3;0;1;0;4;0;0;0;3;3;1;2;1;0;1;2;0;0;1;3;1;1;1;2;1;0;1;2;0;4;0;1;1;2;0;0;1;0;2;0;0;1;3;5;3;1;2;1;2;4;4;3;2;2;1;1;2;3;0;0;3;5;3;3;2;5;2;3;2;6;6;5;2;3;5;0;0;0;2;3;0;0;0;0;0;1;5;3
+Triphenyl phosphate;6;8;5;7;6;6;6;5;5;12;8;7;7;5;7;7;6;7;8;9;7;6;14;5;8;11;11;10;8;14;9;10;17;9;17;13;22;7;2;11;7;12;17;2;9;7;9;8;9;6;4;8;6;9;10;9;5;4;6;7;7;6;5;5;6;4;4;5;6;5;5;8;12;10;11;10;6;2;6;17;12;10;15;12;15;12;14;16;17;16;9;6;10;8;9;9;9;13;12;9;21;14;17;13;18;10;12;12;9;11;13;10;15;11;12;10;11;18;10;22;8;10;11;9;7;11;10;8;11;5;17;13;5;7;5;11;7;9;7;8;7;11;6;6;5;6;5;3;5;6;2;5;6;7;6;11;13;14;16;7;22;17;8;17;14;13;20;10;12;23;26;12;11;12;7;7;1;5;17;15;16;14;14;12;7;9;8;0;39;13;30;14;14;12;14;6;6;16;13;12;14;13;14;13;17;7;9;27;6;18;17;27;15;12;15;14;24;13;6;10;12;14;11;10;14;9;9;9;6;7;5;7;4;4;9;6;21;22;22;4;13;9;7;13;14;1;7;6;14;7;13;13;7;18;19;6;9;10;6;5;3;4;1;4;11;3;19;9;14;4;5;5;16;9;8;11;5;4;8;3;9;19;3;21;10;3;7;19;0;4;20;13;3;13;4;4;4;16;20;14;6;2;15;4;5;8;9;12;11;5;11;3;0;3;6;13;11;14;13;11;9;11;15;7;10;5;9;10;1;11;6;18;10;7;6;11;25;6;11;12;17;23;16;11;10;5;5;9;10;7;13;11;13;16;26;18;5;15;8;15;29;11;12;10;7;10;6;12;18;22;22;19;25;11;1;2;17;22;27;21;13;3;20;18;26;23
+1,2-Benzanthraquinone;8;6;8;16;17;15;12;17;16;14;20;12;12;9;14;12;7;7;8;8;5;5;20;6;10;13;11;13;8;23;6;9;21;13;22;16;32;8;2;10;12;17;19;0;19;14;15;16;15;6;7;20;19;20;12;14;13;11;11;11;13;18;16;14;13;12;11;11;12;11;9;9;6;11;8;8;4;0;4;20;5;6;9;9;12;8;9;12;19;16;6;6;11;7;6;6;3;11;10;14;23;13;11;11;16;11;10;9;8;9;8;11;7;9;10;13;11;19;17;24;8;9;10;18;8;9;10;4;4;0;24;17;11;15;11;10;9;9;18;19;11;15;19;7;15;5;17;2;9;12;10;13;9;12;18;17;13;13;10;8;12;20;14;13;18;16;24;17;19;26;28;19;11;20;19;4;3;6;12;10;10;1;18;9;11;15;12;1;13;44;38;19;31;17;23;11;9;18;20;15;15;15;15;17;21;7;18;25;7;17;16;15;22;14;13;11;21;20;3;9;17;20;8;15;17;16;15;21;18;13;12;12;13;11;10;14;18;20;15;14;17;12;7;12;21;7;5;8;22;10;18;18;7;16;28;4;10;15;3;7;6;5;6;1;9;5;28;11;22;6;3;6;24;8;12;16;5;8;7;7;10;27;6;19;10;9;12;15;2;4;12;13;4;14;4;5;5;22;17;10;8;8;16;3;4;6;11;14;9;8;17;3;4;7;11;15;13;14;11;18;9;11;18;11;16;8;9;8;4;14;11;17;10;9;8;20;22;7;13;11;18;22;16;3;2;9;9;11;12;13;12;12;13;16;27;20;4;18;10;23;28;10;16;16;12;9;12;11;19;20;28;17;25;12;4;4;26;17;25;20;11;2;20;14;37;35
+1,4-Chrysenequinone;14;9;11;16;18;17;13;17;16;19;30;16;11;11;17;17;9;11;12;12;14;12;36;15;19;32;17;36;26;56;17;31;50;18;48;23;66;17;7;25;31;28;51;2;37;26;26;27;29;22;20;29;28;35;30;24;29;21;32;40;30;33;33;25;32;23;20;29;33;30;19;27;30;35;31;27;21;13;16;41;33;26;35;31;35;27;31;36;48;39;25;16;26;18;18;25;22;42;34;44;57;35;43;39;45;29;29;28;19;24;19;25;25;25;26;28;21;38;29;61;29;23;23;45;23;25;30;16;15;10;53;33;13;34;15;34;22;25;32;33;20;31;25;13;19;14;24;6;17;27;10;19;21;25;25;44;30;27;24;15;30;62;36;37;53;38;70;37;41;67;83;33;28;34;35;17;7;17;36;29;30;12;36;24;23;26;22;2;30;38;137;25;37;24;38;14;11;28;35;21;34;24;28;29;40;13;32;56;22;48;40;38;46;24;28;28;43;57;5;16;33;40;24;24;28;31;30;37;32;33;32;34;31;23;29;38;49;58;46;33;36;29;20;29;46;11;7;19;50;20;34;34;21;31;54;10;30;21;13;11;19;12;6;9;13;13;70;30;44;14;12;10;42;23;20;33;8;11;15;13;25;55;19;40;25;25;20;28;5;13;41;26;9;23;21;8;10;57;41;36;27;22;29;8;7;13;21;30;22;18;25;9;6;9;24;31;20;28;39;35;20;34;38;17;34;26;24;26;18;30;20;32;26;21;17;35;72;15;20;28;35;42;28;10;14;17;20;25;25;39;24;27;33;46;61;41;10;33;19;42;59;37;31;41;20;37;20;29;50;65;68;53;68;17;6;10;56;42;68;51;21;8;53;37;84;72
+Hydroxychrysene;10;8;9;8;9;6;7;7;7;13;21;15;21;8;12;12;9;9;11;11;9;9;15;9;12;9;10;14;7;14;11;11;19;17;11;13;29;4;3;9;15;15;19;2;11;7;10;10;9;12;11;11;15;14;9;11;14;8;13;7;18;15;12;10;14;7;7;11;12;11;7;13;7;11;6;7;7;6;0;8;7;6;10;10;10;8;4;9;14;14;3;3;10;3;3;11;9;8;7;11;20;14;15;13;13;15;13;12;9;10;10;14;12;8;10;12;7;9;6;17;10;7;6;17;9;5;5;11;10;9;19;13;13;17;9;7;8;6;17;13;15;16;17;9;14;6;9;5;8;13;8;14;11;12;13;23;5;6;7;5;9;20;12;17;23;16;21;18;19;21;19;15;5;7;12;6;2;2;11;9;10;3;15;12;7;16;7;1;14;19;25;40;16;11;16;9;9;14;15;11;11;11;12;26;17;7;17;21;5;21;19;19;17;14;11;12;22;23;1;7;19;16;13;9;16;16;13;19;12;19;19;20;15;8;18;16;18;16;19;16;8;13;11;15;12;3;6;4;19;11;9;9;3;12;23;10;11;13;6;3;2;5;4;0;9;5;22;9;11;3;2;4;12;8;4;7;3;5;11;5;5;17;2;19;8;8;3;11;0;4;14;12;6;14;5;6;5;18;14;7;4;3;14;2;6;8;8;5;6;6;15;0;0;1;12;10;8;11;10;17;8;16;13;5;15;9;8;9;6;9;6;16;10;7;9;10;19;8;10;18;12;16;12;1;3;6;7;10;4;10;6;6;9;18;19;23;4;14;6;16;17;4;12;4;3;5;5;4;11;18;19;12;13;10;1;1;13;9;23;23;9;4;20;17;30;29
+1-Nitronaphthalene;8;8;10;12;14;15;10;10;9;15;27;16;6;7;11;12;9;10;11;11;6;6;19;9;8;16;18;32;27;28;17;18;28;14;31;19;46;22;10;14;21;20;20;1;19;18;18;16;18;11;10;17;11;15;16;17;19;17;20;19;23;24;20;17;21;18;16;18;22;20;17;21;13;20;29;24;8;2;4;21;17;17;16;15;21;15;22;19;25;19;11;12;22;12;13;13;11;22;20;24;36;16;16;19;20;16;15;15;13;16;13;19;14;16;14;12;12;25;20;35;15;13;10;23;8;10;12;9;10;7;26;32;13;31;12;32;26;25;30;31;21;37;24;12;25;13;23;5;19;28;10;17;22;21;25;40;23;25;28;11;35;30;18;24;26;18;35;21;27;31;35;21;10;18;15;12;7;11;11;11;12;1;21;10;15;19;8;2;14;31;37;16;49;18;34;13;12;23;31;19;27;23;23;24;24;10;35;23;17;33;18;20;26;21;12;23;22;35;6;14;18;23;7;19;22;20;19;26;20;25;22;21;20;17;20;23;31;34;30;23;29;23;19;14;23;11;7;13;30;20;9;9;18;10;31;10;20;19;11;12;20;12;7;5;19;9;31;25;29;9;8;8;31;21;18;20;8;11;8;17;17;28;20;29;26;12;13;14;1;6;17;13;6;20;17;7;10;38;27;23;34;12;25;5;8;13;14;26;24;9;24;13;6;10;20;30;18;25;13;18;11;9;30;16;18;21;16;11;9;28;17;28;13;13;11;13;28;12;16;17;24;25;24;5;5;11;15;17;20;19;9;14;14;24;42;20;3;13;4;18;24;23;23;25;14;24;12;15;32;37;27;24;35;17;6;8;23;24;37;43;18;11;42;35;44;44
+Hydroxyfluoren-9-one;3;4;8;9;9;8;9;5;5;7;10;2;7;5;8;8;6;5;6;6;5;5;8;7;4;8;10;11;9;15;4;8;15;7;11;9;23;2;2;9;9;11;12;1;15;10;10;11;10;6;5;12;8;9;10;11;10;7;10;10;11;10;10;8;11;7;9;11;10;10;9;9;2;6;11;5;3;1;4;17;9;6;12;11;9;5;12;12;12;10;7;4;8;6;6;5;6;8;13;15;15;9;7;12;11;10;9;5;5;8;7;9;8;7;11;11;10;11;11;15;4;8;8;11;6;5;6;4;2;2;14;16;9;15;6;6;11;11;13;12;9;12;14;9;9;5;5;2;8;13;9;11;9;11;13;16;12;12;12;5;14;16;12;9;14;7;21;11;13;19;21;14;9;13;11;4;4;4;9;10;9;6;9;5;11;7;3;1;12;17;24;11;18;25;16;11;11;12;16;11;16;13;15;9;16;5;12;17;3;13;15;7;19;8;8;8;17;9;0;6;14;7;6;14;10;11;10;12;10;10;10;10;10;9;6;12;17;18;17;12;14;8;7;9;10;9;3;11;16;9;13;12;8;6;17;5;10;13;5;10;2;6;5;3;3;4;22;13;18;8;4;4;16;7;9;10;5;5;5;1;6;17;2;16;7;4;4;15;1;3;10;11;2;5;2;2;5;13;17;9;3;1;13;3;5;7;9;13;2;5;13;0;2;5;5;10;4;14;8;8;13;13;15;5;8;6;5;9;3;15;10;15;4;1;6;12;15;3;13;12;17;17;16;5;7;3;7;12;10;11;6;9;8;16;16;16;0;9;8;15;20;11;7;16;8;13;5;11;18;20;15;13;21;10;3;4;13;10;14;19;10;3;21;14;22;18
+1,4-Naphthoquinone;14;11;10;17;17;16;12;11;9;18;19;12;12;9;13;17;11;11;13;14;6;9;20;12;11;16;14;24;24;27;12;18;27;20;31;17;41;18;9;12;14;17;21;0;17;13;15;16;15;11;10;14;12;15;16;14;14;12;14;20;18;14;13;11;15;14;12;12;16;14;10;13;17;22;26;23;7;3;7;22;22;19;18;17;24;17;21;22;28;18;14;10;18;13;13;13;10;21;22;26;35;16;17;20;24;17;14;11;16;15;13;18;16;14;19;19;19;28;24;39;16;18;18;24;12;17;14;13;11;10;29;30;13;27;9;29;23;23;26;30;18;27;23;15;22;10;22;3;16;19;10;19;16;17;21;29;27;26;24;15;31;31;24;23;23;20;37;21;25;31;39;20;12;18;14;10;4;11;14;12;12;4;21;10;11;13;9;1;14;23;38;16;34;16;51;16;13;29;32;23;29;24;25;24;23;12;29;29;13;30;16;16;31;23;19;21;20;33;8;9;19;20;14;20;21;16;16;16;14;19;17;17;15;12;15;18;23;31;25;18;29;18;14;11;25;8;4;9;28;11;11;11;11;7;34;8;16;21;8;12;17;8;7;8;11;10;34;21;27;7;3;6;28;16;14;15;6;13;7;11;20;31;17;27;20;11;10;15;0;5;16;17;4;17;18;9;7;34;25;22;25;13;17;4;10;14;11;20;21;14;18;12;2;5;19;24;13;18;17;19;11;12;33;12;19;22;13;13;6;19;13;20;14;15;9;14;27;15;15;16;24;23;23;6;12;6;8;14;14;17;6;11;12;22;39;25;2;14;3;20;31;24;16;23;14;21;10;17;28;33;22;26;35;13;5;8;20;23;34;37;13;5;39;30;44;37
+2-Methylnaphthalene;7;8;5;10;11;11;9;7;6;7;8;6;9;7;9;9;8;9;9;9;5;5;9;8;7;6;5;9;8;10;7;6;13;11;10;6;14;5;1;6;5;5;7;0;7;6;6;6;7;6;6;7;5;4;7;5;5;4;6;5;8;6;5;4;5;4;4;6;5;6;5;6;3;6;11;10;0;1;3;11;8;7;10;8;7;3;11;10;7;5;6;4;9;4;5;3;4;8;8;10;13;6;5;7;7;8;9;7;7;8;6;7;9;8;10;8;9;11;9;10;2;8;7;8;3;7;8;2;1;0;13;11;8;8;8;8;8;11;9;9;10;9;13;7;10;3;5;2;5;8;7;7;5;5;8;7;9;7;6;6;9;10;7;6;10;8;12;8;9;12;12;7;4;5;3;4;3;3;5;4;4;1;8;4;8;8;5;1;6;11;14;9;13;11;16;16;12;13;14;12;12;12;12;10;11;7;10;10;2;9;8;6;11;11;5;5;9;7;0;3;6;9;6;9;8;5;5;7;6;8;8;8;6;4;8;8;8;8;7;8;10;3;3;3;8;7;2;4;8;6;5;5;6;4;14;5;6;9;3;4;4;3;4;2;4;3;13;5;10;2;2;3;11;3;7;5;5;3;1;3;7;13;4;9;5;2;6;8;1;1;4;9;3;4;7;6;3;12;11;3;6;2;9;2;5;3;3;6;7;2;9;3;2;4;5;8;5;10;8;8;5;6;10;6;7;4;5;4;0;6;6;6;4;3;3;3;10;6;6;6;9;9;8;4;5;2;2;8;9;5;4;6;1;8;12;8;2;5;1;8;10;10;4;8;4;10;3;6;12;14;7;12;13;7;3;3;6;6;9;8;7;1;11;8;11;8
+1-Methylnaphthalene;7;9;6;10;12;9;8;8;7;8;7;5;10;8;10;10;9;10;10;10;6;6;9;9;7;5;6;7;7;9;6;5;11;12;9;7;12;5;1;3;5;4;6;0;6;5;5;5;5;6;6;6;4;3;4;4;4;3;5;4;7;5;4;3;4;3;3;5;4;5;4;5;2;5;9;8;0;0;3;9;6;6;9;7;7;3;11;9;7;3;6;4;8;4;5;2;3;6;7;8;12;5;3;6;5;6;7;6;5;5;4;5;6;6;9;7;7;9;8;8;2;6;5;6;0;4;6;0;0;0;12;10;9;7;7;7;8;10;8;6;9;8;12;8;9;2;4;2;3;6;7;7;4;5;9;7;8;6;6;5;7;8;3;6;7;5;10;7;9;9;10;6;4;4;2;4;2;2;5;4;4;1;7;3;6;6;4;1;6;9;11;9;12;11;13;12;13;11;12;13;12;12;12;10;11;8;10;8;2;6;6;5;9;9;3;5;8;7;0;3;6;7;5;8;6;4;4;5;4;6;7;7;4;3;7;7;5;6;5;7;8;3;3;3;6;8;2;3;8;6;5;5;7;4;12;4;6;9;3;4;4;2;3;2;4;3;11;4;8;2;2;3;12;3;7;4;5;3;1;2;5;12;4;9;5;1;6;9;1;1;4;8;3;3;5;6;3;10;11;3;6;2;7;2;5;3;3;6;7;1;9;3;1;3;5;8;4;8;6;7;4;5;9;6;5;4;5;4;0;4;5;6;3;2;3;2;10;6;7;7;9;9;8;4;4;1;1;8;9;4;3;4;2;7;11;9;1;4;1;8;9;8;4;8;3;7;3;5;9;13;6;11;10;8;3;3;4;5;7;7;6;1;10;7;9;8
+2,6-Dimethylnaphthalene;13;10;9;14;15;12;12;10;9;18;19;7;11;9;13;13;9;10;12;12;9;10;15;10;14;16;15;15;19;24;14;12;19;17;22;16;32;17;3;10;9;12;16;0;12;11;12;11;12;8;7;10;9;14;12;10;10;7;7;17;9;13;11;10;10;9;8;8;8;8;7;7;14;17;23;23;6;3;8;22;20;18;19;17;22;16;24;21;23;11;16;7;15;14;17;9;10;22;21;21;32;14;16;14;18;10;13;10;13;12;9;12;13;12;11;10;11;20;14;26;7;11;11;19;8;10;11;4;4;3;21;25;14;20;9;21;16;17;20;21;16;23;19;12;20;6;11;3;9;13;6;14;12;13;19;21;25;20;19;11;23;22;14;11;14;11;22;12;13;21;20;17;11;13;13;13;3;8;12;9;8;6;19;7;11;8;10;1;16;18;28;14;23;12;29;13;11;36;27;23;28;23;28;23;18;11;24;19;9;20;17;17;21;17;9;14;21;19;2;4;11;14;8;19;16;12;12;13;11;10;9;9;9;7;8;11;18;21;19;10;18;11;10;7;15;9;5;6;19;9;9;9;9;6;27;7;13;12;9;7;11;7;3;4;9;6;20;11;20;5;6;6;27;10;13;15;7;7;6;8;14;25;11;21;16;6;14;15;1;4;15;9;5;10;10;9;6;25;27;9;18;8;17;4;10;9;7;17;17;6;16;6;2;5;12;17;14;17;15;14;13;12;20;9;13;12;8;15;4;16;14;20;13;11;9;10;27;8;11;13;14;16;19;8;10;6;5;19;18;11;9;12;11;22;26;18;1;14;4;15;22;18;14;15;7;20;11;15;26;29;20;28;29;9;4;5;14;21;26;24;18;5;27;21;29;26
+1,3-Dimethylnaphthalene;13;12;10;11;12;13;12;9;9;18;20;12;10;9;12;12;10;12;14;14;10;11;15;12;15;14;15;25;22;27;16;18;21;16;21;16;42;17;6;14;15;17;22;0;13;9;9;9;9;11;10;11;9;17;15;15;14;10;13;20;16;16;17;14;14;10;11;12;14;14;10;13;16;23;33;26;11;5;8;24;25;21;24;20;22;14;19;24;22;11;14;6;15;14;16;16;15;24;23;24;30;13;18;22;22;16;19;16;19;15;13;18;13;14;16;17;15;23;18;33;12;15;14;26;16;10;10;6;9;5;22;28;15;27;12;22;22;24;28;28;18;31;22;14;22;7;16;5;13;21;8;15;15;18;22;31;24;25;25;14;32;30;21;22;24;19;31;20;22;27;30;23;14;17;18;13;3;7;13;10;9;4;19;10;13;12;10;2;13;20;35;15;31;16;32;14;12;27;44;23;30;21;25;24;15;9;29;27;9;22;22;19;29;23;14;13;23;21;3;7;15;13;11;19;20;18;17;18;14;17;16;17;14;12;14;17;24;24;25;17;16;17;17;12;15;8;8;14;28;15;11;11;10;9;33;11;14;16;11;12;8;9;6;3;11;8;32;16;23;11;5;8;25;16;16;22;7;10;7;12;16;23;9;27;17;10;11;14;2;6;12;14;4;15;9;9;8;34;26;12;15;8;22;8;7;11;12;18;14;9;20;5;3;9;14;18;13;26;11;14;12;17;25;9;14;18;10;20;7;23;18;25;12;10;8;11;26;8;14;16;20;19;26;8;14;5;7;19;19;13;10;15;16;20;31;19;1;13;6;17;21;19;18;24;10;24;11;18;27;36;19;30;35;8;6;8;20;22;32;31;17;9;32;25;38;33
+1,4-Dimethylnaphthalene;11;9;9;12;14;11;11;10;9;17;15;7;10;7;12;13;8;9;11;11;7;9;13;10;11;10;12;12;12;16;12;8;15;16;16;11;25;15;5;6;9;10;14;0;11;10;10;10;10;9;9;8;7;9;5;9;9;6;7;12;8;12;11;9;9;8;7;6;7;7;7;7;10;14;18;18;4;1;8;17;16;16;14;13;17;11;17;18;16;6;13;7;12;13;14;6;6;15;17;16;23;10;11;13;15;7;10;9;11;7;6;9;8;6;9;11;10;17;14;19;5;9;9;14;2;7;7;2;2;2;17;19;12;15;7;16;12;15;16;17;13;17;19;11;17;5;9;3;7;10;7;10;8;9;16;14;18;14;15;9;19;18;10;8;11;9;16;11;12;16;17;13;8;11;9;10;2;6;11;9;8;4;12;6;9;6;8;0;12;15;21;11;19;11;23;12;13;23;23;25;23;21;24;19;14;9;18;13;5;13;12;13;18;16;7;10;15;14;2;3;8;11;6;16;14;11;11;11;9;7;8;8;7;6;7;8;13;15;12;8;11;5;7;3;8;5;3;5;15;7;9;9;7;5;21;6;9;12;6;8;4;4;2;4;8;6;16;8;16;5;2;5;23;4;10;14;6;6;5;5;11;20;4;15;12;2;11;11;1;3;11;6;4;7;5;8;4;17;23;8;12;5;12;4;8;10;5;13;12;5;12;4;1;5;8;13;12;13;8;10;11;10;14;8;8;7;7;11;3;12;13;14;8;6;6;8;18;6;11;11;11;12;16;7;9;4;3;16;14;9;6;7;8;16;16;17;1;14;1;10;15;14;13;14;6;15;9;12;16;22;12;20;22;9;5;5;11;14;17;17;13;4;19;15;20;17
+1,5-Dimethylnaphthalene;12;10;9;12;14;13;13;10;10;19;19;8;10;9;14;14;9;10;12;12;8;10;17;11;15;15;18;22;22;29;13;16;23;17;24;13;39;20;6;7;10;14;20;0;13;10;10;11;11;9;9;9;9;16;11;12;9;7;9;20;9;12;11;10;9;8;8;9;8;9;8;8;14;21;29;25;8;4;9;23;24;21;21;19;22;13;23;25;24;10;17;10;15;15;16;11;11;24;21;20;32;12;19;22;24;10;16;12;14;9;8;12;10;11;12;14;14;23;17;28;9;15;14;19;11;12;12;7;10;6;21;31;13;22;10;24;23;25;24;22;16;29;20;15;21;6;12;4;11;17;7;15;16;15;18;26;26;23;23;13;31;26;15;15;17;13;25;15;16;23;25;21;15;16;16;14;5;10;14;11;10;6;19;8;15;10;11;3;14;15;34;11;27;16;29;12;12;28;30;23;42;22;31;23;19;11;28;21;9;21;19;19;30;23;11;17;20;23;3;6;16;16;11;22;20;14;14;11;9;11;10;10;8;7;9;12;25;25;22;11;20;13;13;9;16;10;5;11;26;11;13;12;12;9;31;8;15;16;9;11;8;6;5;5;8;7;27;14;20;7;5;7;31;15;14;18;7;10;7;9;17;25;9;24;18;6;14;15;2;5;13;12;5;12;9;9;4;28;29;15;16;9;19;6;9;10;8;18;16;8;16;7;2;7;13;20;12;21;12;13;13;16;22;12;14;16;13;15;4;19;17;22;13;11;8;8;27;9;11;14;18;20;21;9;14;6;7;21;19;15;11;13;13;20;31;23;2;14;7;19;20;25;18;21;8;26;12;21;30;36;21;33;36;8;4;8;18;25;32;31;15;7;34;26;34;31
+1,2-Dimethylnaphthalene;12;9;10;12;13;12;11;9;8;17;16;5;9;9;12;13;9;10;12;13;8;8;15;10;11;14;14;16;14;19;15;9;17;17;16;14;30;15;6;7;10;11;14;1;12;12;12;11;11;8;8;9;9;10;7;9;9;7;7;13;9;13;12;10;9;8;7;6;7;6;6;7;12;17;18;18;7;2;7;22;16;19;16;14;20;15;21;19;19;9;13;7;13;15;14;9;10;18;18;19;27;14;13;14;14;6;10;9;9;6;5;8;6;5;9;9;7;16;12;23;6;9;9;14;6;10;8;2;2;2;19;20;13;17;8;16;14;15;18;21;15;20;19;13;20;8;12;3;9;10;6;13;9;10;17;18;17;14;14;11;17;21;9;6;11;9;21;9;10;21;19;13;10;11;10;8;3;8;12;10;9;4;13;8;9;8;10;1;13;15;24;11;23;13;24;12;12;23;21;21;22;32;24;22;17;11;20;17;9;19;14;12;20;17;7;13;17;16;3;3;8;12;6;15;17;13;11;13;10;9;9;9;7;6;9;7;16;18;13;7;14;8;8;7;11;7;4;5;20;8;10;10;5;5;23;7;10;12;5;7;7;6;3;6;10;5;20;10;19;5;2;5;24;6;11;13;7;5;6;7;13;25;7;16;15;5;11;13;1;3;13;11;4;10;8;8;8;19;22;12;14;7;14;4;9;11;5;13;12;5;13;4;2;4;11;13;13;14;11;11;10;14;18;10;10;9;4;14;6;14;14;16;9;7;7;9;22;7;11;13;15;14;16;7;9;5;4;18;18;9;9;11;8;20;21;19;1;15;2;11;19;18;13;13;6;17;8;11;22;24;15;21;24;10;4;4;12;14;21;21;14;3;20;17;23;21
+1,8-Dimethylnaphthalene;11;10;9;14;15;12;14;10;9;18;19;7;10;8;13;14;9;10;12;12;8;11;16;11;15;14;15;17;15;22;12;8;18;17;17;13;31;16;5;8;9;13;16;0;13;11;11;11;11;8;9;9;9;12;7;12;9;6;7;14;8;13;11;9;9;8;7;7;7;7;7;8;11;17;21;19;5;2;9;22;19;18;17;16;19;13;21;21;21;8;16;8;13;14;15;7;8;21;19;20;30;13;15;16;18;8;12;9;11;10;7;10;11;8;11;12;11;21;16;24;5;12;12;19;5;8;8;4;4;3;19;23;13;18;10;19;15;17;19;20;16;22;19;12;19;5;11;3;9;13;7;12;11;12;17;18;22;19;18;12;22;21;14;10;13;11;20;13;14;20;21;16;11;14;12;12;3;7;13;10;9;5;16;7;10;9;9;2;14;15;28;12;23;15;25;12;12;28;25;24;31;24;34;22;17;11;24;18;6;15;16;16;21;18;7;11;18;17;2;4;11;12;7;20;19;14;14;12;10;8;8;8;7;6;8;9;18;20;17;8;14;8;9;6;10;8;4;7;21;8;11;10;8;6;26;6;13;12;8;9;6;6;3;5;8;6;21;11;18;6;5;5;29;9;14;16;7;8;7;6;13;24;6;18;15;3;14;13;1;4;13;9;5;8;5;9;5;21;25;11;14;7;16;4;10;10;7;16;13;7;15;5;3;7;10;14;13;18;12;12;12;13;17;10;11;11;9;14;3;14;14;17;10;8;7;10;23;7;12;13;14;17;19;8;11;5;6;18;17;10;8;12;8;20;23;20;1;15;5;15;19;19;14;16;6;19;10;16;23;29;18;25;30;9;4;6;14;18;23;22;15;5;25;19;26;23
+7,12-Dimethylbenz[a]anthracene;16;16;10;9;11;7;9;10;10;20;22;14;15;15;16;21;14;16;19;19;11;12;19;14;16;12;9;12;11;19;11;8;20;16;13;13;25;13;10;7;14;10;20;3;13;9;9;9;9;7;6;9;11;13;6;6;10;9;10;13;17;12;9;8;12;7;9;9;12;9;7;13;5;12;6;6;7;1;2;12;5;4;7;6;11;9;9;13;14;17;3;4;14;3;4;7;7;8;10;13;21;12;15;15;19;10;14;9;15;8;11;14;7;8;9;12;9;17;10;20;9;9;11;23;8;8;8;6;6;4;19;13;10;19;8;6;11;8;16;17;14;15;18;12;16;5;8;4;7;13;6;11;8;11;10;19;11;11;14;7;15;21;9;12;10;7;20;10;14;23;21;14;12;10;14;7;5;10;10;13;9;7;18;12;13;16;15;2;13;17;29;26;24;9;24;10;10;23;24;19;23;22;22;56;20;12;20;23;6;15;19;18;23;20;12;13;20;15;2;6;18;18;8;10;16;11;9;14;11;18;16;16;11;7;17;14;20;18;17;14;15;12;9;9;15;5;6;8;20;8;13;13;8;12;26;6;7;12;2;5;5;5;3;1;13;3;26;8;15;8;3;7;16;7;10;11;6;4;5;2;10;19;5;23;14;6;7;11;3;7;15;9;5;13;5;8;7;22;17;13;10;3;20;4;8;9;13;11;10;9;17;4;4;5;10;13;11;17;6;13;6;11;19;9;11;15;5;6;2;17;11;19;8;4;7;11;26;8;9;9;17;17;20;2;2;6;8;11;9;7;7;10;11;11;33;21;3;11;3;14;21;12;13;16;7;14;6;12;17;27;26;19;24;8;4;4;14;18;34;28;11;3;21;25;42;32
+2,4-D butyl ester;9;11;6;15;16;14;11;12;11;12;11;9;9;12;13;15;9;11;11;11;5;7;19;10;20;12;11;19;20;30;10;14;24;12;38;12;36;11;4;19;27;32;19;6;50;44;44;44;46;18;16;23;24;21;20;27;37;29;29;31;30;39;36;33;39;29;32;32;39;35;25;29;11;28;22;11;10;4;8;25;13;12;19;12;17;12;19;20;26;33;13;17;28;13;16;12;17;22;25;28;36;23;27;25;22;27;31;21;19;14;17;15;12;19;27;20;18;32;18;27;12;10;10;19;5;21;22;11;11;14;43;13;8;14;10;22;18;22;12;14;9;11;10;7;7;4;11;5;6;8;6;9;18;11;10;26;24;21;24;7;26;49;30;35;44;34;54;28;35;62;58;25;9;17;19;5;9;19;20;19;16;11;19;15;17;21;19;3;17;21;40;17;24;16;23;11;11;18;15;14;19;17;17;20;71;4;13;33;11;27;36;38;32;17;9;17;27;36;5;25;21;29;16;24;28;33;29;41;39;33;29;30;37;34;26;36;29;40;37;35;30;25;18;24;18;9;10;13;30;14;25;25;19;17;21;9;15;12;14;12;6;5;4;7;18;4;47;25;27;13;6;11;32;21;13;17;6;5;13;6;18;40;6;30;23;14;18;25;3;13;29;27;7;13;21;5;8;33;27;20;20;10;23;7;6;14;21;32;18;14;20;8;2;1;14;26;13;24;16;28;15;26;35;13;25;19;17;21;19;29;13;24;9;7;13;12;37;7;17;18;25;47;22;9;4;25;21;19;26;25;15;11;23;37;34;44;8;22;13;37;44;29;27;33;23;29;17;29;35;47;50;33;43;9;3;3;43;28;46;38;10;6;47;28;56;47
+Chlorferone;8;6;7;7;8;6;7;6;6;11;8;6;7;6;8;7;6;6;7;7;5;6;10;6;7;2;7;7;6;10;10;7;11;11;10;11;15;8;2;3;5;6;15;0;0;2;2;2;2;6;4;4;2;5;8;5;5;4;4;4;6;5;4;4;5;4;4;4;4;4;3;5;5;7;2;3;2;2;5;11;7;8;11;9;10;10;10;9;10;1;8;0;5;8;9;5;5;9;10;11;11;4;6;5;8;5;5;5;5;5;5;5;5;6;6;5;5;9;6;10;5;6;6;6;2;3;2;0;0;0;5;8;6;10;4;2;5;2;11;9;11;12;12;7;13;8;6;2;6;9;5;10;5;4;8;10;7;5;6;5;10;6;3;4;7;2;4;5;6;11;4;6;8;1;3;6;1;3;12;10;9;2;10;13;4;4;6;0;7;7;13;7;10;5;12;7;8;11;9;9;11;11;11;12;4;18;13;9;4;7;8;8;11;10;8;6;12;11;0;1;9;5;7;5;5;5;5;5;4;5;6;6;5;4;6;5;8;7;8;5;5;3;2;5;6;1;1;5;11;1;6;6;1;4;14;3;7;9;3;4;2;5;1;2;4;4;9;6;5;4;3;2;11;2;7;7;4;3;4;2;4;13;2;12;6;4;2;8;1;2;7;5;4;3;5;8;7;7;9;9;2;2;8;3;10;5;7;5;3;3;9;1;0;1;6;9;7;9;6;3;3;12;9;7;6;11;1;4;4;9;7;11;4;4;1;5;12;3;7;7;12;8;10;3;5;2;1;5;3;4;0;2;3;11;11;5;0;6;3;4;13;6;5;1;1;8;2;7;8;12;7;9;13;7;1;2;6;14;17;14;7;1;11;11;15;13
+Carbofuran phenol;9;6;8;5;7;10;6;5;5;12;26;14;8;4;7;6;6;6;7;7;7;7;17;7;14;19;14;36;24;31;19;21;23;13;23;19;42;23;11;16;19;18;17;1;14;13;14;12;14;12;8;15;7;13;17;14;19;15;19;17;17;20;18;17;21;16;14;18;16;18;11;17;26;33;25;29;18;17;5;18;24;23;22;19;27;14;17;23;21;16;9;7;16;9;13;29;24;25;18;22;33;19;21;20;26;14;14;12;10;12;12;15;16;14;14;11;5;14;9;31;14;9;5;22;13;16;13;12;14;12;25;31;15;32;11;21;27;25;32;26;23;32;25;13;26;18;26;8;20;30;10;21;27;25;25;39;24;23;23;12;25;26;19;20;23;17;31;17;21;30;33;18;6;16;13;17;6;10;18;14;13;4;26;17;6;17;9;0;9;18;32;17;35;12;29;10;10;24;29;18;28;20;24;20;13;13;45;26;19;30;22;14;32;31;20;22;33;37;5;8;23;17;19;15;14;16;14;22;16;16;18;18;20;15;16;19;26;29;29;19;25;29;20;23;18;8;7;7;30;15;8;8;12;7;32;14;31;16;14;8;17;12;5;6;9;12;34;23;21;11;7;7;20;32;11;22;7;14;22;17;14;30;18;34;22;17;3;11;1;11;21;14;8;22;19;9;12;32;19;29;21;27;22;5;12;15;14;8;18;6;18;12;0;3;31;30;6;20;26;16;18;16;29;14;32;23;9;17;23;25;19;27;25;25;12;10;28;19;16;21;24;17;24;1;3;10;11;10;10;15;7;11;15;22;37;15;7;10;6;13;23;18;15;21;8;20;9;13;26;26;22;23;29;15;6;9;21;16;26;33;18;12;36;26;45;44
+Diazinone;10;12;8;10;11;13;11;8;7;15;19;10;10;8;11;11;11;13;13;14;10;10;31;14;22;18;17;32;26;37;19;23;31;14;33;19;56;15;11;21;21;24;31;3;30;25;29;27;27;12;8;21;27;25;22;21;21;19;25;25;23;20;21;18;26;18;20;22;21;22;19;22;27;34;30;23;17;16;14;37;24;23;32;30;27;21;23;33;42;25;16;13;23;17;19;25;28;30;24;34;52;26;30;31;37;12;11;9;9;16;9;11;18;12;12;11;11;15;12;40;16;11;10;34;20;24;22;10;18;9;43;27;9;30;9;17;23;23;25;22;16;30;15;8;17;13;17;6;17;24;9;14;24;19;19;38;23;20;22;6;28;45;30;29;42;32;52;28;32;60;62;20;23;25;27;16;5;15;34;25;26;12;36;25;18;18;19;2;27;25;56;21;23;17;29;10;8;19;27;13;21;17;18;23;33;9;26;88;19;36;35;42;39;16;21;21;49;52;8;13;29;32;19;17;22;23;22;28;22;22;24;23;24;19;17;25;31;37;34;23;31;29;18;29;27;5;8;19;41;21;30;28;22;24;37;11;32;21;16;8;13;14;7;5;16;11;53;30;32;18;8;9;36;25;12;29;6;13;18;14;22;51;13;33;15;18;13;19;8;10;30;17;6;25;23;6;9;54;32;29;23;20;28;5;9;10;20;32;19;9;23;4;5;9;24;26;13;28;32;31;19;34;36;9;42;27;23;23;26;25;14;31;23;20;14;26;52;15;16;21;27;41;24;5;8;22;22;14;22;25;19;19;26;47;48;39;9;25;15;45;48;29;27;24;14;36;11;32;46;53;58;43;55;12;4;5;53;26;50;57;20;8;46;30;68;56
+Dimethachlor;4;1;5;10;10;5;2;4;4;5;4;1;5;2;4;2;2;2;2;3;0;1;7;1;10;10;7;15;17;19;12;17;14;4;13;8;28;14;7;3;8;7;13;1;5;6;5;8;7;6;3;8;5;8;10;5;5;5;5;5;5;7;5;6;6;5;5;4;7;4;4;4;16;19;14;13;6;7;2;9;12;12;14;14;21;15;13;14;17;11;8;5;7;6;6;14;14;13;10;13;23;11;15;14;21;3;3;3;2;3;2;3;5;7;6;3;5;16;5;21;13;10;6;14;9;11;9;7;9;6;12;18;8;15;3;16;18;17;19;17;7;23;15;8;19;11;13;4;5;7;4;11;16;13;13;23;10;10;10;5;13;19;7;8;12;8;21;7;8;22;27;6;8;8;8;10;1;8;17;12;13;1;15;11;3;7;12;0;6;7;22;5;17;3;13;2;2;9;9;5;9;9;6;6;11;4;19;19;30;24;16;10;22;12;15;21;9;27;5;5;16;22;7;6;5;6;5;8;6;7;5;6;5;5;8;5;16;16;11;5;16;17;14;13;14;4;2;2;15;9;3;3;8;8;20;6;18;10;6;3;15;6;1;4;6;9;14;14;15;0;4;1;16;17;3;7;0;10;10;13;8;16;16;13;12;16;6;3;1;6;18;7;2;16;19;2;5;26;14;22;18;17;1;6;6;8;4;9;15;0;4;10;2;4;20;20;6;3;11;13;8;8;19;8;17;18;7;7;15;12;12;11;18;19;9;10;19;12;12;18;12;10;10;2;2;3;2;4;3;6;7;8;14;19;27;13;1;7;4;18;23;12;12;8;3;10;3;7;18;16;15;10;17;10;1;4;18;19;29;26;11;9;25;19;29;28
+Alachlor;10;8;13;6;6;6;4;5;3;12;15;13;9;8;8;10;9;9;10;10;8;8;24;10;13;18;15;26;30;30;16;22;29;11;26;14;55;19;9;18;19;18;35;2;23;19;19;21;18;14;8;12;24;19;20;11;18;12;17;12;17;18;18;14;19;13;13;15;16;14;9;16;20;22;25;29;13;8;6;26;19;18;21;16;36;21;24;27;33;32;14;8;16;12;13;20;15;23;21;23;42;19;23;26;29;13;14;17;14;12;12;17;14;10;12;9;7;19;9;41;21;10;7;26;13;13;13;11;11;10;25;34;10;26;11;33;35;32;25;28;14;33;20;7;23;14;22;8;11;18;6;16;24;21;20;46;27;27;29;13;32;34;16;20;30;20;42;21;24;48;48;15;10;16;14;9;3;8;21;21;21;7;29;23;5;16;9;0;18;17;48;21;33;13;30;9;6;20;22;13;21;19;15;15;27;7;30;36;24;69;36;22;36;23;27;34;37;60;9;12;24;35;10;14;26;16;13;22;13;14;16;16;18;12;16;14;32;38;34;14;36;23;17;27;27;9;9;17;32;16;12;12;16;19;41;10;26;13;4;7;22;8;1;6;12;7;41;19;27;6;8;6;26;26;13;16;5;8;13;15;17;35;23;20;32;23;13;16;2;11;34;19;6;29;24;7;7;58;44;41;41;24;17;5;6;12;16;29;31;9;14;16;2;4;32;34;15;20;25;23;14;29;37;13;32;29;8;12;19;22;19;21;23;23;17;18;41;18;21;21;18;21;20;5;6;18;15;23;16;20;18;10;23;32;59;29;4;26;7;24;40;28;27;20;8;24;6;16;42;39;46;30;41;14;5;9;30;41;57;49;19;9;47;39;62;60
+Chlorpyrifos;13;10;8;9;9;10;7;7;6;12;13;10;9;10;8;11;7;9;10;10;8;11;24;11;23;7;11;22;17;35;18;18;20;14;35;14;51;8;2;27;39;22;33;25;34;30;32;32;33;25;20;22;19;20;19;16;29;23;32;45;44;25;21;19;32;22;22;36;37;36;25;39;18;24;14;18;14;8;8;17;15;13;11;9;10;9;20;21;32;56;9;15;25;15;17;21;23;24;23;32;41;20;30;32;32;33;37;34;26;28;26;28;23;28;27;28;23;46;19;44;33;14;21;30;13;42;43;11;19;13;65;25;4;24;9;22;11;17;23;20;16;20;14;8;15;10;14;5;10;17;5;13;9;16;12;29;12;12;13;8;20;73;46;54;70;65;80;53;59;93;92;19;10;5;19;4;5;26;21;17;17;0;10;14;7;27;18;2;17;16;40;19;18;15;16;8;6;17;22;12;19;14;16;19;36;8;22;35;16;36;107;26;32;24;16;22;41;38;11;15;19;28;33;17;19;24;22;32;25;45;45;46;37;30;54;41;68;64;60;39;16;14;9;30;19;6;11;16;33;19;15;15;13;23;22;9;4;19;10;4;8;8;4;2;12;6;47;33;21;5;7;5;23;17;10;12;3;3;8;11;14;24;8;27;21;15;12;16;4;7;40;25;6;18;13;5;8;42;39;24;26;6;17;6;7;11;24;23;9;17;15;6;1;2;11;11;11;16;16;27;21;25;19;12;21;19;27;24;20;22;22;21;14;12;7;21;32;3;11;19;18;51;18;3;8;19;18;11;16;27;16;9;37;36;35;33;16;20;11;38;48;25;30;24;16;21;11;29;32;39;46;14;37;8;1;2;47;8;35;31;15;3;36;24;46;39
+Fenoxaprop-ethyl;7;8;6;10;11;7;9;9;8;13;17;14;7;8;8;9;6;7;8;8;6;8;19;8;14;15;13;20;18;32;16;19;26;12;37;16;43;20;8;19;27;22;33;8;24;19;22;20;22;15;10;13;18;13;18;20;18;14;22;18;28;21;17;13;18;14;14;24;24;24;18;23;21;25;29;20;20;13;15;35;25;25;31;23;29;24;32;28;31;31;20;10;22;18;21;15;20;28;30;30;37;25;25;24;36;15;14;14;9;15;12;12;15;16;14;15;13;17;9;29;16;7;8;20;14;21;22;11;16;9;50;20;6;14;11;20;18;20;14;13;7;21;6;6;8;7;10;3;11;15;4;7;21;11;10;30;21;21;26;5;33;37;28;32;36;26;38;23;29;56;54;23;21;11;12;15;5;13;31;28;30;11;26;21;15;16;14;2;27;15;38;19;20;7;16;6;5;17;19;13;19;12;16;18;38;8;14;42;10;22;26;79;22;20;22;16;40;35;6;23;16;26;14;22;26;26;25;24;20;26;28;30;21;16;28;25;36;36;34;23;23;24;20;21;18;5;9;11;34;16;25;25;18;23;32;9;22;11;14;8;4;7;3;4;16;6;40;24;24;14;6;11;37;21;12;30;5;6;10;5;17;48;5;29;19;18;16;21;8;11;27;19;8;18;12;5;8;38;34;27;28;15;27;5;5;7;24;23;20;17;20;6;4;3;13;18;14;25;17;30;16;24;27;11;25;27;22;23;15;21;12;23;18;16;10;23;45;12;13;17;23;42;19;11;9;17;15;18;19;20;13;11;28;35;43;36;12;21;15;31;47;25;19;29;20;29;8;26;37;49;50;37;45;5;3;4;37;39;49;44;15;13;44;35;58;52
+Atrazine;13;7;12;14;13;8;9;10;10;14;27;16;11;11;12;11;6;8;8;8;5;6;19;7;15;19;16;34;29;41;20;30;28;16;32;18;54;23;9;18;20;25;32;6;22;22;24;22;23;20;16;18;17;18;23;20;22;17;20;21;25;25;20;18;26;19;17;21;23;22;16;20;23;30;31;26;15;12;5;20;24;20;22;18;26;16;16;20;33;30;12;7;13;8;12;24;18;25;19;27;41;18;27;26;28;20;23;18;14;16;16;18;18;16;19;20;16;26;19;44;20;20;15;31;21;23;19;17;19;16;38;32;10;33;7;33;27;28;31;30;18;32;22;15;23;12;18;3;16;25;8;18;25;20;19;42;25;21;21;9;27;43;32;35;35;30;48;30;34;53;50;23;9;21;24;14;6;16;24;18;19;4;31;14;12;17;17;2;15;22;46;17;26;19;31;11;9;21;29;18;30;20;21;23;32;11;32;39;22;36;32;22;75;23;26;32;32;42;7;16;37;32;22;11;23;26;24;27;21;25;25;25;26;21;25;26;45;47;39;25;33;28;19;24;29;7;8;15;40;20;19;18;17;27;39;8;26;22;15;17;18;9;6;5;12;10;48;23;21;9;9;11;31;27;17;22;5;11;13;13;17;33;19;39;23;13;7;20;1;8;24;18;6;15;19;7;8;41;40;30;27;19;33;7;11;14;19;20;23;17;23;12;2;6;29;39;7;30;25;27;16;28;39;13;32;22;12;18;19;18;20;31;26;24;9;16;41;15;19;22;26;38;29;7;10;15;17;19;12;22;15;20;28;27;50;31;4;26;16;31;45;20;22;28;16;20;15;16;34;41;42;37;43;14;4;9;36;24;49;38;14;10;37;30;61;60
+Malathion;8;8;8;9;9;11;9;11;9;14;17;10;7;8;11;10;7;8;8;9;7;6;17;9;12;14;12;27;19;25;12;17;19;12;21;12;40;19;6;7;19;15;17;9;22;18;22;20;20;14;12;10;9;10;9;12;19;14;17;18;22;19;17;14;20;16;16;16;19;17;14;19;13;19;16;19;11;4;2;17;15;13;11;9;18;15;16;21;21;17;9;12;18;5;9;10;12;19;17;18;29;18;21;19;21;18;18;16;7;5;6;10;8;12;12;14;12;21;17;30;16;11;9;17;9;16;16;12;15;12;37;24;12;29;12;22;23;24;24;24;13;28;20;7;20;7;16;3;17;23;7;16;17;20;18;35;20;19;20;12;21;37;22;24;27;19;37;24;28;46;38;15;3;10;12;10;4;12;9;5;4;3;16;10;9;18;12;2;12;14;24;14;21;8;23;11;9;17;23;16;23;17;18;20;17;10;31;16;12;23;24;20;23;55;14;18;20;29;5;17;15;21;12;10;14;14;14;19;16;20;21;21;19;15;18;21;28;33;27;20;18;19;13;12;18;6;6;9;26;20;7;7;14;13;30;8;17;15;9;10;9;11;3;4;15;7;33;25;18;8;6;8;19;19;12;13;8;9;12;11;8;19;11;25;20;9;10;8;2;7;15;10;9;14;10;6;7;27;21;19;23;10;20;4;7;10;8;17;17;8;15;10;4;6;14;26;12;19;11;16;10;11;26;11;18;18;14;13;7;21;11;23;16;15;9;9;27;11;13;15;20;24;22;5;5;11;10;14;11;13;12;12;11;15;33;16;4;9;6;20;23;16;14;19;12;16;8;19;34;27;23;18;27;12;7;6;19;18;26;32;11;8;31;23;34;37
+Metazachlor;6;1;6;2;3;4;3;2;2;6;8;5;5;1;5;5;1;1;1;1;3;1;14;3;10;15;5;23;18;27;8;20;20;7;24;8;36;10;6;9;13;13;20;3;20;17;18;19;18;7;4;13;9;12;14;11;14;11;11;7;12;16;13;12;16;13;11;10;10;10;7;11;18;25;21;16;15;13;9;25;18;16;22;20;23;16;15;24;20;22;8;5;15;10;12;20;18;16;14;20;25;16;20;17;30;7;9;4;7;7;6;7;10;10;5;13;9;10;5;30;17;7;7;21;17;15;15;11;14;11;25;20;8;18;2;18;15;16;18;21;11;20;14;7;16;9;15;6;10;16;3;10;17;14;12;27;11;10;12;3;17;25;26;17;18;30;28;17;21;42;39;12;16;14;12;9;5;8;20;12;10;8;18;17;12;11;12;1;15;13;28;11;12;8;19;5;3;9;14;7;11;7;7;12;9;8;20;21;15;27;16;22;26;14;50;19;21;31;11;19;18;23;11;6;11;16;15;22;16;14;14;15;17;13;12;13;26;29;26;13;24;19;13;14;15;3;7;12;19;12;12;11;14;6;23;6;21;10;7;6;9;5;2;6;7;7;33;19;18;6;4;5;25;17;7;16;4;8;12;11;14;28;10;23;11;12;11;11;3;7;14;12;3;13;16;3;6;27;23;19;14;16;15;4;3;8;10;17;15;8;15;9;4;7;17;16;8;17;17;16;10;20;24;7;23;19;13;15;18;15;10;16;18;19;9;18;28;8;9;16;12;17;14;4;7;9;10;9;14;12;9;10;17;26;29;18;5;12;7;25;31;24;16;19;16;23;4;19;27;34;34;23;37;5;2;4;21;27;39;33;8;9;33;22;42;39
+Metolachlor;8;5;9;10;9;8;4;5;5;8;6;8;8;6;6;4;5;6;6;7;4;5;13;5;13;9;12;19;21;24;12;26;19;8;22;14;35;19;7;8;14;14;18;2;15;17;17;16;17;8;7;14;12;10;14;11;14;15;13;9;14;15;12;13;15;13;13;13;16;12;11;12;18;22;18;21;9;6;3;14;17;12;11;10;21;12;16;17;18;18;9;7;13;8;11;19;14;17;13;18;27;12;18;16;20;9;9;9;8;8;8;10;12;15;13;9;11;19;12;29;20;13;11;16;10;8;10;6;6;6;17;26;8;16;10;22;22;24;19;19;8;25;16;9;19;11;13;5;7;7;5;11;15;14;16;29;18;16;17;7;17;26;12;12;15;15;23;9;12;27;30;13;10;10;10;9;3;6;14;12;12;5;19;16;6;13;14;1;14;11;28;12;23;8;21;5;5;14;13;10;17;13;11;13;17;6;22;21;21;34;22;16;32;18;19;41;17;31;10;11;21;27;12;12;12;14;14;16;14;14;13;14;14;14;16;13;22;24;19;12;27;17;11;14;16;10;4;5;18;13;11;11;15;17;25;6;22;12;7;5;20;9;0;4;11;8;28;17;22;3;8;4;25;17;7;8;3;8;12;10;12;22;21;17;16;18;8;11;0;7;20;11;7;22;18;3;7;29;22;29;26;19;7;8;6;9;10;12;24;4;5;15;1;5;27;29;12;8;15;20;10;16;26;12;26;20;8;8;14;13;10;13;19;20;13;14;27;16;16;18;16;17;10;1;3;5;3;10;7;13;10;9;21;21;34;19;3;15;6;26;31;18;20;13;7;14;5;15;25;25;22;20;26;12;4;8;19;28;39;35;13;7;34;28;41;38
+Methyl parathion;6;12;9;12;15;12;10;6;5;14;20;12;8;8;10;11;10;12;14;14;10;11;26;12;15;23;21;33;18;35;19;28;28;13;40;20;48;12;5;24;27;26;32;9;33;29;30;28;31;19;14;22;20;25;23;19;27;18;24;26;30;25;23;20;28;18;18;24;24;24;16;26;30;32;29;33;21;16;10;33;28;26;32;28;26;18;22;27;28;32;18;11;28;17;18;32;32;28;28;29;42;24;29;22;30;24;27;21;18;17;19;18;25;23;19;21;16;30;12;37;22;16;14;33;19;24;25;19;18;17;49;22;13;28;11;24;15;19;32;26;23;32;22;14;22;15;19;7;18;25;7;19;22;17;21;34;17;14;15;6;21;50;35;30;53;44;58;40;47;55;64;26;7;26;25;11;8;21;28;26;28;9;23;19;15;18;16;1;24;21;43;22;22;17;20;9;8;21;23;15;20;17;18;20;27;12;33;49;9;37;41;40;32;20;21;17;79;36;9;16;22;25;31;19;27;29;27;34;26;31;33;36;29;21;33;30;43;51;44;28;27;18;18;29;18;5;10;19;34;20;12;12;18;32;31;14;19;22;19;8;8;11;6;5;22;9;44;32;29;13;8;11;21;15;7;24;7;10;13;13;20;35;9;36;14;9;15;21;5;10;30;24;6;23;19;8;5;33;26;16;19;8;26;9;9;15;14;20;17;10;20;3;2;2;14;23;15;24;23;32;23;27;21;13;40;13;19;28;17;23;20;26;19;15;11;21;42;8;9;18;26;36;24;7;10;17;19;17;25;25;20;18;20;38;43;39;8;26;15;31;47;23;25;26;17;22;14;27;33;41;42;34;43;11;5;4;29;17;35;36;22;10;39;23;57;48
+Pendimethalin;9;4;13;14;16;8;5;8;7;12;26;13;11;4;7;5;4;4;4;4;7;7;24;9;23;24;14;30;33;37;16;22;33;18;32;20;71;21;13;11;17;13;37;3;35;24;26;24;25;6;4;12;31;18;19;8;13;8;13;13;15;14;13;9;16;9;8;9;13;11;8;13;32;32;33;33;19;14;10;29;28;25;30;24;41;27;25;33;39;32;17;15;22;16;16;25;22;34;30;36;52;28;36;33;43;8;10;9;7;9;7;9;14;14;11;4;2;9;7;42;19;9;3;30;21;17;19;15;17;18;36;41;12;28;12;31;34;33;33;32;18;40;23;11;25;16;35;8;13;22;7;19;24;24;26;50;32;30;33;13;43;38;27;21;23;20;45;16;19;75;54;15;10;18;14;16;4;10;33;24;23;7;39;29;11;17;18;0;13;20;57;23;35;9;33;7;7;19;21;14;23;16;17;15;36;11;37;52;27;60;38;35;42;29;31;31;36;86;11;17;31;42;12;18;21;14;13;16;10;13;14;15;12;8;16;13;24;30;25;13;39;28;22;31;29;9;7;13;36;23;16;14;17;16;43;9;33;16;12;11;23;11;2;9;12;10;52;24;33;8;10;6;47;26;11;20;6;9;18;18;24;55;24;29;38;23;17;17;1;11;38;23;7;26;24;5;12;59;50;42;41;32;13;8;7;13;15;26;33;10;14;18;1;4;34;35;17;14;32;31;16;38;43;16;37;31;18;18;25;33;18;23;32;32;17;24;51;21;23;27;25;27;24;4;7;15;12;23;8;19;20;17;33;50;77;35;8;29;12;32;55;23;23;29;14;26;13;22;47;52;54;44;51;16;6;9;34;50;75;54;19;12;61;50;81;78
+Phosmet;1;1;3;1;1;3;1;0;0;0;2;1;0;0;0;0;0;1;1;1;1;1;4;1;2;3;3;7;6;9;2;6;5;1;8;5;9;7;4;0;6;3;8;3;4;4;4;3;5;1;1;4;2;5;6;3;3;3;4;5;4;2;2;1;5;3;5;4;6;4;3;4;9;8;7;10;6;5;2;4;4;4;5;4;4;2;5;8;8;7;5;8;7;7;7;9;6;7;8;8;10;7;9;8;9;4;5;2;2;2;2;3;2;6;3;1;2;4;3;10;9;5;3;5;4;5;5;5;9;7;11;8;6;4;1;5;6;7;6;8;3;7;7;3;6;3;7;2;4;4;0;4;5;6;6;7;4;3;3;0;4;12;7;7;5;8;10;4;6;12;11;6;0;7;5;2;1;8;7;6;6;2;4;7;1;5;6;0;6;3;5;1;6;0;8;0;0;2;3;2;3;3;2;2;5;0;5;8;5;9;11;6;7;5;11;10;9;11;15;4;6;7;3;3;5;3;3;3;1;4;5;5;5;5;4;5;2;4;2;4;6;6;3;2;4;0;3;3;7;6;3;3;6;5;8;2;7;3;3;0;7;2;0;3;6;3;10;5;5;1;1;2;3;5;1;3;1;3;6;4;5;7;8;1;5;4;1;3;0;2;4;2;1;4;7;1;0;9;4;10;9;7;1;3;1;1;5;4;10;5;0;4;0;0;8;7;3;1;8;5;3;2;10;2;9;8;2;7;7;1;1;1;8;7;4;4;6;3;1;2;1;10;1;0;5;4;3;3;4;7;1;3;5;9;8;6;1;3;0;4;8;5;5;6;4;8;2;6;8;8;5;7;10;3;0;1;5;8;7;8;1;3;9;6;10;10
+Terbufos;2;1;0;3;3;3;2;3;3;4;7;4;1;2;2;1;0;1;1;1;1;1;8;1;5;9;2;12;13;17;4;9;11;2;9;6;23;5;2;5;9;9;9;8;20;22;23;21;23;9;7;2;7;4;7;6;12;8;8;10;11;13;12;8;13;8;8;8;11;10;4;8;7;9;12;7;8;5;5;15;6;7;10;8;10;8;10;12;14;11;8;9;16;7;8;6;8;10;12;10;15;11;14;12;19;12;10;9;2;3;5;4;5;11;11;10;6;14;7;12;10;10;7;8;5;14;15;12;12;13;28;10;5;10;3;10;9;11;9;9;4;8;7;3;6;2;7;2;4;6;3;7;13;7;5;13;11;10;11;1;11;24;24;23;21;18;23;17;19;36;28;7;5;2;4;4;8;6;10;6;5;7;18;5;19;14;13;3;10;9;16;7;14;6;9;3;3;4;7;3;6;3;4;6;25;1;8;13;5;12;15;23;16;17;19;11;16;17;4;37;12;23;10;8;8;12;12;14;12;11;11;12;12;9;12;12;17;17;14;11;14;11;10;11;8;6;6;5;13;11;16;14;10;13;7;3;11;5;10;3;3;5;4;0;8;7;21;10;10;3;3;7;21;13;4;12;6;7;3;4;8;15;4;17;12;9;8;10;0;6;10;10;1;9;9;1;1;18;14;18;11;14;12;3;0;6;8;17;9;8;11;11;0;3;18;14;6;12;4;17;7;13;22;7;11;10;14;11;12;12;7;14;9;9;7;8;13;3;4;5;15;20;18;3;2;8;5;12;12;11;7;3;22;15;18;15;2;10;5;20;19;12;14;14;11;16;8;18;22;24;26;16;25;4;3;6;25;21;30;25;2;5;23;14;30;26
+Terbutylazine;11;4;11;8;9;7;4;6;5;7;21;8;9;3;5;5;4;4;4;4;6;6;16;7;9;11;10;24;21;29;12;16;20;10;21;15;33;20;7;10;14;12;18;5;19;19;20;19;20;9;11;14;16;16;16;9;15;10;13;12;15;13;13;11;16;10;10;13;12;13;8;13;13;16;15;15;7;6;4;15;12;9;12;12;16;10;9;15;18;13;7;8;8;5;7;16;12;15;9;16;23;12;19;20;18;12;15;10;5;5;6;7;9;11;11;11;7;18;10;20;12;11;8;17;8;9;8;11;11;12;28;23;10;23;7;14;18;15;24;20;13;22;17;8;18;7;14;6;13;20;7;13;22;18;11;31;17;15;14;9;18;19;18;12;18;17;28;12;14;32;27;15;6;15;17;11;3;10;18;14;13;2;27;13;5;14;13;1;12;17;33;19;18;14;19;6;6;11;15;8;16;8;11;18;21;9;23;29;16;24;19;16;37;15;18;21;22;31;6;12;45;24;12;8;12;11;10;15;12;13;14;14;15;9;13;13;20;22;16;14;20;19;16;20;17;3;6;9;25;9;13;13;10;20;25;9;19;19;10;12;11;8;6;3;9;8;26;17;16;8;11;6;17;18;12;15;3;10;11;7;11;23;12;27;18;15;3;12;2;11;12;15;7;14;10;7;6;28;22;18;21;13;19;7;8;12;13;13;15;7;18;7;0;4;20;27;7;25;17;17;12;21;26;15;17;16;9;12;15;13;10;25;19;17;14;12;24;14;14;12;20;27;28;3;5;14;16;14;10;9;13;9;17;19;31;20;2;16;10;23;29;10;15;20;11;10;10;9;24;29;28;20;28;10;4;6;27;18;35;26;14;9;30;27;39;40
+Trifluralin;10;6;6;8;11;7;5;11;9;13;18;13;9;2;8;7;5;6;7;7;4;3;15;6;13;13;13;17;19;29;9;9;23;11;20;14;52;13;5;10;16;15;25;4;30;28;28;26;26;8;6;15;20;20;10;11;16;12;17;20;18;15;13;11;19;14;12;16;18;17;10;15;13;18;20;18;5;2;14;19;12;11;19;13;24;17;21;21;31;16;15;11;21;12;11;8;14;21;19;19;30;19;28;21;32;8;9;8;6;5;6;4;9;8;6;4;3;6;5;22;13;4;2;20;9;21;19;11;11;11;43;25;7;13;8;18;18;19;14;16;8;19;10;5;11;14;23;3;9;12;3;6;12;12;11;26;22;22;23;9;30;29;21;20;22;22;46;18;22;51;45;17;11;18;18;8;4;10;20;16;15;8;16;10;20;23;16;1;14;20;40;16;23;7;20;9;7;14;13;11;16;12;12;18;29;5;17;32;22;35;28;26;32;21;23;27;25;42;7;23;24;66;6;15;17;14;14;19;15;16;17;17;16;12;16;21;21;26;23;20;33;18;13;23;24;7;5;7;27;16;23;22;12;20;28;2;15;7;15;6;10;3;2;5;8;3;35;20;24;9;3;7;35;15;6;22;6;2;9;8;21;39;10;29;22;20;21;17;1;8;23;12;6;19;15;3;3;46;34;24;27;20;13;4;5;6;10;22;25;16;14;14;4;6;20;20;13;13;10;27;8;25;35;10;28;19;12;13;21;30;17;21;13;14;9;17;37;9;13;7;21;36;19;6;7;16;15;15;14;23;13;11;30;38;45;26;6;21;12;33;38;25;26;23;16;23;18;20;37;40;53;32;37;5;6;6;32;43;51;42;11;5;44;37;56;49
+2,2',3,4,4',5',6-Heptabromodiphenyl ether;8;6;6;7;9;8;6;6;6;6;8;7;10;6;6;7;5;6;6;6;8;10;19;7;12;20;7;20;12;19;6;47;22;9;24;7;19;9;4;21;38;18;45;47;16;19;19;18;20;26;19;16;8;14;15;14;18;14;29;32;37;17;15;14;22;14;15;27;30;26;20;31;21;17;16;16;12;10;1;12;21;17;14;13;11;6;9;17;20;29;5;4;17;2;5;22;17;16;13;19;26;8;13;11;16;26;37;42;38;18;24;28;18;16;26;54;50;76;40;72;58;46;49;61;37;51;43;21;9;8;88;8;7;21;8;9;8;10;22;17;15;15;11;12;11;5;9;3;13;16;4;11;18;17;12;24;4;3;4;4;4;44;40;36;63;48;50;44;48;52;55;19;0;14;15;7;3;8;12;8;10;3;10;12;8;5;10;0;11;8;24;13;7;6;14;6;5;8;11;6;11;6;7;8;16;7;19;19;7;10;33;14;22;12;11;12;31;12;3;10;12;6;186;10;11;17;16;19;17;38;37;39;25;17;49;31;52;52;45;28;11;16;10;17;17;0;6;5;16;9;10;10;6;12;20;8;16;13;7;7;8;6;3;3;6;7;37;17;16;7;6;5;3;14;4;11;6;7;12;9;7;18;10;17;4;6;7;12;0;6;11;14;4;7;6;6;3;17;4;10;6;11;11;5;5;6;11;12;5;7;7;2;0;2;11;13;5;6;23;11;16;15;15;7;22;6;9;13;8;8;4;14;16;13;5;8;47;7;7;9;13;27;8;1;8;11;12;10;11;5;12;13;8;19;18;16;8;6;6;16;19;6;5;10;6;7;7;14;21;14;13;16;17;4;4;5;18;6;13;13;6;8;15;9;27;24
+2-Chlorobiphenyl;4;7;6;15;18;17;16;10;9;9;13;7;5;8;8;7;5;7;7;7;5;5;13;7;11;12;16;12;15;17;10;15;18;10;24;11;27;10;3;18;13;22;12;1;14;13;12;12;13;8;8;17;14;13;15;22;16;13;15;13;14;19;19;18;17;15;12;14;16;14;10;11;11;12;14;12;9;3;7;20;12;9;15;16;14;9;17;19;21;18;12;6;14;8;8;9;8;16;16;18;25;12;12;16;17;17;21;21;17;18;15;16;17;17;18;14;14;19;14;25;9;10;10;16;11;6;8;5;9;4;25;12;10;10;11;16;16;14;15;15;8;17;13;8;9;6;12;3;6;11;5;6;12;8;9;19;14;13;16;6;19;25;14;19;22;21;26;16;21;19;24;21;9;14;13;7;7;9;14;17;16;5;11;11;13;10;9;3;10;15;24;9;19;14;20;9;8;19;19;16;22;15;20;10;24;5;15;17;6;14;17;22;11;10;6;12;19;18;3;8;8;15;10;34;29;24;23;21;21;16;15;15;17;15;14;18;26;27;27;17;13;14;12;10;15;7;5;5;22;9;16;15;7;9;21;9;10;10;12;7;6;7;1;3;11;3;22;16;22;7;5;6;22;13;11;16;5;6;9;8;5;19;6;17;11;6;10;16;1;5;16;15;5;9;6;5;3;18;22;8;13;5;17;4;5;7;13;12;13;8;13;1;2;4;5;10;15;16;13;9;10;11;17;7;9;10;4;12;6;16;10;18;7;6;5;15;18;3;7;10;16;24;14;5;5;3;5;12;12;9;6;8;13;17;23;19;2;14;6;20;24;18;13;15;6;14;12;17;19;23;22;22;22;10;4;3;21;15;23;19;14;2;19;20;24;22
+2,3-Dichlorobiphenyl;5;9;6;13;14;17;15;7;6;12;12;11;8;7;12;10;9;10;10;10;5;5;14;7;13;13;12;18;6;18;7;15;22;12;28;15;23;9;3;24;17;33;20;3;18;19;19;18;19;15;13;25;16;15;17;31;24;20;21;18;21;29;27;26;24;21;19;22;21;22;14;19;12;12;17;13;9;5;4;19;13;13;18;16;12;8;15;20;24;25;11;4;13;6;6;14;11;20;16;17;23;16;20;17;20;23;24;22;19;22;18;21;20;16;19;20;15;26;18;30;16;13;13;23;14;9;11;11;12;8;32;7;8;14;10;15;6;9;15;19;11;15;12;7;10;5;11;4;9;14;4;10;11;5;12;14;11;9;11;3;14;35;22;29;34;26;33;24;30;30;32;25;16;17;16;7;5;13;13;13;13;5;11;10;11;16;11;4;14;17;28;16;22;10;21;8;6;16;20;14;20;17;19;16;28;5;14;22;5;26;19;26;23;14;11;12;27;21;5;8;12;17;11;29;43;39;36;31;32;23;22;23;25;25;20;25;33;32;33;24;13;11;11;11;15;2;7;13;21;16;14;13;9;12;23;3;13;8;7;8;6;5;2;4;14;7;30;15;21;12;8;8;17;11;8;17;5;9;11;4;7;20;6;23;8;5;10;21;3;8;22;18;4;7;5;4;2;23;19;10;8;4;15;6;4;9;22;11;11;12;12;3;2;5;9;12;11;15;16;16;7;18;17;8;19;16;9;14;7;13;12;19;8;6;11;14;22;2;9;12;20;28;17;6;8;8;13;13;16;14;10;9;16;22;14;28;2;12;8;18;31;17;16;18;10;14;12;17;23;27;30;21;27;5;3;2;25;13;24;14;10;1;21;16;26;22
+2,2',5-Trichlorobiphenyl;8;8;7;11;11;15;12;7;6;8;13;14;8;10;11;12;9;9;10;10;7;6;18;6;10;14;8;18;6;20;7;25;25;11;39;12;22;8;2;30;28;45;29;6;28;26;27;26;28;26;21;35;14;14;22;40;39;37;34;27;29;50;47;41;39;35;36;34;35;35;25;28;15;19;16;16;8;7;3;13;15;17;14;14;12;9;12;16;22;22;8;4;17;9;11;19;14;19;17;20;27;18;19;15;21;28;26;25;24;25;24;23;19;22;24;23;14;25;19;29;19;15;12;22;13;16;14;10;11;9;39;6;4;17;9;15;6;7;16;19;15;13;11;7;8;4;10;2;7;12;5;10;10;8;10;17;11;8;12;5;12;47;24;32;42;31;42;33;38;41;43;32;15;20;18;4;4;8;15;10;12;3;11;8;7;11;10;3;9;16;31;16;20;11;16;5;4;12;18;11;14;13;14;11;33;5;16;23;6;16;24;26;26;14;16;14;29;14;3;12;11;14;17;24;39;58;50;53;48;32;30;31;39;39;30;39;38;36;40;37;11;13;11;15;20;0;7;13;25;13;12;11;12;15;24;4;13;10;11;6;8;5;4;3;10;6;38;14;19;11;7;9;16;10;6;15;4;7;9;5;9;31;8;24;7;5;13;18;1;6;24;19;3;8;3;3;3;24;22;14;10;6;15;4;4;8;23;12;7;16;11;6;1;3;8;12;11;14;15;17;9;19;20;10;16;10;15;21;8;16;16;21;9;8;7;17;30;4;10;12;21;38;20;5;10;10;13;13;12;19;8;7;17;25;15;31;4;15;9;24;33;13;21;24;17;8;16;13;19;24;32;21;26;6;3;2;29;15;25;18;7;1;18;14;28;24
+2,4',5-Trichlorobiphenyl;5;6;6;11;10;14;12;7;6;7;12;12;8;7;8;9;6;6;7;7;6;6;16;5;10;12;8;17;4;20;5;22;23;11;37;11;19;8;1;27;25;42;26;3;25;23;24;23;25;24;19;32;12;12;21;39;36;35;31;25;27;44;42;35;36;34;34;32;32;33;24;27;15;17;15;15;6;7;3;12;15;16;13;13;10;8;11;14;19;18;7;4;14;8;11;16;13;18;16;17;24;16;18;14;20;26;25;23;23;25;23;22;19;22;23;22;14;23;18;26;19;15;12;20;11;15;13;10;11;9;37;6;4;15;9;15;5;6;13;16;13;10;9;6;6;4;10;2;7;11;5;9;9;6;9;14;11;7;11;4;11;44;23;30;38;27;38;28;33;38;39;29;13;19;16;4;4;8;15;10;12;3;10;8;6;9;8;2;9;15;30;13;19;10;16;5;4;12;17;11;14;11;14;9;29;5;14;22;5;13;22;25;24;14;15;14;27;13;3;12;10;14;16;23;36;50;50;46;45;29;28;29;36;37;28;37;35;33;35;35;11;12;11;14;18;0;5;12;24;12;12;11;11;13;22;3;12;10;11;6;8;5;4;3;8;6;35;14;19;11;7;8;15;9;6;15;4;7;8;4;8;29;8;22;6;4;11;16;1;6;23;15;3;6;2;3;3;21;20;12;8;5;13;4;4;8;21;12;7;16;9;6;1;3;8;12;11;11;13;16;8;18;19;9;16;10;14;20;8;15;13;19;8;7;7;16;27;4;10;11;19;34;17;4;8;9;12;10;9;16;6;5;15;23;15;28;4;14;9;22;31;11;17;21;16;8;15;12;15;22;30;19;22;6;3;2;28;15;24;18;6;1;18;14;26;21
+2,2',3,5'-Tetrachlorobiphenyl;8;7;6;9;9;13;9;7;6;10;12;11;7;10;11;11;9;8;9;9;5;6;20;6;9;17;8;20;10;22;8;30;29;10;43;9;25;10;2;30;50;48;41;12;43;38;40;38;38;33;29;42;11;18;32;39;61;50;52;51;53;67;57;51;68;50;52;55;58;57;46;50;28;27;16;21;9;10;2;13;21;22;11;13;15;13;12;15;22;25;10;6;17;13;15;28;17;17;18;26;30;19;24;22;22;36;34;28;23;28;27;30;22;28;31;25;17;34;23;34;20;19;17;26;15;25;23;15;11;12;54;9;6;18;8;21;7;10;18;26;15;14;13;8;14;2;8;3;5;10;5;11;11;12;13;20;9;7;10;3;8;61;27;49;57;46;61;49;51;60;62;38;15;27;21;5;3;13;10;6;8;0;12;10;8;16;13;2;9;21;37;19;26;12;16;7;5;13;18;11;11;13;12;14;41;5;22;28;8;22;32;24;27;19;22;16;34;16;3;14;15;19;19;21;31;53;46;81;61;54;54;53;69;51;42;64;51;53;57;61;14;15;13;18;26;2;9;15;27;12;12;12;20;21;32;7;21;13;10;6;16;5;4;4;14;6;48;26;23;8;6;8;13;13;5;15;3;8;11;7;12;35;16;23;11;10;15;16;2;6;30;22;4;11;3;4;3;21;15;14;15;8;12;3;5;10;28;12;10;11;9;4;1;3;8;16;14;11;17;21;12;19;17;10;24;13;18;22;18;17;14;18;11;10;7;18;41;5;14;17;21;46;20;2;8;18;22;11;13;18;10;10;16;25;20;37;8;15;8;28;43;16;24;27;19;9;14;18;27;29;36;18;26;9;3;2;32;12;24;21;9;5;22;15;28;24
+2,3',4,4'-Tetrachlorobiphenyl;6;7;4;9;9;13;9;7;6;8;8;10;5;9;9;9;8;7;8;8;4;5;14;5;10;15;6;16;6;20;5;24;23;7;36;7;16;7;1;25;38;44;30;6;35;32;33;33;33;26;25;38;11;16;24;38;51;46;41;40;40;58;50;48;55;47;45;43;45;44;37;38;25;25;12;17;7;9;2;10;19;22;11;11;9;7;11;12;21;20;7;5;16;10;14;22;15;17;16;25;25;17;19;17;18;28;27;23;19;23;20;23;17;22;27;23;15;27;19;29;20;17;14;19;13;19;18;13;9;9;43;3;4;16;8;17;7;8;14;19;11;10;8;5;7;2;7;2;5;9;5;7;10;8;8;13;8;3;5;2;5;49;21;40;47;40;46;35;37;47;47;33;11;23;17;3;4;11;7;4;5;0;10;8;8;11;10;3;6;18;32;12;20;10;14;6;4;11;14;9;9;10;10;11;39;4;16;22;6;13;25;20;21;16;16;14;26;10;1;12;12;15;17;21;32;48;45;61;63;43;42;41;56;49;33;51;41;45;45;48;12;11;8;14;21;1;5;9;20;10;11;10;19;17;24;3;14;11;9;6;15;4;3;3;9;4;39;23;20;7;5;6;12;12;3;11;3;7;9;5;10;30;15;23;10;7;15;14;1;4;22;20;4;6;2;4;3;17;16;12;12;6;11;3;4;7;22;12;9;6;7;4;1;2;6;15;12;9;14;15;10;16;16;9;19;9;16;20;16;15;10;16;7;7;6;14;33;5;12;12;22;41;18;2;5;17;18;10;12;16;9;8;16;20;10;32;5;13;6;23;39;13;20;19;15;7;13;18;19;24;28;16;23;6;3;2;23;10;19;13;6;1;14;9;24;18
+2,2',3,4',5,5',6-Heptachlorobiphenyl;6;9;7;5;7;8;5;5;5;7;10;10;9;8;9;9;10;9;11;11;2;4;17;7;8;14;9;16;7;17;15;38;28;9;41;8;25;11;4;29;85;30;86;29;32;29;31;28;29;41;40;34;6;9;27;25;65;50;76;73;104;46;42;40;70;49;51;79;83;81;56;98;13;14;13;21;7;3;2;9;23;24;8;10;16;11;10;11;23;41;8;8;19;9;12;15;10;16;20;28;29;12;19;14;17;57;58;59;37;29;29;36;27;27;34;53;33;43;29;58;35;21;24;45;24;43;35;16;14;8;68;13;7;17;10;21;5;9;14;18;12;16;13;12;14;4;6;3;6;9;6;8;6;7;11;15;4;6;7;2;7;64;32;56;70;65;83;52;57;67;84;25;9;13;12;4;3;9;7;8;8;1;8;7;13;14;7;3;7;13;33;19;25;10;19;8;6;10;17;7;11;9;8;18;33;5;16;22;7;14;45;26;25;20;14;14;31;13;4;11;13;16;38;16;23;32;29;54;43;128;114;114;69;58;112;90;88;77;76;88;12;7;9;20;26;5;11;11;21;16;6;5;13;18;29;10;12;15;4;9;10;3;3;5;17;5;49;23;23;6;3;5;11;9;9;13;6;3;7;3;8;27;11;22;10;7;12;15;5;5;26;19;6;10;6;5;5;17;18;11;12;6;15;3;7;8;28;18;10;6;11;3;3;5;8;15;12;13;13;18;12;12;15;10;11;11;19;13;10;14;11;18;9;8;4;21;51;6;13;17;18;48;16;1;12;15;20;10;12;16;12;13;11;26;22;29;12;13;4;27;30;14;13;15;12;15;8;17;23;27;32;14;26;8;4;4;28;8;13;18;10;4;18;14;21;15
+2,2',3,4,4',5',6-Heptachlorobiphenyl;7;8;8;6;8;7;5;4;4;7;10;10;9;5;6;7;9;8;10;10;3;5;19;6;7;15;9;16;8;19;14;40;29;9;40;8;26;11;4;29;95;29;87;32;31;27;29;27;27;40;41;33;5;8;27;23;67;51;84;77;112;45;42;39;74;51;53;81;86;84;59;105;14;14;14;26;8;4;3;10;26;24;9;14;18;12;10;14;27;41;8;8;15;9;11;16;10;17;21;28;30;14;18;17;19;55;57;64;37;30;32;39;30;26;32;54;32;45;26;54;35;21;21;46;23;43;34;16;15;10;66;13;7;18;8;21;5;8;16;20;12;16;13;12;15;3;6;3;6;9;7;10;5;9;11;17;4;6;7;2;6;65;32;59;71;68;83;51;56;68;87;25;10;15;11;6;2;10;9;9;9;0;10;9;10;14;9;1;5;12;32;19;22;10;17;8;7;9;16;8;10;9;8;16;29;6;18;24;5;16;45;28;25;21;14;13;33;14;5;11;14;17;37;15;22;30;28;54;42;114;130;126;75;60;115;95;88;81;81;93;11;9;9;19;25;4;8;11;21;18;6;5;12;17;31;9;13;16;5;8;10;5;3;4;15;6;44;25;20;5;2;5;10;10;6;14;6;4;6;4;7;29;11;18;10;8;13;13;6;5;27;17;5;11;5;5;5;16;16;10;13;7;10;3;8;8;28;15;9;5;10;4;1;3;9;16;10;10;13;17;14;12;12;11;13;13;21;12;11;13;11;15;12;11;3;18;50;6;15;19;17;49;16;0;14;13;17;8;10;19;10;12;11;27;25;26;11;14;3;26;29;15;12;13;11;13;7;15;21;28;34;12;25;9;5;4;29;6;15;22;11;5;22;18;21;17
+2,2',3,3',4,4',5-Heptachlorobiphenyl;7;8;8;6;8;7;5;4;4;7;10;9;10;5;6;7;9;8;10;10;3;5;20;6;7;17;10;17;9;19;14;42;28;10;45;9;26;11;4;30;96;30;90;33;31;27;29;26;27;42;41;33;5;8;32;24;66;50;82;80;111;43;41;39;72;50;52;83;84;86;59;108;13;14;13;25;8;4;2;10;28;24;9;13;17;13;11;15;29;43;9;7;16;9;12;16;11;16;21;29;31;14;18;17;20;56;62;64;39;32;33;41;31;28;33;57;36;50;26;58;36;20;22;49;23;43;37;18;15;10;71;13;8;19;8;20;5;8;16;20;13;17;14;13;15;4;7;3;6;9;7;10;6;9;11;17;4;6;8;2;7;68;34;66;77;74;89;52;60;72;91;25;11;13;11;7;2;9;10;10;10;1;10;9;10;14;9;1;7;12;34;20;21;10;17;8;7;9;17;8;10;9;8;16;30;6;18;23;6;16;46;30;25;21;15;14;36;15;5;12;14;17;39;15;23;31;29;53;41;114;126;135;76;62;118;97;92;83;85;93;12;8;9;19;26;4;10;11;22;16;6;5;13;18;33;10;12;17;4;8;10;5;3;4;14;6;48;27;20;5;2;5;10;10;6;15;5;4;6;4;6;30;11;19;10;8;13;13;6;5;27;19;6;12;5;5;5;15;16;9;12;7;11;3;7;8;30;16;10;5;10;4;1;4;10;15;10;11;13;17;16;12;12;11;13;13;18;14;11;12;11;15;12;9;4;19;54;6;15;20;16;48;15;0;15;15;19;8;10;20;10;12;10;26;26;25;11;14;4;29;29;16;11;14;12;13;8;16;23;28;34;11;26;9;5;4;28;7;15;21;10;5;21;16;22;18
+2,2',3,4,5'-Pentachlorobiphenyl;6;4;6;5;6;11;5;4;4;6;9;9;5;7;5;5;5;4;5;5;2;5;14;4;8;13;6;20;10;21;12;28;29;7;36;10;24;10;4;26;61;37;55;19;38;36;35;34;35;35;34;42;7;11;34;31;72;55;69;70;69;59;51;46;78;54;58;70;68;70;52;66;21;17;15;23;13;12;5;11;31;29;11;10;18;12;8;12;19;28;8;7;18;9;12;27;17;18;19;26;29;22;23;20;22;39;41;36;23;27;24;31;23;26;33;27;19;37;23;39;25;17;15;26;17;26;25;17;14;12;51;9;6;19;8;19;9;12;19;22;16;15;13;9;16;3;7;4;6;9;6;11;9;11;12;20;9;7;10;3;7;58;25;52;64;56;62;46;49;62;60;36;12;19;14;5;4;11;10;8;8;0;11;10;8;13;9;2;4;13;31;15;20;10;15;6;4;9;14;7;8;7;7;11;37;5;20;24;5;18;37;21;26;19;17;14;29;12;5;12;15;16;25;17;25;39;36;69;56;69;75;76;87;65;58;76;50;63;68;76;12;15;12;17;23;1;8;11;24;15;6;6;16;17;28;8;17;15;7;7;17;7;4;3;13;6;40;23;21;5;5;5;9;12;5;12;4;5;12;5;11;27;19;21;9;11;13;16;2;8;28;17;4;12;4;4;5;19;15;13;16;10;11;2;7;10;25;13;7;7;8;6;1;3;10;18;12;10;16;19;13;16;13;11;18;16;17;16;16;17;11;18;12;11;6;13;43;7;14;18;20;45;18;0;12;17;16;8;8;22;8;9;12;25;22;33;11;13;6;22;33;16;16;21;16;10;11;13;20;25;32;14;24;8;5;4;25;10;19;23;9;5;24;15;26;21
+2,3,3',4',6-Pentachlorobiphenyl;4;3;4;5;5;10;5;4;4;4;6;7;4;5;4;3;3;3;3;3;2;3;11;3;7;8;4;16;8;14;6;22;23;4;32;8;14;9;2;22;52;37;45;13;31;28;28;28;28;29;30;37;5;10;29;32;59;53;55;55;57;47;46;43;62;51;53;56;58;57;47;55;16;11;11;18;8;7;3;9;21;22;8;7;12;8;5;8;14;21;7;6;16;9;12;18;13;13;15;20;23;16;16;14;15;35;33;27;19;21;20;25;17;25;31;22;18;31;20;31;20;15;12;18;13;22;23;13;11;9;42;5;3;15;7;15;7;9;12;19;12;11;8;6;9;2;5;2;5;7;5;7;7;6;8;14;9;7;9;2;6;49;19;42;52;45;48;37;40;50;48;31;10;16;12;3;4;7;8;8;7;0;8;7;8;7;8;2;4;11;23;8;17;9;12;4;3;7;12;6;7;6;6;7;34;4;15;19;5;12;30;16;21;15;13;14;21;8;5;9;9;12;17;15;25;39;37;51;49;58;60;62;65;68;48;57;38;50;52;57;10;10;7;10;17;1;5;10;19;12;6;6;13;14;21;4;14;12;4;6;13;4;3;2;9;4;36;18;18;5;5;5;8;8;3;7;4;3;7;3;7;22;14;21;8;6;8;11;2;4;21;13;4;7;2;2;3;12;13;10;11;6;11;3;6;8;22;14;6;7;7;4;1;3;7;16;10;10;12;15;11;14;12;10;14;12;16;12;10;13;11;17;7;6;4;11;37;5;12;14;19;39;16;0;10;14;13;6;6;16;9;8;9;17;14;28;11;10;4;21;30;11;13;18;17;9;11;12;14;23;24;11;22;6;4;3;21;7;16;16;6;2;17;11;20;15
+2,2',3,3',4,4',5,5',6-Nonachlorobiphenyl;6;11;8;7;10;6;4;5;4;7;11;9;11;6;7;8;10;10;13;14;4;6;17;8;6;15;10;13;7;12;15;39;27;12;36;10;22;11;4;28;96;29;95;46;17;18;19;16;19;43;42;29;3;16;30;24;52;42;68;66;108;35;31;31;56;39;41;67;80;69;46;97;12;12;8;24;12;6;2;7;20;17;7;9;15;12;11;13;22;48;8;8;17;7;11;16;10;15;13;26;27;10;16;17;20;59;73;60;48;32;42;44;31;37;43;61;44;65;26;61;39;33;42;56;24;57;43;22;12;9;85;12;8;14;8;18;6;6;18;17;12;20;13;15;15;6;9;2;5;9;7;9;6;8;13;15;3;4;6;3;8;69;37;68;90;74;104;65;75;70;92;21;11;12;20;8;3;15;10;9;11;2;9;8;9;17;10;1;9;10;29;18;20;6;15;8;7;8;14;7;9;9;8;17;26;6;16;17;8;16;54;28;25;18;12;16;33;16;4;12;13;16;49;14;20;30;28;42;33;112;115;118;58;48;181;82;93;70;69;77;9;8;9;14;27;4;9;6;16;17;9;8;13;20;31;9;9;16;4;5;14;6;2;3;13;8;46;24;18;4;2;6;7;5;5;13;5;6;3;4;4;21;14;14;9;6;13;12;5;5;29;16;7;11;8;5;6;11;17;6;13;7;6;3;5;8;26;14;12;8;6;3;1;2;7;15;8;7;11;15;13;8;9;11;11;12;22;8;9;8;11;11;12;10;4;21;60;7;14;21;14;41;9;0;10;15;15;9;10;23;8;11;11;24;25;21;8;12;4;28;24;13;14;12;9;9;6;14;16;21;29;11;21;7;2;4;21;6;11;17;12;6;16;13;20;17
+2,2',3,5,5',6-Hexachlorobiphenyl;7;7;7;8;10;10;7;5;5;7;9;9;7;8;7;8;9;8;9;9;3;6;17;6;7;16;10;18;8;19;12;29;30;9;38;8;26;11;4;28;78;38;74;25;43;39;40;39;40;37;37;38;5;9;31;31;66;47;84;99;91;54;48;45;73;49;50;87;87;92;63;87;12;12;13;26;9;6;6;13;27;22;11;13;20;14;10;12;22;36;9;7;16;9;10;20;14;16;19;27;30;18;20;18;20;56;59;51;28;28;29;29;26;25;37;37;29;37;24;42;33;21;20;33;26;30;31;13;17;11;58;12;8;18;10;19;5;10;17;19;15;14;13;11;15;2;6;3;3;8;7;10;6;10;12;16;5;6;7;2;6;62;31;58;70;64;75;54;60;69;76;35;10;17;11;7;4;15;9;8;7;1;9;8;11;16;9;2;6;14;38;16;23;12;18;8;7;11;17;8;12;7;9;14;36;5;19;25;5;14;41;25;26;21;13;13;30;13;5;12;13;21;31;18;25;39;37;64;51;90;95;97;76;57;82;112;74;80;79;104;11;9;11;16;25;3;7;9;21;16;5;5;15;19;28;8;16;15;6;10;10;4;4;7;14;6;48;26;21;5;3;6;11;11;6;13;5;3;9;4;10;31;11;22;10;8;12;16;5;6;27;18;5;9;4;5;4;14;15;10;15;8;12;3;8;8;28;14;8;8;10;5;1;3;9;19;12;10;12;17;13;13;15;10;13;13;21;17;14;19;12;20;10;9;6;16;41;6;16;17;19;48;18;1;12;18;18;8;9;22;10;12;11;28;24;31;13;14;6;24;31;17;15;18;16;11;12;15;21;23;40;12;24;8;4;3;25;7;14;23;11;4;24;18;21;17
+2,2',3,4',5,5',6-Heptachloro-4-methoxybiphenyl;9;6;5;8;8;12;8;6;7;8;15;11;6;5;5;6;5;5;6;6;6;4;16;5;9;17;17;30;15;24;16;40;35;11;40;12;37;15;3;35;71;40;75;53;30;24;28;27;25;40;40;32;19;39;29;31;45;36;65;71;83;42;40;32;50;34;35;63;74;66;49;84;28;25;11;22;14;7;2;13;29;30;13;10;17;12;14;15;29;63;11;6;18;13;16;27;18;21;21;37;43;16;22;19;27;54;68;58;61;47;58;68;35;27;42;58;44;64;30;69;49;35;43;56;24;62;48;21;19;12;84;23;4;28;9;28;15;15;19;24;17;26;14;10;17;13;14;5;11;18;6;12;13;9;14;25;12;13;11;6;18;96;58;87;108;86;113;86;95;100;120;38;23;31;39;8;4;24;17;16;18;4;13;9;15;18;18;1;21;18;49;18;31;17;23;8;5;18;24;13;25;16;18;20;29;8;26;31;16;32;68;36;45;28;26;22;43;24;2;17;20;21;52;26;33;38;35;51;41;88;88;92;50;38;93;74;187;139;128;71;11;13;12;22;30;7;12;14;27;21;13;12;16;26;39;10;14;18;11;14;18;8;5;5;14;6;64;34;34;7;6;6;19;15;7;18;6;9;8;8;9;31;19;31;20;5;19;24;3;6;42;21;9;12;8;5;8;28;25;17;16;5;15;3;8;12;28;16;12;11;12;5;2;4;11;21;14;15;15;25;23;20;18;14;19;17;29;22;10;19;21;24;13;10;10;26;47;3;14;22;28;46;21;4;9;12;19;15;12;20;27;14;26;41;35;37;9;19;9;31;50;22;15;16;12;18;13;25;26;26;42;12;29;9;2;3;35;8;23;32;13;5;29;21;39;33
+2,2',3',4,4',5-Hexachloro-3-methoxybiphenyl;10;4;4;9;9;12;10;6;6;10;13;12;5;7;7;5;4;4;4;4;9;8;25;8;15;17;13;33;19;28;13;39;36;11;50;11;43;18;4;42;66;35;62;47;44;35;37;38;34;41;37;30;24;48;34;28;57;46;69;77;78;44;42;35;61;44;46;72;75;74;53;73;31;27;23;32;21;11;3;15;36;31;16;14;23;16;19;22;43;61;10;8;22;10;11;31;20;31;31;42;58;23;30;34;31;51;54;56;58;54;54;70;44;29;35;60;44;76;42;78;53;33;37;58;20;78;68;28;23;20;123;23;8;29;12;30;18;19;26;27;18;26;17;7;17;10;16;5;11;19;6;12;14;11;20;30;15;16;13;8;18;108;84;98;102;100;126;96;108;131;121;41;27;41;49;12;6;37;17;16;18;3;20;14;17;19;21;2;22;20;58;16;34;18;31;8;6;21;24;15;25;18;20;18;40;7;29;37;16;38;64;36;47;33;29;24;51;30;4;17;22;26;52;27;32;36;33;53;45;77;81;83;63;50;70;80;139;192;140;76;17;15;14;27;39;8;9;15;35;22;13;13;20;27;42;9;19;18;12;15;19;8;7;6;15;9;77;36;37;11;6;6;22;16;9;18;6;10;10;11;12;40;20;34;23;7;20;21;4;7;45;17;9;12;10;5;8;34;29;24;25;10;18;3;8;13;32;23;18;14;14;7;3;6;15;30;17;16;23;34;25;22;24;14;28;20;27;28;16;25;22;28;18;15;12;33;58;6;17;25;31;54;25;5;15;18;25;16;12;28;28;19;32;46;39;39;16;18;8;32;55;29;17;27;23;21;17;29;34;31;46;18;30;9;3;5;42;13;32;40;15;5;34;25;45;39
+2,2',3,4',5,5'-Hexachloro-4-methoxybiphenyl;9;5;4;6;7;11;8;5;6;10;16;10;6;7;6;5;6;5;6;6;8;6;22;7;12;15;15;30;17;22;16;36;32;11;41;9;39;14;3;38;68;40;59;44;39;32;35;35;32;37;34;33;17;36;32;31;61;48;68;72;77;46;45;38;67;47;47;70;72;73;53;74;30;27;13;30;19;12;3;12;31;28;13;11;19;16;17;17;31;51;9;5;18;12;13;30;18;25;26;38;44;16;25;25;28;49;52;56;52;53;55;67;35;28;34;50;39;66;34;69;39;28;38;44;20;64;53;22;20;15;100;19;6;28;9;25;15;16;23;25;19;24;14;7;19;7;12;4;11;18;3;12;13;12;15;29;11;13;11;8;16;96;64;88;97;90;105;78;88;106;114;43;21;35;37;9;4;25;10;12;13;3;14;10;14;16;14;1;22;15;46;19;30;17;25;7;5;19;25;12;22;13;17;17;37;8;29;34;11;34;60;34;39;27;26;19;44;25;2;14;16;23;45;27;33;40;35;57;45;76;81;85;68;52;69;79;128;140;164;76;10;12;11;23;33;6;11;11;30;19;12;12;16;26;35;11;13;18;13;11;14;7;4;6;14;8;64;31;32;8;4;6;18;13;7;19;5;9;8;9;8;37;14;28;18;7;22;22;5;5;43;18;8;13;4;5;5;28;24;17;20;7;14;3;8;12;31;19;11;12;12;4;2;5;11;18;16;17;22;28;23;20;15;9;20;15;29;21;14;20;19;22;12;10;8;28;54;5;16;22;26;52;21;5;9;15;22;13;13;18;26;13;24;42;35;37;12;18;8;30;47;25;14;23;21;19;12;23;25;28;43;12;28;11;4;4;39;9;23;31;14;5;31;24;40;35
+2,2',3,4,5,5'-Hexachlorobiphenyl;7;7;7;7;9;9;6;5;5;7;9;9;7;8;7;8;9;8;9;9;3;6;15;6;7;16;9;18;8;18;11;28;29;9;38;8;25;11;4;28;72;36;69;22;41;37;38;37;38;36;36;35;5;8;29;29;65;47;82;96;88;51;46;44;71;48;50;84;84;90;61;84;12;11;13;26;9;6;6;11;26;21;9;12;18;13;8;11;19;34;7;6;15;7;8;19;12;12;17;22;25;15;17;17;18;53;55;45;27;28;29;29;26;24;36;33;27;35;23;42;30;21;18;31;26;28;29;13;17;11;53;13;8;19;10;19;5;10;16;19;15;14;13;11;15;2;6;3;3;8;7;10;6;10;12;17;5;6;7;2;6;58;28;56;67;60;70;50;55;64;72;33;8;15;10;6;4;13;9;7;7;0;8;8;9;15;9;2;4;14;33;16;23;12;18;8;7;10;17;8;11;7;8;14;35;5;19;23;5;14;39;23;25;20;13;12;28;13;4;11;14;20;28;17;24;37;35;61;48;88;93;93;76;57;77;104;71;76;76;104;11;9;11;15;24;3;7;8;21;14;5;4;13;14;28;8;15;15;5;10;10;4;4;6;14;6;45;23;21;6;3;6;9;11;6;14;5;3;9;4;10;28;11;22;10;8;10;14;5;6;26;17;5;9;3;4;4;14;13;10;15;8;12;3;8;9;27;14;7;8;11;5;1;3;9;18;12;11;11;16;13;14;13;9;13;13;17;16;12;18;12;18;10;9;6;14;39;6;16;17;20;46;18;0;12;17;16;8;9;19;10;12;11;24;24;28;13;14;5;22;29;16;13;17;14;9;12;14;19;22;37;9;22;8;4;3;25;7;15;21;9;4;22;16;22;18
+Praziquantel;9;8;10;7;8;6;5;7;6;10;12;11;6;7;11;12;7;8;8;8;7;7;20;11;8;13;13;22;23;32;12;20;18;8;27;12;47;19;10;8;12;12;23;0;15;20;21;22;22;4;3;7;13;9;15;9;11;10;10;9;11;13;12;12;12;10;10;9;8;9;7;10;18;25;29;31;8;6;6;36;24;21;25;17;33;25;27;28;26;22;15;9;15;14;17;15;12;19;21;25;39;18;26;25;28;4;5;2;6;6;4;7;11;8;7;3;4;9;8;28;13;9;5;19;14;15;15;11;16;10;25;36;12;19;8;32;25;28;20;22;11;23;19;12;19;9;18;5;12;12;5;13;16;16;18;35;27;25;30;12;31;18;33;9;8;11;27;6;9;48;29;6;6;13;7;13;3;3;24;20;19;13;28;20;13;11;13;2;13;17;36;8;29;14;29;10;8;18;16;11;20;14;14;15;30;5;25;31;16;36;16;23;33;18;24;27;27;39;6;14;20;33;11;13;13;11;11;14;12;12;11;12;12;10;9;11;11;17;10;11;57;15;12;22;23;11;6;14;24;11;16;16;15;17;33;8;21;11;5;8;21;6;4;5;12;5;29;13;22;9;7;5;26;20;12;13;4;5;11;9;22;27;22;22;27;14;14;15;3;5;16;18;9;20;18;6;6;42;29;30;31;20;18;7;8;13;11;25;31;12;12;16;5;10;27;35;10;16;27;14;8;22;42;10;27;17;5;16;12;20;17;22;22;22;8;18;33;15;15;13;16;17;21;7;6;19;11;17;20;12;13;17;13;30;48;20;2;13;12;20;35;23;16;29;15;31;8;18;41;48;35;46;50;14;9;13;25;36;52;45;11;6;45;34;55;48
+Mexacarbate;5;5;4;9;11;9;6;8;7;7;10;8;5;6;7;6;4;5;5;5;4;4;11;2;15;14;12;25;20;24;15;19;16;12;19;17;36;14;11;12;10;12;12;2;15;9;9;9;11;3;2;10;17;14;11;11;11;10;10;10;9;12;12;11;13;10;10;12;9;11;8;8;19;25;21;17;16;15;5;14;15;16;18;17;20;11;11;17;26;16;6;6;11;7;11;24;22;20;13;18;31;17;20;22;26;6;5;4;8;8;7;10;9;6;5;6;4;5;5;23;12;8;4;18;12;14;13;9;11;9;25;24;11;26;7;13;23;25;26;23;19;28;19;8;21;12;14;6;15;20;10;17;23;20;21;33;25;27;29;7;33;20;16;13;11;11;26;7;11;31;28;12;7;15;14;14;6;8;15;14;12;6;21;16;9;11;10;0;9;12;29;13;23;8;18;3;3;11;17;5;13;8;8;12;25;3;29;29;17;23;14;24;28;19;19;17;18;28;6;11;19;18;16;14;11;13;12;15;11;7;9;8;15;10;8;9;13;15;12;9;15;39;29;21;17;8;7;8;28;18;16;16;9;7;25;10;29;16;16;10;13;12;2;5;12;12;25;23;28;13;9;9;26;26;9;22;3;14;23;16;11;23;14;28;18;19;2;10;1;13;20;5;3;22;17;4;10;28;16;25;13;22;18;5;6;10;10;6;16;7;16;8;0;2;24;21;5;17;21;13;11;22;25;10;28;27;10;13;24;21;12;23;22;22;13;10;28;13;14;19;19;12;22;8;2;7;9;6;11;10;7;9;18;22;35;14;5;11;8;14;22;16;11;14;10;21;6;13;21;26;22;26;29;8;2;5;19;19;32;36;14;11;37;31;39;38
+Aminocarb;3;2;4;9;10;6;4;5;5;6;7;6;3;2;5;3;2;2;2;2;3;4;10;2;11;9;10;19;15;21;13;14;11;5;13;12;29;11;10;9;11;10;10;2;13;8;7;5;7;5;1;6;13;6;11;9;10;7;10;11;9;9;10;8;12;7;7;11;10;11;8;9;18;21;16;15;13;11;3;10;13;13;17;15;16;11;10;12;22;13;8;4;7;5;8;21;19;15;12;12;23;12;13;15;16;7;5;3;4;6;4;6;6;6;6;5;3;4;3;15;9;7;3;15;11;10;9;9;11;9;17;20;9;22;4;12;19;21;20;14;18;22;15;9;18;11;14;6;14;18;9;14;20;17;19;25;20;23;23;7;27;20;14;12;13;8;21;7;10;26;23;9;5;7;7;11;7;6;16;14;14;3;18;11;8;8;10;0;7;7;20;11;19;7;14;3;3;10;17;7;13;8;9;9;18;2;20;18;14;17;9;20;19;13;13;11;18;22;3;10;16;13;10;12;11;11;11;13;8;9;9;9;12;7;9;11;12;14;11;11;12;29;29;21;13;9;5;6;19;12;10;10;8;4;19;11;23;12;16;8;12;10;3;2;9;10;21;16;20;10;7;6;20;22;8;21;1;11;15;16;11;17;13;23;12;14;1;4;0;9;16;6;1;14;11;3;8;20;11;16;10;13;12;6;5;10;7;4;8;3;13;7;0;2;20;16;3;14;14;13;11;18;20;9;22;20;10;12;21;20;9;19;18;16;8;5;22;12;10;16;16;7;18;5;3;4;5;2;8;7;4;5;10;16;26;13;3;10;3;10;16;13;10;7;7;13;5;13;18;19;15;14;18;6;2;5;14;12;24;26;11;10;26;22;29;29
+Isocarbophos;5;5;4;5;6;7;3;5;5;7;12;8;6;6;7;7;5;5;5;5;7;7;18;8;14;11;11;23;19;26;13;11;15;10;12;12;36;4;6;12;16;15;13;4;27;24;25;23;23;9;4;12;15;17;13;11;16;12;16;17;17;13;12;10;19;10;11;16;15;16;9;17;17;19;20;16;12;12;8;23;13;15;19;16;19;11;15;17;28;19;9;7;16;9;10;21;19;16;13;19;24;19;22;17;23;13;12;7;8;7;9;9;8;11;9;10;4;9;4;21;11;5;4;18;10;18;16;7;13;8;35;15;6;23;5;12;16;18;23;17;18;16;11;5;12;9;16;5;15;18;4;13;19;15;15;32;14;11;13;7;16;24;19;23;28;20;38;21;25;42;37;14;7;15;17;9;4;8;20;13;15;7;20;12;10;13;11;2;13;12;29;15;14;9;11;3;3;7;12;3;9;7;6;9;24;5;23;29;13;27;30;21;24;12;14;14;29;31;2;11;20;23;17;10;11;15;14;18;14;20;19;19;17;10;14;16;22;27;23;15;22;21;21;48;12;6;6;14;28;18;14;13;10;19;20;9;18;18;12;3;8;10;3;2;7;10;37;20;18;12;8;6;20;21;5;18;5;9;14;8;12;23;8;29;14;18;9;14;1;9;13;12;6;18;17;4;11;35;16;17;12;10;14;4;6;10;14;19;6;9;11;3;2;1;15;11;7;15;12;21;17;27;19;8;22;18;15;25;21;17;11;16;14;13;7;19;29;4;10;17;19;32;19;6;5;17;16;13;16;19;15;10;21;26;28;22;9;17;13;29;26;23;18;14;9;25;9;17;22;28;37;22;30;5;2;3;27;15;40;39;13;9;34;23;43;39
+Acephate;11;7;11;10;10;7;9;11;11;15;22;15;9;11;14;14;6;7;7;8;8;8;22;6;14;17;7;20;16;27;9;16;35;13;27;14;37;12;6;13;26;21;45;4;14;10;11;11;11;15;12;19;19;19;21;16;21;15;17;21;26;22;19;17;23;15;16;20;25;21;14;22;14;13;21;16;12;10;7;24;21;17;23;18;23;18;21;22;34;25;14;7;15;11;11;15;13;26;20;28;33;21;27;23;27;19;17;18;14;17;14;18;15;17;18;21;19;25;14;34;11;12;15;36;18;28;26;13;9;8;49;20;5;18;9;15;15;14;19;16;10;20;14;9;10;9;15;3;9;12;1;9;11;9;13;22;17;19;21;8;24;29;25;26;26;21;39;19;19;46;41;20;17;19;20;8;5;15;18;12;15;5;25;12;14;16;8;3;14;21;46;12;23;10;25;8;6;15;15;8;16;11;10;15;18;6;18;27;14;27;19;18;29;18;15;16;18;29;4;8;17;24;17;15;15;20;18;26;21;26;25;26;23;17;27;25;30;39;33;24;23;17;13;12;131;5;6;10;35;10;16;16;10;19;49;6;14;10;8;9;11;6;3;7;7;6;31;17;16;7;7;6;22;15;13;17;8;7;6;9;14;29;12;26;14;11;13;19;6;4;24;19;1;16;10;6;4;32;21;20;13;11;16;3;5;9;19;11;12;8;16;6;3;5;11;15;9;18;16;10;10;19;23;7;17;19;12;12;6;27;14;25;13;13;8;21;65;5;9;19;22;30;24;6;7;8;9;9;9;19;10;13;16;27;42;24;9;18;13;27;32;13;16;16;12;16;10;16;30;32;35;34;33;7;1;3;24;32;45;40;12;4;36;28;51;42
+Carbaryl;1;2;1;2;4;1;2;1;1;3;6;2;0;1;2;3;2;2;2;2;0;0;2;2;2;3;5;9;9;8;3;4;6;2;6;5;12;6;0;0;3;0;3;0;8;3;4;3;4;1;1;1;4;4;3;0;1;1;3;3;3;2;1;2;1;1;1;2;3;2;2;4;1;4;9;9;1;0;2;8;6;5;6;5;7;4;10;8;8;4;6;3;6;3;4;2;2;5;6;7;10;6;3;5;4;2;2;1;1;0;0;3;1;3;4;3;3;2;2;7;1;2;0;5;2;2;4;2;3;1;8;8;3;8;3;9;11;10;7;7;2;11;7;1;8;1;4;1;5;5;2;5;8;7;9;12;12;11;11;5;11;7;1;5;8;1;7;3;4;9;9;5;7;6;4;4;6;1;3;2;2;2;7;1;8;6;1;1;1;7;11;3;11;9;8;7;8;9;8;5;10;7;8;5;9;1;8;5;4;9;6;5;7;6;3;10;5;9;0;6;3;7;0;7;2;0;0;2;1;5;4;4;1;1;4;3;7;8;6;3;11;8;9;6;5;12;2;3;9;7;7;7;8;3;9;1;7;4;4;6;6;5;4;0;3;3;12;9;9;3;2;4;11;8;7;5;3;4;1;6;5;9;6;10;9;3;5;5;1;0;2;4;2;5;5;0;2;10;10;5;10;4;8;1;0;1;1;8;9;2;8;5;2;5;7;8;2;10;3;5;2;3;9;6;5;3;4;4;0;8;5;8;3;3;2;4;8;4;1;4;9;7;9;1;1;3;3;5;8;7;2;4;5;7;12;4;1;2;2;7;4;7;5;6;3;10;2;6;9;11;7;11;11;1;1;3;8;8;11;12;4;3;12;11;12;12
+Mevinphos;2;4;2;1;1;2;1;1;1;4;5;3;1;3;4;3;3;4;4;4;2;1;6;3;3;4;5;6;8;5;6;7;5;6;8;4;13;3;1;8;8;8;9;3;7;7;9;7;8;5;3;3;3;7;6;4;6;4;5;6;8;7;5;5;7;3;4;6;6;6;5;9;9;8;9;8;6;4;4;7;9;9;6;6;7;4;7;9;8;10;5;4;10;7;8;10;6;9;8;9;11;5;8;6;12;8;8;7;5;5;6;5;2;4;6;7;4;8;2;10;4;2;2;11;5;7;7;4;5;3;11;9;2;9;2;7;7;9;9;8;6;6;7;4;5;5;6;1;6;8;1;4;8;8;5;13;8;8;7;3;9;12;8;9;10;8;16;7;8;9;16;3;4;5;5;0;2;6;6;6;7;4;4;6;4;4;2;1;7;5;7;6;7;3;4;2;2;5;8;3;5;4;4;6;10;1;7;8;2;9;11;9;8;6;7;4;10;7;3;6;6;5;6;5;7;7;5;9;5;11;8;10;8;5;9;7;12;9;11;7;6;7;5;6;6;2;17;13;13;8;6;6;5;5;10;5;7;8;4;3;1;2;1;4;6;1;16;5;9;7;3;4;11;8;4;9;2;2;5;4;3;11;2;11;5;4;5;5;0;3;6;7;1;11;1;0;2;10;9;10;5;3;11;2;0;4;6;5;3;3;8;2;0;1;2;2;4;9;6;4;5;8;8;2;6;2;4;8;7;7;8;9;4;3;4;9;14;1;3;9;7;14;9;5;3;5;5;5;7;5;5;6;4;11;12;8;2;6;6;10;9;11;6;10;10;11;1;7;11;14;12;13;14;1;1;1;10;10;11;11;4;5;12;8;15;14
+Dicrotophos;2;5;2;1;1;2;3;3;2;3;9;5;2;5;5;5;4;5;5;5;4;5;12;7;4;2;4;13;7;15;9;11;14;6;13;6;20;5;4;7;12;14;13;1;9;9;9;9;9;6;6;9;10;8;8;11;13;9;9;9;10;13;13;10;13;10;10;10;9;9;9;10;8;13;14;8;10;6;5;14;12;9;11;8;7;3;9;13;9;10;4;4;10;7;8;14;13;14;11;16;13;7;12;9;13;9;8;7;5;6;4;4;7;11;10;5;6;7;4;18;6;5;5;13;9;6;8;4;9;3;14;15;3;13;5;8;9;11;7;7;7;7;5;5;7;6;6;2;10;12;3;8;8;9;5;11;9;8;9;6;11;16;14;10;16;9;18;10;12;22;24;11;3;7;9;2;5;7;9;11;11;2;7;8;8;6;4;3;6;8;19;4;13;11;9;4;3;6;14;5;11;5;7;8;13;5;7;19;2;17;16;11;15;9;12;5;19;13;3;5;9;7;5;5;13;13;12;15;9;11;11;11;11;10;6;9;14;15;11;8;14;8;6;14;10;3;13;27;18;10;8;7;8;9;10;4;12;6;7;6;2;1;4;5;7;3;22;10;11;11;5;7;10;6;11;9;4;3;5;4;8;13;3;15;6;2;4;9;2;4;8;9;2;8;5;1;1;19;17;12;2;4;16;5;3;5;9;10;3;8;14;1;1;3;2;3;5;17;6;5;5;17;13;3;13;9;9;10;7;12;11;12;3;2;6;14;16;3;9;6;12;19;14;2;4;12;14;9;15;13;10;10;11;16;19;12;1;7;11;13;16;15;12;17;13;20;4;15;17;24;20;18;22;3;3;4;15;15;20;17;5;4;17;13;25;18
+Monocrotophos;7;9;12;12;14;12;9;11;10;16;23;14;10;10;10;10;10;10;11;12;9;10;26;11;16;14;15;28;28;34;19;22;36;15;29;20;62;14;11;15;17;24;36;2;29;22;23;19;20;8;4;17;22;22;21;20;24;16;16;23;20;24;25;17;26;16;18;18;19;18;12;18;26;26;31;24;15;10;12;32;25;28;33;31;29;20;25;32;37;25;19;9;22;17;20;28;26;33;30;32;38;27;29;32;40;17;19;15;13;10;10;10;11;13;14;12;7;14;8;38;15;8;5;33;17;22;18;9;13;10;41;35;9;31;9;19;25;26;26;25;20;31;15;12;24;14;18;3;18;26;6;19;25;23;20;41;27;26;32;12;36;46;28;23;27;19;47;21;23;55;48;24;20;20;22;15;8;14;31;25;27;11;25;22;17;20;13;3;14;22;50;19;30;16;28;8;8;19;28;15;26;20;21;20;30;11;30;41;15;32;33;34;40;26;19;18;34;36;7;13;25;27;16;22;21;25;24;27;20;21;21;22;24;19;16;21;27;35;30;21;24;28;19;28;35;9;13;18;85;19;26;25;14;15;48;10;25;20;15;11;13;11;7;9;10;10;46;27;29;15;10;8;36;23;19;30;6;10;17;11;14;42;14;39;26;13;10;13;5;9;23;16;5;21;12;6;7;37;38;27;16;14;30;6;11;19;12;21;16;14;27;9;2;4;18;18;13;29;28;20;18;35;31;7;25;24;13;27;20;35;27;29;18;17;13;23;50;9;17;25;29;29;28;10;11;13;11;19;19;20;12;13;28;38;45;30;5;23;15;31;34;26;25;29;20;31;16;27;35;47;43;48;46;14;5;6;36;47;60;54;18;8;49;38;68;60
+Dimethoate;1;4;3;7;8;7;3;6;6;2;8;6;2;3;2;3;3;4;4;4;4;4;8;5;7;10;7;19;12;16;10;16;17;2;16;13;27;7;7;8;13;15;14;8;20;13;15;14;17;13;12;11;13;11;9;11;14;11;15;11;14;12;11;12;14;9;11;14;14;16;13;16;14;16;14;15;11;9;4;13;11;13;15;13;14;9;17;17;17;16;11;11;15;6;10;12;12;15;16;15;21;18;18;13;14;11;16;13;10;7;6;10;8;7;9;13;10;14;9;23;12;9;8;14;8;14;16;10;11;11;25;19;7;16;6;15;16;21;15;15;10;16;14;6;12;9;13;5;10;13;6;12;13;12;12;21;13;11;13;5;12;26;18;21;31;18;32;22;26;29;32;16;6;9;11;4;3;9;12;7;7;4;11;9;7;14;10;0;7;10;20;11;20;9;11;6;6;9;15;7;11;8;8;8;14;1;15;21;9;16;19;16;20;20;12;13;20;23;6;11;9;16;9;9;16;13;12;12;10;16;18;16;15;12;17;16;21;22;19;14;11;18;12;18;10;7;8;10;19;33;5;5;15;14;16;5;14;10;12;8;9;8;1;4;10;9;29;20;20;7;5;6;18;18;5;13;5;9;11;8;11;17;10;20;12;10;13;11;6;8;12;8;5;14;9;2;7;25;16;16;13;8;16;6;4;5;8;12;13;7;13;3;0;2;11;15;5;17;8;10;6;11;20;9;12;16;9;13;13;13;9;18;10;10;10;11;20;6;10;11;10;17;13;2;4;4;6;13;14;14;10;8;11;16;18;15;5;10;6;17;20;16;14;14;8;12;5;13;23;18;22;15;18;7;3;4;17;11;23;20;7;8;22;14;25;23
+Dimethomorph _isomer1;8;5;5;9;11;6;10;9;7;12;16;8;6;8;9;10;5;5;6;7;10;9;19;11;15;11;12;11;15;31;10;6;17;13;14;8;31;10;4;8;5;12;20;1;21;13;14;13;12;5;5;12;19;15;8;12;7;6;6;3;6;11;10;10;7;6;6;5;8;5;5;5;10;16;20;7;13;7;12;20;7;8;16;10;15;9;21;22;23;8;11;12;19;14;13;7;16;20;19;20;25;16;18;25;26;4;4;4;6;4;5;4;5;5;4;5;6;6;5;17;7;4;6;13;3;12;11;1;11;1;27;7;2;3;5;8;8;10;11;8;3;12;2;3;2;8;10;2;3;7;2;1;13;9;6;21;17;14;17;4;21;18;15;6;11;8;17;4;7;34;26;15;18;16;14;10;5;2;23;23;21;11;25;19;12;10;10;1;13;18;34;9;9;13;11;5;5;9;11;9;13;10;11;13;25;6;8;30;3;12;15;25;19;7;12;11;12;16;3;16;13;23;10;16;14;12;12;12;11;6;6;6;6;6;9;5;13;13;12;5;16;16;10;14;16;7;6;8;26;5;51;48;7;14;18;5;21;9;5;5;0;7;4;6;8;2;26;14;18;12;3;9;33;13;7;23;2;5;8;4;15;29;0;21;11;14;7;16;3;9;18;17;5;12;4;2;4;23;27;21;22;17;18;3;2;7;15;24;11;12;14;6;1;2;9;11;8;17;14;12;10;26;25;6;16;12;11;13;12;19;8;22;8;7;7;20;31;7;5;10;19;26;18;5;5;8;8;13;11;18;5;6;21;31;25;26;6;20;12;20;30;20;17;20;18;25;9;15;27;37;32;29;40;2;3;5;25;27;33;30;14;5;30;26;43;36
+Dimethomorph_isomer2;8;5;5;9;11;5;8;9;7;12;15;8;6;8;9;10;5;5;6;7;10;9;20;11;14;11;13;11;14;31;10;6;15;13;13;6;30;10;3;8;4;11;18;1;21;12;13;12;11;5;5;12;18;15;7;11;7;6;5;2;5;11;10;10;7;6;6;5;7;4;5;4;8;14;18;7;13;6;10;18;8;9;14;8;14;9;19;20;21;7;10;11;17;12;11;6;14;18;16;18;23;16;17;23;25;4;4;4;6;4;5;4;5;5;4;5;6;6;5;15;7;4;6;13;3;11;10;1;11;1;26;7;2;3;5;8;8;10;11;8;3;12;2;3;2;7;8;2;3;7;2;1;13;9;6;21;17;14;17;4;21;18;15;6;12;8;17;4;7;33;24;14;18;15;14;10;5;3;22;23;21;11;24;17;12;10;10;1;13;18;34;9;9;12;11;5;5;9;11;9;12;10;10;13;25;6;8;28;3;12;15;25;18;7;11;11;12;14;3;14;13;22;10;15;13;11;11;12;10;5;5;5;6;6;8;5;12;13;12;4;16;16;10;13;16;7;6;7;25;5;48;49;8;14;18;5;19;9;5;5;0;7;4;5;8;2;26;14;18;11;3;8;33;13;7;21;2;5;7;4;14;27;0;22;11;11;6;15;3;9;18;16;5;13;5;3;4;22;26;21;22;15;17;3;2;7;15;22;11;12;12;6;1;2;9;11;9;16;13;11;11;25;22;6;15;10;9;10;10;17;8;21;8;6;7;19;29;7;5;9;17;25;18;5;5;8;8;13;11;17;5;5;20;29;25;26;6;20;11;19;29;19;17;19;16;26;9;14;28;35;30;27;39;2;3;5;25;26;32;29;14;5;29;26;42;36
+Vamidothion;1;3;0;4;5;5;4;2;2;1;5;4;0;2;3;4;2;3;3;3;2;1;7;3;3;11;4;9;10;22;5;12;13;2;19;4;21;7;3;6;13;13;14;4;15;15;15;14;15;9;5;13;5;8;9;9;16;11;10;10;14;19;18;15;16;12;12;12;13;13;9;12;12;15;16;19;11;7;6;11;16;12;13;11;10;6;12;16;13;14;8;8;17;4;7;9;13;15;16;14;20;16;16;12;13;7;7;5;3;5;4;6;7;8;7;8;9;10;8;21;13;6;5;15;8;8;9;10;10;8;19;13;3;10;6;14;10;13;10;11;5;12;8;4;8;4;7;2;5;7;6;5;7;8;5;14;9;8;8;2;9;23;9;17;19;24;28;18;21;24;29;10;10;10;12;3;4;5;11;5;6;2;8;6;10;9;8;2;7;7;21;3;18;8;11;6;7;9;10;7;12;5;8;8;19;1;12;22;8;16;13;18;17;14;14;15;18;17;6;10;10;12;6;7;9;12;11;20;19;13;12;13;16;13;13;15;16;20;16;13;15;9;8;10;10;8;5;8;14;15;7;8;36;8;17;3;15;5;4;5;10;3;3;3;8;3;25;14;16;3;3;5;15;12;6;6;4;3;6;4;13;15;10;8;7;9;9;16;4;4;11;11;4;9;13;0;3;24;11;16;17;13;11;3;1;1;9;11;17;6;6;11;1;3;13;16;5;10;9;14;7;9;17;8;15;10;7;9;11;5;4;10;9;9;6;14;20;7;6;6;6;16;8;3;8;9;12;9;13;13;10;7;10;16;21;19;2;6;6;20;21;16;10;21;6;14;4;14;22;24;20;16;22;1;3;4;12;12;21;16;3;2;13;11;18;16
+Temephos;4;8;9;3;3;3;2;8;7;11;11;10;8;7;9;10;6;8;8;8;5;7;13;8;9;9;7;9;8;23;6;12;19;6;21;5;23;7;2;12;14;17;24;2;14;13;14;11;12;16;13;16;11;17;21;11;17;15;19;10;17;21;19;17;21;12;14;16;17;16;12;14;7;13;13;14;9;8;4;13;22;17;11;8;13;8;19;23;26;16;16;10;14;7;9;11;10;22;21;29;34;24;25;20;29;18;14;15;9;8;11;13;13;21;17;11;8;12;8;16;10;8;7;14;8;20;21;8;12;5;31;12;3;9;5;10;7;9;11;12;7;8;7;5;6;2;5;2;5;9;2;6;5;6;4;11;10;9;9;8;16;33;20;26;32;22;39;27;30;38;41;15;5;10;16;7;2;13;16;12;14;5;15;10;8;10;10;1;18;16;31;12;10;6;7;4;4;6;9;5;9;5;6;12;17;4;7;24;8;19;23;23;27;13;6;17;32;16;5;13;20;20;12;9;12;15;13;21;17;18;17;18;17;14;20;19;26;27;26;14;17;7;4;19;19;3;5;9;15;14;14;14;8;62;21;7;11;6;4;3;11;3;1;2;9;2;26;19;15;4;3;5;13;4;6;6;3;3;3;3;6;27;12;16;14;6;13;18;5;4;21;13;4;8;5;2;2;12;13;8;22;4;8;6;6;4;12;10;14;9;4;3;1;3;5;14;7;9;14;12;7;14;11;7;12;7;20;16;3;13;12;14;13;9;5;8;27;8;8;5;13;33;15;3;4;10;11;6;11;16;18;11;15;19;22;26;7;11;6;24;29;9;17;20;8;10;10;9;14;25;32;17;26;6;1;2;28;12;31;19;12;2;22;18;20;16
+Methomyl;21;10;13;14;15;14;15;11;10;17;29;15;13;9;13;14;12;12;13;14;13;12;34;11;24;25;20;28;26;46;19;24;45;16;38;17;65;19;6;20;28;26;52;4;17;15;17;17;17;20;18;26;18;23;26;19;26;21;27;25;27;30;26;22;29;19;21;27;26;25;19;27;30;31;34;28;19;13;11;33;35;32;33;29;40;27;34;39;48;35;23;14;22;21;22;24;22;45;37;38;56;31;36;38;51;25;23;23;19;17;16;22;20;15;16;21;14;26;16;50;16;16;12;39;21;26;21;10;12;10;39;32;12;29;10;28;23;23;32;37;20;29;25;16;23;14;21;4;14;23;6;18;18;23;16;36;27;28;29;15;38;38;26;25;25;28;45;24;27;47;50;24;21;21;22;15;4;14;27;18;18;9;33;21;19;21;10;0;19;28;54;23;31;17;34;14;12;27;33;21;31;23;26;26;21;14;32;37;20;41;22;32;39;30;23;25;31;43;8;7;25;28;20;21;23;24;22;32;24;29;31;33;28;21;31;28;39;42;35;28;33;25;19;20;49;9;10;10;48;16;18;18;17;21;110;10;27;18;12;11;14;8;4;6;14;5;44;25;29;11;4;11;38;22;15;28;6;9;17;11;19;48;16;40;31;13;14;20;5;6;21;20;5;24;16;10;9;42;30;32;26;22;20;6;10;15;19;23;30;9;19;11;3;8;21;31;14;25;30;15;15;22;35;13;24;25;12;22;15;30;19;31;19;17;12;23;65;13;17;22;37;28;30;7;13;9;7;17;16;19;11;15;21;39;49;35;6;21;13;21;48;23;18;22;8;30;14;26;47;45;50;47;47;12;6;7;28;43;70;58;20;8;57;44;77;61
+Ethiofencarb;5;5;6;6;7;7;5;4;4;6;7;5;7;4;5;5;3;5;5;5;6;6;10;6;6;8;9;14;12;9;12;10;5;7;9;7;15;5;5;7;11;5;11;1;7;6;6;4;6;7;4;3;5;5;8;2;7;5;8;8;10;5;5;4;7;4;5;7;7;7;4;9;10;13;11;10;9;8;5;11;12;12;13;11;12;7;10;10;8;7;8;5;9;8;9;12;13;10;9;11;14;10;11;11;11;9;11;10;9;7;8;8;7;9;8;8;6;7;5;10;5;7;7;7;5;10;9;8;9;8;13;9;9;11;4;8;7;7;14;12;12;14;13;8;12;10;9;5;11;11;4;10;10;9;9;14;8;8;6;4;10;10;8;8;10;7;10;7;8;12;12;5;4;5;4;6;2;5;12;10;11;6;12;10;3;5;8;0;6;4;10;10;10;5;8;5;4;7;11;6;8;7;6;6;9;3;14;11;6;10;9;9;8;8;6;6;14;9;2;3;9;2;8;9;3;4;3;7;3;10;9;10;8;4;9;8;10;9;11;8;8;10;11;9;6;1;5;4;10;5;5;5;3;7;10;15;10;11;11;3;3;8;2;4;5;5;11;8;10;5;2;3;9;8;3;9;2;6;9;7;6;9;4;8;5;7;3;5;0;6;7;6;4;8;7;5;4;10;6;7;5;5;5;5;5;8;4;1;4;1;4;1;0;0;8;8;5;5;8;8;10;9;8;7;11;7;5;8;8;8;6;7;11;8;7;5;12;3;5;9;9;8;6;4;4;2;2;3;3;4;5;4;6;11;13;9;3;10;5;8;11;11;2;4;2;7;3;8;11;10;8;11;12;6;2;2;8;7;11;13;8;8;14;9;14;13
+Furathiocarb;4;2;4;5;7;10;7;3;3;3;10;8;5;2;3;2;1;2;2;2;5;5;13;4;12;13;9;30;24;33;15;17;19;12;23;14;42;18;11;8;15;14;21;1;13;11;11;10;13;5;4;10;12;14;15;12;16;14;15;19;13;16;16;14;19;15;14;15;15;16;11;13;21;32;28;24;17;15;9;24;24;23;33;21;31;22;26;30;35;9;16;13;23;18;21;22;25;34;26;28;44;23;28;33;37;6;5;2;5;5;4;6;8;11;8;7;6;10;10;31;14;10;6;21;15;18;18;10;17;11;33;19;11;25;7;18;22;23;27;24;17;34;20;9;22;15;18;7;12;16;8;18;27;23;21;35;15;13;16;4;15;22;28;17;19;15;31;14;19;43;27;14;7;19;15;13;5;6;22;16;17;4;35;21;10;12;9;1;9;10;30;11;20;10;16;6;6;13;14;9;15;10;13;7;15;7;31;32;18;26;4;22;26;17;21;22;19;33;7;11;19;15;16;10;13;13;12;21;14;12;13;12;17;14;9;16;14;19;13;15;21;29;23;18;14;7;7;12;25;14;21;19;15;11;27;10;56;18;13;5;16;10;4;7;9;13;32;13;20;8;10;9;20;27;8;17;2;13;21;18;13;46;17;19;23;16;8;9;4;11;20;18;5;15;19;3;7;33;25;29;23;24;12;5;5;9;12;12;29;7;12;12;0;5;29;32;6;13;30;17;14;23;32;9;33;22;9;21;24;14;7;18;25;25;15;12;39;18;10;23;15;27;12;2;6;7;7;10;10;24;13;14;16;31;42;20;4;15;8;16;23;20;14;31;14;22;11;8;28;42;29;31;43;8;5;11;25;28;39;35;12;13;33;22;47;42
+Methabenzthiazuron;6;7;9;8;9;8;7;6;5;9;11;6;10;6;8;8;8;8;9;9;7;9;18;9;6;7;12;20;12;14;13;14;16;13;11;14;22;9;7;9;15;9;14;2;12;12;12;9;13;12;7;9;11;14;9;7;13;10;13;10;15;10;8;8;14;9;11;12;13;12;11;13;12;13;14;11;13;12;5;11;13;14;12;11;11;6;8;12;12;12;5;6;12;7;9;17;17;12;10;14;18;11;14;14;17;10;12;7;10;9;10;10;8;9;10;11;9;12;9;15;9;12;10;13;8;14;9;11;12;12;20;16;12;20;6;10;9;11;16;12;12;16;17;12;15;9;8;3;14;18;7;13;13;15;13;19;7;8;8;3;12;17;14;16;15;13;17;11;14;20;21;14;5;15;16;7;4;6;12;10;11;3;13;10;4;14;4;1;10;15;21;13;19;13;21;9;9;12;16;12;16;12;12;12;12;9;16;21;10;13;19;11;22;15;10;12;22;16;3;5;19;7;13;10;8;10;10;13;11;15;16;17;15;12;16;15;18;18;18;15;11;16;12;18;10;4;8;6;20;10;9;9;5;6;18;11;18;26;9;8;7;8;5;4;5;9;24;13;13;12;6;4;8;14;9;13;3;9;12;9;7;17;7;19;8;5;1;5;1;6;6;8;4;10;6;6;5;14;13;16;7;9;16;2;6;12;9;9;5;2;11;2;1;3;10;14;7;14;10;10;18;15;16;6;18;12;10;14;15;12;9;15;14;11;8;7;17;7;15;21;14;10;11;1;3;5;7;9;10;12;7;9;11;13;15;9;6;13;8;10;15;10;13;15;8;13;5;8;13;18;13;16;18;15;3;6;10;8;9;18;9;7;16;10;24;21
+Methiocarb;3;2;1;6;7;6;5;3;3;4;8;5;1;1;2;2;1;2;2;2;2;3;11;3;5;10;8;16;14;15;9;11;12;2;9;7;17;6;6;8;7;11;12;0;8;10;10;9;10;4;0;7;6;4;7;10;6;6;6;7;5;9;8;7;8;5;5;6;4;6;4;5;15;17;16;15;12;8;6;14;14;15;17;15;13;9;13;14;14;10;11;4;9;9;11;13;16;13;13;14;15;12;14;11;13;2;1;0;1;3;2;1;7;4;2;3;1;3;1;11;8;3;1;7;5;6;6;3;4;3;11;13;5;18;3;11;16;16;12;8;11;11;7;5;9;6;5;5;13;15;5;8;16;14;7;17;11;10;14;3;13;14;10;9;13;8;13;5;8;19;18;7;8;4;4;10;3;6;12;8;9;5;10;6;9;11;9;0;6;3;13;6;11;5;8;3;3;9;11;6;9;5;8;2;14;3;14;16;6;4;10;14;15;9;7;7;19;12;3;10;10;15;7;12;7;11;11;10;9;4;5;4;7;4;4;6;11;12;13;5;5;16;16;12;8;4;4;7;15;12;5;5;4;4;12;11;13;9;20;5;4;5;3;2;4;6;15;9;13;8;2;8;18;16;9;16;1;9;8;7;9;10;5;15;5;8;6;3;1;7;11;2;1;6;5;2;2;12;11;11;5;5;8;5;3;5;5;8;4;5;7;3;0;0;6;10;5;8;9;12;11;9;12;5;9;12;10;14;10;15;9;14;8;7;6;5;15;4;8;10;12;9;10;7;7;3;3;8;11;8;6;8;9;17;19;8;3;9;6;11;12;12;6;9;5;10;6;14;15;17;13;15;15;6;2;2;15;12;18;18;9;8;17;14;20;19
+Tebuthiuron;3;2;5;6;6;4;4;5;5;5;9;2;2;2;4;4;2;2;2;2;2;2;4;2;6;5;7;11;10;12;8;6;9;5;9;4;17;7;1;5;6;5;8;0;9;7;6;6;7;5;6;5;9;6;7;5;7;5;8;9;11;7;6;4;8;5;6;7;10;10;8;9;2;6;12;7;5;1;0;7;10;7;5;5;6;4;4;8;10;6;1;2;5;3;3;4;3;8;9;8;11;8;9;11;9;8;9;6;5;5;5;6;6;6;10;8;8;14;10;13;6;7;6;11;7;4;3;3;5;3;9;13;3;10;5;9;14;10;11;12;6;14;6;7;7;2;3;2;6;10;4;7;9;10;6;17;10;12;12;5;14;12;10;10;12;7;12;7;8;14;15;9;7;9;9;6;1;5;5;4;3;1;8;4;5;3;3;2;5;7;11;3;12;10;12;4;4;7;12;8;11;7;9;5;12;4;8;8;3;7;4;8;17;10;6;5;8;11;0;3;12;6;7;7;8;6;6;6;6;9;8;8;7;6;5;10;14;15;11;10;8;10;8;3;9;6;3;6;11;8;5;5;5;3;11;3;5;8;5;19;1;5;2;0;5;0;16;11;13;6;5;5;14;7;8;11;3;4;5;3;9;9;2;15;9;2;2;5;1;4;5;8;3;3;2;4;4;15;7;6;6;2;12;3;4;6;4;11;3;6;10;1;1;3;5;10;3;15;4;4;6;8;14;5;5;8;4;6;1;13;12;14;7;4;3;3;9;2;5;6;11;10;10;4;6;1;3;6;5;5;1;5;5;6;15;10;0;5;5;8;10;5;4;9;7;8;3;10;12;13;8;10;15;6;2;3;11;11;14;18;8;1;18;13;18;16
+Iprovalicarb isomer 2;2;0;4;2;2;6;1;3;3;2;4;5;1;2;2;2;0;0;0;0;0;1;4;0;3;9;4;13;14;18;8;16;8;1;19;9;22;10;7;7;10;9;10;6;4;6;5;3;7;2;4;11;5;6;12;7;17;12;9;13;11;16;13;11;16;12;12;9;12;10;9;8;22;17;16;23;9;10;8;9;17;21;11;10;14;11;10;11;14;17;7;5;11;7;10;20;19;13;15;16;21;18;17;11;12;7;4;8;7;6;6;7;8;9;8;4;5;12;8;22;16;6;4;12;8;7;8;11;6;5;16;21;8;14;5;20;17;18;15;14;6;18;15;4;15;5;11;3;6;5;5;9;13;9;15;22;10;8;12;4;9;22;6;18;17;24;27;18;18;19;25;10;5;9;7;8;1;9;7;5;5;1;16;8;2;5;3;1;3;6;19;2;20;2;17;4;4;11;8;4;8;7;6;5;6;2;17;13;15;22;8;4;18;9;9;20;8;23;7;3;11;10;8;6;6;8;8;16;15;10;10;10;17;13;14;10;18;19;14;10;21;13;12;8;11;6;1;2;13;9;0;0;10;11;14;3;16;7;4;1;32;8;0;4;5;8;19;12;13;1;5;0;11;14;4;3;2;8;9;10;11;12;32;6;10;12;10;8;0;7;9;9;2;9;15;2;5;28;10;19;21;13;2;2;4;6;5;5;14;5;1;10;3;5;18;18;5;2;16;10;3;3;22;7;17;14;8;5;15;5;4;7;12;13;6;9;21;10;9;8;5;10;5;1;8;4;5;5;4;13;6;8;3;14;25;12;7;2;0;6;13;10;5;12;1;8;3;6;17;17;11;16;15;7;1;4;6;14;23;21;6;7;22;14;26;26
+Propham;5;2;4;3;4;7;2;3;3;4;5;3;2;3;3;3;2;2;2;2;4;4;7;4;3;3;6;12;12;12;7;10;6;4;7;10;14;7;6;7;4;5;4;2;6;4;3;2;4;2;2;3;7;2;7;5;7;4;5;4;5;4;5;4;5;4;4;5;4;4;2;4;8;9;8;9;5;6;4;8;5;6;10;9;8;5;5;8;12;3;5;4;6;2;5;9;9;9;8;8;13;8;8;8;8;5;5;5;5;5;5;6;7;4;5;2;3;4;4;10;6;3;3;4;5;4;3;3;3;3;10;12;6;12;4;5;9;7;12;11;10;13;10;4;12;5;8;5;8;10;6;10;8;6;9;14;10;9;8;6;11;7;3;4;1;4;9;4;5;10;11;5;2;4;3;8;3;4;6;5;5;2;11;8;1;6;6;0;4;5;12;5;12;6;8;3;2;7;9;4;6;6;6;5;5;5;12;14;6;8;8;7;9;11;5;9;11;11;2;5;8;3;6;7;5;5;5;5;4;3;5;5;7;4;6;4;8;8;7;4;6;12;10;10;6;5;2;1;11;8;7;7;3;3;8;8;10;8;5;5;8;14;2;2;6;8;12;10;11;6;6;1;11;8;3;10;3;9;8;7;3;7;8;11;6;9;2;4;0;10;5;2;4;12;6;5;10;10;6;9;6;7;6;2;7;7;3;4;4;3;6;3;0;1;11;11;5;6;10;3;6;9;12;7;12;12;2;7;11;10;5;9;9;8;6;3;10;5;7;9;11;8;10;0;0;1;1;5;6;5;3;2;5;9;12;6;1;4;4;5;7;7;4;5;1;8;2;2;7;10;8;6;13;6;2;2;10;5;12;13;9;4;12;10;14;14
+Propoxur;1;0;0;1;2;1;2;0;0;2;6;0;1;1;1;0;1;0;1;1;1;1;6;1;1;0;3;6;5;4;3;5;5;3;3;4;7;2;0;3;3;4;4;0;6;2;2;2;3;3;1;3;3;1;2;3;4;2;3;4;3;4;3;3;4;2;3;4;4;4;3;3;4;3;6;5;2;2;1;4;4;4;5;4;1;1;1;3;2;4;2;1;4;1;2;5;5;3;4;5;5;3;4;4;3;2;2;1;1;0;1;2;1;1;2;0;0;1;0;5;0;0;0;4;5;3;2;2;2;1;3;6;4;7;0;2;6;5;6;4;3;5;4;4;4;1;0;0;6;7;3;5;5;6;5;6;4;4;4;0;3;7;5;2;6;2;4;3;3;6;6;4;1;1;2;1;5;4;2;1;2;1;6;1;4;5;3;1;1;6;6;4;7;5;7;4;3;3;6;2;5;3;3;3;4;1;5;7;1;1;4;3;6;3;2;0;6;2;0;4;6;2;3;1;2;4;4;4;3;3;3;3;4;3;2;4;5;7;4;4;4;2;3;3;3;4;1;4;7;1;4;4;3;1;4;2;4;5;3;2;0;2;7;1;0;4;6;1;2;4;1;3;2;3;4;2;0;4;0;0;2;4;0;6;2;0;0;2;1;1;0;2;0;2;0;0;0;3;3;1;0;0;6;0;0;1;1;5;1;1;7;0;0;1;1;5;0;6;3;5;5;6;3;0;3;0;3;6;2;5;6;7;4;1;2;2;4;2;1;4;6;4;6;1;3;3;3;3;4;5;4;5;2;3;6;3;2;4;2;4;2;3;2;5;4;2;3;4;4;6;5;5;5;3;1;1;5;1;3;5;1;1;6;4;7;7
+Pyraclostrobin;2;0;1;2;2;3;3;1;0;0;3;2;0;1;0;0;0;0;0;0;0;0;5;1;3;8;4;6;4;9;4;4;2;5;8;3;13;2;3;1;5;3;8;1;7;7;7;7;6;0;3;5;5;6;5;3;4;1;3;7;4;3;3;2;5;4;2;5;8;6;3;3;7;7;5;5;3;3;6;7;7;7;7;6;7;5;7;9;8;4;5;3;6;6;5;6;5;8;8;9;13;7;10;9;11;3;4;2;3;2;3;2;2;1;2;1;4;5;3;10;4;1;4;6;4;8;6;3;4;4;10;6;6;3;1;7;5;6;8;7;3;7;6;3;5;5;9;1;2;2;0;3;3;2;6;7;5;3;3;2;4;8;7;5;4;6;11;7;8;10;9;4;4;7;5;2;1;6;7;4;4;3;5;7;2;1;3;0;4;1;9;0;5;3;8;2;2;4;3;4;5;6;5;1;7;2;6;5;4;6;2;4;5;4;6;4;5;9;3;0;3;5;3;3;4;3;3;4;3;5;4;4;3;2;3;7;5;6;6;6;5;5;2;2;7;0;4;5;9;4;6;5;3;2;6;4;7;4;2;0;4;2;1;16;3;1;9;3;6;2;0;0;8;6;1;3;1;1;4;2;4;12;4;3;4;3;4;4;0;3;3;3;0;3;6;1;0;5;7;8;6;6;3;1;1;3;2;4;4;1;4;0;0;0;5;4;2;5;4;3;4;4;9;2;6;7;3;6;6;2;1;2;3;3;4;5;10;3;1;4;2;5;2;2;3;1;2;5;5;4;3;9;3;10;6;7;2;5;4;5;10;9;5;7;6;6;2;5;9;9;6;7;8;4;0;0;5;7;11;8;4;2;8;4;9;8
+Thiobencarb;7;8;5;6;7;6;4;7;6;7;9;7;3;7;8;8;8;9;9;9;6;6;12;6;5;6;6;10;9;12;9;13;14;3;15;11;20;9;4;8;15;9;9;3;15;12;13;14;13;12;9;8;9;4;9;7;14;9;13;9;15;12;12;11;14;10;9;13;17;14;10;13;9;11;11;11;7;2;2;13;9;8;8;5;13;8;12;11;10;12;6;8;14;10;8;7;5;11;9;9;19;9;14;8;13;10;11;10;6;6;6;12;8;7;9;5;4;12;9;16;10;9;6;6;5;3;5;4;8;4;15;9;4;8;7;10;9;10;10;12;8;13;9;5;12;4;8;4;3;6;6;7;6;6;8;13;9;7;8;4;10;17;12;16;17;11;21;14;19;20;18;7;9;5;3;4;5;9;9;9;8;3;10;10;9;10;8;1;11;9;13;9;19;3;11;4;4;9;11;8;8;10;8;13;18;4;9;16;6;12;12;16;12;15;7;11;22;12;6;8;9;8;6;11;14;10;8;14;9;17;15;14;13;9;13;14;14;15;14;14;12;12;9;7;7;3;6;7;10;10;8;8;8;9;14;5;9;5;4;5;5;6;0;3;27;3;21;11;19;6;3;5;16;6;10;8;2;3;3;3;8;14;6;15;10;6;8;7;1;7;11;7;4;9;6;4;6;15;16;12;13;5;11;5;5;9;10;14;10;6;8;4;3;5;11;12;11;11;5;13;5;10;15;6;10;10;6;6;5;13;7;15;7;6;8;14;17;6;4;10;10;16;14;3;1;7;6;13;13;7;9;6;8;13;20;14;3;9;4;14;15;12;13;12;9;12;5;12;18;17;18;9;19;8;3;4;14;13;22;17;8;3;17;17;22;19
+Isoprocarb;0;1;2;2;3;5;1;1;0;2;7;3;2;1;2;2;1;1;1;2;2;2;6;3;2;4;3;14;9;9;6;10;5;4;9;9;12;9;6;5;7;6;5;1;2;4;3;2;5;4;2;7;3;5;6;5;6;4;7;5;6;4;6;4;6;4;4;6;7;6;3;6;11;10;9;11;6;8;3;6;8;10;12;11;9;7;5;8;8;5;4;5;7;3;6;12;14;10;8;8;11;8;10;6;8;4;2;2;3;3;3;5;5;2;3;2;1;2;2;11;5;3;1;7;5;8;7;4;4;4;11;11;4;13;5;6;8;8;13;13;12;12;8;5;10;6;7;4;10;12;4;14;12;11;9;13;8;5;6;2;6;9;3;6;8;5;11;5;8;10;13;7;1;5;6;8;3;2;8;5;5;2;10;9;2;6;3;0;3;5;13;5;9;4;10;3;3;6;8;6;7;5;6;3;4;4;12;11;9;7;6;6;10;7;7;8;9;10;3;7;8;3;7;3;7;6;6;6;4;5;6;6;6;4;8;6;6;9;8;6;5;12;10;10;6;3;1;3;10;9;2;2;3;2;5;5;13;9;6;0;8;8;4;1;3;14;7;8;8;2;6;2;7;12;4;9;3;13;9;10;3;7;8;13;5;6;2;3;0;8;6;2;1;7;8;2;5;9;10;8;7;9;9;2;4;8;6;3;5;3;10;4;0;2;10;10;3;9;11;6;7;7;11;5;14;8;6;8;12;5;4;13;10;10;7;3;11;5;6;12;10;3;10;1;1;2;2;6;5;6;2;3;5;8;9;4;1;4;1;4;5;6;4;6;3;6;3;1;7;8;8;8;9;5;1;3;8;6;9;13;6;7;10;7;14;14
+Linuron;10;9;8;14;15;14;10;12;11;11;16;12;10;10;13;14;9;10;11;11;10;9;28;12;19;30;16;35;23;50;15;35;46;15;47;19;65;17;7;31;43;38;45;16;51;39;43;41;43;23;27;36;32;37;38;30;40;30;37;47;45;44;40;33;45;29;32;40;45;43;33;43;31;39;40;34;24;17;13;35;39;36;31;29;28;24;26;37;50;50;20;17;32;17;18;37;29;45;40;50;54;32;39;37;47;39;37;31;27;24;22;27;27;27;35;36;25;38;28;57;33;22;21;49;29;34;34;22;27;24;70;28;11;34;14;28;28;33;30;31;20;28;19;14;17;14;27;7;20;28;8;17;26;20;22;45;29;26;29;11;32;77;50;61;85;60;95;58;65;92;93;40;21;40;39;11;8;24;29;24;25;9;29;24;24;34;22;5;19;28;70;22;31;22;34;13;11;20;32;16;27;20;21;26;47;9;34;53;14;41;47;40;48;33;33;28;44;52;10;21;26;35;37;22;30;38;35;48;39;49;44;48;40;36;46;48;64;77;64;45;29;25;21;37;31;12;16;22;46;29;26;26;25;26;44;11;32;24;15;16;19;12;6;9;21;7;138;49;45;16;14;11;37;23;20;28;6;11;17;13;23;52;20;39;31;18;21;25;6;9;36;28;9;26;21;4;11;63;40;36;28;18;34;9;7;15;27;39;22;20;26;13;5;11;23;27;15;33;30;36;25;38;48;15;36;30;21;31;27;31;20;34;21;16;17;36;65;10;20;28;27;66;28;6;17;23;29;28;31;36;28;34;29;60;56;53;16;30;14;54;57;41;35;49;32;40;20;44;68;73;68;48;70;12;8;9;58;31;62;61;18;9;55;39;80;64
+Metobromuron;4;5;9;8;9;9;5;9;8;7;10;9;5;8;6;8;5;5;5;5;4;6;16;7;13;15;10;22;19;28;11;25;22;5;34;14;42;10;4;16;25;17;20;13;18;21;21;20;23;15;14;18;11;17;13;14;23;18;23;21;28;25;23;22;23;19;18;22;24;23;17;24;15;15;14;15;9;5;8;17;18;15;14;13;15;13;15;17;29;25;9;9;12;5;9;12;10;20;18;25;33;19;17;19;19;16;24;20;14;15;13;18;13;15;17;17;15;23;18;30;18;13;14;14;12;21;23;9;13;8;38;19;8;21;13;17;22;23;22;20;13;22;13;9;14;8;16;5;12;19;9;13;15;10;16;30;21;21;23;11;25;36;17;28;38;29;48;29;33;38;44;24;14;15;18;9;7;13;17;12;11;5;14;10;10;16;11;1;9;11;30;9;25;13;21;5;4;11;16;8;14;10;11;8;25;6;23;30;14;19;33;24;23;25;19;17;32;24;5;10;17;20;17;16;15;14;14;26;23;23;25;27;23;18;24;26;34;36;31;23;13;23;16;20;17;9;5;10;27;20;14;14;14;19;25;8;13;13;9;11;12;10;1;3;11;8;49;57;34;11;7;4;19;16;8;18;6;7;12;10;16;22;12;26;21;12;18;17;3;10;20;14;6;18;10;3;11;31;6;22;18;8;17;2;7;9;13;19;15;15;16;6;1;6;12;24;8;20;13;13;13;16;23;13;17;18;14;16;12;22;14;24;9;8;7;15;28;10;15;12;28;27;21;4;9;10;14;8;16;15;10;11;14;21;44;30;6;8;7;28;30;20;13;21;14;16;8;21;26;22;37;12;24;7;3;4;28;15;32;36;15;6;34;31;44;41
+Monolinuron;5;8;10;10;11;12;8;10;9;9;11;6;7;9;9;9;7;8;8;8;6;8;16;10;12;16;15;21;21;30;16;21;26;8;28;16;38;16;6;17;20;19;22;5;30;22;23;23;24;14;10;20;19;15;23;17;22;16;19;22;21;22;22;17;23;18;18;21;21;22;18;19;16;20;24;20;12;5;8;21;22;19;16;14;21;14;23;23;27;23;11;9;20;16;17;14;12;23;22;25;34;22;20;19;26;23;22;22;12;14;13;18;13;20;19;17;16;34;21;39;19;21;17;27;14;10;12;7;9;6;28;20;10;19;11;24;24;24;18;21;14;21;17;10;16;11;17;6;10;19;10;12;18;16;19;35;23;23;25;9;27;34;17;27;34;16;36;19;24;36;43;23;18;19;17;10;7;14;17;20;19;6;20;14;16;13;13;2;14;22;44;11;29;18;27;10;8;20;23;16;20;19;18;15;27;5;21;32;15;27;21;24;21;18;18;22;29;33;5;10;16;24;16;22;21;19;19;23;20;23;20;20;21;18;18;21;34;37;32;21;22;28;20;18;16;9;9;11;29;20;18;18;16;15;29;10;20;13;13;13;13;11;2;6;19;8;45;34;56;11;8;7;28;19;14;18;4;9;11;12;19;32;13;24;18;16;10;14;4;9;19;13;5;19;16;4;12;39;27;25;20;15;23;4;6;10;16;25;16;11;19;9;2;6;18;21;17;22;13;20;13;20;29;13;18;21;8;15;12;18;7;22;13;13;13;21;32;14;15;17;21;26;21;6;7;10;12;19;21;18;9;14;14;29;45;26;3;21;8;30;32;25;23;24;14;25;8;21;35;40;31;28;36;12;7;9;26;25;40;38;16;5;40;34;49;42
+Pirimicarb;2;4;2;4;4;3;6;6;6;6;7;5;2;5;6;5;3;4;4;4;6;6;11;7;5;2;5;14;8;13;9;8;12;7;9;5;16;3;3;5;4;11;10;1;10;6;7;6;6;6;2;10;8;8;7;10;6;5;6;4;5;7;8;6;7;5;5;5;6;5;4;5;6;12;12;8;9;4;4;13;8;7;10;7;5;2;6;10;8;4;2;3;8;5;6;10;9;8;6;12;11;7;6;11;12;4;4;2;2;2;2;2;4;6;4;6;3;2;2;13;3;2;2;11;6;4;2;0;1;0;11;7;2;13;6;3;11;9;12;9;6;10;3;3;5;6;3;1;11;10;3;3;12;9;7;16;13;14;16;5;17;11;10;10;10;6;9;6;7;13;14;8;5;7;8;5;2;3;8;10;8;4;7;8;6;5;4;0;4;6;14;3;9;8;7;2;2;5;11;5;7;5;6;8;13;4;11;18;0;6;5;14;9;8;6;3;13;8;1;3;8;9;7;7;12;11;11;8;7;6;5;5;5;5;4;5;7;11;8;6;9;13;10;12;7;3;7;11;15;7;12;11;3;4;11;5;8;12;8;6;1;6;4;2;6;2;16;11;11;20;3;6;13;9;6;10;2;2;7;3;6;15;1;13;4;2;0;7;2;6;9;4;3;6;1;2;2;11;11;9;1;3;14;3;2;4;6;6;3;7;12;0;1;1;2;4;2;14;9;5;7;17;11;4;10;7;6;13;6;15;7;15;5;2;4;11;13;1;5;8;14;9;14;4;3;8;10;5;8;9;5;8;9;12;16;8;2;9;8;10;10;14;8;10;8;11;6;12;11;14;15;16;16;2;2;2;14;11;13;17;9;5;15;15;19;19
+Siduron;1;3;3;1;1;4;1;2;2;2;2;1;1;3;4;3;3;3;3;3;4;5;7;5;4;2;2;9;4;9;4;5;4;3;6;8;13;3;1;5;2;6;2;1;6;8;8;6;7;1;2;3;4;3;3;6;6;5;3;4;2;6;5;5;7;5;5;4;5;4;3;2;6;5;6;4;2;4;0;4;5;2;5;3;3;2;1;4;7;6;1;2;7;0;3;8;9;7;3;7;8;5;8;5;1;2;4;2;2;3;2;3;4;3;3;3;4;5;4;8;5;4;3;4;5;3;5;3;4;2;10;4;1;8;3;4;4;5;7;6;7;7;4;1;3;3;5;3;5;7;3;5;6;5;5;8;4;4;4;1;3;9;10;7;4;5;9;5;6;12;9;6;2;5;6;2;2;3;3;2;2;2;8;4;2;4;3;2;5;3;12;2;8;4;3;2;2;6;5;2;5;2;5;3;6;3;7;8;4;8;7;6;9;6;4;8;8;10;1;3;11;3;6;5;8;7;7;6;5;3;2;2;5;5;2;3;6;6;4;3;7;9;7;8;7;2;3;5;10;5;3;3;3;3;4;2;10;6;2;5;5;6;1;0;3;6;14;7;8;3;14;3;5;5;4;7;3;5;7;3;4;6;5;7;1;3;2;3;1;7;4;2;1;4;3;1;3;9;11;10;5;6;7;3;2;4;7;7;1;4;6;1;0;3;5;7;4;9;7;6;5;9;9;4;11;9;0;5;7;5;3;5;7;6;8;4;12;3;3;5;5;10;5;1;2;2;5;1;2;3;5;3;10;8;7;6;1;4;5;6;10;2;4;8;6;5;3;6;10;9;10;8;8;2;1;1;9;9;9;9;4;3;9;8;13;12
+Bendiocarb;1;3;4;3;4;3;5;2;2;4;6;4;2;3;2;2;2;3;3;3;2;2;4;3;2;5;4;8;7;8;5;4;10;7;5;5;12;5;6;4;5;7;8;0;7;4;4;4;4;4;3;5;5;3;4;6;5;4;5;5;5;5;6;4;5;4;4;6;6;6;4;5;7;7;9;8;6;5;4;11;7;7;8;9;8;3;8;10;7;7;4;2;6;5;5;7;6;10;8;8;8;9;6;5;11;4;3;2;3;2;1;2;3;4;3;3;1;2;1;7;4;2;1;5;5;5;4;3;3;3;11;8;4;9;5;4;11;12;7;6;5;8;5;4;6;5;3;2;7;9;4;5;10;6;4;11;6;7;7;2;8;11;8;8;8;4;9;5;7;11;10;4;6;3;3;3;3;4;7;8;10;1;6;4;8;7;5;0;5;6;10;4;8;4;6;3;3;6;8;5;7;5;5;7;11;2;7;9;1;6;5;11;11;8;5;4;11;6;2;7;6;7;5;6;8;9;8;8;6;5;5;5;5;5;6;6;6;6;6;6;5;9;6;6;6;4;4;7;8;6;9;8;5;5;11;3;9;4;8;5;0;1;3;0;5;2;11;4;7;6;3;13;11;10;9;11;1;3;5;3;3;9;1;9;3;2;4;4;2;5;7;5;3;4;1;1;1;7;10;10;2;1;11;5;1;4;3;4;6;6;7;1;2;2;4;6;3;10;4;4;3;9;7;3;4;5;7;5;3;8;5;8;4;3;4;5;11;2;4;6;8;7;7;7;3;2;2;4;7;8;3;5;7;10;10;7;2;7;3;4;7;8;6;6;3;8;4;4;6;12;11;10;12;2;2;1;11;11;8;13;5;5;13;11;10;11
+Bifenazate;10;4;7;13;15;13;14;11;10;14;16;7;8;6;11;10;4;4;4;4;2;2;18;5;14;16;19;20;25;41;19;12;24;10;30;20;58;18;8;7;11;13;36;0;35;31;31;29;31;3;6;15;15;19;16;12;9;8;11;13;9;11;12;10;9;8;8;10;9;9;8;12;18;24;31;29;15;6;17;38;31;33;33;29;41;31;40;38;41;19;27;16;20;28;27;12;12;35;34;35;50;27;28;29;40;6;8;6;5;6;5;6;7;6;8;5;5;9;10;34;8;5;3;23;8;19;16;4;11;8;28;30;10;12;6;25;20;23;16;17;7;20;18;7;15;11;21;6;8;10;5;10;14;10;16;25;27;28;28;12;40;31;24;12;11;11;38;11;12;55;42;14;21;20;17;20;8;4;30;27;25;10;30;19;22;10;13;1;16;24;42;12;31;16;28;11;12;27;25;23;31;24;29;16;32;11;20;36;16;26;23;37;31;19;25;25;21;47;3;21;17;35;3;22;17;16;15;13;12;11;10;10;9;8;7;11;19;22;18;9;26;26;20;20;22;11;11;10;36;18;33;33;15;13;38;9;20;8;18;14;11;11;2;8;16;7;37;19;28;13;5;11;66;18;16;34;7;7;13;13;21;35;11;38;27;13;25;18;6;11;26;12;9;20;13;5;10;48;35;36;22;16;24;5;12;15;14;29;20;9;20;18;6;11;32;27;19;26;16;27;15;23;37;14;18;23;10;21;13;32;27;35;17;16;10;27;42;10;10;9;28;34;29;12;15;8;6;20;20;18;9;12;28;36;47;30;3;20;16;34;34;30;24;24;21;41;12;25;45;51;41;50;51;14;5;9;33;49;58;49;25;5;49;34;54;46
+Carbofuran;3;3;3;6;8;6;2;5;4;4;6;7;3;4;3;4;2;3;3;3;3;3;10;1;11;15;10;27;20;26;13;16;13;7;19;15;34;16;9;6;10;10;10;1;19;14;13;12;15;3;1;9;13;10;11;8;12;10;12;13;8;11;11;10;14;9;9;11;9;11;7;9;21;23;21;23;13;15;5;13;20;19;20;18;21;10;14;18;20;19;8;7;12;7;10;21;20;20;14;18;25;15;17;15;20;3;5;4;3;1;1;3;7;4;3;5;1;2;2;21;10;4;1;14;12;13;11;7;12;8;18;26;13;23;7;17;21;22;25;21;15;28;17;7;22;9;16;4;13;17;8;16;25;18;18;33;20;21;24;7;27;24;12;16;21;9;25;6;9;27;28;11;11;11;11;13;5;9;14;12;12;7;23;14;6;13;10;0;9;8;23;8;21;7;16;3;3;10;16;4;15;6;9;7;21;2;32;25;17;26;17;21;27;19;17;17;15;26;5;13;18;15;14;13;11;10;9;13;12;9;10;10;12;8;5;11;15;16;13;11;20;26;22;21;15;8;8;6;23;18;13;13;12;4;22;8;27;14;16;7;14;8;3;6;6;12;23;16;19;9;5;10;18;34;13;16;2;13;21;15;13;22;15;23;17;17;4;6;3;10;16;10;3;18;17;2;4;26;15;25;19;24;18;3;3;10;8;6;16;7;15;11;1;2;24;23;4;18;19;13;11;15;23;7;26;21;12;14;23;20;9;22;21;21;12;10;24;15;10;16;23;14;19;9;2;8;8;5;12;14;7;10;19;18;28;15;3;10;9;16;23;20;17;14;8;20;6;14;23;28;22;19;27;6;4;7;20;20;26;33;12;13;34;27;34;34
+Cycluron;4;4;6;6;6;5;5;6;6;7;11;4;5;6;8;8;5;4;5;5;2;2;6;4;5;8;5;12;10;11;9;8;15;6;14;9;22;9;5;4;7;6;9;0;13;9;10;10;10;5;3;6;6;3;7;6;5;3;4;4;6;5;4;3;5;3;4;5;6;5;3;5;6;9;14;9;5;2;4;14;12;12;11;9;11;7;14;12;8;8;8;3;9;10;10;3;4;11;11;12;14;5;8;7;13;4;2;1;1;2;1;1;4;5;7;4;5;9;9;19;7;8;6;8;8;6;7;2;3;2;11;19;5;16;6;7;15;13;11;10;7;14;10;5;12;5;6;3;9;11;5;9;14;11;8;18;15;16;14;6;18;12;11;10;10;4;18;10;11;22;16;8;5;6;4;4;5;4;9;9;8;5;11;2;10;7;4;3;8;12;20;4;18;9;14;7;7;13;16;10;14;11;14;10;13;7;11;12;3;13;10;12;17;12;7;7;7;11;1;4;12;6;4;11;8;6;6;5;3;9;6;6;5;3;5;6;7;9;7;6;12;9;8;5;13;7;4;11;19;5;7;7;6;6;15;3;8;9;9;8;4;3;4;1;10;4;20;8;14;6;4;9;16;13;26;11;6;5;4;3;9;11;6;17;8;2;6;5;1;5;8;8;2;4;4;2;4;16;17;11;5;3;19;4;4;8;6;17;6;7;14;1;7;9;6;10;9;20;7;7;7;6;14;4;5;11;3;6;2;13;10;12;4;3;4;9;15;2;6;8;13;8;12;9;5;4;5;11;11;7;5;6;7;13;18;6;1;8;7;11;11;13;7;11;7;12;5;14;18;24;13;18;23;5;2;3;12;15;16;21;8;7;22;18;20;19
+Diethofencarb;5;6;5;9;12;10;9;7;7;9;14;6;5;7;9;9;7;7;8;8;7;6;14;6;13;14;15;26;16;27;14;13;23;10;18;17;35;12;10;12;11;14;29;3;24;19;20;18;18;5;6;9;13;13;15;12;8;5;9;10;13;11;9;8;9;5;5;11;9;11;7;13;17;21;21;16;13;8;11;27;20;20;28;25;24;18;25;25;26;9;18;6;9;12;11;19;17;25;19;19;29;13;19;21;26;7;9;5;6;9;8;6;8;10;8;11;8;8;3;23;9;7;6;17;11;18;17;9;8;8;27;20;8;21;7;8;17;21;19;19;14;21;14;9;12;11;10;3;15;18;4;11;22;15;17;31;18;18;19;5;24;21;20;17;11;13;22;12;16;34;31;11;12;11;12;12;5;3;23;17;19;9;22;18;12;10;9;0;11;16;33;7;20;10;15;5;4;15;22;14;18;13;16;11;17;7;22;29;7;16;12;30;22;13;16;8;24;20;3;12;15;22;11;16;17;15;15;15;11;13;14;15;12;7;13;13;18;18;19;14;13;22;21;18;17;5;9;9;30;13;23;21;6;6;28;9;17;13;16;11;3;10;2;3;8;9;28;18;18;10;7;11;34;16;11;44;2;7;11;10;15;29;4;30;10;7;9;9;5;12;19;13;7;18;7;6;6;29;32;24;5;9;23;7;6;13;11;10;11;13;21;6;2;5;15;11;8;21;16;12;11;22;22;6;23;17;6;16;13;28;14;21;11;9;11;13;33;3;6;13;20;17;18;6;8;4;5;11;13;12;5;6;19;33;32;16;5;17;12;13;24;18;13;15;13;19;7;19;22;30;31;29;32;5;2;2;27;33;41;31;16;10;35;30;43;40
+Diflubenzuron;2;3;2;3;3;3;2;3;3;5;6;5;2;3;4;5;2;3;3;3;2;2;4;3;4;4;3;6;5;5;3;5;5;3;6;7;9;2;2;3;5;5;6;1;3;3;4;3;3;4;4;4;3;1;3;4;4;4;5;4;6;3;3;3;4;4;4;4;6;5;5;5;3;5;4;5;3;2;1;8;4;4;6;5;6;4;6;7;4;4;3;4;4;1;2;3;3;4;5;6;7;2;2;1;1;7;7;6;5;5;5;5;5;6;7;5;5;5;4;8;4;3;4;3;2;5;4;2;1;2;7;7;2;8;3;4;4;4;6;5;6;8;6;3;7;4;4;1;6;7;1;6;3;3;4;5;6;5;6;6;7;5;2;3;4;2;8;2;4;3;5;5;1;1;2;2;2;4;3;2;2;2;2;3;3;2;3;1;5;5;8;3;8;5;6;5;5;7;7;6;7;7;7;6;6;4;7;6;0;5;3;5;5;8;4;3;7;6;1;6;3;6;6;5;5;4;4;3;3;6;6;5;4;4;5;5;6;6;5;5;4;3;1;5;8;3;2;4;6;5;2;2;4;3;6;2;2;3;1;3;2;3;0;1;2;3;6;6;4;2;3;1;7;2;6;2;11;2;2;2;6;7;2;9;2;1;4;7;0;3;7;4;1;2;1;4;1;5;7;3;5;1;8;2;4;4;3;2;2;1;6;0;0;0;2;4;3;6;3;1;3;4;5;7;4;2;1;2;1;7;4;8;2;2;0;2;7;1;5;1;7;6;7;2;2;2;2;4;3;2;0;0;4;5;9;8;1;3;2;6;10;3;1;5;3;3;0;2;3;7;6;7;6;2;1;1;2;4;6;7;4;1;7;5;10;7
+Fenobucarb;0;1;2;2;3;7;2;1;1;4;6;1;2;1;2;2;1;1;1;2;0;1;8;2;4;7;3;14;10;10;5;11;5;5;7;8;15;8;5;6;6;7;4;1;4;5;4;3;5;1;0;3;3;5;6;7;5;4;4;4;4;7;7;6;6;4;4;5;4;5;2;4;13;13;10;12;7;8;3;9;8;10;13;12;10;7;6;9;11;8;6;4;7;4;7;12;13;12;9;10;14;10;12;6;8;2;1;1;2;2;1;2;6;2;1;4;3;5;4;10;8;4;2;6;5;6;6;6;4;4;9;11;6;12;2;8;9;9;14;12;9;14;10;5;10;5;7;5;8;10;3;14;14;11;8;14;7;5;6;1;5;13;5;6;7;4;9;4;6;10;12;5;3;5;5;7;3;3;7;5;5;2;10;9;2;6;4;0;4;8;11;5;11;5;13;3;3;7;10;6;10;5;8;4;5;3;14;13;10;8;3;6;11;9;8;8;10;9;3;7;10;2;7;6;9;7;7;8;7;3;4;4;5;3;6;3;9;10;9;3;5;14;11;9;7;4;2;3;10;9;5;5;3;3;9;6;13;9;9;4;8;9;4;1;3;13;11;7;9;2;5;3;7;13;5;7;2;15;11;12;4;7;9;9;4;6;2;3;0;7;9;3;1;7;8;2;4;9;9;9;7;10;7;3;3;5;3;6;5;1;8;3;0;2;10;11;3;9;10;6;6;7;12;5;14;9;6;9;12;6;5;9;10;11;6;3;11;6;7;9;7;5;11;4;2;2;1;7;4;6;2;3;3;10;10;6;1;7;1;2;7;5;4;3;0;8;3;4;10;12;11;9;11;7;1;2;10;6;9;12;6;9;10;9;14;15
+Dioxacarb;1;2;6;4;6;10;6;3;3;3;8;3;4;3;3;3;2;2;2;2;3;1;12;0;13;12;11;20;16;22;12;11;11;7;12;11;25;5;7;6;9;10;8;1;15;17;17;16;17;2;3;7;7;9;8;9;10;7;9;10;6;11;10;8;11;7;8;9;6;9;5;6;16;16;16;16;13;14;5;12;16;16;17;15;14;6;8;16;20;7;5;7;15;8;10;18;16;19;12;15;22;15;17;16;15;3;4;2;2;4;2;2;6;2;2;7;4;5;5;16;8;7;3;16;9;12;10;10;12;10;21;12;8;19;4;11;13;19;22;20;16;20;14;8;15;13;13;5;10;11;2;13;16;15;11;26;10;6;11;3;14;21;17;9;10;10;18;9;10;24;17;10;2;12;11;7;0;5;14;15;12;6;15;15;3;10;6;1;8;7;15;11;8;5;7;1;1;6;7;5;7;6;7;5;13;4;22;18;10;13;8;10;13;12;12;12;13;18;6;3;11;9;12;9;11;9;8;11;9;7;6;6;12;7;3;9;8;10;8;9;11;23;15;14;6;1;5;5;17;11;8;7;6;3;17;9;21;12;8;5;9;8;0;4;3;9;17;12;11;7;7;5;13;21;4;11;2;11;28;12;7;16;11;8;4;12;2;7;0;10;8;9;1;10;10;2;3;21;14;17;12;13;7;3;3;4;3;6;6;5;6;2;0;2;14;9;3;4;14;15;16;15;14;6;20;14;2;9;18;7;5;7;11;11;9;5;20;6;4;12;9;11;6;1;3;5;6;4;4;6;6;9;12;16;16;11;3;10;9;17;17;8;11;12;5;10;4;7;17;16;16;21;18;5;1;2;16;10;17;18;10;7;19;14;28;27
+Promecarb;1;0;0;5;5;9;5;1;1;3;5;6;2;0;2;1;0;0;0;0;1;2;8;0;6;9;7;18;16;12;7;11;7;4;11;7;20;10;6;6;7;4;4;0;4;3;2;3;4;0;0;4;8;5;8;4;3;3;5;8;4;5;5;4;5;3;3;5;3;5;3;4;14;17;12;13;11;9;3;9;9;11;13;13;15;10;9;11;16;8;6;3;7;4;6;15;14;11;9;11;16;11;11;9;13;3;3;3;4;3;3;3;5;5;5;2;1;2;2;12;7;4;1;9;8;10;9;6;10;6;11;17;6;15;2;10;15;14;16;16;11;18;14;6;16;9;15;4;9;13;3;12;17;15;13;17;11;13;13;7;17;12;8;6;8;7;15;3;7;15;17;4;4;8;5;11;1;6;9;6;6;1;13;8;1;7;10;0;3;7;13;5;17;1;11;3;2;8;12;5;9;7;6;2;6;2;17;14;13;15;11;5;13;11;11;10;13;18;4;4;7;8;9;8;4;5;4;7;5;3;4;4;5;3;4;4;8;11;9;4;9;16;16;8;9;6;4;4;11;8;4;4;4;3;11;7;18;9;7;3;10;7;0;2;3;10;13;10;12;3;3;3;13;15;3;10;2;12;12;20;10;9;11;12;10;10;3;2;0;5;12;3;1;12;11;2;4;18;10;10;10;14;3;4;2;6;4;0;9;3;3;6;0;1;13;11;4;3;12;9;10;10;13;7;17;10;6;10;12;10;8;8;15;16;6;2;13;8;5;8;9;7;6;3;2;4;3;4;4;6;6;7;9;13;20;10;1;5;2;7;13;13;9;4;4;9;5;6;13;11;7;13;15;4;1;4;14;10;16;19;10;10;18;16;20;20
+Fenoxycarb;6;0;4;2;3;3;1;3;3;3;8;7;2;4;5;4;0;0;0;0;1;1;9;2;5;12;4;14;15;20;8;9;10;3;19;11;28;11;6;3;8;6;13;1;17;13;14;11;13;2;2;6;4;4;9;5;10;7;8;12;9;9;8;7;12;7;7;9;7;10;5;8;15;18;24;15;13;5;8;21;20;17;14;13;18;14;15;20;19;15;12;10;15;15;17;13;9;17;18;20;25;18;22;20;20;3;3;1;1;3;3;4;4;8;7;5;6;8;7;20;8;8;4;9;12;11;11;9;14;9;16;21;4;17;3;22;14;17;11;11;10;12;10;6;11;9;14;3;7;10;2;7;10;9;9;19;16;16;21;11;24;18;17;11;14;11;22;7;8;33;26;8;10;10;6;7;2;7;18;16;16;6;15;10;9;12;10;2;9;10;25;5;17;6;20;7;5;14;16;11;17;13;13;10;18;4;14;22;8;17;14;17;17;8;14;12;20;24;5;8;11;21;7;5;7;9;8;12;10;8;7;6;11;7;4;10;9;12;8;10;22;11;11;12;14;5;3;8;14;11;15;14;13;6;19;6;13;7;9;9;11;3;2;4;8;3;23;16;19;6;4;3;21;13;9;15;6;4;7;10;37;20;11;17;14;7;11;8;3;9;12;6;0;9;10;2;3;27;16;23;18;15;13;1;4;11;8;14;11;9;10;10;3;4;14;17;7;14;11;18;9;10;26;8;17;11;8;14;10;15;8;14;12;12;6;12;24;10;7;7;11;19;13;7;11;13;12;11;13;13;7;9;16;22;29;18;2;9;6;20;20;18;15;19;18;23;12;18;28;28;24;22;27;10;4;7;18;28;34;26;11;4;26;20;35;29
+Indoxacarb;14;12;8;14;15;12;13;11;9;15;25;14;8;10;11;13;12;13;14;14;11;10;28;13;20;28;14;27;24;40;18;19;36;20;44;17;63;16;8;17;29;33;40;4;35;29;31;30;30;9;7;28;25;33;27;26;29;23;26;31;32;32;32;24;32;22;21;26;27;28;19;26;28;28;32;28;16;11;18;42;34;31;43;35;48;32;46;53;74;26;30;19;29;25;28;26;20;52;47;62;67;36;41;48;50;10;17;9;14;13;15;14;17;16;20;14;14;23;12;45;20;12;11;31;22;39;40;14;18;24;75;27;10;22;8;21;22;24;26;26;15;28;18;11;17;15;27;3;10;13;7;13;17;15;19;32;24;21;22;10;26;47;51;32;32;30;68;32;36;85;65;29;17;32;29;14;6;19;38;29;28;12;42;25;16;22;17;1;19;27;55;17;28;17;31;13;12;25;23;20;25;25;24;19;40;13;30;51;16;35;24;48;33;19;28;22;35;55;7;15;23;39;18;19;20;31;29;35;30;27;29;30;27;22;21;31;31;40;37;28;27;23;17;23;29;9;11;13;42;17;29;27;15;27;48;9;46;17;10;9;12;7;4;12;14;7;52;22;32;15;6;9;35;22;11;29;7;7;16;9;20;141;12;30;23;11;16;28;8;7;29;30;6;20;17;10;8;43;50;35;35;25;21;5;4;12;19;23;29;16;18;9;0;4;24;29;9;23;32;32;20;33;42;14;31;28;20;31;24;21;14;25;18;16;13;24;70;13;18;25;29;54;23;8;15;16;17;25;24;36;20;22;35;52;48;43;8;34;15;47;62;36;31;48;26;36;26;23;41;73;72;70;75;13;6;6;54;41;70;51;20;6;45;35;59;49
+Iprovalicarb isomer 1;2;0;4;2;2;6;1;3;3;2;4;5;1;2;2;2;0;0;0;0;0;1;4;0;4;11;4;14;15;20;8;17;8;1;21;9;23;11;8;8;12;9;12;7;4;6;5;3;7;3;4;12;6;7;12;7;18;12;10;15;12;16;13;11;17;12;13;10;13;11;10;9;24;18;18;24;10;11;8;10;19;23;12;11;15;11;11;13;16;17;8;5;12;8;11;20;19;15;17;17;23;18;18;11;14;8;5;9;7;6;7;7;8;10;10;4;5;12;8;23;18;8;4;13;9;9;9;12;8;6;17;22;9;16;5;20;18;19;17;15;7;19;16;5;16;6;12;4;7;6;5;10;14;10;15;23;10;8;12;4;9;24;7;19;17;24;29;18;18;20;27;11;5;9;8;8;1;10;8;6;6;1;17;9;2;5;4;1;3;6;19;2;20;2;17;4;4;11;9;4;9;7;6;5;6;2;18;13;16;23;8;5;19;11;10;21;9;24;8;4;12;10;10;6;6;8;8;16;15;11;11;11;19;14;14;11;19;20;14;11;22;14;13;8;12;6;2;3;14;10;0;0;10;12;16;4;17;7;5;2;32;8;0;4;6;8;20;12;13;1;5;1;11;15;6;4;2;9;11;11;11;12;34;6;10;13;10;8;0;7;9;9;2;10;16;2;5;29;10;20;21;14;2;3;4;6;5;5;14;5;1;10;3;5;19;19;5;2;16;10;3;3;23;7;18;15;8;5;15;5;4;7;13;14;7;9;22;10;9;8;5;12;5;1;8;4;5;5;4;13;7;8;3;14;26;13;8;2;0;6;14;10;5;12;1;9;3;7;19;18;12;17;16;7;1;4;8;14;25;22;6;8;23;15;27;27
+Ametryn;13;9;10;13;14;10;9;8;8;15;23;15;10;10;10;11;8;9;9;9;9;9;21;11;14;16;16;31;30;29;16;21;29;15;24;21;50;15;6;19;14;24;34;3;21;18;18;18;19;10;9;19;19;21;16;19;22;17;18;23;18;23;21;20;22;16;17;19;20;20;15;17;11;14;30;23;13;6;9;27;27;24;24;20;26;21;22;24;30;14;15;8;17;15;19;16;13;24;23;22;38;17;24;24;26;19;19;15;10;12;9;12;15;14;14;15;10;21;15;36;15;10;10;26;13;17;16;9;9;8;32;25;11;26;10;24;25;25;32;30;19;33;20;11;23;11;16;2;16;24;7;18;25;20;22;41;30;30;34;12;43;36;26;21;27;20;37;19;22;46;38;24;21;19;22;15;10;14;23;15;15;13;25;12;22;19;12;3;21;19;40;19;29;16;27;9;9;21;27;15;24;16;18;23;30;12;34;33;13;20;27;29;39;25;23;17;36;29;1;17;27;29;17;17;23;24;22;23;23;22;18;19;21;21;14;22;31;34;28;22;22;28;23;29;26;10;11;15;39;20;21;22;8;16;40;8;19;19;15;15;6;11;6;3;15;13;39;26;24;13;7;9;38;23;17;30;9;9;8;12;17;30;6;65;27;8;14;20;2;13;21;15;5;19;6;8;6;37;31;23;14;3;36;7;7;12;12;25;13;13;33;5;1;4;16;23;13;35;17;16;17;31;30;10;19;21;11;24;7;37;22;47;11;8;8;21;40;7;14;13;37;29;42;13;17;12;12;19;21;18;14;14;26;30;46;30;3;17;11;28;37;29;24;27;23;27;14;23;37;41;38;38;40;9;3;6;31;43;56;48;17;10;47;37;58;55
+Azoxystrobin;6;3;5;6;6;4;2;8;6;9;16;8;3;3;6;8;3;3;3;3;5;4;10;2;11;14;9;25;24;22;14;9;14;8;18;12;43;24;8;7;12;8;15;0;16;11;13;11;13;5;5;7;10;11;14;3;10;7;10;12;10;10;8;8;11;8;7;8;11;9;9;10;12;20;24;19;10;4;8;21;14;12;14;10;25;19;17;20;35;16;12;6;14;11;13;14;11;21;17;24;35;17;18;26;30;8;8;5;5;5;4;9;9;5;10;1;2;10;7;24;17;6;3;20;7;15;15;9;12;15;22;27;10;20;9;21;21;18;21;19;12;23;17;8;18;9;19;4;13;17;4;16;14;15;15;30;24;25;26;12;31;19;19;13;13;12;29;12;14;39;31;9;9;11;9;8;3;7;20;13;15;6;29;22;10;13;11;0;10;10;25;8;26;7;20;5;5;16;17;12;18;15;15;14;23;6;22;15;12;32;21;19;23;20;11;16;14;38;5;12;18;22;4;11;8;7;6;11;10;10;10;10;9;8;9;10;20;23;18;10;27;18;12;14;14;9;5;6;26;12;11;11;7;14;31;5;23;8;5;9;10;6;2;4;10;5;31;21;18;4;1;3;27;17;8;10;2;4;4;10;14;23;10;27;59;12;9;12;0;4;15;11;5;16;11;4;7;35;21;19;28;17;14;5;6;10;11;13;25;9;13;12;1;2;24;28;8;13;24;13;6;10;33;7;16;20;9;14;9;27;16;23;17;17;6;12;21;14;13;10;18;29;24;3;4;15;12;11;12;13;6;10;18;22;42;17;8;13;6;21;21;21;19;19;12;23;9;18;25;26;20;23;31;11;5;8;25;30;41;34;16;5;38;34;49;41
+Benalaxyl;7;1;4;6;8;6;1;4;3;4;8;7;2;2;2;2;1;1;1;1;3;2;10;1;10;6;4;14;18;22;9;10;8;3;13;9;28;9;8;4;9;6;16;1;8;9;8;10;10;2;2;6;8;7;11;4;10;8;9;6;7;9;11;8;8;6;7;8;7;7;4;5;13;15;14;13;9;8;5;16;9;9;20;10;15;8;12;17;19;4;7;9;8;5;6;11;12;11;11;13;21;12;13;20;15;5;5;5;6;3;5;7;5;4;3;3;3;4;3;13;10;4;3;7;11;8;8;5;5;5;11;20;8;14;4;13;15;16;17;15;9;20;13;5;17;8;15;6;8;9;5;9;12;14;11;26;12;9;11;5;10;9;13;2;8;10;19;4;5;24;18;9;3;8;6;9;0;3;13;9;8;5;19;14;2;7;11;0;3;9;25;8;12;4;11;2;1;6;10;2;6;5;3;6;14;4;17;18;16;23;15;18;13;9;12;18;9;23;4;9;15;20;6;6;5;5;4;10;7;7;8;8;11;6;6;8;5;7;7;8;14;19;14;18;11;3;4;2;13;10;14;11;9;6;13;7;16;5;8;2;12;9;0;3;6;6;18;12;16;2;3;2;13;17;2;7;1;6;12;10;7;11;13;8;12;33;5;9;0;8;16;12;4;20;16;6;8;29;14;23;18;18;3;5;5;9;5;10;14;3;4;10;0;1;20;20;8;5;14;11;6;21;18;8;24;22;3;9;19;10;3;8;16;18;9;5;20;12;14;10;9;7;6;1;0;6;2;8;5;7;5;7;11;20;29;10;0;15;3;8;22;13;8;16;4;13;2;4;19;25;20;13;25;5;4;6;13;17;32;23;7;6;22;17;31;30
+Benzoximate;1;2;1;3;5;6;6;6;5;7;5;3;1;3;5;5;2;2;2;2;0;0;6;3;6;8;6;3;8;15;4;10;7;1;15;10;22;5;1;6;13;11;10;6;18;16;15;15;15;6;5;12;11;11;10;10;9;8;8;11;13;15;13;12;13;9;8;7;15;11;6;13;8;20;11;13;9;8;12;14;13;15;14;12;20;15;16;14;16;11;12;10;14;12;11;15;11;16;16;16;26;14;15;12;18;10;8;10;4;4;4;9;6;7;5;3;5;10;5;22;13;6;5;15;6;15;17;7;5;4;23;12;2;2;2;11;6;10;3;6;1;3;3;1;3;2;10;1;1;3;0;2;3;4;3;5;12;12;10;4;11;21;12;13;19;25;27;17;20;26;29;13;10;9;10;5;3;10;14;10;11;4;9;11;12;6;10;1;7;12;20;3;13;4;10;6;6;14;11;11;14;11;14;7;18;2;3;13;6;13;12;16;7;10;11;8;15;17;1;8;3;21;7;10;10;13;11;15;15;12;13;13;13;8;13;12;19;20;22;10;14;2;1;9;13;5;5;4;10;13;7;6;9;13;14;3;8;1;6;2;10;2;0;4;8;2;21;18;10;0;2;4;25;4;6;9;4;2;2;3;11;16;10;14;9;5;35;12;2;3;15;12;1;6;8;1;0;19;19;16;10;3;7;3;7;8;7;12;12;5;8;8;1;2;3;10;11;11;13;8;8;8;9;8;9;6;11;9;12;16;10;15;10;10;2;14;26;4;7;1;14;14;14;5;9;8;7;12;13;21;7;8;12;27;11;16;2;10;7;13;21;16;11;13;6;11;7;12;14;20;20;19;18;8;2;1;18;19;26;18;10;2;19;15;10;10
+Boscalid;5;5;5;7;7;5;7;6;6;11;13;10;4;6;9;9;5;5;5;5;7;7;15;8;12;11;8;12;9;17;9;13;15;11;23;12;22;10;2;13;12;17;21;5;12;10;11;9;14;12;15;14;15;14;14;14;12;9;12;9;14;15;17;12;15;12;9;12;17;14;10;11;10;12;14;12;9;7;10;19;15;13;14;12;14;8;15;16;20;18;9;5;13;11;12;13;12;13;18;17;27;19;19;16;18;15;15;14;9;12;14;14;12;13;17;13;11;16;12;23;8;6;6;17;8;14;11;3;3;5;26;9;4;10;5;14;8;9;11;11;8;10;7;6;6;7;7;4;5;10;2;8;5;4;6;11;12;9;12;5;16;26;14;21;27;19;33;22;24;30;32;15;7;11;13;6;1;8;14;9;8;6;11;15;9;7;9;2;19;15;28;11;14;15;15;8;9;15;14;11;15;13;13;11;25;8;11;19;3;16;16;21;20;8;11;11;21;17;3;10;12;17;12;16;21;18;16;16;14;15;13;13;16;11;12;16;24;21;22;14;15;10;4;14;19;5;5;9;13;11;16;15;16;18;20;5;9;5;3;5;8;4;2;4;7;3;25;17;14;7;3;4;18;6;5;9;7;3;7;2;8;28;8;20;12;9;12;46;2;3;20;22;3;7;9;4;2;17;21;12;11;3;15;5;4;4;16;17;10;8;12;4;0;2;7;17;4;16;11;11;7;19;18;8;14;6;9;13;4;11;8;18;13;13;8;8;26;7;8;8;21;34;15;7;10;4;4;8;12;20;18;12;18;21;24;29;6;10;7;17;31;16;10;18;6;17;7;16;19;27;19;23;30;3;1;2;16;15;27;18;12;2;20;13;24;21
+Butafenacil;0;3;0;1;2;1;1;0;0;1;1;1;0;0;2;2;3;3;3;3;2;3;6;4;1;2;4;1;2;5;2;1;6;0;5;3;2;1;1;0;6;1;3;0;7;6;7;7;7;5;1;1;0;0;3;1;2;2;5;5;6;1;2;0;3;1;2;5;5;5;5;6;2;1;1;2;2;1;0;9;5;5;6;6;6;6;7;7;8;6;5;2;0;3;3;1;1;5;5;5;5;3;4;7;4;3;2;2;0;0;0;0;0;1;1;1;0;4;4;4;0;0;1;3;2;3;5;0;0;1;6;1;0;1;1;2;0;1;0;0;0;0;0;0;0;0;1;0;1;1;0;0;0;0;0;0;1;1;4;0;3;5;3;3;4;2;7;2;3;9;7;1;5;0;1;3;1;0;2;4;3;0;5;2;6;2;1;1;0;2;5;0;1;1;0;1;1;1;2;1;2;1;1;3;3;1;1;8;1;2;4;8;1;2;3;0;5;1;0;0;2;1;0;1;3;1;1;2;1;5;6;6;2;2;5;5;3;4;5;5;3;1;0;1;6;1;0;2;5;6;3;3;4;5;5;0;4;1;1;1;0;0;1;0;1;0;6;3;4;2;1;2;6;3;1;5;0;0;0;0;3;8;0;2;0;0;2;2;12;2;5;2;1;1;1;1;0;2;5;3;4;0;4;2;2;0;3;7;1;4;3;0;0;0;0;0;4;5;2;0;4;1;0;2;2;1;4;4;0;3;4;4;0;0;1;3;9;0;0;2;2;7;3;0;1;0;0;4;7;4;1;3;2;7;4;5;2;2;3;6;7;6;4;2;2;6;2;7;8;10;11;5;10;1;1;0;7;2;5;6;3;0;7;6;6;6
+Carbetamide;2;1;3;2;3;6;3;2;2;4;4;5;1;3;3;3;1;1;1;1;2;2;7;3;4;4;7;10;8;13;8;11;6;2;10;10;15;6;7;4;7;6;4;2;8;7;5;5;7;2;2;6;5;4;5;6;8;4;7;6;6;4;6;4;8;5;4;6;7;6;2;5;9;11;8;7;7;7;3;7;8;6;10;6;9;3;4;8;8;6;3;5;7;3;6;10;11;9;7;9;13;9;10;11;10;2;2;1;2;2;3;4;5;3;2;4;3;5;4;12;5;4;3;7;8;4;4;4;4;3;11;6;4;13;5;5;10;11;13;11;9;13;8;4;9;7;9;5;8;11;5;9;10;6;8;13;10;6;12;1;11;14;7;5;7;5;11;6;9;13;12;7;5;5;6;5;2;3;6;6;6;4;9;7;2;7;8;1;4;4;13;4;6;3;5;1;1;4;6;3;5;3;4;7;13;2;11;10;6;11;7;11;8;7;7;7;10;11;2;6;11;8;6;5;8;6;6;6;4;5;5;5;8;4;5;6;6;7;5;6;5;13;9;9;4;0;3;4;9;8;9;9;4;4;6;6;11;6;7;4;7;10;1;3;7;8;9;10;9;6;7;5;11;10;5;12;3;7;10;5;9;7;7;13;4;8;3;3;2;16;9;1;1;7;6;3;5;13;10;11;6;8;8;2;4;5;5;4;3;5;4;4;1;2;10;9;4;6;8;5;6;10;13;6;12;12;5;5;12;8;4;9;8;7;5;5;10;6;6;8;10;9;8;4;1;2;2;2;4;5;2;2;8;9;13;9;1;8;4;5;14;12;7;5;7;8;1;5;12;11;12;6;12;4;2;3;9;14;14;14;6;6;13;14;15;15
+Carfentrazone-ethyl;5;4;6;6;6;9;7;6;5;6;7;9;6;7;5;7;4;4;5;5;2;4;17;4;13;14;11;18;15;28;14;24;20;7;32;17;41;11;5;20;23;24;27;8;24;24;26;25;26;16;12;15;14;12;22;21;23;20;26;22;27;22;21;20;28;21;18;24;30;25;15;26;15;22;21;12;11;5;9;22;15;17;19;12;25;24;18;21;22;36;14;7;19;10;10;15;11;19;16;22;31;18;19;23;27;21;25;22;18;24;24;23;22;14;19;16;13;17;11;33;23;7;10;22;10;17;18;9;12;11;36;21;2;16;5;23;16;16;16;17;9;21;9;4;12;11;13;5;6;10;2;8;15;7;9;25;13;12;13;6;14;42;18;45;46;27;55;37;40;47;59;22;16;10;12;6;0;11;29;30;31;9;15;17;11;8;11;0;20;12;41;14;17;10;16;4;4;15;12;11;13;13;13;15;29;7;21;30;18;34;40;27;24;15;14;20;30;38;4;10;12;23;11;16;22;24;23;30;22;26;27;27;28;21;29;27;42;45;43;26;16;20;16;13;24;2;6;8;23;12;18;18;11;21;21;7;20;6;11;5;9;5;0;3;11;6;36;20;19;9;4;7;26;16;8;19;7;9;8;12;12;29;9;21;15;16;15;20;5;9;83;22;6;12;12;1;5;28;24;20;23;9;12;3;7;12;23;14;20;9;10;5;2;2;17;22;9;11;22;22;16;21;19;9;23;17;22;16;12;20;13;19;19;18;9;22;41;10;12;17;17;37;15;9;8;12;9;4;13;15;11;6;23;28;50;36;14;16;9;25;46;19;15;19;10;16;7;15;30;25;40;20;29;8;1;1;35;25;44;40;15;6;37;24;43;38
+Fenhexamid;5;7;7;8;8;8;6;6;5;6;9;6;5;6;7;7;5;6;7;7;8;7;14;9;10;12;6;15;12;26;8;13;17;9;28;7;25;7;3;15;16;19;18;2;18;21;22;19;22;14;12;19;8;13;15;15;15;13;15;10;16;19;19;17;16;13;12;14;19;16;11;16;11;16;14;12;12;8;9;20;14;12;17;15;12;9;16;17;16;18;10;10;11;8;9;12;8;20;18;25;25;11;16;14;17;16;21;15;10;12;14;13;10;11;18;14;10;20;12;16;10;7;10;11;12;13;11;7;9;4;20;14;7;15;5;11;11;12;15;14;9;12;10;11;8;8;9;4;8;11;3;11;10;9;6;18;9;8;7;5;9;18;24;13;22;26;33;14;16;32;37;17;7;14;13;5;2;8;21;19;20;2;15;18;8;8;12;2;13;13;26;12;13;11;17;9;8;9;14;6;12;11;9;9;27;5;14;17;7;19;25;19;18;10;12;11;24;23;2;10;15;12;14;15;18;19;15;22;20;19;17;19;17;13;16;18;21;17;18;17;18;5;6;12;19;4;7;9;16;8;17;16;11;13;20;6;18;8;2;8;9;2;2;3;7;2;28;14;13;4;2;5;12;10;8;13;4;3;9;3;6;30;9;15;11;12;12;22;2;1;22;47;3;9;9;2;4;27;21;16;19;9;14;6;3;7;16;14;12;3;12;6;3;2;15;21;6;15;17;19;9;15;23;7;20;13;11;13;7;9;10;16;14;12;7;15;27;9;8;11;15;35;13;4;8;8;8;13;13;13;7;11;13;19;21;21;1;10;11;20;30;11;10;19;8;10;4;16;27;32;27;25;33;4;3;3;24;15;28;23;9;4;23;13;34;28
+Flutolanil;5;4;2;3;4;3;3;3;3;3;3;2;3;2;3;3;3;4;4;4;4;3;4;4;4;3;4;6;5;10;3;3;4;5;5;4;11;6;1;4;5;4;6;1;5;4;6;5;6;5;5;5;4;5;5;3;4;4;5;5;5;4;3;4;4;4;4;5;5;5;5;5;3;7;5;6;4;1;2;4;3;2;6;1;4;4;4;4;1;2;2;2;5;1;1;3;3;6;2;6;7;3;3;3;5;4;5;6;4;3;3;4;4;4;3;3;2;3;2;7;1;2;2;3;3;2;4;2;2;3;8;7;4;3;6;6;2;4;6;5;3;7;5;3;4;2;3;2;4;7;2;3;3;3;3;7;5;5;4;2;3;6;4;3;4;6;8;1;3;9;9;5;0;3;4;2;1;1;6;3;3;2;5;4;2;3;5;0;3;4;9;6;6;2;4;3;3;5;4;4;5;4;5;5;7;4;8;6;2;6;6;8;6;9;3;7;6;7;1;1;7;6;4;5;4;3;3;4;4;6;5;6;4;4;7;5;9;9;8;5;9;3;1;6;1;2;1;2;5;5;5;5;4;4;5;4;5;4;1;3;2;4;0;0;4;1;9;6;5;3;1;3;9;3;2;7;1;1;1;1;0;6;2;5;5;4;1;3;1;1;6;3;12;5;4;3;8;9;7;5;5;2;7;3;3;5;3;4;7;5;2;2;1;3;7;8;5;4;3;5;3;9;6;3;7;6;0;5;2;3;2;7;6;5;1;3;7;2;5;4;4;11;3;1;0;4;4;4;2;3;6;6;5;6;10;4;2;4;1;6;5;8;3;6;5;6;3;3;7;7;5;4;6;2;3;3;7;5;8;8;3;1;7;5;11;12
+Furalaxyl;9;3;4;5;7;8;3;3;3;8;9;6;5;7;6;7;5;4;5;5;4;3;13;2;9;8;10;17;22;21;15;15;10;6;18;17;38;12;9;8;11;10;19;3;14;15;15;14;16;6;5;4;4;7;11;5;10;7;9;6;11;9;8;8;9;6;7;9;7;8;5;9;16;20;19;14;11;7;7;20;14;13;18;15;20;16;19;22;23;7;11;10;12;9;9;15;11;20;14;17;25;14;20;17;20;8;8;7;6;4;5;7;6;7;6;6;4;7;3;18;11;6;3;8;10;8;6;7;16;8;13;20;9;20;5;16;18;20;20;19;13;21;16;7;17;8;17;5;11;11;5;12;13;14;16;29;18;19;18;9;22;16;11;9;15;9;19;9;10;22;24;6;11;6;6;10;2;4;17;17;18;8;14;12;4;9;6;1;13;14;23;14;20;5;17;4;3;10;15;7;12;10;8;13;13;3;22;25;16;29;18;18;15;14;13;22;23;26;4;9;14;19;7;9;7;8;6;11;6;10;11;12;12;7;11;9;12;12;13;9;20;22;14;18;16;5;11;8;21;14;12;13;9;8;24;8;15;10;6;3;9;12;2;3;9;7;26;18;19;6;4;4;20;18;4;18;2;7;10;12;9;20;10;19;16;20;6;7;1;7;12;9;5;41;18;5;9;30;14;21;20;15;12;3;5;11;7;10;19;5;13;11;5;5;19;17;10;13;11;11;6;15;20;7;20;22;9;14;12;21;12;16;14;15;8;10;23;11;10;14;16;22;15;4;3;8;5;10;17;12;6;6;11;21;30;15;1;8;10;16;22;15;11;13;9;19;3;15;24;26;20;17;30;7;5;7;24;24;38;32;15;6;30;28;40;37
+Kresoxim-methyl;7;3;4;3;4;6;1;1;1;3;2;6;4;2;2;3;2;3;3;3;4;4;12;6;8;9;8;15;18;23;11;13;3;4;17;9;28;13;7;4;6;2;10;1;7;11;11;12;11;4;1;2;8;7;11;1;2;2;2;2;4;2;2;2;2;2;2;2;2;2;1;4;15;18;18;17;6;6;6;15;13;12;17;12;18;13;15;16;17;9;8;5;10;10;10;13;13;16;15;15;21;12;14;17;17;4;5;4;5;3;4;7;8;6;5;2;3;6;5;16;11;7;4;9;8;10;11;7;9;8;14;20;10;13;2;17;20;20;17;18;9;23;17;8;20;10;17;5;7;7;7;11;15;12;17;24;13;10;9;5;14;13;10;5;6;9;22;6;7;25;16;6;4;5;5;8;1;5;12;11;11;4;19;15;2;7;9;0;4;4;21;5;17;2;18;7;5;10;9;5;9;8;5;5;21;5;19;23;19;24;13;12;19;10;16;18;19;24;7;9;10;15;6;6;5;3;2;3;2;6;5;5;4;2;8;4;8;10;4;3;18;17;11;17;10;5;1;5;12;9;4;5;13;5;16;7;19;6;5;2;15;6;0;6;6;8;21;10;16;1;3;1;13;17;4;7;1;8;10;11;10;17;16;6;11;16;8;9;1;6;12;9;4;18;29;5;6;26;18;22;20;18;2;3;5;6;2;15;25;4;3;11;1;1;21;24;7;3;10;10;4;19;21;8;24;19;7;14;16;6;5;6;14;16;9;3;16;12;10;10;7;10;4;1;2;11;7;11;11;10;9;6;7;19;27;16;1;14;3;11;22;17;12;16;5;17;4;5;24;26;18;17;25;9;3;6;18;17;29;23;10;7;22;16;29;28
+Mepanipyrim;9;5;4;5;6;7;5;5;5;7;10;5;5;6;5;5;5;5;5;5;5;5;8;5;6;2;5;6;7;6;6;4;4;7;8;5;10;5;4;2;4;3;6;0;2;2;2;2;2;4;3;2;1;1;5;2;2;2;3;4;4;3;2;2;2;2;2;4;2;3;3;4;4;5;4;4;2;2;3;7;4;3;6;7;7;3;7;7;10;2;6;2;5;3;3;4;4;8;6;8;8;6;6;8;5;5;6;6;6;4;5;5;6;5;4;6;7;10;6;7;3;6;7;5;3;5;4;2;1;1;6;4;5;6;4;2;3;3;8;9;10;9;9;6;9;4;5;3;6;7;3;6;4;3;5;6;4;4;5;3;6;6;3;3;2;5;4;3;4;2;4;5;4;1;1;6;1;4;7;7;6;1;9;8;2;3;5;0;4;5;8;6;7;2;9;6;6;9;9;8;9;8;9;8;5;8;9;6;2;7;5;5;7;6;3;3;8;5;1;1;7;3;6;5;4;3;3;4;4;5;5;5;4;2;5;5;5;5;5;4;6;4;3;4;6;0;0;1;6;2;2;3;0;2;10;5;3;6;2;4;2;5;0;1;4;2;4;3;4;2;1;1;5;2;2;6;4;2;2;2;2;10;2;8;4;6;1;4;1;3;1;2;3;5;5;12;4;8;7;5;2;2;6;3;10;5;5;2;3;1;3;2;0;0;6;6;6;4;5;2;3;6;5;6;6;6;4;3;2;6;4;8;5;4;1;2;7;2;4;5;6;5;4;0;0;0;0;5;5;3;0;1;4;6;8;7;0;9;2;2;11;6;3;3;2;5;2;4;4;6;11;7;9;5;2;2;4;7;8;9;6;2;7;6;9;7
+Mepronil;5;2;4;3;4;5;2;2;2;4;6;3;3;4;4;4;2;2;2;3;4;3;6;3;9;2;3;8;6;12;8;8;8;4;7;8;14;6;3;3;6;3;7;2;3;5;4;4;5;4;3;4;3;3;3;3;4;3;4;4;5;3;3;3;4;3;3;4;3;4;2;5;4;10;5;5;4;2;3;9;3;6;8;5;8;7;6;8;9;3;4;1;5;4;5;5;5;7;7;11;12;8;8;10;8;3;3;3;3;4;4;6;3;4;4;3;2;5;5;9;3;4;3;3;3;2;3;0;0;1;5;9;4;9;4;4;8;6;11;10;8;10;10;5;10;6;8;7;7;8;9;9;4;5;9;12;7;4;7;2;7;6;2;1;3;4;6;2;2;11;7;5;5;1;3;4;1;0;6;6;6;0;9;7;1;3;1;0;4;5;10;5;10;5;7;3;3;6;8;4;4;8;5;7;8;7;12;9;5;7;8;8;8;7;6;7;5;12;0;1;6;3;3;3;2;3;3;3;3;5;5;5;5;3;6;4;8;8;5;4;6;10;8;11;4;2;2;1;7;7;4;4;3;2;9;4;7;5;2;4;5;10;0;0;6;5;11;11;12;2;3;1;10;4;4;6;1;4;3;4;3;8;5;6;7;8;0;2;0;5;5;4;8;9;6;4;14;8;7;12;6;6;6;1;6;7;4;7;4;8;3;2;0;1;10;8;6;4;4;2;2;13;8;6;9;12;0;8;6;6;3;7;7;6;3;3;10;5;7;8;6;3;7;0;1;3;2;7;5;1;2;2;7;8;12;2;0;7;0;3;4;8;2;5;1;8;1;3;7;8;8;3;8;5;3;2;8;9;14;13;8;2;12;9;14;14
+Metalaxyl;10;8;12;8;10;14;6;6;6;12;22;14;7;8;6;7;7;8;8;8;6;6;22;8;20;17;17;33;29;43;20;24;33;11;32;17;66;18;10;14;15;22;33;1;37;32;31;30;32;4;4;14;23;18;22;15;18;14;16;15;13;17;17;14;19;12;14;16;13;14;8;11;35;40;45;39;20;12;6;38;35;30;40;27;37;24;32;39;39;30;16;10;28;20;24;32;28;34;33;36;54;23;35;37;35;10;11;8;10;13;10;13;17;13;13;10;11;19;15;47;22;14;10;38;25;17;19;15;25;16;31;39;12;32;14;39;32;37;28;29;16;35;25;13;25;16;28;7;16;24;9;19;25;23;25;49;29;27;32;13;38;43;41;27;35;26;55;21;26;67;67;23;16;22;21;13;3;7;26;16;17;11;36;23;12;19;21;3;16;22;57;18;38;13;34;12;10;25;34;17;28;19;21;22;33;7;32;54;26;58;42;38;41;27;27;29;33;59;9;18;28;46;17;18;23;24;21;21;17;17;16;15;19;12;11;14;28;34;28;14;42;28;20;35;32;10;10;19;37;25;23;22;24;12;42;10;33;14;12;15;28;10;3;5;15;9;63;31;39;11;9;7;48;26;16;29;5;9;21;18;27;43;29;37;35;29;19;17;2;13;28;27;9;30;26;8;8;97;47;37;38;27;26;6;8;15;19;28;31;8;17;18;8;15;34;33;18;26;34;31;14;40;57;13;39;34;20;27;29;33;22;29;29;29;16;29;54;20;20;21;26;34;28;9;14;18;20;19;15;27;23;22;33;45;65;36;3;26;20;35;49;34;23;39;25;34;12;29;55;58;58;51;62;12;9;12;44;54;79;62;20;10;55;46;83;75
+Myclobutanil;8;5;6;13;14;10;13;7;5;10;20;5;6;4;5;5;3;4;5;5;5;6;17;8;16;14;16;19;23;30;15;14;26;13;29;16;56;17;7;7;18;19;31;2;34;33;35;32;32;7;4;20;19;19;13;16;17;14;14;15;15;14;13;13;17;12;13;13;15;13;9;14;14;23;32;28;11;7;19;44;25;24;33;27;33;21;37;37;41;26;23;17;27;25;24;12;15;37;36;37;47;27;34;30;42;5;6;3;10;3;6;8;8;6;7;6;8;15;13;33;15;4;4;19;14;15;15;3;5;6;35;34;6;14;8;22;20;25;18;19;8;18;12;4;14;12;26;7;8;12;2;9;14;16;13;25;26;19;22;9;28;34;30;18;20;26;40;16;21;55;60;20;13;24;18;11;7;10;29;26;27;11;34;20;20;13;17;3;20;17;41;14;27;17;25;11;11;27;26;23;29;22;25;17;27;9;19;32;14;44;39;34;40;21;23;22;26;50;4;14;22;34;4;22;19;22;20;15;16;18;16;16;15;13;17;15;25;29;24;13;29;16;11;16;21;10;9;17;38;16;27;26;11;13;30;6;25;13;11;7;10;6;3;7;16;10;40;6;27;11;11;10;35;15;17;32;7;9;14;10;16;50;10;31;21;14;19;21;5;10;24;21;7;14;18;7;7;47;70;38;22;20;24;7;9;15;20;29;21;12;18;13;2;8;24;21;19;25;14;36;23;29;31;11;27;21;17;22;18;21;22;30;16;17;15;27;42;7;12;17;26;38;26;9;11;15;15;30;24;29;15;15;37;46;34;31;4;30;18;37;39;37;32;35;23;40;23;30;45;61;51;59;61;11;4;5;40;42;55;53;17;4;52;27;52;37
+Oxadixyl;5;1;8;3;4;5;5;3;3;5;12;9;3;6;3;4;1;1;1;1;1;2;13;2;15;14;9;25;24;34;17;15;15;9;24;19;44;19;13;5;11;9;22;1;32;23;23;20;23;4;2;9;9;11;12;7;12;10;10;11;7;15;11;10;15;8;10;10;8;10;7;9;22;28;26;20;16;11;13;24;23;23;22;17;31;20;24;28;31;20;16;10;19;18;19;18;20;26;25;29;42;23;34;29;27;3;4;4;6;8;5;7;8;8;5;2;2;9;7;32;17;7;3;20;10;14;12;6;9;11;23;25;11;23;6;24;28;26;25;26;10;31;20;9;22;15;22;7;11;11;8;13;21;21;22;36;16;15;19;8;27;28;23;15;17;21;29;9;11;42;41;13;17;11;11;11;5;7;17;17;16;8;28;18;8;11;13;0;14;10;36;7;23;9;22;3;3;9;12;8;15;12;11;13;20;9;29;29;22;41;24;27;30;19;19;29;16;42;10;18;18;24;10;8;10;14;12;14;12;11;10;9;13;10;6;10;17;24;17;10;30;25;16;17;20;5;10;12;27;16;21;21;16;8;32;7;29;16;11;6;19;9;1;8;12;8;36;22;25;9;10;10;36;25;11;24;3;9;17;10;23;35;20;23;19;23;16;12;3;11;20;16;5;21;22;5;12;37;38;53;27;26;18;4;7;13;13;19;20;10;15;17;1;3;29;28;15;16;22;17;13;21;34;12;29;28;9;14;24;25;13;22;23;24;11;17;34;17;15;23;15;18;19;7;7;6;5;15;13;16;5;12;24;36;38;22;4;21;13;24;33;28;22;22;17;29;6;25;35;39;35;30;41;12;6;10;23;45;47;46;13;9;41;31;50;43
+Picoxystrobin;8;2;8;6;8;6;3;4;3;3;13;10;2;0;0;1;1;2;2;2;4;4;15;4;10;12;10;18;25;32;11;13;11;3;24;11;45;19;6;7;13;10;17;2;15;17;17;17;17;6;5;10;10;8;14;5;14;10;15;13;13;12;11;11;15;11;10;13;13;14;10;12;20;22;24;27;13;9;6;25;17;15;30;13;25;19;31;26;29;15;16;12;22;23;25;20;22;31;33;30;38;27;24;29;26;7;7;6;7;7;7;9;12;10;10;1;1;8;9;24;13;4;2;13;8;10;12;9;15;10;25;32;12;15;9;29;27;26;18;16;9;24;20;6;19;9;17;3;5;7;7;9;14;16;19;31;22;20;19;10;23;26;20;13;13;15;35;10;14;49;31;11;6;11;8;9;2;8;14;9;8;7;24;10;4;13;9;1;6;8;27;4;34;3;25;6;6;18;15;12;16;14;14;10;20;2;21;23;18;41;26;28;27;23;14;26;19;41;9;11;21;27;6;13;8;10;8;15;12;12;13;12;16;11;13;15;16;25;20;15;31;13;10;12;13;10;5;2;16;13;22;22;17;22;26;5;23;7;5;6;21;6;0;6;13;7;28;18;20;1;5;2;22;19;5;5;5;7;12;10;18;35;21;14;28;18;10;11;4;6;23;19;5;20;20;2;6;38;22;27;61;20;3;4;4;11;11;19;29;5;3;17;1;2;24;37;11;7;19;18;9;15;37;10;21;21;14;17;16;15;13;10;21;21;8;12;29;15;12;14;14;36;11;1;3;10;7;13;11;17;11;12;16;31;48;20;3;15;2;19;27;21;17;28;17;21;11;14;36;40;33;26;41;13;6;9;21;26;50;35;14;7;39;31;44;43
+Piperonyl butoxide;2;0;2;6;8;5;2;2;1;2;10;5;2;1;1;0;0;0;0;0;1;2;8;0;9;14;4;19;22;25;9;10;9;9;19;8;29;15;8;3;8;4;14;1;13;11;10;10;11;0;1;8;10;13;6;3;8;7;8;9;6;7;7;7;9;7;7;8;5;7;5;6;15;20;16;17;9;11;7;13;17;15;21;12;20;10;14;18;23;9;10;12;15;9;11;13;14;20;14;20;26;18;20;23;23;0;0;0;2;2;2;3;4;3;2;0;1;4;4;20;8;5;1;10;14;13;15;6;5;8;22;16;8;16;5;14;20;19;21;20;8;29;14;6;17;8;17;4;6;7;6;11;18;23;16;33;11;9;10;4;10;10;22;8;6;8;22;4;7;30;22;7;4;15;12;9;0;3;14;9;9;4;24;14;7;7;9;0;2;8;22;3;12;1;13;2;2;8;8;5;9;7;7;3;10;2;27;20;17;24;6;15;19;10;16;19;8;32;7;14;13;20;11;5;4;6;5;8;6;6;7;7;10;6;7;8;5;10;7;8;20;22;13;10;11;4;3;4;14;8;17;15;13;4;22;5;24;9;5;2;13;7;0;6;5;9;18;8;15;3;6;1;16;24;3;9;1;10;13;14;15;25;14;3;17;18;3;3;0;8;9;9;2;15;18;2;6;27;20;26;20;37;1;3;3;6;7;9;20;4;1;16;0;1;25;28;3;4;21;13;8;22;29;9;24;16;2;12;23;8;5;6;21;21;10;5;21;15;9;15;7;9;6;1;2;8;6;9;5;13;3;8;10;24;30;16;3;13;6;10;23;13;9;18;8;15;9;6;25;32;22;25;30;4;7;9;13;29;36;25;10;9;26;18;35;33
+Prometon;6;9;6;8;8;9;7;9;8;12;18;9;5;8;9;10;7;8;9;9;7;7;19;9;8;13;10;21;21;22;11;15;23;9;19;13;36;11;7;10;7;14;24;1;19;13;16;16;15;8;4;11;8;7;15;10;10;8;9;11;10;11;10;10;11;8;10;11;11;12;10;10;11;13;23;14;14;5;9;29;18;16;21;19;17;15;17;20;16;8;14;5;16;11;13;12;11;19;20;20;25;11;14;12;18;11;10;6;3;6;4;5;7;9;10;9;9;15;10;24;4;7;7;19;16;9;8;4;7;5;19;22;7;21;13;12;22;20;21;23;12;22;14;9;17;7;7;3;14;20;6;15;23;15;15;36;27;25;28;8;31;27;22;15;14;10;22;11;14;37;21;14;10;8;8;11;9;8;16;16;14;10;16;11;23;8;8;4;15;16;29;14;25;13;17;9;7;17;22;12;19;14;16;20;23;8;22;28;1;17;17;27;33;20;15;7;26;13;1;12;19;13;11;17;15;15;13;12;11;15;10;11;11;11;6;12;15;18;14;12;18;18;12;14;16;8;11;16;30;16;18;17;11;8;20;5;12;16;8;12;2;6;6;3;11;9;34;17;23;14;7;11;24;18;19;23;8;7;7;3;13;21;2;36;14;3;7;15;4;8;12;14;7;12;2;6;6;26;24;18;3;1;47;6;7;13;11;25;8;15;28;2;6;9;7;10;14;34;17;11;15;24;27;6;14;13;8;20;3;27;19;35;8;4;6;11;25;2;8;12;28;18;29;10;14;9;12;23;24;11;9;17;12;25;33;14;4;13;10;18;22;21;11;26;18;25;8;23;30;37;32;35;37;5;5;6;26;31;31;32;15;9;37;34;44;43
+Pyracarbolid;2;4;2;2;2;3;2;2;2;2;2;2;2;2;3;3;3;4;4;4;4;4;5;4;3;3;5;6;6;7;3;7;4;1;6;5;8;4;3;2;5;4;4;0;4;3;3;3;3;1;2;2;2;1;5;2;2;2;3;2;3;3;2;2;2;1;1;3;3;3;2;3;4;6;6;5;4;3;1;8;5;4;7;5;5;2;6;6;5;4;2;3;3;3;3;7;5;6;5;5;6;5;6;3;7;3;3;3;1;2;1;1;3;5;4;3;3;5;1;6;5;4;2;7;4;5;6;3;3;3;7;6;3;7;4;3;3;3;6;6;5;5;5;7;5;7;7;3;5;9;1;7;5;3;2;6;4;4;3;1;4;5;4;5;5;3;7;5;7;7;7;2;0;2;1;3;1;3;5;5;5;2;4;5;4;5;7;0;4;3;8;2;5;3;4;2;2;4;8;4;6;4;4;4;7;3;5;5;6;5;6;5;7;4;4;8;9;8;3;3;7;4;5;4;6;4;4;3;3;3;3;3;2;3;3;3;3;3;3;3;7;5;6;4;3;1;2;5;6;6;3;3;3;6;6;5;5;2;5;3;2;2;0;1;5;2;9;2;4;3;3;5;5;3;4;7;2;3;3;4;1;5;3;7;5;5;3;5;2;2;3;6;3;3;3;3;1;6;7;4;4;3;6;10;3;5;3;6;3;3;5;0;1;1;5;4;4;9;5;6;4;4;8;6;4;4;2;4;4;6;3;4;4;4;2;3;7;2;3;3;6;7;4;0;2;0;1;5;4;1;3;5;4;7;6;6;1;3;1;7;8;3;2;6;0;5;1;3;5;9;7;8;9;3;2;1;5;4;7;5;3;4;8;6;9;9
+Pyrimethanil;6;4;7;4;5;7;4;3;3;6;8;5;5;4;4;4;3;4;4;4;4;4;6;4;5;1;7;8;7;9;10;7;9;6;10;8;13;6;3;2;6;5;8;0;2;2;2;2;2;3;3;2;4;3;7;4;6;6;7;7;7;4;5;4;6;5;6;6;8;8;6;8;4;6;6;4;3;3;4;8;7;10;6;6;11;9;6;7;6;3;7;6;5;6;7;4;4;5;7;9;11;8;6;6;6;4;5;4;4;4;4;4;5;5;4;4;5;9;5;7;5;5;5;4;3;5;4;1;1;1;6;7;5;8;4;4;6;4;10;10;11;12;8;5;12;5;5;4;8;9;5;8;6;3;7;9;8;7;9;4;10;7;1;2;2;3;3;3;4;4;4;5;4;3;3;7;1;4;10;10;9;1;12;8;5;2;6;0;5;4;7;6;8;5;10;5;5;10;7;8;9;9;10;8;6;10;12;9;6;6;7;5;11;7;3;6;9;7;1;0;8;5;5;5;4;4;4;5;4;7;8;7;7;6;5;8;8;8;8;8;8;6;5;6;5;0;0;3;11;4;2;2;1;6;10;5;5;6;3;4;4;7;0;1;5;4;7;7;6;2;2;1;12;3;4;6;4;3;3;2;4;4;4;7;6;5;7;4;2;4;7;3;3;5;5;10;6;8;9;7;4;3;7;3;13;7;3;5;3;2;5;2;1;1;7;10;7;5;5;4;7;8;7;7;5;7;3;5;4;9;8;9;6;5;1;5;11;3;7;6;6;5;8;0;1;1;1;3;3;1;1;1;1;7;10;7;0;9;3;3;10;4;4;3;1;5;1;4;5;7;9;7;8;9;2;2;3;10;13;13;9;2;12;8;13;12
+Pyriproxyfen;6;3;7;4;5;4;2;2;2;6;7;5;4;2;3;4;3;3;3;3;4;5;8;5;5;3;6;14;10;13;10;9;7;8;13;12;18;9;7;6;7;6;9;1;11;7;7;6;6;7;4;5;9;4;9;4;11;7;9;9;9;9;8;6;11;8;7;8;8;7;4;8;7;11;11;9;7;4;4;9;11;12;10;8;14;11;10;10;8;8;5;7;9;7;7;10;9;12;9;9;16;8;8;11;10;7;7;6;3;3;2;5;6;10;7;4;3;10;4;16;7;4;3;6;3;8;7;5;5;5;14;14;6;13;2;12;8;9;13;10;7;13;9;6;10;4;7;4;10;10;3;10;8;11;10;16;11;11;10;7;15;14;6;10;11;9;16;9;12;14;17;7;7;5;4;7;5;3;13;12;12;5;13;5;6;3;5;0;8;6;13;8;13;7;14;3;3;9;11;10;10;11;10;9;14;5;15;10;8;12;11;7;14;10;8;9;15;13;1;6;12;6;6;7;9;8;8;10;7;8;8;8;10;8;8;8;12;13;12;9;13;10;10;10;9;1;4;5;19;5;7;7;1;4;15;8;9;12;5;6;6;7;1;3;9;8;15;9;10;4;4;4;15;10;8;13;4;5;4;6;11;12;6;12;10;9;8;4;0;5;12;7;5;11;6;5;7;15;15;13;11;6;13;5;7;21;8;7;5;5;9;7;1;2;9;11;6;11;8;6;6;11;14;6;7;9;6;9;7;11;7;13;10;9;4;8;15;6;7;11;11;7;12;4;3;3;0;8;6;6;3;3;8;10;14;11;1;11;3;8;13;9;13;11;6;12;6;7;10;12;9;11;12;10;4;6;7;16;20;20;9;6;18;15;21;20
+Quinoxyfen;7;6;4;5;4;5;4;6;5;3;5;8;5;7;5;6;6;6;6;6;10;11;18;8;11;9;5;10;8;17;7;10;15;4;28;7;21;9;2;21;26;23;23;4;14;12;13;12;13;18;12;20;13;12;19;19;22;21;23;20;31;23;22;19;26;19;20;27;26;28;20;28;14;12;7;10;8;6;5;15;9;11;8;9;11;9;13;14;13;23;9;4;15;8;10;12;14;12;15;20;24;13;17;18;13;23;18;17;18;19;20;16;15;16;17;15;12;21;14;17;7;10;10;14;10;14;19;6;5;5;33;5;3;11;7;9;6;8;14;13;7;11;5;5;8;1;6;2;3;7;3;4;6;7;11;13;3;3;4;2;8;19;14;28;24;27;37;24;27;34;35;19;15;15;15;5;1;8;13;12;12;2;9;8;6;10;8;3;9;11;21;8;14;9;11;3;3;7;12;5;8;5;7;13;21;7;14;20;4;16;24;24;19;8;10;10;14;15;5;8;13;10;11;13;22;23;21;28;22;28;28;30;25;22;26;28;28;32;31;27;11;10;7;14;19;1;6;9;12;8;15;15;9;12;19;4;12;9;5;4;5;3;1;2;10;6;27;13;16;6;7;3;14;8;6;11;3;3;3;4;8;19;5;12;11;5;7;16;3;5;23;16;3;7;2;5;4;19;20;13;11;7;11;3;3;8;43;14;8;8;7;5;2;3;7;12;10;10;10;13;9;13;15;5;20;16;13;10;10;10;4;12;8;8;7;11;20;8;10;15;11;29;10;3;6;9;12;12;7;16;9;8;15;20;19;16;11;9;7;17;28;13;10;16;7;11;6;21;21;22;23;12;22;4;2;2;15;20;18;21;7;6;16;11;23;14
+Triadimefon;5;4;5;4;5;4;5;5;4;4;6;1;3;4;4;4;3;4;4;4;5;5;18;8;14;11;7;12;13;31;6;12;22;3;21;12;32;11;4;11;17;9;18;4;27;22;23;24;22;6;5;12;17;12;12;9;14;10;12;13;14;12;11;10;13;10;11;13;18;14;11;15;14;20;23;15;8;4;12;20;20;18;20;16;21;19;24;26;26;20;15;8;19;19;19;8;13;21;26;31;32;15;21;18;19;8;8;4;6;5;5;10;9;7;7;7;7;25;19;29;17;9;8;16;10;12;14;1;5;2;26;22;4;10;7;21;14;19;9;9;4;8;6;2;5;4;9;4;3;9;4;3;9;8;6;16;20;17;20;8;21;29;24;14;26;18;37;17;19;47;38;16;13;12;13;6;8;10;13;10;11;10;11;13;19;12;5;3;12;14;30;5;26;13;20;6;6;17;18;13;18;13;16;11;32;5;8;32;9;29;23;23;20;17;17;12;20;26;4;17;13;22;12;12;11;12;12;12;12;18;15;16;13;14;14;14;16;23;19;14;25;6;4;19;11;8;5;10;21;12;24;22;11;10;23;1;12;9;8;11;5;4;5;4;14;3;39;19;25;6;7;4;29;6;17;10;2;6;6;0;14;23;5;25;13;10;12;17;7;4;14;14;4;10;15;2;7;28;29;19;19;9;25;6;5;7;14;51;15;8;17;5;1;7;7;18;14;25;11;17;18;25;28;3;22;19;12;19;12;21;12;19;7;8;10;14;32;5;11;9;18;25;22;5;9;14;12;25;27;19;15;16;18;36;35;24;3;20;8;24;36;24;16;28;17;26;13;29;32;41;37;31;40;10;4;4;25;29;37;34;12;3;36;27;44;39
+Trifloxystrobin;7;4;4;7;8;6;6;3;3;4;8;8;5;4;2;6;3;4;5;5;3;2;7;3;6;12;12;13;16;27;9;11;15;9;22;9;37;15;7;7;10;9;20;2;11;12;14;13;15;7;3;6;7;10;7;7;7;6;8;8;9;9;8;9;8;7;6;7;8;7;6;9;19;24;29;22;9;10;10;19;15;13;24;15;26;18;23;25;27;13;14;15;18;16;19;12;11;26;26;23;34;17;24;27;30;4;6;4;6;4;4;8;11;6;6;2;2;5;6;23;11;6;3;13;9;11;14;8;15;10;27;24;10;12;7;24;19;20;15;16;5;24;15;6;17;6;15;2;5;7;6;7;13;13;18;21;20;18;14;8;21;19;19;11;10;17;28;9;13;37;27;8;6;10;7;7;3;5;26;15;16;4;21;17;9;9;8;1;11;9;22;6;24;2;21;7;7;17;14;12;16;12;13;10;18;3;18;19;15;31;9;20;23;17;15;24;17;33;10;9;15;25;5;13;11;7;7;10;9;10;9;10;7;6;12;8;12;18;11;7;31;16;8;6;12;9;3;3;16;13;11;11;17;14;30;4;29;5;4;3;14;4;1;4;10;5;22;15;16;3;1;6;20;16;6;11;2;5;6;9;11;29;14;13;25;14;12;10;1;3;20;12;7;19;25;3;4;31;21;20;29;20;8;3;3;5;8;15;47;11;4;12;1;3;22;31;8;7;20;13;5;12;29;8;21;19;8;14;15;12;11;13;16;18;8;10;24;13;11;13;9;29;12;5;5;9;7;13;11;16;8;12;13;27;36;17;6;12;3;22;24;21;14;24;9;19;15;11;29;32;26;24;36;7;3;5;23;26;40;32;7;5;32;22;37;33
+Zoxamide;4;3;1;2;2;3;1;3;3;4;9;5;3;4;5;5;2;3;3;3;3;4;8;4;4;2;2;8;6;12;3;5;9;6;12;1;17;5;2;4;5;16;7;2;14;8;10;10;9;4;2;6;5;7;5;16;7;7;4;11;5;10;7;6;10;6;7;6;7;8;3;5;4;9;8;6;3;1;3;12;7;4;8;4;5;1;5;7;10;11;4;5;9;4;4;3;3;9;8;9;8;11;11;12;13;6;3;2;7;4;7;5;4;8;5;7;3;7;4;14;4;5;3;9;6;7;6;8;8;8;21;7;2;8;4;6;4;6;5;8;6;6;6;3;5;3;5;1;5;8;2;7;6;6;6;11;9;7;10;2;12;20;11;11;13;10;14;9;10;20;23;9;4;7;8;0;2;6;9;11;11;5;10;4;7;12;5;2;5;8;18;6;9;5;14;2;1;6;9;5;8;5;7;9;14;3;6;9;0;9;17;17;17;8;8;4;10;10;5;8;7;16;7;8;12;16;16;11;6;6;5;5;7;7;8;8;11;14;12;8;12;7;3;9;8;2;3;8;14;7;12;12;6;9;9;1;7;2;5;6;5;3;1;1;6;3;20;15;11;7;4;6;9;7;7;13;1;1;5;3;9;16;5;13;9;3;5;8;4;5;9;3;5;5;4;1;8;8;12;10;5;4;15;3;2;5;8;8;11;27;6;0;0;3;4;6;2;12;7;12;4;9;14;5;11;12;3;8;7;10;8;12;2;1;6;4;12;3;2;7;12;18;10;2;6;10;11;7;8;10;3;4;15;14;15;15;4;8;6;22;16;18;12;16;16;15;12;10;11;18;22;14;19;0;0;0;22;13;9;17;3;2;19;12;27;21
+Secbumeton;5;7;3;9;10;7;7;8;7;10;15;7;5;7;8;8;6;7;8;8;4;4;13;7;8;10;8;21;20;18;10;10;19;10;13;15;32;9;7;8;9;9;22;1;13;12;14;14;13;5;5;6;8;6;10;7;8;4;7;7;10;9;7;6;8;4;5;9;8;9;7;9;6;13;15;10;9;4;9;24;15;13;22;19;15;13;17;19;15;6;11;4;13;11;11;11;11;17;18;16;20;10;13;9;17;8;6;4;3;5;3;5;6;6;5;7;4;10;7;17;6;4;5;16;7;5;6;1;2;1;13;21;8;20;10;8;20;16;19;20;14;19;12;8;16;5;6;2;12;17;6;17;20;14;18;31;22;23;24;9;29;17;13;11;11;6;16;10;12;29;15;7;12;6;6;10;7;5;17;17;12;8;14;9;23;11;6;1;11;17;25;15;24;13;18;9;9;16;20;12;16;13;15;17;20;9;18;23;4;14;15;20;23;15;15;5;20;14;0;11;18;14;7;13;12;11;9;9;7;11;10;10;8;7;6;10;12;14;12;11;12;16;13;11;16;8;8;14;27;13;14;12;6;4;19;4;12;11;7;10;1;6;7;4;8;10;26;16;19;12;6;7;20;15;14;21;6;8;6;3;10;18;1;33;13;4;8;12;3;4;10;12;2;13;3;3;3;17;18;15;3;1;28;5;5;9;7;17;4;6;38;2;4;7;6;9;11;30;9;9;9;19;22;4;9;12;7;14;4;27;17;26;4;3;6;12;26;4;8;8;26;15;29;9;14;7;7;16;20;8;7;11;7;23;28;11;4;11;6;12;21;16;8;18;13;18;5;18;23;29;28;27;30;6;4;2;21;23;29;25;14;7;31;27;35;33
+Fenazaquin;4;0;2;0;1;1;0;0;0;2;3;4;0;0;0;0;0;0;0;0;0;0;2;0;1;4;2;7;15;14;3;8;3;1;10;8;17;12;3;0;4;3;6;0;12;10;11;8;11;1;0;2;2;1;4;2;4;4;5;6;4;4;3;4;5;5;5;5;5;5;4;5;7;14;13;13;4;2;2;5;10;8;5;5;10;6;11;10;10;6;5;6;9;5;6;5;5;10;7;7;16;8;9;10;11;0;2;1;0;0;0;0;1;3;1;0;0;2;3;13;7;1;0;5;3;4;3;4;4;6;8;15;4;6;3;16;15;14;7;8;2;12;7;2;9;2;13;1;2;2;4;4;7;9;8;15;10;11;13;5;11;6;8;4;4;7;12;3;3;18;13;1;5;2;1;6;0;0;5;4;4;1;10;3;4;6;4;0;3;3;9;0;13;0;12;3;3;6;5;4;7;4;5;4;8;1;12;4;10;16;6;6;12;10;9;15;3;18;4;11;7;14;2;1;3;6;6;4;4;3;4;4;6;4;3;5;5;7;4;5;16;8;7;3;6;5;2;1;9;3;6;6;11;3;11;1;12;2;3;1;10;3;0;0;4;4;13;6;9;0;1;1;18;11;1;6;0;3;2;6;10;9;10;5;12;10;8;4;0;4;5;6;2;11;11;2;2;18;13;17;17;16;2;0;2;7;5;5;12;0;2;19;0;1;17;16;6;2;8;6;2;4;14;5;11;10;4;4;12;8;6;8;10;12;3;3;7;11;8;4;5;7;9;1;2;5;1;9;4;5;0;3;8;15;17;4;0;6;3;7;12;10;8;8;4;11;2;9;14;15;14;11;15;5;5;7;5;17;19;17;3;2;17;15;19;18
+Spiroxamine_isomer1;0;1;1;1;1;2;2;2;2;1;1;0;0;1;1;2;1;1;1;1;1;1;1;1;1;2;1;0;1;1;0;2;3;0;1;0;3;2;0;2;1;1;1;0;1;5;5;5;5;0;0;1;2;1;0;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;4;2;1;0;0;7;0;1;6;4;1;3;3;2;1;0;0;1;1;0;0;0;0;0;0;2;3;1;1;1;4;1;1;0;0;2;1;1;2;0;1;1;1;4;4;4;0;2;2;5;3;0;1;1;1;1;2;2;0;2;3;2;1;2;0;1;0;1;0;0;0;0;0;0;0;2;0;0;1;1;0;2;1;1;1;0;3;4;6;3;2;2;4;2;3;6;3;2;1;2;2;0;0;0;2;1;1;2;1;0;2;0;0;1;0;4;6;0;6;2;2;2;1;2;3;1;2;2;3;4;2;0;0;5;2;2;1;4;2;4;4;1;2;1;0;0;0;4;0;2;2;1;1;1;1;3;1;1;1;1;1;1;2;3;2;1;5;0;0;2;3;2;0;1;2;0;1;1;1;1;3;0;0;1;0;1;3;0;0;0;3;0;5;1;2;1;0;2;6;1;7;2;0;0;0;0;3;0;3;1;1;0;1;0;0;1;2;3;1;5;1;0;0;8;2;1;1;0;6;1;1;1;2;1;1;0;4;0;8;8;1;4;4;5;2;1;0;4;5;0;0;0;0;2;0;1;2;1;1;0;0;5;4;0;1;1;1;0;1;2;0;2;2;1;1;0;1;3;0;2;6;0;1;2;1;2;1;1;1;4;3;1;0;3;6;5;2;6;6;0;2;2;6;3;5;2;1;1;2;2;7;5
+Spiroxamine_isomer2;0;2;0;1;1;3;3;3;3;3;1;0;0;1;1;2;2;2;2;2;1;1;3;2;1;3;2;3;3;4;1;3;7;1;3;2;6;2;1;5;2;3;2;0;4;5;6;7;6;0;1;2;1;1;3;3;3;3;3;3;3;3;3;3;4;3;3;3;2;3;3;3;2;2;11;4;1;0;2;10;4;3;7;8;3;2;4;5;2;1;2;2;5;1;1;1;1;2;2;3;5;2;5;5;7;2;3;0;1;5;3;2;5;3;4;5;5;8;8;8;1;5;5;9;5;2;3;3;4;3;7;4;0;6;4;7;3;5;3;5;1;2;3;0;2;0;2;1;0;4;1;1;3;1;3;6;5;5;4;1;6;9;9;7;7;7;9;7;8;12;8;5;3;6;5;1;1;0;6;1;1;2;3;1;9;4;1;2;3;7;9;1;10;5;5;4;3;5;9;5;7;4;7;5;1;1;3;9;4;4;2;3;6;6;7;5;2;4;0;3;4;6;2;4;5;3;3;3;2;5;3;4;3;3;2;3;4;6;5;3;10;2;2;1;5;5;1;3;4;2;2;2;3;3;8;0;5;3;0;3;5;1;1;0;5;2;11;6;6;1;3;2;11;2;9;5;0;2;2;1;4;4;5;4;2;1;2;2;0;2;2;2;3;5;1;0;1;15;8;3;2;1;9;1;1;2;3;7;3;3;7;1;8;17;4;3;5;11;4;3;1;2;9;2;6;4;1;2;1;3;3;3;3;3;1;5;8;1;3;3;4;5;4;3;4;4;4;2;5;2;3;5;3;4;14;3;2;2;3;8;3;4;4;11;6;9;1;7;13;12;12;11;12;0;4;6;9;14;10;6;3;3;6;6;16;13
+Amitraz;8;3;5;3;4;5;2;2;2;4;12;10;5;3;2;2;2;3;3;3;2;3;10;2;11;12;7;24;24;27;12;16;11;7;16;16;36;18;10;3;9;6;12;1;18;14;13;12;13;3;3;5;5;4;12;5;9;7;9;8;8;7;8;8;8;7;7;9;7;8;6;8;20;24;24;23;9;9;3;15;17;15;16;14;21;12;14;17;25;9;9;6;18;8;10;19;15;17;12;14;33;14;18;19;21;3;2;2;5;5;4;8;8;5;4;2;3;7;6;24;11;8;3;19;10;13;11;8;9;12;18;25;13;25;7;21;28;26;27;23;14;33;23;10;26;10;18;6;14;15;6;17;22;17;21;36;18;17;20;6;19;14;19;8;9;9;22;6;7;31;16;5;3;6;4;12;3;3;19;16;15;4;26;18;9;10;10;0;6;11;24;12;20;5;19;5;5;12;14;8;13;11;10;10;14;6;31;24;20;32;11;13;29;14;17;27;14;34;8;18;20;20;11;5;9;8;8;8;6;8;9;10;10;7;7;9;11;15;11;9;27;24;20;15;11;7;2;2;18;11;9;9;13;5;21;8;29;10;6;5;18;11;1;5;11;10;23;12;18;2;5;4;32;24;6;15;2;10;14;13;14;24;19;16;24;20;3;7;0;10;17;15;7;19;21;6;10;34;24;29;24;25;7;5;7;9;7;7;22;4;6;17;1;4;42;31;11;7;21;14;9;19;32;11;29;25;4;8;25;17;10;18;24;24;12;10;24;19;11;19;11;9;16;1;3;2;2;7;7;8;4;7;18;32;38;14;3;18;10;12;26;16;10;13;8;16;3;10;20;24;27;18;24;9;7;9;18;35;41;35;10;9;35;27;42;41
+Tebufenpyrad;11;4;8;7;8;8;4;6;6;10;12;10;5;4;5;5;3;4;4;4;8;8;15;9;9;12;11;25;28;33;14;23;15;6;28;16;46;28;9;10;12;11;20;3;20;17;18;16;18;10;6;11;14;11;15;10;17;14;19;14;15;15;14;14;18;15;14;14;17;16;12;15;17;24;33;27;9;6;10;17;19;18;19;16;27;21;23;22;29;16;10;13;25;11;15;16;13;20;18;22;37;19;22;25;23;8;10;9;10;11;9;16;14;9;10;10;9;16;12;30;18;12;9;21;12;12;14;11;12;12;26;30;13;21;5;25;31;26;26;24;11;33;22;12;23;9;20;6;12;13;8;16;21;19;19;33;29;27;27;9;27;15;20;14;13;17;32;12;16;43;28;15;5;12;10;13;3;12;35;27;26;4;38;31;17;14;14;0;13;15;31;10;30;10;24;8;8;17;18;13;20;13;14;13;26;9;30;26;20;34;11;18;39;26;16;29;23;35;7;14;27;20;13;10;12;12;12;16;15;15;16;15;18;16;15;19;21;30;18;18;35;21;16;11;15;8;2;3;18;15;11;11;16;14;31;8;32;14;10;10;18;11;5;4;12;10;27;24;21;4;7;6;27;23;10;11;4;11;9;11;17;29;19;23;28;20;10;17;0;9;22;21;8;17;24;6;8;33;21;28;37;28;10;4;10;11;12;18;31;6;9;16;4;3;31;68;9;12;23;20;10;12;36;14;27;24;11;14;21;19;13;22;32;27;9;12;33;24;18;15;17;27;20;4;3;9;5;12;11;14;5;8;15;31;46;29;4;16;7;16;31;16;13;20;10;15;13;15;25;29;28;28;28;15;8;10;24;35;48;38;14;8;40;28;52;45
+Fludioxonil;4;4;4;8;9;13;9;7;6;7;5;4;4;6;5;5;3;4;4;4;3;3;9;4;7;8;11;8;8;14;9;8;10;3;15;12;22;10;4;5;12;10;10;0;11;11;10;9;10;6;5;10;9;9;5;9;12;11;11;11;11;12;11;12;12;12;11;12;13;12;10;10;8;12;9;10;6;3;8;16;12;12;10;12;12;9;13;14;16;13;10;5;12;11;10;9;6;13;14;15;20;7;12;14;10;8;8;9;6;6;4;6;9;10;8;6;7;19;16;16;8;7;7;8;6;4;6;2;4;3;15;10;9;7;9;14;5;8;7;11;6;7;9;6;8;5;10;4;4;5;4;4;4;3;10;8;9;9;10;4;15;16;7;10;13;13;18;14;15;18;21;9;8;9;9;8;4;10;13;13;13;3;9;10;11;8;8;1;11;13;20;8;18;4;13;5;4;14;13;12;12;13;13;11;13;7;6;13;6;15;11;14;7;12;8;12;15;17;3;6;7;13;5;15;11;11;11;14;12;12;10;10;12;10;8;12;14;17;16;12;10;5;3;7;9;2;4;5;13;5;8;9;5;7;14;5;6;7;5;3;5;5;0;2;11;3;15;8;17;2;4;3;19;4;9;8;3;3;3;4;7;9;5;13;8;8;11;4;4;4;9;6;5;10;7;6;6;18;19;15;11;3;14;4;7;6;10;14;8;2;11;6;4;5;11;9;24;11;6;10;10;8;13;8;9;7;6;7;6;11;9;15;6;5;7;10;17;3;6;7;11;16;13;1;4;2;2;14;11;6;7;7;9;18;16;10;2;11;3;16;18;11;16;7;4;12;5;14;16;19;18;15;17;10;4;3;11;16;21;16;11;2;19;11;15;10
+Terbumeton;5;7;5;5;6;6;8;4;3;9;18;7;2;5;6;7;5;6;7;7;5;6;16;8;8;12;11;22;24;22;10;12;24;9;17;11;32;11;7;11;7;12;23;1;17;14;15;16;15;5;6;9;10;8;13;8;9;6;8;9;10;10;9;8;10;5;8;10;9;10;8;9;12;17;25;14;13;5;11;28;21;16;25;22;19;14;20;23;17;8;14;6;12;14;14;13;13;23;22;20;24;13;18;14;22;10;8;5;3;6;4;7;6;7;7;11;8;13;9;27;6;6;7;24;15;8;8;3;6;3;20;24;5;22;10;13;21;20;21;24;12;24;13;6;15;7;8;3;12;19;6;16;25;17;14;36;27;26;27;10;30;26;21;16;18;12;25;14;17;40;26;12;11;11;10;14;9;6;15;13;8;9;16;13;23;11;7;3;14;14;28;11;25;14;18;10;8;17;26;13;21;14;18;17;24;9;20;28;3;20;16;25;30;19;17;8;24;14;1;12;25;13;6;16;15;14;11;11;9;13;10;11;10;10;7;10;15;16;17;11;16;17;14;15;18;10;9;17;29;17;17;16;10;9;25;5;13;14;8;15;2;6;6;5;11;9;33;20;22;14;9;10;26;18;20;21;6;9;4;3;14;23;2;35;13;5;11;16;5;6;11;15;4;13;3;4;4;26;25;16;7;4;34;9;5;11;10;25;7;12;30;2;5;11;7;12;11;49;13;10;13;24;29;5;13;12;7;19;5;26;20;29;6;4;8;11;26;5;8;9;28;22;33;12;19;9;10;20;24;14;9;18;12;25;34;19;4;13;11;20;24;21;11;29;19;27;9;24;31;41;35;35;41;5;6;6;28;30;32;30;15;10;35;34;46;44
+Rotenone;4;6;7;8;10;11;6;4;2;6;12;5;5;7;5;6;6;7;7;7;8;6;20;8;10;21;10;26;21;29;9;21;26;9;23;10;38;12;8;14;14;15;23;1;11;12;11;9;13;3;4;12;13;13;17;11;13;10;14;12;15;15;15;12;14;9;11;11;12;12;7;12;31;27;25;27;18;17;11;25;26;24;27;22;29;21;19;29;40;14;19;14;22;15;17;27;23;29;24;36;51;24;31;33;35;5;6;5;5;12;7;6;14;9;8;4;5;12;9;37;15;12;7;23;23;17;19;13;15;16;29;16;10;24;7;14;18;20;30;24;17;26;16;10;16;8;16;4;14;20;3;16;24;26;17;36;11;10;11;5;12;21;28;14;15;18;36;13;15;43;36;17;7;15;12;13;2;8;23;18;20;5;21;22;8;8;11;1;13;11;39;10;13;8;17;8;6;15;11;8;12;11;12;6;16;6;26;32;11;25;16;17;25;11;17;15;23;32;8;4;17;10;23;13;16;15;13;17;14;13;13;13;16;12;11;12;15;23;22;11;27;21;14;12;16;3;6;6;28;8;14;13;9;14;30;8;30;10;9;4;16;10;3;4;5;11;30;13;13;9;7;4;16;19;7;16;3;10;14;12;11;32;16;17;24;14;13;11;2;8;22;17;3;11;10;5;4;34;14;22;19;21;17;5;5;8;10;11;20;7;9;8;2;4;21;23;6;13;75;16;14;21;31;7;33;19;12;22;16;12;7;14;27;25;10;19;42;15;10;13;13;28;15;6;11;11;8;10;8;15;13;20;9;31;30;22;7;8;10;16;30;14;7;27;7;12;9;16;31;34;22;32;35;8;7;10;24;26;37;30;9;11;29;20;49;44
+Enilconazole;6;2;1;6;7;6;4;7;5;10;11;6;8;3;4;4;2;3;3;3;5;4;18;3;10;14;4;18;13;21;7;14;18;6;26;8;31;5;1;15;19;17;14;0;31;25;27;26;27;8;4;16;20;16;12;12;18;11;16;20;19;17;15;11;19;11;12;16;17;19;8;16;21;21;20;15;8;7;8;22;15;15;19;15;16;9;15;20;23;23;14;11;24;14;15;17;22;22;23;23;30;23;26;14;19;15;11;8;9;9;10;9;9;15;12;5;4;16;7;17;9;4;2;14;8;16;17;6;10;5;32;14;5;14;5;17;10;14;14;15;10;12;10;6;10;10;18;4;6;11;4;8;12;12;11;19;8;7;7;4;10;29;30;23;28;30;46;26;29;54;46;17;13;19;13;8;5;16;17;14;13;2;23;11;10;18;18;1;11;18;35;17;18;8;19;8;7;14;14;10;13;11;12;13;28;3;16;31;13;23;27;30;27;16;16;20;32;31;5;17;17;27;11;9;16;17;16;21;15;18;17;17;19;15;15;17;25;34;28;16;14;13;13;21;10;5;4;5;20;10;12;11;14;12;15;8;17;10;12;4;10;3;5;3;13;6;36;13;20;5;6;4;27;13;7;12;1;6;15;9;18;32;10;16;13;11;8;11;0;5;22;19;5;11;10;2;2;31;36;17;18;13;11;6;4;6;13;17;13;12;9;6;1;3;14;20;10;10;16;57;16;19;29;8;26;13;15;15;16;13;7;13;13;9;10;17;28;8;11;13;14;33;13;4;6;22;21;24;14;30;22;14;22;33;29;26;5;19;5;34;30;15;28;31;18;16;20;15;33;38;45;34;32;9;2;3;36;18;38;18;8;6;20;11;34;28
+Acibenzolar-S-methyl;6;2;5;4;5;8;5;3;3;5;7;1;6;2;1;4;1;1;2;2;6;6;20;4;8;12;11;19;13;15;11;16;14;8;14;9;20;5;4;10;15;9;10;8;22;15;15;15;16;11;9;9;6;9;9;6;13;10;12;14;13;9;10;8;14;10;10;12;15;12;9;13;14;15;14;15;14;11;5;18;16;16;19;19;18;13;16;18;19;18;13;5;14;10;12;14;15;15;16;18;27;10;16;11;18;9;11;9;7;4;6;7;8;3;4;13;12;20;11;20;11;13;12;13;12;16;16;14;11;12;28;13;7;20;6;11;8;9;16;17;14;13;11;8;8;7;9;3;11;16;3;13;15;12;9;17;9;7;6;2;7;26;17;15;25;16;25;12;14;32;30;10;5;10;8;10;4;9;12;12;12;5;13;9;11;9;10;1;9;9;20;8;11;13;11;5;4;13;12;11;13;10;12;6;15;3;18;19;8;14;21;16;16;10;10;10;23;16;3;7;12;8;16;10;7;9;8;12;10;12;14;16;13;11;13;13;23;25;23;13;8;11;11;17;10;2;5;5;18;6;10;11;7;7;15;10;14;18;11;6;3;6;5;4;5;7;25;13;13;7;5;3;15;11;7;11;3;6;16;10;9;20;3;17;6;6;8;7;4;6;16;9;3;6;4;3;2;14;23;13;9;8;15;4;7;6;9;18;5;4;9;2;0;1;9;10;10;13;14;16;35;16;14;4;18;8;7;16;13;9;11;16;13;12;10;11;25;7;4;12;11;14;14;2;4;6;8;15;12;10;10;15;8;22;16;17;4;16;9;19;27;12;13;17;10;13;8;14;21;25;15;20;25;10;3;3;17;8;10;16;9;7;16;11;21;20
+Bupirimate;7;5;7;9;10;7;8;5;5;12;14;5;6;6;6;5;4;5;5;5;10;11;20;12;15;9;12;22;18;33;15;20;22;12;18;13;47;7;7;10;11;17;28;2;18;17;17;19;19;11;5;16;18;18;14;14;17;14;15;14;11;16;18;15;17;14;14;13;14;13;9;12;15;25;27;19;12;12;12;31;18;21;31;24;20;16;19;27;28;8;14;11;18;15;17;19;22;27;26;29;31;20;23;23;28;9;7;5;4;4;3;3;6;9;8;9;5;7;6;26;11;5;5;20;16;12;9;4;8;3;25;16;3;17;4;11;11;13;15;13;13;17;6;4;9;10;14;6;12;20;3;10;16;13;8;27;14;11;15;7;17;28;24;15;25;14;28;10;14;44;35;17;18;16;17;7;5;5;25;18;18;9;21;20;11;9;15;2;11;11;34;16;9;13;12;6;5;12;17;10;16;14;13;11;26;12;16;34;8;29;25;24;28;11;20;16;27;38;2;13;21;25;15;11;18;19;18;19;16;12;12;12;16;14;8;13;20;22;20;14;22;22;18;27;19;3;8;17;35;11;26;25;9;14;22;9;23;15;9;8;3;9;6;4;10;7;38;16;20;17;9;9;23;15;6;22;4;7;15;10;10;33;3;31;10;21;8;19;1;10;21;15;9;15;19;6;13;40;29;21;15;22;24;4;8;11;13;25;12;9;19;4;4;2;19;12;8;24;21;19;16;60;25;8;30;27;6;27;23;22;15;28;18;17;7;21;35;9;7;16;28;21;24;6;10;14;14;22;14;25;16;14;24;33;22;24;4;21;11;28;27;25;19;22;19;30;12;11;37;42;36;32;44;5;5;4;38;23;43;43;12;3;35;20;52;43
+Buprofezin;8;7;12;9;9;9;6;8;6;8;16;7;7;7;8;9;4;7;7;7;7;6;21;7;10;17;11;30;23;42;14;22;22;13;33;16;52;18;10;13;11;17;23;2;30;22;23;21;22;4;5;14;14;13;20;14;14;8;12;15;14;15;14;10;15;10;10;11;10;12;8;11;25;30;39;27;13;10;6;31;22;20;34;23;28;18;28;30;46;19;13;14;28;18;19;26;24;28;28;32;47;30;31;33;36;12;10;6;7;9;6;13;12;10;18;10;9;19;17;33;14;11;7;29;21;17;17;13;18;16;37;33;14;31;10;29;30;27;26;28;18;29;25;14;21;13;25;6;16;22;8;23;23;23;23;42;25;21;28;12;28;37;36;29;24;23;48;25;29;67;51;18;11;20;15;11;7;8;30;24;21;14;34;25;20;14;16;1;15;18;38;13;30;15;33;10;9;20;25;14;22;18;17;19;35;9;29;36;19;37;19;27;39;26;24;26;21;43;10;22;26;35;15;17;17;20;19;17;16;15;12;12;13;12;9;15;18;24;15;13;42;25;20;19;23;9;8;13;31;20;25;22;17;11;35;8;32;16;12;14;22;12;3;9;15;11;48;23;29;11;9;7;37;23;14;22;5;12;14;13;26;42;23;30;33;18;9;18;0;13;19;23;6;20;21;5;8;57;31;34;37;29;27;8;7;14;15;28;29;14;22;14;5;9;32;36;13;29;31;29;14;25;82;12;28;29;18;25;26;24;14;29;27;28;14;26;43;21;17;21;24;37;28;6;11;10;12;16;16;18;12;22;20;47;49;33;4;15;13;24;44;32;25;37;25;34;12;27;52;50;46;43;54;15;6;11;38;43;60;51;13;9;47;34;69;57
+Carboxin;6;3;4;8;9;7;3;7;7;6;9;5;4;3;5;5;3;3;3;3;2;3;8;3;10;3;5;10;10;14;9;11;7;7;14;9;17;7;3;4;11;9;12;3;11;9;8;8;8;9;8;7;5;6;8;7;10;10;10;7;11;9;7;7;10;10;9;9;10;9;6;10;7;12;10;10;5;3;3;11;8;8;9;7;9;3;8;8;11;5;6;7;11;6;7;6;8;9;10;11;14;7;7;8;8;7;9;9;5;4;5;6;5;8;9;7;8;12;7;9;7;5;4;7;2;8;9;2;2;5;14;13;4;10;5;9;9;10;14;12;9;14;12;5;10;8;13;5;7;9;6;8;8;5;10;12;12;10;12;5;12;9;4;4;9;8;12;5;7;13;13;8;4;8;7;6;0;4;12;8;8;2;9;8;3;11;10;0;7;11;17;5;16;5;12;6;6;9;9;8;12;10;10;9;13;7;14;9;8;13;12;11;13;11;7;12;13;16;2;7;15;10;7;7;8;10;9;10;9;10;11;11;11;10;11;10;14;14;9;9;10;10;9;8;7;6;2;3;7;9;6;6;8;7;13;7;9;6;5;5;7;7;0;2;6;5;15;13;13;4;4;3;14;7;4;6;7;5;6;7;8;14;7;10;7;8;8;8;2;6;9;7;3;7;8;6;6;13;11;12;10;9;6;6;7;6;5;3;8;5;4;5;0;2;11;14;8;5;7;8;4;8;12;20;12;9;5;4;6;9;7;12;9;8;4;6;12;7;10;8;11;10;9;2;2;4;4;5;7;4;2;3;8;6;16;13;0;6;2;12;18;13;7;9;3;6;4;6;14;14;17;14;13;5;2;4;7;12;17;16;8;3;16;13;18;15
+Ethofumesate;6;4;8;5;7;10;6;5;5;7;10;12;6;4;5;4;4;4;4;4;8;8;23;9;13;18;12;32;22;34;15;24;21;9;30;14;39;15;9;11;15;18;18;1;15;20;23;22;24;10;5;14;13;15;18;14;15;14;14;16;12;15;16;14;18;14;14;14;13;14;11;12;27;31;24;28;15;14;9;31;26;22;28;24;27;16;21;29;30;20;14;12;22;15;17;27;26;29;25;30;40;20;24;27;25;9;6;6;6;8;7;8;14;11;8;11;9;12;10;32;21;14;9;26;20;19;19;14;16;15;35;20;11;30;4;21;23;24;35;29;22;32;21;12;23;13;23;7;16;19;6;20;28;23;23;39;13;12;14;4;13;28;24;21;26;23;37;16;23;41;38;20;6;17;16;13;3;12;27;20;22;6;26;25;5;15;15;1;10;16;34;15;18;8;19;7;5;13;14;8;14;10;11;11;25;6;32;42;17;32;21;25;32;18;23;26;40;37;9;11;17;28;22;9;19;16;16;24;19;11;13;13;18;14;11;13;19;28;20;13;27;28;22;22;17;5;6;13;25;12;16;15;15;12;24;11;33;18;9;5;17;12;3;6;10;14;36;17;18;10;11;4;18;26;5;23;4;14;20;17;17;31;18;19;16;24;9;14;2;12;23;20;7;20;24;6;9;39;27;29;21;24;14;4;5;7;20;22;21;11;9;11;0;6;29;27;9;13;33;26;18;30;28;12;51;23;15;24;24;9;6;16;24;24;15;16;34;14;12;24;15;29;11;1;6;17;18;15;15;23;20;14;19;33;32;24;8;17;10;25;29;25;21;18;14;28;10;20;33;42;39;25;42;8;4;6;29;21;44;36;10;12;31;19;47;41
+Fenamidone;9;4;5;6;7;6;2;5;5;6;7;6;5;5;7;7;6;5;6;6;4;3;14;4;11;12;8;21;19;30;12;15;16;10;23;16;42;16;12;3;14;9;20;1;10;14;12;12;13;2;3;8;13;11;14;8;12;11;10;12;13;8;9;7;13;9;10;10;10;10;7;11;16;26;23;18;15;10;6;22;14;11;22;15;22;15;18;24;25;14;9;11;13;15;15;15;20;23;19;29;32;19;22;27;28;5;8;5;10;8;8;9;10;8;4;5;6;9;8;27;14;8;6;15;11;14;15;10;14;10;22;26;12;21;5;18;19;20;22;22;13;27;17;8;21;11;19;7;13;18;6;15;18;14;19;29;15;14;16;7;14;26;16;19;16;17;31;10;13;36;30;17;12;13;14;8;1;7;16;14;12;5;22;20;4;12;8;2;5;8;26;9;21;6;22;4;4;12;18;7;16;9;11;15;19;11;23;27;18;29;19;27;22;18;19;20;13;31;8;10;16;19;6;10;16;10;10;13;9;11;13;13;16;12;12;13;17;20;15;13;17;27;20;18;19;3;2;9;24;16;12;10;10;7;25;7;22;12;12;8;14;12;0;7;10;8;30;18;21;7;9;5;23;21;11;17;2;9;14;10;11;28;15;21;20;22;6;6;1;12;17;13;6;22;19;6;12;34;21;28;21;16;13;4;7;9;16;19;19;12;12;10;0;4;25;24;7;12;19;13;8;27;29;9;23;48;13;18;17;17;7;18;20;22;9;13;24;12;13;19;19;20;16;3;5;14;16;13;9;10;5;5;14;24;41;22;2;13;4;15;27;22;15;27;11;20;6;17;30;34;28;21;34;12;4;5;21;24;44;35;7;8;35;26;44;38
+Fipronil;3;3;3;6;7;6;4;3;3;3;5;3;4;2;2;2;1;2;3;3;4;3;12;3;12;3;5;10;9;23;7;6;11;4;18;6;20;5;4;11;18;17;20;7;16;11;13;13;12;18;7;11;16;13;15;11;17;16;19;25;23;16;15;11;17;14;15;20;21;20;15;21;15;16;7;16;11;8;5;9;10;12;7;6;6;6;11;11;18;22;7;7;17;12;14;12;18;12;12;16;26;14;15;16;18;27;22;23;12;11;10;10;12;18;21;7;5;18;12;16;8;6;9;11;6;24;20;8;13;7;33;13;6;12;4;14;12;12;8;9;4;10;6;2;7;2;7;1;8;6;5;6;11;9;6;11;7;10;9;3;12;35;14;29;44;29;39;29;32;41;43;23;11;15;13;8;1;12;8;8;8;2;10;4;4;11;13;0;9;9;24;8;16;5;13;5;5;8;10;7;13;4;9;5;17;1;9;23;7;8;27;22;12;14;13;8;19;18;2;14;9;12;9;4;9;15;14;18;16;19;21;18;17;16;22;21;29;27;29;17;5;10;10;15;12;4;4;9;13;9;11;9;7;20;12;5;9;10;10;4;8;2;3;3;6;6;21;14;8;6;0;7;10;12;3;6;1;6;2;6;8;20;8;11;9;3;11;9;4;5;22;11;0;9;7;4;0;20;17;9;14;2;8;2;3;6;13;12;8;3;7;4;0;1;4;11;6;7;12;15;7;6;18;5;15;13;59;9;14;9;5;9;2;2;6;15;42;7;9;13;11;31;9;2;7;18;22;5;9;22;11;5;16;21;18;20;4;13;7;19;23;14;15;14;13;9;4;14;11;30;27;15;25;8;0;0;28;11;16;17;7;2;18;11;16;15
+Flufenacet;1;4;1;7;8;7;6;2;1;6;6;2;4;3;3;2;3;4;4;4;6;6;15;8;10;14;8;21;11;26;9;16;22;9;19;7;31;14;3;12;11;19;14;3;25;22;24;24;25;7;4;18;12;18;11;15;13;8;13;16;10;17;16;11;16;9;10;14;12;14;8;11;20;23;32;27;15;12;9;25;23;21;28;23;30;25;31;34;29;15;24;9;23;13;15;23;21;31;25;26;29;24;23;28;30;12;15;6;3;7;4;7;8;11;8;11;5;13;7;28;15;6;2;25;22;15;15;8;13;11;32;13;4;23;4;14;6;8;15;15;15;12;9;8;8;7;9;5;12;17;2;12;13;13;10;17;12;8;10;3;11;30;30;23;27;23;40;19;23;49;41;20;12;17;19;8;6;14;17;9;12;7;15;8;10;8;7;4;10;8;26;9;11;9;13;4;4;15;20;11;15;14;14;6;21;4;17;23;7;12;24;23;18;13;15;8;28;18;7;11;12;13;13;12;14;21;20;22;20;13;12;14;16;12;8;17;22;28;21;16;16;13;12;25;12;4;8;10;27;13;13;10;9;16;22;8;21;14;14;6;5;7;6;6;6;8;31;16;15;13;5;5;21;14;6;16;2;9;9;10;14;31;5;24;14;9;9;13;4;5;16;13;5;14;14;3;8;27;22;14;17;12;20;4;5;9;10;19;14;8;14;4;2;2;8;14;7;19;22;15;16;27;25;4;24;18;9;54;23;16;16;20;13;11;8;12;32;4;4;14;20;29;20;8;15;15;16;20;21;20;11;22;19;35;27;20;6;17;14;23;27;21;20;24;13;21;18;22;31;39;24;30;40;8;3;5;27;19;34;23;9;7;20;14;37;30
+Mefenacet;3;0;3;3;4;6;2;1;1;1;5;3;1;1;1;0;0;0;0;0;4;5;15;2;7;12;9;19;13;26;13;12;10;8;15;8;28;8;7;7;10;8;10;3;14;19;18;16;18;3;0;9;7;13;11;6;14;9;9;12;12;16;15;11;15;11;10;10;10;11;8;10;19;20;17;15;12;11;9;13;16;16;17;14;14;10;11;15;24;17;6;8;14;12;14;23;21;20;16;18;24;17;21;20;20;4;4;2;5;2;3;2;6;5;6;4;2;4;3;18;12;6;3;17;11;12;10;9;9;12;24;12;7;21;2;11;15;16;23;18;16;22;14;8;18;10;18;5;11;11;6;13;19;14;13;23;5;2;7;0;5;21;18;11;11;26;29;13;15;31;30;13;3;10;12;7;1;10;20;12;12;6;18;17;3;8;10;0;1;4;18;6;9;3;6;0;0;4;7;3;4;6;3;2;19;4;23;26;15;19;20;15;19;7;18;14;17;25;7;12;15;21;8;6;7;8;8;18;16;10;11;11;16;10;9;14;10;16;14;12;12;24;21;21;6;0;7;7;20;13;12;10;11;3;15;8;24;15;10;1;15;11;2;6;5;12;27;12;12;6;7;3;13;23;2;13;1;12;18;12;10;24;15;7;9;19;12;4;0;12;12;7;2;12;16;2;6;29;18;24;16;23;3;4;4;7;10;12;15;7;4;12;0;1;25;21;6;5;16;16;13;23;26;6;24;17;14;23;34;8;5;5;17;18;10;10;23;12;7;18;7;18;5;1;2;10;9;10;6;9;7;4;15;26;18;17;3;15;6;12;20;16;14;17;16;16;8;5;18;29;25;17;26;7;3;3;20;16;32;19;6;9;19;10;29;27
+Methoprotryne;10;7;5;8;10;8;7;10;10;15;19;14;6;10;10;10;7;8;9;10;6;5;16;5;10;9;13;31;24;20;16;13;22;6;17;18;44;13;10;12;13;17;34;1;18;17;15;14;16;6;5;17;14;14;18;15;15;11;18;19;14;17;14;13;16;9;10;16;16;17;10;13;8;13;23;15;8;5;6;25;16;18;22;18;27;21;20;20;27;5;13;8;11;10;11;10;9;20;23;15;28;18;19;22;22;11;8;6;6;8;7;9;9;12;11;7;5;11;10;23;5;3;3;15;6;14;14;3;6;6;22;24;7;26;9;10;25;22;24;20;16;30;14;10;19;8;17;3;17;21;4;15;22;13;17;35;26;29;27;12;34;22;18;17;17;13;24;15;17;37;31;16;16;10;15;13;8;10;22;18;16;8;16;16;22;18;10;1;11;14;30;9;28;15;19;6;4;16;23;12;19;14;14;17;29;9;25;25;12;22;22;21;18;21;15;13;23;33;1;12;13;30;8;16;13;16;15;17;15;14;13;12;17;13;8;19;19;25;20;18;20;21;20;17;27;8;7;12;35;13;19;17;5;13;30;8;14;12;15;13;5;10;5;2;13;5;31;22;18;15;5;8;32;20;13;28;7;6;7;10;15;21;5;37;27;10;16;11;3;8;20;9;3;21;6;6;6;33;21;25;15;8;27;6;9;11;10;21;12;10;27;8;1;3;17;19;11;26;12;13;9;22;24;9;9;17;9;16;8;56;23;41;7;7;4;15;34;4;11;9;29;19;33;9;11;13;12;16;17;12;3;7;20;24;38;16;4;13;11;23;24;19;20;19;20;17;9;20;26;27;40;29;29;8;4;6;26;36;46;37;19;9;38;31;51;46
+Metribuzin;4;3;3;8;9;6;6;6;6;9;19;5;2;5;4;4;4;3;4;4;1;2;10;2;10;7;12;16;13;15;13;12;12;8;13;11;27;8;3;10;12;15;21;0;10;14;13;12;12;6;5;8;10;8;9;11;11;10;12;13;12;12;10;11;11;9;11;11;12;11;9;10;12;17;17;15;9;4;6;17;15;14;16;14;18;16;14;15;18;13;11;3;8;9;10;10;10;13;18;14;20;14;14;16;20;9;8;6;7;7;7;9;10;8;10;3;3;9;6;13;4;3;1;14;9;11;11;4;4;4;16;17;3;19;3;13;12;11;17;13;13;19;11;10;15;6;11;2;10;16;3;15;12;13;11;23;13;13;15;6;19;19;13;11;17;11;26;14;17;26;28;6;13;7;8;9;4;7;15;11;11;5;11;5;11;8;5;1;6;11;20;6;17;10;13;6;5;14;18;13;17;14;14;11;13;7;19;14;12;19;22;12;20;11;10;10;20;18;1;7;10;17;4;10;12;16;13;14;10;11;11;11;11;11;11;12;21;22;19;12;17;12;9;11;14;5;8;11;27;9;8;8;4;12;19;6;7;9;9;12;4;5;6;1;7;4;20;14;7;7;3;5;27;9;10;14;4;5;5;8;8;14;4;22;16;3;10;8;4;4;13;10;2;12;5;4;3;22;22;13;13;5;19;3;8;7;4;12;11;8;17;6;2;3;10;13;9;20;7;7;11;15;14;7;6;7;5;16;5;23;33;21;7;7;2;12;21;3;4;8;16;11;22;8;11;10;10;12;13;7;3;8;19;19;21;13;3;10;5;15;17;11;12;11;12;17;10;16;19;21;25;23;23;6;2;3;20;21;27;21;10;4;24;19;33;30
+Prometryn;10;9;9;10;11;9;9;10;10;15;22;14;6;12;12;12;7;9;9;10;8;8;17;8;14;12;17;27;26;23;15;19;20;11;21;17;43;15;6;14;15;21;28;2;20;20;19;18;19;9;6;14;18;13;13;18;18;15;17;21;15;17;17;16;18;14;15;17;19;18;14;15;11;14;25;20;12;7;9;29;21;19;19;19;28;20;20;26;22;6;16;11;19;11;15;14;12;20;24;16;35;24;25;20;21;13;12;10;7;8;7;9;10;10;9;9;7;16;14;29;6;5;6;20;11;14;14;5;6;7;27;25;10;21;10;19;23;22;27;24;16;31;17;9;20;8;11;4;15;23;6;17;21;19;20;33;30;30;30;11;34;31;20;19;22;14;22;12;16;37;29;17;14;12;14;12;9;12;24;17;15;11;26;16;22;16;11;2;18;17;32;16;28;15;20;6;6;20;25;14;22;16;17;19;24;11;27;31;11;21;21;23;31;23;16;13;26;23;1;14;25;21;14;18;19;21;19;18;16;18;15;15;18;17;11;20;24;28;22;18;22;23;19;16;25;8;9;12;29;18;22;21;10;14;31;7;18;15;14;14;7;9;7;2;15;13;34;24;22;15;5;8;35;22;12;21;8;9;7;8;14;25;7;47;23;8;15;18;4;9;19;16;7;16;6;8;7;29;30;22;10;6;35;4;9;13;12;19;13;12;26;8;1;3;18;22;15;29;14;13;16;28;29;12;16;18;9;20;5;41;21;55;12;9;7;15;36;8;11;10;37;17;36;10;12;7;8;20;18;15;6;10;22;22;35;22;3;16;10;22;24;20;17;22;13;23;12;19;31;36;37;32;34;8;5;7;35;35;46;40;18;8;42;35;52;49
+Propargite_isomer1;5;2;4;7;9;7;3;6;6;8;9;5;6;2;4;3;2;2;2;2;5;5;12;4;10;10;7;27;21;28;12;18;13;6;17;10;29;17;8;10;13;7;13;1;5;7;6;7;10;6;3;10;9;9;11;6;10;8;11;11;11;7;7;7;13;8;8;11;11;11;8;12;22;25;19;17;15;13;10;12;17;15;19;14;23;17;13;16;18;16;13;11;22;6;10;20;19;19;14;19;32;15;23;16;22;4;5;4;5;5;5;5;6;7;5;3;3;8;4;23;10;8;4;19;12;13;15;7;7;7;17;21;8;20;4;18;20;19;23;19;15;26;14;9;16;7;12;5;13;17;5;14;24;24;16;33;17;14;14;8;14;15;20;11;11;11;24;5;9;26;26;9;3;12;9;12;2;7;18;16;15;4;25;20;12;5;13;0;10;10;26;10;13;4;14;4;3;13;12;8;13;9;10;8;9;4;25;23;18;23;14;18;26;16;18;19;19;32;8;9;19;13;16;7;8;9;8;11;7;9;12;12;12;7;12;10;13;18;12;10;22;22;18;14;13;3;4;3;18;10;8;8;9;13;19;11;25;14;8;7;12;9;4;3;7;10;21;9;13;5;7;4;17;21;4;11;2;10;11;15;12;18;13;11;17;16;10;13;0;8;19;14;6;14;14;5;7;29;16;23;21;21;8;4;6;10;8;7;16;2;4;10;1;3;24;32;6;6;27;13;13;18;27;9;24;20;2;13;17;7;7;12;44;35;8;7;25;15;11;15;11;10;9;3;3;8;4;5;4;12;11;13;12;24;36;22;3;14;10;10;23;12;10;18;4;12;7;9;25;26;19;19;28;5;4;9;20;30;40;31;11;13;27;21;40;39
+Propargite_isomer2;5;1;2;6;8;6;2;5;5;8;6;5;4;1;3;2;1;1;1;1;3;3;9;1;8;11;6;24;20;25;10;17;11;5;15;10;27;16;7;7;12;6;12;1;4;6;5;6;9;4;2;8;6;8;8;5;9;8;10;10;9;6;6;6;12;7;7;10;9;10;7;10;19;26;19;17;13;13;10;12;15;15;19;13;23;17;12;15;16;13;11;10;20;7;9;19;19;20;15;18;29;14;23;17;22;2;3;2;4;4;4;4;6;5;3;2;2;5;4;22;13;5;2;14;11;13;15;8;8;8;17;21;9;19;3;18;20;20;21;18;12;24;15;8;17;7;12;5;11;13;4;14;24;21;16;31;16;12;13;7;12;15;19;10;10;11;23;5;9;27;24;7;3;11;8;12;1;5;15;13;11;3;22;19;12;5;12;0;7;9;21;7;13;1;15;3;2;11;10;6;11;7;8;4;7;4;25;20;19;23;12;16;24;15;19;20;15;32;7;9;17;14;13;6;6;8;7;10;7;8;11;9;11;6;10;9;10;15;10;9;22;22;16;13;13;3;3;2;17;10;7;6;9;9;17;8;25;11;7;4;13;8;1;3;6;10;16;8;13;2;6;3;16;21;3;9;2;11;11;16;12;16;14;8;17;18;10;13;0;7;18;12;5;15;16;4;6;29;17;24;21;21;4;4;5;9;8;8;18;1;3;12;0;3;24;27;5;4;25;9;12;17;28;8;24;22;2;11;18;7;7;9;35;38;8;6;23;15;11;13;9;9;7;2;3;8;4;5;4;10;8;12;9;24;35;18;3;11;8;9;21;12;10;18;5;13;5;9;26;26;18;20;28;6;4;9;16;32;35;31;8;13;28;20;38;36
+Thiofanox;0;2;3;3;3;5;3;3;2;6;4;3;2;3;3;3;1;2;2;2;3;3;11;3;3;11;5;11;11;15;6;5;11;6;11;6;15;6;6;2;7;9;8;3;14;13;13;13;13;4;4;7;10;9;3;6;8;4;6;7;3;6;7;4;8;5;4;6;7;6;2;3;11;11;10;12;6;6;2;9;9;9;10;11;11;6;9;9;10;10;7;5;12;6;7;9;10;12;10;12;19;11;10;12;11;5;4;4;0;1;1;3;4;4;4;6;4;9;5;13;8;5;4;9;10;7;7;5;7;5;15;10;6;14;6;12;8;10;13;11;10;13;9;5;8;6;8;4;6;6;5;10;10;12;10;13;8;6;7;1;8;14;11;12;15;8;17;10;12;19;17;7;6;10;6;4;2;8;7;6;7;3;11;8;5;8;7;1;6;8;17;9;11;6;9;3;3;9;8;6;8;7;7;7;13;1;12;14;9;17;7;10;9;9;9;13;11;17;4;7;14;9;5;5;11;7;7;7;6;4;3;4;6;4;4;6;10;12;8;6;8;13;8;7;8;2;4;6;13;10;7;7;6;5;12;7;15;8;6;3;6;6;2;4;8;7;17;7;13;4;8;4;10;12;4;11;0;6;9;6;6;13;7;8;6;9;2;8;1;5;9;7;1;8;9;1;3;16;15;11;8;10;6;2;1;4;7;10;8;6;6;3;0;1;12;9;7;8;10;10;10;7;14;4;15;9;6;8;10;4;2;7;8;8;24;8;17;6;6;13;6;12;8;4;2;4;6;10;5;9;11;7;9;12;17;10;2;10;8;8;18;9;9;8;6;12;6;8;16;14;16;12;15;7;1;0;13;8;15;16;10;5;17;10;21;20
+Cyazofamid;4;2;5;6;6;8;9;6;5;8;18;6;9;7;5;5;3;2;3;4;3;2;17;3;11;10;12;10;11;27;12;13;21;10;23;10;39;5;2;8;20;16;32;8;16;10;10;11;11;9;7;13;16;17;11;14;14;10;19;16;19;13;14;13;14;12;10;18;19;16;13;17;17;19;14;13;13;7;10;17;16;13;13;9;14;14;12;17;23;19;7;9;12;12;12;12;15;18;13;25;26;18;19;20;26;8;9;10;7;11;6;11;10;10;11;5;3;11;9;32;14;4;4;25;8;8;7;6;8;5;21;15;6;8;6;12;9;10;8;11;4;9;6;1;5;9;16;3;5;6;1;3;6;3;6;13;7;9;10;2;16;27;11;26;33;24;36;24;27;34;47;14;16;19;15;8;4;11;20;19;20;6;16;16;12;4;10;0;11;20;35;10;13;12;14;3;2;10;11;8;8;9;10;11;12;5;10;26;10;18;21;23;16;9;18;14;21;24;4;8;12;17;8;15;14;17;16;18;14;21;18;19;13;11;21;16;26;33;28;14;18;10;5;19;21;4;9;14;23;11;20;19;14;8;23;5;12;7;5;3;9;3;2;5;14;3;36;15;21;11;4;5;27;10;9;13;2;3;5;2;12;24;9;21;12;5;14;8;3;5;22;15;3;10;3;2;3;29;27;17;12;5;11;3;5;8;11;14;10;4;12;3;5;5;10;12;10;11;19;17;11;21;26;6;16;13;15;12;10;15;12;15;7;6;8;65;37;6;5;11;16;31;15;5;9;9;12;10;10;16;9;6;16;26;22;27;5;15;13;20;30;20;13;14;8;13;6;15;25;30;34;27;34;10;4;2;20;24;41;26;11;1;25;16;30;27
+Ethiprole;14;6;11;15;16;13;12;11;9;12;22;11;12;13;13;14;9;8;9;9;11;8;33;9;26;46;18;34;27;50;21;43;53;17;55;22;78;14;8;26;50;32;93;29;27;26;29;26;26;21;19;30;29;38;36;23;43;35;40;61;52;38;35;30;48;34;34;41;42;44;30;50;36;37;41;43;28;18;17;45;42;41;46;47;50;41;40;50;63;33;30;14;31;25;30;37;31;54;45;55;75;39;48;49;52;31;32;28;24;17;17;24;23;25;27;27;21;37;23;83;33;27;28;75;48;61;50;26;20;18;103;27;7;32;12;26;23;26;29;27;21;30;16;11;16;14;21;7;17;23;6;17;22;24;16;39;29;24;25;11;36;70;36;60;62;50;86;54;58;90;83;34;29;41;37;19;4;23;41;31;31;12;38;24;21;18;21;2;25;22;72;19;28;15;27;10;10;27;26;18;27;22;23;26;37;12;28;52;19;41;32;45;41;27;28;27;42;51;6;13;24;37;47;18;22;30;27;41;33;51;50;54;43;37;60;41;47;58;54;39;33;28;22;29;65;8;14;16;50;20;31;29;20;27;65;12;39;17;15;9;21;10;4;10;17;11;65;28;32;13;12;11;42;24;15;33;7;11;20;13;24;70;22;40;21;20;26;26;9;10;41;27;7;23;16;7;10;54;42;34;29;21;25;7;11;15;20;32;24;12;26;7;4;8;24;33;17;26;42;28;25;35;43;12;34;24;42;32;23;34;21;36;25;23;17;37;268;12;15;21;35;56;31;9;18;16;17;23;21;31;29;35;28;52;51;43;19;29;16;39;57;30;26;36;22;28;34;32;58;63;61;69;65;12;5;6;49;48;81;65;23;11;60;42;91;70
+Pyridaben;6;2;2;2;3;4;2;2;2;5;5;6;5;3;2;2;2;2;2;2;1;2;9;2;5;8;5;13;16;17;7;10;7;4;13;9;22;15;6;2;5;3;6;1;5;4;3;4;4;2;2;4;2;2;7;2;6;5;6;4;6;5;5;5;5;5;5;7;5;6;5;6;12;17;16;12;13;11;3;7;11;8;9;6;16;10;10;11;14;7;4;6;11;8;9;10;8;14;12;13;22;12;10;12;14;2;2;2;4;3;3;4;3;5;3;2;2;4;4;15;8;5;2;8;6;6;6;3;6;5;10;15;10;14;4;13;21;18;14;12;6;18;15;4;16;5;10;2;5;5;7;10;13;13;12;21;11;10;11;6;9;4;9;5;7;2;10;4;5;18;8;4;4;3;3;7;0;0;10;7;7;0;15;12;2;4;5;0;6;7;15;8;12;3;15;6;6;8;8;6;9;7;7;8;7;3;19;15;12;18;3;12;15;11;8;16;8;21;3;3;14;9;7;3;2;4;4;5;5;6;6;6;7;5;7;6;3;6;5;6;15;13;12;4;5;4;1;3;9;6;7;7;7;8;13;3;18;7;4;2;10;5;2;3;6;5;10;10;14;1;3;2;10;15;2;3;1;6;6;8;10;13;10;7;14;12;4;7;0;6;10;9;2;11;12;2;5;20;7;17;15;15;2;2;3;6;8;5;13;3;4;11;0;1;19;24;3;5;15;8;7;9;21;7;14;12;7;4;12;4;3;8;15;15;6;6;12;26;9;9;5;17;8;1;2;8;5;5;5;4;2;4;1;12;22;10;0;4;0;3;16;9;4;15;4;8;2;4;13;15;13;9;14;6;6;9;11;12;19;17;7;5;19;17;23;22
+Thiabendazole;6;6;9;9;10;8;5;6;5;8;8;10;8;8;7;7;6;7;7;8;4;5;10;6;5;5;6;13;12;13;8;10;15;8;15;12;19;10;4;10;12;12;15;2;8;8;7;8;7;10;7;10;7;11;8;10;12;10;12;11;15;12;13;11;13;10;12;13;13;14;12;13;6;8;9;9;4;2;2;5;8;7;5;2;12;8;8;6;12;10;1;4;8;5;6;7;4;9;6;12;14;6;8;10;8;12;15;12;10;12;12;12;10;7;10;7;6;13;9;15;11;7;6;11;4;4;5;3;3;3;14;12;10;16;8;17;14;14;17;15;9;17;15;9;14;6;11;3;10;12;8;7;7;10;13;20;13;12;13;7;12;13;10;12;14;12;17;11;14;18;20;14;3;9;12;4;2;3;9;8;8;0;10;7;3;4;6;0;11;13;20;10;16;13;15;6;7;11;14;11;11;11;12;9;17;7;16;16;12;21;11;13;19;13;9;16;9;23;1;4;14;13;7;7;9;10;10;14;12;13;15;15;14;12;14;16;14;17;16;16;15;14;10;10;9;1;3;9;17;10;5;5;6;8;17;5;10;15;8;5;9;7;1;1;4;6;20;15;15;5;3;4;10;10;6;6;5;7;4;5;7;18;9;14;13;14;7;8;0;6;12;8;5;10;10;4;7;20;12;15;12;9;8;3;7;7;10;11;11;2;8;8;1;3;11;18;6;8;10;11;4;7;17;10;12;13;9;4;7;11;4;11;11;11;6;5;15;9;26;19;12;16;9;3;2;7;7;8;6;11;6;6;7;9;24;12;2;9;2;13;18;8;7;14;8;6;4;10;12;16;15;11;18;11;5;5;6;10;22;20;8;2;20;15;22;20
+Tricyclazole;8;5;9;10;10;7;6;6;5;6;11;6;9;7;7;7;7;7;7;8;8;7;17;7;8;13;8;23;15;13;13;17;19;12;19;13;30;9;6;11;17;13;16;3;14;11;12;12;10;14;9;8;8;9;14;8;15;10;14;19;19;11;11;10;17;9;11;15;19;16;12;19;15;16;14;12;11;9;3;11;12;13;12;11;16;11;12;12;16;21;7;5;12;7;8;15;13;13;10;17;24;11;14;18;19;11;12;9;10;11;10;13;11;8;10;11;8;13;9;21;13;8;6;16;10;8;7;13;12;13;22;20;12;22;6;15;14;14;20;18;16;22;16;10;15;9;14;5;14;14;8;14;16;14;16;26;9;7;8;3;8;21;17;21;21;15;24;15;18;29;27;11;7;10;8;6;2;6;16;11;12;2;16;12;4;11;5;1;12;11;28;18;17;12;16;6;7;13;16;11;14;13;13;9;18;7;21;21;18;21;19;17;22;15;16;18;18;27;2;5;12;7;9;10;12;12;11;17;12;17;19;20;18;14;21;17;22;25;22;17;13;19;16;17;19;4;9;6;25;11;10;9;6;5;22;9;23;21;10;6;8;9;4;4;10;12;28;12;17;8;5;6;9;16;8;13;1;9;12;8;7;25;8;13;10;10;1;8;2;8;17;11;4;14;10;5;8;21;17;23;14;15;12;3;6;11;15;9;13;7;8;4;1;3;19;15;7;9;13;13;12;16;21;8;24;19;13;14;18;9;8;10;15;13;13;11;21;9;19;38;13;19;8;3;1;6;7;10;9;14;3;6;12;20;24;14;6;13;4;19;22;12;12;17;9;10;7;10;20;23;21;17;23;12;3;3;17;11;18;23;7;7;20;16;29;25
+Simetryn;10;7;8;14;15;11;8;8;8;15;18;11;7;9;11;12;7;8;8;8;7;8;15;10;9;9;14;22;25;21;13;16;24;14;18;15;37;12;5;13;12;20;28;3;14;10;10;10;10;8;9;18;16;19;17;18;20;16;16;21;17;22;20;18;21;16;16;15;19;18;13;13;9;13;22;18;10;4;7;20;18;19;22;17;18;11;16;17;26;17;9;7;13;9;10;13;12;16;17;19;24;17;16;15;21;20;19;16;11;13;11;13;12;17;16;15;9;16;13;29;11;8;7;22;8;15;14;6;9;5;26;20;10;25;7;18;21;19;22;23;16;25;16;9;18;7;11;2;16;19;8;16;19;16;18;31;25;23;25;13;33;28;16;22;24;20;32;19;21;36;32;21;13;16;22;8;7;11;20;17;14;8;22;12;15;15;14;3;17;18;35;12;24;17;24;9;9;14;20;11;18;15;14;17;25;12;24;27;12;18;18;23;26;20;12;16;26;25;1;15;20;21;13;16;20;21;19;21;22;18;17;16;20;19;14;19;28;31;26;20;16;19;16;19;22;9;7;12;29;10;19;17;6;13;37;9;15;14;12;11;5;11;6;2;10;10;27;28;21;14;5;8;28;23;13;20;7;7;9;9;11;29;5;37;18;9;14;21;2;10;17;15;4;16;7;6;6;26;26;15;14;7;28;6;6;11;11;18;9;12;26;5;1;4;11;17;11;28;13;14;11;28;24;11;15;19;11;20;7;29;16;37;11;9;6;16;35;5;12;13;50;24;33;9;13;10;10;14;16;14;12;14;22;27;39;24;4;18;12;24;29;19;19;16;15;20;12;15;22;29;27;33;30;8;2;3;24;28;41;34;15;5;34;33;46;44
+Sulfentrazone;7;9;6;11;12;14;11;11;10;14;20;15;10;8;9;9;7;8;9;9;10;11;28;12;20;22;15;19;11;37;12;27;25;16;44;13;34;23;4;25;42;39;39;12;39;33;37;34;34;22;18;34;27;31;29;31;47;37;43;45;47;42;39;35;50;35;37;46;47;48;35;42;22;26;26;19;15;10;12;29;23;16;27;17;25;21;34;31;38;43;20;18;32;21;22;15;20;40;33;43;53;25;34;35;38;31;32;29;24;19;22;27;19;29;32;34;25;44;27;37;20;20;18;36;14;40;37;15;25;15;69;14;7;16;10;24;13;14;16;20;13;12;12;9;11;9;19;3;5;10;6;9;10;7;11;17;10;11;10;8;16;68;44;50;63;55;83;48;52;82;81;35;17;29;34;8;5;28;33;29;30;6;30;23;12;18;21;5;23;22;42;16;25;17;23;9;9;16;19;12;20;14;17;17;47;8;17;41;10;21;51;42;38;24;17;17;36;27;10;20;27;36;27;24;28;38;34;46;41;48;49;48;45;39;41;48;46;54;52;46;17;12;7;32;30;7;14;19;29;17;26;25;16;33;28;8;27;10;9;10;10;8;4;5;16;3;66;27;26;9;10;7;34;14;8;17;6;5;11;7;19;54;12;29;29;7;14;34;7;9;37;35;11;22;10;5;3;34;38;18;36;9;18;7;5;7;29;25;29;18;15;7;0;5;9;27;16;22;28;33;14;21;37;10;29;20;31;29;18;19;11;17;10;9;12;31;56;17;16;19;24;115;20;7;7;30;30;18;23;34;25;15;35;43;53;53;12;23;18;47;58;28;33;43;28;30;19;32;37;48;63;36;54;9;4;4;57;30;42;22;12;2;28;17;36;27
+Terbutryn;8;8;7;9;9;8;8;7;7;15;24;11;4;10;10;10;7;7;7;8;6;5;15;7;11;11;13;29;23;19;12;15;24;11;16;18;39;16;7;12;15;18;26;3;21;15;16;17;16;7;5;11;13;12;12;15;18;15;15;17;16;19;18;18;18;13;16;16;17;17;13;14;11;14;24;18;8;3;8;26;20;20;20;18;25;19;20;24;24;9;16;7;11;12;15;12;11;19;25;23;35;22;24;19;25;13;10;6;5;6;6;8;6;9;8;6;4;12;8;26;6;4;2;16;9;13;15;5;5;5;25;25;9;21;7;16;21;19;25;24;13;26;18;8;20;5;12;3;14;18;7;15;22;19;18;33;31;31;31;12;35;30;22;12;19;14;25;14;16;37;28;12;14;9;12;11;6;9;19;13;11;12;19;13;18;12;7;3;16;16;28;12;24;16;23;8;8;19;26;16;21;16;19;20;22;10;24;24;10;20;18;19;29;22;14;10;24;24;1;18;28;19;8;14;17;20;17;20;18;16;16;15;18;16;9;18;21;25;21;18;21;22;18;19;24;9;9;14;28;13;18;18;8;15;30;6;12;11;10;10;5;10;6;2;14;10;28;21;21;14;5;7;29;19;12;18;7;11;6;6;13;23;5;42;24;6;14;15;3;8;15;13;3;15;4;4;7;28;26;19;11;6;29;4;8;12;10;22;12;10;29;9;1;4;16;20;13;33;15;13;14;24;28;9;11;16;9;20;5;33;22;36;9;7;8;15;31;8;9;8;33;20;49;11;14;11;9;17;17;14;8;8;18;19;36;21;2;14;10;20;26;20;21;25;14;21;14;23;28;34;34;27;32;9;5;7;25;34;45;36;15;8;36;33;44;45
+Bitertanol_isomer1;0;3;1;4;4;4;4;2;1;5;2;1;0;4;3;3;2;3;3;3;0;0;4;3;2;8;5;2;7;5;4;1;9;5;7;5;12;3;2;5;0;3;9;0;8;9;9;9;9;0;0;1;7;3;4;3;0;0;1;2;0;2;1;1;0;0;0;0;0;0;0;0;6;5;11;9;5;0;6;10;8;8;11;8;10;9;11;9;7;5;8;2;4;7;7;2;4;8;10;5;11;8;8;3;10;0;1;0;1;3;2;1;3;1;2;1;1;2;1;7;1;1;1;3;3;5;3;0;2;1;7;8;0;3;0;6;8;7;1;2;1;6;1;0;1;3;1;0;2;3;0;1;9;4;1;10;10;9;9;5;10;7;9;6;5;3;9;2;2;13;10;2;9;3;2;5;1;2;8;6;5;8;5;1;5;1;3;1;11;3;10;1;5;5;6;4;4;8;8;7;9;7;8;2;9;3;1;5;2;5;3;11;7;5;4;1;7;4;0;3;3;6;1;5;6;5;4;2;2;1;0;0;0;0;0;1;4;5;5;0;7;8;5;6;6;1;5;2;10;2;5;5;3;3;7;4;2;1;7;4;1;0;1;2;3;1;6;4;6;4;1;7;12;9;9;6;2;4;1;3;7;8;1;13;3;1;5;7;0;4;9;4;1;4;1;0;0;9;9;7;1;1;10;0;0;4;3;5;5;2;9;1;2;3;1;4;1;12;6;4;2;6;6;2;1;3;2;8;1;9;8;10;3;2;4;5;9;1;3;3;9;7;11;14;14;4;3;7;8;9;2;2;6;9;10;7;1;5;3;8;11;11;4;7;5;8;6;11;13;12;11;11;12;0;1;2;10;11;13;12;7;6;11;12;14;13
+Bitertanol_isomer2;1;1;1;4;4;4;5;0;0;4;1;1;2;2;1;1;1;1;1;1;0;0;3;2;3;10;7;5;6;13;3;10;11;4;13;5;19;1;0;7;15;7;20;6;3;3;3;3;6;5;6;7;4;15;7;7;11;8;9;17;15;7;7;6;12;8;9;12;12;12;9;13;12;12;17;15;7;4;9;16;18;15;16;13;13;12;12;16;12;11;11;3;10;10;10;11;9;14;17;10;18;15;14;10;15;6;7;2;5;3;5;1;5;5;8;9;7;13;7;19;10;8;7;18;10;6;5;5;6;3;13;9;1;8;1;12;6;7;3;7;2;5;2;4;2;3;2;0;4;9;0;5;3;2;3;7;10;11;11;5;13;15;10;12;21;15;22;15;14;14;17;12;11;12;16;5;3;4;11;5;5;7;4;3;9;2;3;2;10;2;14;3;5;7;12;5;4;10;14;9;14;9;11;2;4;5;3;8;2;6;8;9;10;5;7;3;10;7;5;2;5;7;8;5;8;10;8;8;5;12;14;15;12;10;10;12;9;15;9;12;6;2;3;5;7;1;3;4;11;4;5;5;8;4;13;4;6;3;7;6;8;0;3;3;1;1;17;9;7;3;2;3;15;2;5;8;2;2;3;2;11;15;8;17;4;0;9;10;1;1;8;8;0;3;2;0;1;14;11;7;3;2;14;2;1;3;6;9;5;6;14;2;0;4;3;3;4;19;11;6;4;10;11;2;6;5;7;15;2;11;11;12;3;3;2;9;18;2;2;1;13;7;14;14;28;1;4;10;10;12;5;10;4;12;9;12;7;7;5;11;14;12;3;14;6;12;8;16;21;20;13;18;21;3;0;2;12;16;15;14;7;1;16;13;22;18
+Bromuconazole_isomer1;1;3;0;3;4;3;1;4;3;5;12;3;5;3;3;2;2;3;3;3;3;1;9;3;6;4;0;13;7;16;5;6;7;5;14;3;17;5;0;5;12;10;11;2;22;19;18;18;19;5;2;8;14;13;6;7;17;9;14;17;14;18;16;16;17;9;10;14;15;15;11;15;7;16;14;5;5;4;5;14;8;7;13;3;9;6;6;5;9;18;8;9;17;7;8;7;13;13;12;14;13;14;16;10;16;13;18;11;4;0;1;2;2;12;16;3;3;7;2;13;6;1;0;8;5;12;13;5;5;6;22;11;0;9;8;6;9;9;9;7;9;9;6;2;6;2;5;0;4;7;1;6;9;9;5;14;7;6;9;7;8;27;15;10;18;16;29;11;11;33;25;13;4;12;14;3;2;13;11;7;6;4;12;8;3;11;11;1;5;9;17;6;11;3;6;2;1;6;5;4;6;5;5;6;25;2;10;22;3;18;19;17;15;11;9;5;17;15;4;8;14;16;11;3;8;10;9;18;17;15;13;15;17;14;15;18;12;18;15;17;19;7;4;17;8;3;5;12;13;4;8;8;9;10;9;2;7;5;3;1;4;1;3;1;7;2;23;10;10;8;2;2;8;8;4;4;2;2;5;4;13;16;4;12;15;6;8;4;0;2;12;8;4;8;11;0;3;18;15;6;10;8;9;0;1;3;9;14;9;10;7;5;2;4;2;9;2;9;11;22;6;14;10;4;17;14;18;15;10;13;10;7;8;8;4;9;16;8;7;6;10;30;11;4;1;38;33;10;14;13;9;7;15;16;18;15;5;10;10;30;13;14;19;24;25;21;14;12;19;25;24;19;26;2;2;3;23;9;25;20;5;3;19;14;31;26
+Bromuconazole_isomer2;0;4;0;4;5;4;2;4;3;4;11;7;5;4;4;3;3;4;4;4;3;1;9;3;5;4;2;13;4;12;4;6;11;4;14;2;15;1;0;7;18;12;13;4;17;17;16;16;17;8;5;10;13;14;7;10;17;10;15;19;18;20;18;17;19;12;12;15;17;17;12;19;7;12;11;5;9;5;3;13;12;8;8;4;5;3;2;3;10;18;7;7;15;5;5;11;13;14;11;12;13;12;15;13;14;16;22;14;7;5;2;5;4;12;20;5;5;9;5;14;5;4;3;10;8;12;14;9;8;6;26;9;1;11;9;6;4;4;10;9;10;9;6;3;5;4;6;0;5;10;0;6;5;6;8;9;1;2;3;4;5;30;16;16;23;21;30;17;18;36;26;15;6;18;19;2;1;14;6;6;5;1;10;6;4;11;9;2;5;9;20;7;15;7;8;2;1;5;7;3;7;4;6;8;21;1;11;22;2;15;18;15;17;10;10;3;19;12;3;5;16;15;12;5;13;13;12;22;18;20;17;19;16;13;15;18;19;25;22;16;11;9;5;16;9;3;5;14;11;6;8;8;12;11;7;2;7;7;3;3;5;1;3;2;6;2;29;14;12;10;5;2;6;8;5;5;2;1;6;3;12;17;5;12;12;2;7;4;0;2;9;8;4;5;7;0;2;20;15;5;7;6;12;1;1;0;12;12;7;11;7;1;2;4;2;5;2;10;8;21;8;14;12;4;18;16;22;16;9;12;10;8;4;4;6;12;17;5;7;7;10;30;9;3;4;33;41;9;13;15;10;11;16;16;18;16;4;9;12;33;14;16;19;27;25;21;13;14;22;24;29;20;23;1;0;1;25;6;16;14;3;0;14;7;27;18
+Cyproconazole_isomer1;5;6;3;4;6;7;5;2;1;7;2;1;3;8;6;6;7;7;8;8;5;3;12;7;9;14;8;10;11;21;7;14;18;4;11;11;33;11;5;4;12;9;14;2;29;23;25;24;23;6;4;7;7;4;7;7;8;6;7;9;8;11;9;10;9;5;7;8;9;8;6;7;11;17;21;17;9;4;10;25;17;19;22;19;19;14;27;25;22;10;16;7;18;16;15;9;14;22;25;22;22;13;20;11;17;4;5;2;1;0;1;2;5;7;7;5;7;16;12;23;11;6;6;6;6;9;11;2;3;5;20;19;5;11;5;17;9;17;9;9;6;7;10;6;7;5;13;3;5;13;4;9;6;5;7;13;14;9;12;6;14;22;17;7;14;6;23;8;12;33;25;10;11;8;5;5;7;7;12;12;12;6;7;11;15;12;10;4;9;11;25;10;17;12;14;8;8;19;19;16;21;18;18;11;19;5;10;14;4;23;11;18;19;14;9;10;17;23;3;12;14;15;10;12;13;13;10;11;10;10;8;8;8;6;9;8;15;16;13;8;17;6;2;13;9;5;5;9;19;13;13;13;9;6;17;3;10;9;8;6;5;5;3;5;13;6;28;8;19;5;1;4;20;5;11;11;4;7;4;4;11;25;5;19;11;8;12;8;4;2;4;13;4;10;11;5;7;19;30;15;13;9;23;5;3;8;12;25;13;7;16;9;1;2;7;12;14;20;10;24;15;22;16;5;15;13;5;20;10;16;12;20;5;5;10;10;23;5;8;10;14;18;17;7;10;10;9;39;35;15;11;15;19;29;20;18;1;15;8;24;19;23;15;21;10;24;9;21;28;33;26;31;33;9;5;6;26;20;32;32;11;3;27;17;32;26
+Cyproconazole_isomer2;4;7;1;4;6;7;6;3;2;6;6;1;0;9;8;10;8;8;9;9;6;6;17;8;3;13;7;13;14;24;8;13;19;2;17;13;24;11;4;8;12;9;13;4;17;14;13;13;14;6;4;9;10;6;11;7;8;6;9;9;9;13;11;12;9;5;7;10;10;10;7;8;14;17;20;17;12;7;11;25;17;17;20;16;17;13;25;23;17;16;14;9;17;19;18;15;13;20;20;20;22;14;17;10;13;8;8;4;2;4;4;7;8;7;8;5;7;17;11;18;10;8;7;7;7;8;9;1;6;2;18;18;5;13;6;16;12;17;8;10;8;9;8;6;6;4;8;3;9;14;3;9;9;7;9;16;19;16;18;7;18;28;12;11;22;13;27;9;12;34;26;11;11;8;8;4;7;8;13;11;13;6;8;9;17;9;7;4;10;12;25;4;20;10;14;9;9;18;19;14;19;18;17;9;26;3;10;22;3;16;16;19;12;11;14;7;25;8;4;12;10;14;11;12;16;12;9;13;12;12;10;10;8;6;10;9;12;12;13;9;20;11;8;16;9;8;7;15;19;14;11;11;13;11;16;3;10;10;11;5;4;6;4;5;13;5;31;16;21;8;2;7;20;12;11;13;3;4;4;4;13;24;4;21;12;5;13;12;7;4;13;13;2;17;11;5;5;15;24;13;11;5;24;4;3;6;7;27;11;8;20;4;1;5;7;11;11;24;8;14;12;14;16;7;15;9;9;21;6;17;13;18;4;4;5;10;21;5;6;9;16;23;17;8;10;14;13;35;36;23;10;14;9;25;31;21;1;12;7;19;22;18;10;23;11;22;9;21;26;33;26;26;34;7;5;6;23;16;25;19;9;5;21;21;32;30
+Diclobutrazol;2;5;0;6;8;6;5;7;7;7;10;6;1;4;5;4;5;6;6;6;10;10;18;11;12;11;7;17;10;24;7;16;18;8;26;7;25;7;3;16;18;19;27;5;20;17;18;18;20;10;4;17;21;26;18;14;18;15;17;28;20;18;16;13;21;13;15;20;22;22;13;16;20;25;16;15;6;6;13;18;26;25;16;15;24;13;22;25;22;23;15;8;18;17;17;20;17;24;18;19;31;19;25;21;20;15;16;12;14;7;10;11;14;14;14;17;11;20;12;28;20;9;8;21;11;17;18;9;10;6;39;10;8;9;5;18;10;11;14;11;7;15;10;1;9;8;11;1;5;5;4;3;8;7;12;10;11;9;7;5;14;31;18;22;41;31;44;24;27;47;49;19;14;26;25;6;5;17;18;14;13;5;23;13;13;13;12;3;7;13;39;10;19;11;17;5;4;11;13;9;15;9;10;7;25;4;15;25;6;20;27;20;22;13;12;13;25;19;7;11;9;23;5;9;14;19;16;18;16;16;19;20;22;16;23;22;20;28;18;19;12;10;7;19;19;7;5;13;20;14;18;17;13;16;19;4;24;12;8;5;13;5;5;4;7;6;36;15;18;9;3;8;18;14;7;12;2;6;6;6;13;36;13;18;13;7;21;20;4;5;15;13;3;12;10;3;1;27;29;16;17;13;11;1;1;6;16;19;16;10;8;5;0;2;8;14;6;14;15;30;10;25;18;4;23;10;22;20;9;12;7;15;12;10;9;16;31;4;11;14;14;34;14;9;12;13;15;15;23;64;14;13;32;30;24;23;10;17;7;29;30;28;29;26;16;27;25;21;24;38;38;34;43;6;2;5;30;18;34;20;10;2;20;13;28;21
+Difenoconazole_isomer1;3;3;0;3;5;6;4;6;5;6;4;3;2;2;4;2;3;3;3;3;5;4;12;7;10;12;7;12;5;18;6;15;13;5;17;3;16;3;1;8;12;9;11;2;12;10;12;10;13;3;4;10;16;18;3;6;12;10;10;17;11;9;10;8;12;10;9;10;11;10;6;11;15;15;13;10;7;3;6;13;15;14;14;13;9;6;11;17;23;16;10;2;13;4;6;13;14;18;15;17;28;17;21;11;20;11;8;9;6;4;5;5;6;4;7;9;11;15;13;28;16;12;8;20;13;16;16;14;13;10;32;8;3;8;5;15;3;9;11;11;8;5;3;5;3;4;8;5;6;11;0;5;7;7;4;9;5;2;1;1;2;27;19;21;26;20;37;22;23;33;36;14;2;16;17;1;5;14;6;5;5;3;8;7;6;11;14;2;13;12;24;6;9;6;6;4;3;9;10;6;11;9;8;7;15;0;7;19;7;18;16;13;15;12;9;10;20;20;1;7;13;13;12;6;10;8;6;10;9;12;10;10;8;9;8;10;27;28;26;10;13;7;4;15;10;2;5;10;12;10;5;5;10;18;11;5;13;7;6;1;6;3;4;3;9;2;28;10;9;5;5;3;9;7;5;5;0;2;6;6;7;20;7;14;6;5;7;18;1;2;11;7;6;6;9;0;2;23;15;5;11;3;9;3;1;3;9;15;8;3;7;0;1;3;4;5;7;9;13;22;10;16;12;2;20;5;11;11;7;3;3;6;11;8;11;9;29;2;6;3;12;25;8;2;5;9;10;11;10;14;47;34;17;17;16;17;3;11;6;18;22;11;11;20;9;13;10;13;19;21;24;19;24;4;1;0;20;6;20;12;5;2;13;8;20;18
+Difenoconazole_isomer2;2;2;0;4;5;5;5;5;4;4;3;5;3;2;4;4;1;2;2;2;5;4;11;6;11;15;6;14;12;21;6;14;15;4;15;6;21;6;4;9;14;9;14;1;8;8;9;9;11;1;3;11;10;15;8;6;9;5;9;8;12;8;8;7;10;7;6;8;10;10;5;10;14;20;20;16;14;8;5;22;18;15;19;23;16;11;13;20;26;14;10;2;11;6;8;16;16;22;18;23;29;10;23;17;20;7;5;8;8;9;5;9;6;6;5;4;5;10;7;26;11;7;5;26;22;11;16;11;11;8;25;13;5;17;8;15;6;12;15;12;9;9;8;8;6;4;6;1;8;15;0;8;12;12;9;15;9;6;5;2;8;16;22;15;16;10;29;14;17;37;29;16;5;16;15;6;5;10;5;4;4;2;11;3;9;5;11;2;11;12;27;6;14;9;11;6;4;12;15;7;13;11;12;10;11;2;11;19;8;10;9;11;20;12;10;9;18;17;3;3;9;11;13;8;9;7;5;10;8;13;12;12;9;8;11;12;14;19;13;12;17;9;5;10;13;4;6;10;13;8;6;5;7;11;15;4;14;9;8;5;8;2;5;9;6;3;34;11;14;8;3;5;12;10;6;6;0;3;9;7;9;22;8;14;10;7;8;12;3;2;6;11;6;6;6;1;2;22;15;12;12;8;17;5;1;3;8;16;12;4;11;3;3;5;7;8;7;18;20;14;15;14;22;3;14;5;5;22;4;7;8;10;13;12;7;6;35;4;6;6;14;15;8;2;10;7;11;15;14;13;34;61;7;20;18;9;4;6;8;17;17;14;8;21;11;16;10;14;26;27;14;27;31;3;2;5;17;11;14;12;5;5;17;13;28;25
+Diniconazole;7;5;1;7;8;11;6;5;5;6;20;11;3;4;6;4;4;5;5;5;6;8;18;5;14;7;11;17;16;18;12;11;11;10;19;10;41;4;2;18;11;16;14;2;27;26;26;26;26;4;1;15;22;33;9;14;12;9;11;24;10;16;11;11;14;8;9;8;13;11;4;9;9;17;13;8;10;5;12;19;10;7;14;8;17;12;13;17;27;35;12;12;14;6;6;9;12;19;14;19;27;23;25;20;23;6;12;9;20;15;12;13;15;9;10;15;10;16;8;21;9;9;8;16;10;27;26;9;14;10;48;16;4;12;5;12;10;18;15;13;8;18;8;1;8;10;16;4;7;10;2;5;9;13;9;18;10;7;11;4;18;37;30;27;28;34;46;22;27;51;52;22;12;26;33;6;3;20;20;17;15;8;22;11;8;16;16;1;13;13;33;9;14;8;12;1;2;11;16;8;13;8;8;11;23;3;15;26;14;23;37;28;28;11;17;21;20;33;5;22;17;30;8;13;16;17;15;16;16;11;11;10;12;9;11;11;26;32;24;11;13;18;10;21;16;5;4;11;28;11;21;20;10;15;21;6;16;11;9;5;3;5;2;3;8;5;29;14;14;9;10;7;28;19;7;19;4;3;12;9;16;35;3;26;18;11;12;18;2;8;23;13;5;11;7;4;7;33;37;24;16;10;12;4;1;8;15;18;13;15;7;8;0;3;18;15;9;12;9;22;8;24;20;8;19;14;16;19;15;20;19;22;12;9;9;16;28;1;7;12;22;35;18;6;4;15;16;19;9;32;17;7;58;25;27;24;6;20;12;29;37;21;24;25;19;23;26;13;28;39;39;34;36;5;1;2;38;24;36;27;11;3;30;17;44;34
+Epoxiconazole;7;5;7;11;14;10;11;4;3;9;19;6;10;5;6;6;6;6;7;6;6;7;25;9;19;21;17;23;19;40;18;22;35;14;38;20;60;14;7;18;26;23;44;6;31;30;32;29;32;13;8;19;21;19;19;19;21;14;23;26;28;20;19;14;24;14;14;24;26;25;17;25;33;37;40;29;19;17;19;42;34;32;46;36;45;35;42;46;51;27;30;16;33;29;31;25;29;46;43;46;60;39;44;48;46;12;9;7;13;14;11;12;12;16;11;15;10;22;19;46;24;5;6;32;19;22;23;13;16;16;45;26;9;22;9;26;15;19;22;17;15;25;17;12;16;16;22;6;10;13;4;13;18;16;18;30;18;15;19;7;27;44;41;35;38;43;56;35;41;70;67;20;21;22;16;15;4;19;34;26;26;11;34;26;20;16;17;1;16;16;46;18;24;16;22;8;7;22;20;16;20;20;20;11;37;11;22;47;19;32;36;35;27;15;26;21;38;50;9;15;19;38;19;17;22;25;23;25;20;26;27;26;25;17;24;28;41;46;42;24;30;22;16;26;27;7;11;16;38;16;31;29;16;19;39;11;31;13;17;6;14;9;3;10;13;8;60;21;29;12;8;10;36;18;13;33;5;10;16;13;22;52;14;30;22;20;27;21;7;9;28;19;6;21;19;6;8;45;46;36;31;24;25;7;7;10;20;36;27;14;23;15;2;4;32;31;18;25;31;33;22;33;47;6;33;24;21;35;26;24;19;22;24;24;12;26;52;12;9;20;27;43;19;9;12;16;16;29;25;30;17;20;25;86;42;36;14;24;18;40;47;37;27;36;23;39;17;33;45;63;51;55;59;12;3;4;38;45;69;52;20;10;46;30;59;45
+Etoxazole;17;8;10;12;14;9;5;12;10;17;26;17;9;10;12;13;7;8;10;10;11;12;33;11;24;26;16;37;37;51;21;23;30;15;32;25;84;31;14;15;24;17;41;3;35;26;28;28;28;9;8;14;27;14;19;13;18;13;20;19;25;17;16;14;22;14;13;20;19;20;13;20;25;32;46;32;18;10;11;43;30;24;30;20;38;33;37;36;44;33;24;22;35;20;21;21;18;34;27;35;58;27;33;36;43;17;17;15;18;19;17;20;21;21;18;12;9;19;13;41;17;12;9;32;14;17;18;10;23;14;35;42;15;34;15;35;35;34;33;32;21;39;25;12;27;19;31;8;18;31;10;19;26;23;25;52;38;36;42;15;48;40;33;23;28;23;56;17;20;91;59;23;14;16;11;21;10;14;42;35;36;9;51;39;29;20;16;2;26;27;61;19;42;16;39;12;11;26;31;16;31;21;23;33;34;11;37;48;27;59;35;43;50;33;29;34;43;77;8;18;31;45;18;23;14;15;15;20;10;22;25;26;22;14;25;24;35;39;35;24;48;35;26;28;42;12;12;19;45;18;25;25;21;22;49;13;42;15;19;15;25;12;6;6;20;9;56;44;45;16;7;10;47;28;18;32;9;10;16;20;29;48;26;46;42;29;11;24;4;13;50;21;10;30;27;8;12;65;34;38;48;30;33;6;10;14;19;35;36;15;28;17;6;14;38;46;16;34;30;29;16;22;49;16;32;41;18;27;18;38;21;35;36;35;17;22;51;22;24;24;39;53;36;10;9;18;18;20;31;24;16;18;27;42;144;39;12;21;16;37;52;40;20;33;27;44;11;39;53;62;55;68;61;16;8;12;47;56;82;78;24;10;75;58;103;86
+Fenarimol;9;8;7;15;16;11;10;11;9;13;26;14;15;10;11;13;9;9;10;10;6;6;24;11;15;23;16;15;17;31;12;23;26;20;39;11;37;9;3;14;21;31;31;5;22;18;17;16;18;15;17;28;21;19;15;24;33;27;30;24;26;34;33;27;35;27;27;29;33;30;23;21;26;27;24;20;15;10;13;25;27;25;23;21;23;16;24;31;39;29;16;16;22;18;21;23;18;30;30;32;44;23;26;24;32;19;16;12;12;10;11;13;12;15;22;16;14;22;16;30;19;13;12;29;13;17;18;15;16;11;42;16;8;14;7;25;12;16;15;19;12;17;13;10;10;8;20;6;9;14;3;12;10;10;7;20;19;18;15;6;22;52;21;31;45;34;59;32;37;49;64;29;19;24;21;8;3;17;32;22;24;10;26;22;13;20;15;3;18;20;41;23;20;16;25;8;9;18;19;17;23;19;20;21;44;5;15;39;13;29;33;36;31;16;18;19;39;35;6;15;20;26;16;19;28;31;28;37;32;29;26;25;33;28;21;31;37;39;37;28;20;14;13;22;24;4;8;12;30;15;26;26;19;26;35;9;20;9;8;10;12;6;3;7;14;4;53;30;26;8;6;7;30;15;6;16;8;6;11;10;18;43;13;30;17;10;16;29;5;9;36;21;4;15;16;7;2;36;31;22;20;16;14;6;7;11;16;24;17;15;11;4;0;3;14;29;10;19;22;26;17;24;33;13;24;22;20;20;17;16;13;22;22;18;10;27;43;10;12;14;24;53;21;7;12;15;16;18;21;23;17;9;24;36;39;82;4;22;11;31;63;26;26;27;14;25;17;27;39;41;50;35;43;9;3;3;38;23;45;28;19;4;36;28;43;38
+Fluquinconazole;1;2;1;0;1;1;1;1;1;0;2;2;2;1;1;1;2;2;2;2;4;6;9;4;3;5;2;6;1;7;1;6;12;3;11;1;7;8;0;10;13;4;10;5;8;6;7;6;7;5;4;4;2;7;5;3;9;8;11;11;12;6;5;4;11;7;9;14;13;14;11;11;6;8;3;9;4;4;0;5;8;5;5;2;6;5;4;5;10;15;2;1;4;1;2;4;4;5;5;5;12;9;8;8;10;6;5;2;8;9;3;5;9;6;5;4;3;8;3;12;4;3;4;13;6;10;12;6;4;5;18;1;1;5;5;2;1;3;6;3;4;4;1;3;1;0;0;0;3;3;0;3;4;2;5;5;0;1;1;0;1;10;10;12;8;10;18;11;12;19;18;6;1;4;6;0;1;4;5;2;2;2;3;2;5;5;5;0;5;4;10;4;3;0;2;2;1;1;1;1;2;1;1;3;8;0;7;9;1;4;16;12;4;4;5;3;8;8;1;2;2;6;8;2;2;4;4;8;5;12;11;11;11;11;8;13;9;16;12;13;2;5;3;9;9;1;2;1;5;5;6;6;2;7;6;3;4;6;3;0;7;1;2;2;3;1;16;6;3;2;1;2;3;3;1;5;1;1;3;1;2;8;8;3;8;0;2;6;2;1;14;1;2;1;1;0;0;3;4;4;3;3;4;1;0;1;11;3;6;4;4;0;1;2;3;4;2;4;7;5;4;4;4;0;8;2;4;6;3;4;3;3;3;3;2;5;19;0;2;6;4;12;2;1;7;5;4;1;1;10;3;4;6;14;12;4;36;6;4;8;11;3;4;7;4;5;3;4;7;3;14;6;5;0;1;0;12;1;4;6;0;2;3;1;9;7
+Flusilazole;6;4;5;12;12;7;9;8;8;11;17;7;7;4;6;5;2;3;4;4;6;7;17;8;14;8;11;14;13;14;15;6;16;12;19;11;37;9;7;12;14;14;22;0;20;18;17;19;18;6;3;10;18;16;10;10;11;9;12;12;14;12;13;11;10;8;9;11;15;12;7;12;10;15;16;13;11;4;10;25;18;17;19;14;20;14;17;21;26;18;15;9;17;16;16;9;9;19;18;19;26;18;19;21;21;7;9;7;9;7;8;7;10;8;7;7;6;12;6;16;8;5;5;17;8;14;13;3;3;3;24;12;4;8;4;15;10;11;14;12;9;14;6;7;8;9;16;7;7;6;4;5;14;11;7;18;16;14;15;5;18;24;19;11;15;15;19;10;11;37;27;13;9;18;15;8;3;8;22;20;21;10;22;13;8;14;11;0;15;18;33;14;13;9;14;5;4;14;13;14;14;15;15;11;22;6;10;25;7;26;20;21;26;9;12;15;26;29;3;10;16;21;6;14;12;15;14;15;13;13;14;14;13;10;12;14;19;18;18;14;13;11;10;17;18;2;6;7;23;10;20;20;6;11;21;10;15;13;9;5;2;4;4;5;9;4;30;8;21;9;4;7;20;10;8;17;3;7;10;5;9;34;2;17;13;15;10;10;2;8;16;10;4;8;14;9;7;26;30;21;15;13;13;3;9;11;9;20;12;8;11;6;2;2;18;16;11;13;8;19;16;21;15;6;17;13;13;17;15;13;10;16;14;11;10;15;29;4;9;13;18;23;14;5;7;10;9;15;12;17;11;6;20;24;21;22;6;45;13;21;26;24;23;15;15;23;15;13;23;32;32;32;33;12;3;3;25;25;33;34;14;5;29;17;33;24
+Flutriafol;1;4;3;5;5;4;4;4;3;3;12;5;3;4;2;4;3;4;4;4;3;2;10;3;3;6;10;10;7;14;9;7;12;6;11;5;20;0;0;3;4;11;10;2;13;12;13;11;13;3;3;5;16;12;5;8;6;5;5;7;3;6;8;5;7;6;5;6;5;5;3;3;8;9;12;8;10;7;6;15;12;10;17;14;10;7;10;12;10;5;9;4;10;4;6;8;9;14;10;10;11;12;17;13;12;4;4;1;0;2;1;0;2;5;2;6;3;3;4;13;3;1;1;12;9;7;7;4;7;3;17;6;2;10;3;8;4;9;7;5;5;8;2;3;0;2;7;0;6;8;0;3;6;7;2;14;6;5;8;1;12;15;15;10;10;5;14;9;9;26;16;6;3;13;13;5;4;3;16;14;13;6;10;8;8;7;5;3;8;10;19;6;4;8;3;1;1;4;6;1;7;2;5;3;13;3;6;15;4;7;11;15;16;6;7;6;15;12;0;5;10;12;6;6;8;9;9;8;6;4;3;4;6;4;4;6;9;8;8;5;12;8;3;13;13;2;6;11;15;6;12;11;6;6;13;5;8;8;6;5;0;4;2;4;4;1;14;7;8;8;5;3;16;9;7;12;2;1;9;2;6;15;0;11;6;3;7;7;3;4;9;11;1;10;3;2;0;20;18;13;2;6;10;1;3;3;7;8;3;6;6;3;1;3;10;7;3;11;10;5;9;11;13;2;10;4;7;14;6;11;5;10;10;8;8;13;16;0;2;4;12;18;10;3;5;10;12;8;7;7;6;8;12;18;16;11;4;13;27;16;19;10;14;15;9;9;7;9;15;22;21;17;20;3;1;2;15;18;22;10;8;3;10;11;24;22
+Hexaconazole;5;5;6;13;14;8;7;8;6;13;13;11;10;6;7;6;4;5;5;6;8;6;19;7;11;11;9;21;19;32;13;13;21;10;26;10;42;6;2;14;27;24;30;5;34;24;27;27;26;15;14;18;21;22;18;20;26;21;20;26;25;27;22;22;27;21;22;23;25;25;19;27;21;23;22;19;13;7;11;26;20;13;22;19;19;12;23;24;29;33;17;14;25;15;17;15;17;25;26;23;26;19;28;20;27;15;20;11;15;8;9;9;10;19;20;13;12;21;13;26;8;10;10;20;15;22;23;12;15;12;49;21;4;18;10;23;9;15;12;16;13;14;8;6;5;12;17;3;6;17;2;5;10;8;10;20;12;9;16;6;23;60;31;33;43;34;52;28;30;66;58;25;12;23;23;6;6;14;25;15;16;9;21;12;18;13;19;5;15;23;42;16;18;15;20;8;8;15;17;10;19;11;15;14;37;4;13;45;18;24;38;31;31;20;25;26;31;32;4;20;23;33;16;20;18;24;22;28;23;27;26;29;22;21;28;24;31;32;30;22;20;14;10;29;27;7;10;13;31;17;20;19;20;24;21;8;16;10;11;8;6;5;4;5;14;4;54;28;30;10;6;4;34;16;11;13;6;2;17;7;20;47;6;28;21;8;13;17;6;5;25;20;6;16;11;2;3;35;37;24;19;10;18;7;3;8;17;24;22;22;12;7;2;8;12;16;16;20;16;34;19;28;24;12;25;15;19;23;12;23;15;22;10;9;8;20;39;3;13;19;24;47;20;8;11;30;33;24;19;29;18;17;29;40;37;31;8;21;16;78;42;20;26;43;28;21;25;25;36;51;44;44;48;8;1;4;48;25;45;24;13;3;23;23;44;32
+Nuarimol;14;9;9;16;17;14;11;12;10;15;24;15;10;11;13;14;8;9;10;10;10;8;29;11;15;28;18;24;17;38;16;30;34;15;47;22;55;17;7;21;29;35;45;7;33;32;35;34;37;17;15;30;24;29;28;26;34;27;30;29;32;38;35;30;36;28;26;28;31;28;19;25;28;30;31;27;16;13;15;35;34;29;33;33;37;26;34;41;46;38;22;16;26;21;22;24;23;35;31;41;57;35;36;33;38;29;26;23;16;19;20;19;22;25;24;25;19;32;23;46;28;17;15;31;21;31;34;14;16;15;55;25;12;23;9;33;19;26;23;27;15;24;18;11;13;13;22;5;12;16;4;13;14;15;13;31;19;18;23;9;30;58;33;38;58;48;65;39;45;71;75;33;19;31;29;11;4;19;40;29;31;12;30;30;17;23;23;3;29;28;59;17;24;20;31;10;9;22;21;15;20;19;19;21;44;13;23;48;23;40;48;47;45;23;31;31;47;55;8;19;29;38;19;24;31;33;31;43;39;30;29;29;33;30;24;31;50;55;47;29;35;22;16;26;32;4;9;16;34;20;30;29;21;29;48;11;23;15;12;10;13;7;2;10;15;5;57;30;32;10;10;7;34;23;11;24;10;7;17;13;20;62;14;37;21;22;21;31;7;14;46;30;5;22;22;11;4;49;39;33;27;23;22;8;10;13;28;36;24;16;21;12;1;3;26;31;18;24;30;30;27;27;44;18;29;27;23;27;20;24;17;24;23;21;18;30;57;16;18;22;29;58;26;11;14;13;14;19;22;30;22;17;37;47;52;63;11;26;19;42;102;34;28;37;23;32;18;33;49;58;66;48;55;14;5;5;48;41;70;50;18;6;45;33;63;50
+Paclobutrazol;5;4;2;8;11;11;9;6;6;8;15;7;1;3;5;6;3;4;4;4;5;5;16;9;12;13;9;22;24;26;11;15;21;9;27;13;39;13;7;11;15;13;20;1;21;12;11;13;12;5;2;10;18;19;13;11;15;12;16;22;16;12;10;9;18;13;13;16;16;17;10;17;24;28;22;21;15;8;14;28;21;22;24;22;26;14;29;30;26;18;17;11;22;20;19;23;21;27;23;23;35;18;24;24;30;7;10;7;12;11;11;11;13;11;13;7;11;18;13;34;14;6;5;14;11;16;18;3;10;5;33;23;8;18;6;25;19;23;21;17;8;22;15;4;17;9;20;4;12;16;4;8;15;12;13;24;21;19;19;10;25;36;19;18;33;30;41;17;22;43;42;13;15;20;18;10;5;10;20;12;11;11;20;16;14;9;11;3;11;10;37;4;23;11;24;10;8;18;19;14;25;18;19;12;29;6;18;29;12;28;25;25;20;16;24;18;23;23;5;12;10;25;6;18;17;13;11;16;13;14;15;16;16;11;13;17;22;29;25;16;23;16;13;23;13;7;11;15;26;16;20;19;16;9;23;11;20;10;12;5;10;7;3;9;12;6;41;20;25;14;2;8;30;20;13;18;3;5;8;13;18;36;10;29;21;13;16;16;6;12;19;11;8;15;17;6;8;34;37;28;21;13;21;3;4;9;13;24;21;18;16;10;1;4;16;16;11;21;14;15;12;25;32;13;25;22;14;21;16;19;11;20;12;12;9;20;30;9;8;12;19;28;20;11;12;14;16;23;18;28;11;14;21;37;40;26;3;24;10;20;34;52;18;25;14;36;18;27;36;42;37;36;41;7;4;7;25;28;43;34;14;6;31;28;43;37
+Penconazole;3;6;4;7;8;8;7;8;7;10;16;11;8;1;4;4;4;6;6;6;6;7;19;10;10;9;7;18;16;18;9;12;18;12;21;7;31;5;3;10;11;20;16;1;21;15;17;16;16;7;5;16;21;25;13;16;20;12;11;16;13;23;19;15;21;11;11;10;16;13;5;10;15;16;11;12;7;5;5;15;9;11;11;10;16;9;13;16;17;19;11;10;16;11;12;15;12;18;14;15;24;13;20;14;21;10;11;10;15;5;10;9;8;14;9;5;5;10;7;18;9;5;3;15;7;11;13;6;10;7;29;16;2;13;5;16;10;12;14;16;10;17;7;3;7;7;13;2;4;7;1;4;10;10;11;17;12;9;11;6;17;35;22;23;25;22;37;21;23;39;42;21;12;24;23;6;4;14;12;6;7;5;16;10;9;11;12;2;12;16;31;12;23;7;16;4;4;14;18;13;18;13;14;13;27;5;15;27;12;27;30;19;22;14;16;20;25;23;5;14;15;26;5;13;16;21;17;24;20;13;12;11;16;13;14;15;15;17;14;13;16;11;10;18;16;5;6;12;25;14;17;17;10;17;18;2;14;13;6;4;5;4;2;5;13;4;35;13;23;8;4;6;24;17;7;13;1;4;11;9;15;31;5;24;19;8;11;10;4;7;15;10;3;11;12;3;2;23;32;22;17;9;11;2;4;13;10;16;14;12;8;8;1;4;10;13;16;11;7;28;13;19;25;7;21;15;15;20;14;20;12;17;10;10;9;13;26;4;7;12;19;33;21;4;3;19;19;15;10;29;11;8;24;27;20;26;4;23;14;26;28;18;48;23;17;19;29;16;25;27;34;26;34;10;2;3;31;22;41;24;14;4;21;20;34;25
+Propiconazole_isomer1;5;4;1;6;8;8;5;6;5;4;9;4;1;4;5;7;2;3;4;4;6;6;19;7;12;11;4;18;14;31;5;20;28;4;26;7;33;12;10;15;14;21;19;4;28;30;32;29;33;7;7;16;16;20;15;17;21;17;13;21;13;23;19;16;23;18;19;16;16;17;11;14;14;25;39;22;17;14;8;31;22;16;26;20;23;15;24;31;36;22;17;19;31;17;22;14;12;32;29;36;40;24;28;35;36;13;17;10;12;8;7;7;8;15;17;9;9;21;12;34;12;6;6;19;20;18;22;8;15;11;41;22;4;16;11;20;17;24;20;19;10;16;9;7;12;4;10;2;7;15;7;8;12;14;10;22;16;14;16;7;20;44;45;22;31;31;46;20;24;61;55;22;12;27;25;6;5;18;21;18;20;6;18;17;17;18;11;5;10;16;41;4;25;16;23;8;8;15;24;14;21;13;16;16;33;1;21;24;8;20;24;29;28;19;19;13;26;29;6;14;20;23;10;15;18;24;21;27;19;15;13;14;21;18;12;18;16;27;23;17;29;14;7;14;16;6;10;17;29;14;20;19;21;20;22;4;31;15;9;9;12;5;5;7;12;6;49;21;24;10;8;6;24;14;11;15;5;3;12;4;19;48;12;27;19;16;13;18;2;5;19;19;6;13;16;3;5;39;35;22;28;18;26;6;3;11;16;28;24;16;18;8;4;11;13;20;7;29;27;31;17;22;37;9;18;27;14;24;17;19;11;22;18;18;8;14;36;15;14;17;16;43;25;7;14;24;27;21;23;26;20;21;25;36;33;27;7;15;15;43;37;25;23;83;39;24;20;26;44;55;44;45;61;6;7;10;42;27;47;37;9;5;35;24;55;48
+Propiconazole_isomer2;2;0;1;3;4;5;3;5;4;3;9;5;1;4;2;2;0;0;0;0;2;2;11;3;8;6;2;11;8;21;4;9;11;2;12;6;20;7;2;10;12;16;9;4;27;20;20;19;20;5;4;11;10;11;11;14;18;15;10;17;13;19;15;15;19;16;16;13;14;14;10;11;6;10;15;7;8;4;2;16;9;5;13;6;8;8;11;16;19;10;11;9;15;7;8;5;7;16;15;16;15;13;17;14;14;11;10;6;8;3;4;4;5;8;12;7;8;13;8;13;7;4;4;9;9;12;12;5;9;7;28;9;2;11;8;6;8;10;8;9;12;8;7;3;5;4;12;0;5;7;3;5;10;8;8;14;9;9;12;7;12;26;30;16;21;20;28;15;17;38;32;13;4;14;13;0;4;14;9;5;5;8;12;4;13;9;8;2;7;12;20;3;14;8;14;4;3;7;10;6;8;6;6;7;23;1;8;14;3;8;16;20;16;12;16;7;17;14;4;11;11;16;6;6;10;17;16;19;15;12;11;12;16;17;9;16;12;23;21;14;15;10;7;9;12;3;10;13;20;8;18;16;6;8;8;2;14;8;5;7;1;1;4;6;9;3;32;14;14;8;6;3;21;8;7;13;3;0;5;4;18;26;1;23;12;4;6;6;2;7;10;8;5;9;5;2;1;25;23;17;17;8;18;0;1;6;7;17;9;16;13;4;3;6;8;10;4;19;7;18;10;19;25;3;14;11;13;13;16;20;12;13;4;5;6;8;22;4;8;9;15;28;14;5;6;25;25;10;11;16;9;11;19;23;27;14;4;15;9;28;23;14;17;39;44;20;17;17;22;27;29;23;30;2;2;4;30;18;27;22;6;4;18;17;36;34
+Tebuconazole;6;8;2;5;7;7;7;4;3;7;12;7;1;3;6;5;6;8;8;8;6;6;19;13;15;16;10;22;21;34;14;13;19;10;22;16;40;16;10;4;12;6;22;1;20;15;15;15;16;5;1;8;20;13;14;6;9;6;9;15;11;8;9;7;8;6;6;9;8;9;7;11;20;26;33;25;15;10;15;28;28;26;31;24;27;18;31;31;29;17;19;12;26;24;23;17;22;33;30;30;37;22;31;27;30;8;7;5;7;2;4;7;6;12;10;8;10;18;15;30;12;7;6;21;11;20;20;7;10;7;30;25;6;19;6;22;17;21;18;18;10;19;13;8;14;11;16;5;11;16;3;13;16;11;13;25;20;18;19;9;25;31;28;13;17;13;39;9;12;49;34;15;16;17;13;12;7;12;18;15;14;13;21;19;21;14;9;3;10;9;37;5;24;13;21;10;7;20;24;15;26;17;19;14;29;8;20;36;10;24;21;29;20;16;23;14;22;26;8;16;10;23;7;14;14;8;8;9;7;15;13;13;10;9;9;11;18;21;19;9;31;21;13;25;16;10;11;20;31;12;25;26;14;10;30;7;22;13;10;8;8;8;2;6;12;6;40;16;25;11;5;8;41;20;12;19;3;8;10;9;23;36;9;27;23;13;11;17;6;8;16;10;6;19;17;5;8;34;40;29;21;15;25;5;5;12;11;26;19;15;18;11;1;9;16;15;12;27;12;16;13;30;34;6;28;20;9;21;16;17;17;23;12;13;12;13;28;8;6;10;20;30;21;8;12;21;21;24;22;27;13;16;23;39;44;25;5;23;9;21;32;36;19;24;20;57;14;23;39;51;38;43;55;11;5;8;31;39;47;40;13;7;34;28;52;47
+Tetraconazole;1;2;0;7;8;6;5;5;5;5;13;3;5;1;3;2;1;2;2;2;5;4;9;4;5;12;4;9;5;10;3;13;11;9;20;3;14;4;1;9;8;15;17;1;18;13;14;13;13;3;2;12;12;17;7;14;13;11;9;14;8;13;13;11;14;10;11;10;10;11;5;8;9;11;11;11;4;2;4;11;13;12;10;10;16;11;11;15;18;10;11;7;15;11;11;6;6;16;13;11;18;14;16;13;18;3;4;3;14;5;9;7;8;5;5;5;5;10;5;18;10;8;5;16;15;11;14;6;6;6;29;7;1;5;4;5;6;7;9;9;6;9;3;1;4;3;5;1;2;3;1;2;6;6;6;5;8;6;6;3;8;21;18;14;14;14;28;11;15;31;30;11;8;16;14;7;5;12;9;5;4;3;13;4;8;10;9;2;6;12;20;5;12;5;10;3;3;11;11;9;12;8;10;6;17;2;9;11;3;6;11;8;15;8;4;5;14;13;2;8;10;18;7;12;12;16;15;14;13;8;7;8;11;11;6;12;13;17;12;12;8;6;5;9;10;2;1;4;16;5;9;9;4;10;14;3;11;5;6;3;3;2;3;2;5;3;20;8;8;6;3;4;12;6;5;7;0;3;4;5;12;26;3;14;9;2;7;7;2;1;7;4;3;3;4;2;1;12;23;6;11;9;8;1;1;6;6;13;15;12;5;2;0;1;3;13;5;9;9;20;8;12;12;4;10;6;4;18;8;9;10;12;7;5;6;6;34;2;4;7;12;19;14;6;8;14;13;9;9;25;10;10;26;17;11;17;3;15;7;25;18;18;29;20;17;14;47;11;17;20;26;26;21;5;1;2;21;9;14;9;6;2;10;6;15;14
+Triadimenol_isomer1;3;3;2;7;7;6;6;7;6;6;5;4;2;6;7;7;3;3;3;3;4;3;16;9;11;16;11;14;15;30;5;19;19;3;32;11;34;10;5;12;18;11;20;3;24;18;18;20;19;8;4;12;15;13;12;10;13;9;11;24;16;17;13;12;14;9;12;14;15;14;11;15;24;21;29;20;16;5;11;28;25;20;22;21;21;18;28;27;25;29;17;7;25;20;20;16;18;27;28;30;34;17;25;24;23;13;15;10;10;17;10;12;16;8;11;11;12;25;19;27;17;11;12;16;16;17;17;6;15;5;27;18;5;14;7;22;15;20;15;13;6;12;7;5;8;4;10;4;9;13;2;6;13;10;6;24;17;17;21;10;24;40;26;26;38;29;46;25;29;47;47;19;15;14;16;6;8;10;22;18;16;10;8;9;20;10;11;6;12;11;29;4;15;11;17;6;5;15;18;12;21;11;16;12;29;7;13;32;7;16;29;26;16;19;19;15;27;22;6;18;9;20;14;17;17;13;12;18;18;17;15;16;13;12;14;15;25;29;23;14;18;13;13;17;16;6;7;15;27;13;15;14;14;9;26;8;8;8;14;10;6;2;4;5;12;1;44;21;21;12;6;4;25;14;14;19;2;4;7;6;18;23;7;23;18;4;12;16;7;5;15;16;3;15;5;4;3;29;30;25;14;6;23;3;4;7;21;29;11;10;18;9;3;7;10;15;14;24;16;15;14;11;27;6;20;17;14;22;5;20;16;19;9;9;8;15;32;4;10;10;15;32;23;11;16;12;14;21;21;21;13;14;13;33;39;27;4;13;9;25;33;27;16;26;17;23;11;54;44;39;35;30;41;7;4;5;28;32;36;30;10;5;28;26;43;37
+Triadimenol_isomer2;10;4;7;13;15;12;9;8;7;9;14;7;3;7;10;8;4;5;5;6;7;5;25;9;15;29;16;26;27;45;11;23;33;10;33;18;61;17;8;18;24;16;34;4;40;36;39;36;36;8;6;18;25;25;20;12;18;12;17;22;20;23;23;17;20;13;14;17;18;16;13;20;25;33;46;35;18;9;12;45;33;28;41;32;35;32;42;44;48;31;26;17;34;25;25;24;21;37;38;40;57;33;45;34;47;15;13;9;8;10;8;9;16;12;11;10;12;26;20;47;18;14;11;36;26;27;31;13;18;17;51;33;10;26;11;29;26;30;23;28;12;26;15;10;17;10;21;6;13;21;5;13;21;23;17;40;23;21;26;9;33;48;50;31;37;33;70;28;34;92;68;23;17;28;27;15;8;16;25;21;21;14;29;23;27;22;16;6;18;19;50;11;32;18;28;12;9;26;27;16;30;22;23;17;35;8;26;46;18;42;32;37;34;34;27;25;33;47;8;22;24;37;21;19;23;19;15;27;19;23;21;23;20;14;16;21;26;34;25;19;41;21;18;22;30;9;11;17;35;23;27;28;22;14;47;11;28;13;15;12;17;7;4;9;18;7;68;26;35;11;10;6;45;23;18;22;3;10;17;13;28;41;19;37;25;19;14;19;8;12;30;27;7;24;24;4;7;55;45;35;36;25;30;5;5;10;21;32;29;11;23;14;6;13;20;25;16;31;31;33;21;37;52;14;33;30;11;31;18;26;19;31;25;26;16;25;58;13;12;20;22;37;28;13;21;19;22;28;26;24;19;26;28;45;53;39;7;23;15;36;49;36;25;44;22;39;17;44;116;70;56;61;72;11;7;11;53;52;73;57;15;9;51;38;80;66
+Metconazole;8;9;6;14;16;13;14;7;5;13;24;11;7;6;7;8;6;9;9;9;9;8;26;13;20;23;17;28;33;53;20;30;40;17;47;19;72;22;13;15;27;23;47;2;39;33;35;33;36;10;7;20;30;24;21;18;26;21;20;20;28;23;23;20;26;20;22;21;20;21;16;27;29;41;53;36;27;17;21;51;44;38;46;38;43;31;51;57;61;32;32;21;34;29;32;23;31;53;49;53;61;33;45;48;56;9;10;6;12;9;8;10;12;19;13;14;15;31;25;56;21;12;10;40;25;26;26;10;14;12;49;37;9;24;11;31;31;35;22;24;12;32;16;12;17;16;27;7;13;23;7;14;23;26;16;46;31;27;32;11;39;51;59;30;30;28;60;25;28;92;63;24;20;30;25;21;6;10;36;32;30;16;50;28;26;21;20;5;22;20;65;18;37;20;33;14;13;29;36;22;36;24;29;27;47;12;26;53;16;39;39;49;41;27;34;25;41;52;8;24;29;40;14;23;27;24;22;29;24;27;28;28;25;23;21;23;26;31;28;22;48;26;19;28;32;11;14;24;47;18;37;35;24;25;45;10;42;18;17;13;17;10;6;9;17;8;73;22;40;14;9;12;51;28;24;30;7;12;16;11;28;73;18;41;26;25;20;27;10;11;25;32;7;26;26;6;8;58;61;39;40;32;37;9;7;12;22;41;32;18;29;15;5;12;24;29;19;41;34;38;25;42;50;14;42;34;30;39;29;27;21;36;26;26;14;30;63;15;16;23;29;48;34;12;20;25;24;33;33;38;21;27;39;63;62;41;3;32;22;51;58;42;27;55;27;51;20;39;70;126;67;82;113;11;10;12;54;58;72;67;22;10;61;47;101;81
+Triflumizole;11;13;7;12;14;13;12;14;12;12;28;13;10;10;12;14;11;13;15;15;10;11;37;16;21;24;15;24;23;44;12;19;33;15;45;21;70;13;8;18;32;32;41;9;47;39;42;40;41;15;10;20;30;27;17;26;32;26;33;40;36;34;29;27;36;25;26;34;36;38;23;33;22;26;35;19;16;11;15;44;27;24;35;29;38;31;33;39;62;44;29;17;32;23;25;19;21;37;39;38;58;35;39;36;46;19;21;18;12;12;18;18;13;19;15;11;9;21;14;41;15;8;7;33;15;31;34;15;17;15;68;29;6;19;10;21;20;22;23;27;11;19;10;4;11;8;26;4;9;13;5;9;23;13;15;34;29;25;31;6;34;55;47;28;55;40;71;27;32;97;68;22;21;25;30;11;6;22;32;28;25;12;36;26;25;34;20;2;22;28;68;19;27;15;22;7;6;20;19;12;21;15;18;26;50;7;22;58;15;46;46;50;42;23;34;22;42;54;5;26;28;53;13;22;30;32;30;36;28;32;34;34;32;24;29;40;42;46;43;37;35;22;15;37;35;7;12;20;43;22;32;30;20;32;50;8;29;13;13;8;11;8;5;6;18;8;68;37;31;15;10;11;41;22;13;31;6;11;16;7;24;72;12;38;20;20;20;19;11;12;40;27;5;20;18;11;8;58;51;35;33;22;32;7;9;9;23;37;26;22;28;14;2;12;27;28;18;35;22;45;15;36;46;17;39;28;27;24;25;40;25;37;19;18;16;34;61;13;15;21;27;63;34;11;13;24;29;26;26;38;24;14;39;51;55;50;14;32;21;44;66;37;34;44;29;38;26;35;56;67;128;58;71;11;4;5;68;47;79;60;17;11;56;46;84;71
+Triticonazole;10;6;7;13;16;12;11;9;7;17;30;14;10;6;8;9;4;6;6;7;5;5;30;7;20;24;16;24;33;42;17;24;33;18;37;18;65;18;8;10;14;19;44;3;25;24;25;23;28;3;2;17;24;30;18;17;16;13;12;15;13;16;20;15;15;11;13;11;9;14;6;11;26;31;47;37;20;15;21;52;43;40;45;43;46;35;40;44;52;18;28;18;30;30;34;24;26;46;45;45;55;29;38;37;50;6;8;3;4;5;4;3;7;9;9;6;7;17;12;40;17;10;6;33;27;28;29;12;15;10;46;36;7;23;6;27;20;27;20;21;11;23;13;12;13;14;23;4;14;23;2;14;22;21;13;40;28;26;31;10;39;31;54;15;16;15;41;11;16;80;40;18;19;33;28;22;7;11;34;21;22;15;41;22;25;18;16;3;19;17;53;12;24;13;26;12;11;28;30;20;33;21;25;19;33;9;23;43;10;30;14;37;37;18;23;20;34;44;7;16;20;32;16;22;21;21;19;18;16;14;12;11;14;11;11;12;12;18;12;9;46;26;14;22;34;11;13;18;48;15;29;27;16;17;47;11;31;16;15;10;16;6;5;7;9;8;48;12;28;16;8;10;50;19;18;29;7;9;21;13;22;70;17;38;23;13;19;23;5;6;20;25;4;17;17;7;3;51;59;30;26;25;35;8;7;11;12;31;24;14;27;11;6;11;18;28;15;35;32;34;20;32;43;14;25;21;15;30;17;29;23;32;19;20;12;27;69;9;11;17;33;36;27;11;18;19;20;31;26;34;19;27;34;55;68;35;6;32;17;44;48;36;26;45;23;43;26;30;61;82;58;124;82;13;6;11;46;60;73;48;21;11;48;41;86;74
+Ipconazole;11;13;7;14;16;13;14;8;6;15;28;11;7;8;8;10;10;12;14;14;10;11;32;14;20;29;18;31;39;53;21;29;46;17;38;19;77;21;14;17;26;25;49;1;34;32;33;32;36;10;7;20;28;24;23;20;22;19;20;19;25;23;24;20;23;17;20;21;20;22;14;24;30;44;55;39;25;17;20;56;46;39;53;46;48;37;51;61;68;29;33;21;34;27;30;28;29;57;49;56;62;31;43;49;60;13;15;11;14;10;9;12;15;16;17;12;12;28;22;55;24;13;10;39;25;25;26;12;18;9;45;37;9;30;12;30;31;34;24;28;15;33;18;13;19;17;26;8;16;27;6;16;25;23;15;49;32;28;32;10;41;53;57;26;28;26;63;20;22;102;67;23;22;28;25;24;8;12;38;30;27;16;50;32;29;20;19;5;25;25;68;13;35;21;35;13;10;29;35;22;36;24;30;24;43;13;29;55;17;41;37;45;43;27;37;26;43;51;10;25;28;37;17;22;27;26;22;26;23;26;25;26;24;22;21;24;29;30;28;22;50;29;18;30;33;11;14;22;46;18;40;39;22;26;47;12;43;18;15;15;15;13;5;8;19;9;70;24;36;16;8;12;51;27;23;32;6;11;18;15;27;75;16;40;31;25;18;30;10;12;29;33;6;30;25;9;8;62;61;41;41;30;37;9;8;12;22;40;36;19;30;15;6;12;24;28;17;41;35;32;25;44;54;13;42;34;25;40;26;29;23;34;28;28;15;34;65;14;18;23;30;54;32;12;21;26;23;33;34;43;24;31;36;59;61;43;5;33;20;48;55;41;34;61;30;55;21;41;72;113;71;82;138;11;9;14;61;62;77;68;22;10;62;47;100;84
+Fuberidazole;6;4;7;7;8;8;7;5;4;8;7;5;7;5;6;5;5;5;6;6;4;4;13;4;3;6;9;10;10;12;10;11;12;6;10;11;18;9;5;2;10;4;8;0;7;7;6;6;7;6;4;3;3;2;6;4;8;6;7;8;9;7;7;5;8;7;6;6;10;8;6;9;10;10;12;11;5;2;3;8;11;14;6;7;13;12;10;10;12;7;5;4;9;11;12;8;6;9;10;11;15;10;7;8;6;4;5;4;4;4;3;5;6;6;6;6;7;11;10;14;10;7;6;8;3;7;5;6;5;5;10;15;12;12;4;12;11;12;13;11;9;13;17;10;13;6;10;4;7;7;7;10;8;7;15;12;11;11;12;5;11;13;5;5;7;5;14;8;9;15;11;5;2;6;2;6;2;4;10;10;10;1;11;9;3;9;4;0;11;12;17;10;17;10;13;7;8;9;8;9;8;10;9;8;9;7;15;12;10;14;8;5;14;12;5;12;11;16;3;4;10;5;4;10;5;6;6;9;6;8;9;9;8;6;7;8;9;9;11;8;14;8;6;5;7;1;1;3;14;7;2;2;1;6;12;6;8;15;6;6;7;6;3;4;8;5;12;7;12;2;2;2;14;6;5;5;2;7;5;4;10;13;7;9;11;5;8;3;1;4;8;4;2;7;9;5;5;12;11;12;13;4;5;3;9;10;4;10;7;0;6;5;0;0;9;15;10;5;8;9;10;5;15;5;8;12;8;8;7;8;6;8;5;6;7;10;12;6;11;12;8;9;9;0;3;2;1;9;7;6;4;3;5;12;16;9;0;12;3;8;14;7;10;6;2;11;5;7;11;11;11;13;11;18;4;4;6;12;15;15;8;2;16;12;16;15
+Fenpropimorph_isomer1;2;2;1;1;3;4;3;1;1;2;2;2;1;1;1;1;2;2;2;2;1;1;3;2;1;3;2;4;6;6;2;5;5;1;5;3;8;7;3;3;3;3;2;0;3;3;2;2;3;1;1;2;0;0;2;2;3;3;4;3;5;3;3;3;3;3;3;4;2;4;3;4;4;5;6;6;2;1;1;4;5;3;4;2;5;1;8;8;4;2;1;2;3;3;3;3;1;4;3;6;7;2;3;4;3;1;1;1;1;2;1;1;3;2;1;2;2;4;4;8;4;1;1;2;2;2;2;0;0;0;6;4;3;4;3;5;6;6;4;5;3;4;4;2;4;2;4;2;3;4;4;2;3;4;3;6;4;4;5;4;4;3;6;2;4;2;5;2;3;6;6;1;0;2;0;2;0;0;2;2;2;1;6;2;5;2;3;0;1;4;6;1;6;3;5;3;3;4;6;5;4;4;4;4;3;1;6;4;1;5;1;3;4;7;2;4;5;6;0;3;4;6;4;4;3;3;3;3;3;4;5;5;5;4;2;4;2;3;4;4;9;2;2;2;1;1;1;3;5;3;3;3;3;1;6;2;5;3;2;2;1;2;1;0;3;1;8;3;7;2;1;2;5;4;2;2;1;1;1;1;4;6;1;3;5;4;2;1;1;2;1;3;3;5;3;2;3;9;4;6;6;7;5;2;2;4;2;4;3;0;4;5;2;4;7;8;4;6;7;2;3;5;6;2;4;4;0;3;3;4;2;5;4;4;1;4;5;6;5;3;2;4;5;1;0;2;0;5;5;2;1;2;1;3;8;3;1;3;1;1;5;4;2;7;2;5;1;4;7;10;4;6;9;4;10;7;4;7;9;9;3;1;8;7;9;8
+Fenpropimorph_isomer2;2;1;1;1;2;3;2;1;1;3;3;4;1;1;1;1;1;1;1;1;1;1;3;1;2;2;2;8;9;9;4;6;4;2;6;6;10;9;3;3;2;2;3;0;5;5;4;4;5;1;1;3;0;1;6;2;2;2;3;2;4;2;2;2;2;2;2;3;1;3;2;4;5;8;11;8;4;2;2;8;8;6;5;5;10;6;9;9;5;4;3;3;4;4;4;4;3;7;5;7;12;3;5;7;6;2;3;1;1;3;2;2;3;4;3;4;4;6;6;9;5;4;3;4;4;4;3;2;3;3;7;9;4;8;3;10;9;8;6;6;4;7;7;3;6;3;5;2;4;6;3;4;7;8;6;12;9;9;10;7;10;4;11;5;7;3;8;5;5;10;7;4;2;5;3;5;1;0;4;3;3;3;10;4;4;2;2;0;2;4;10;1;8;4;8;3;3;5;8;5;8;4;6;4;3;2;9;5;4;9;2;4;9;6;4;8;4;9;1;6;6;6;5;3;2;2;2;2;2;4;4;4;4;3;4;3;3;5;4;3;13;5;5;3;3;3;1;4;6;4;5;5;4;2;7;2;11;6;2;3;4;2;1;0;4;3;9;4;9;2;1;1;9;7;3;2;1;2;2;4;7;6;4;6;8;6;1;2;0;3;1;3;3;7;6;2;2;12;5;10;9;9;6;1;2;6;2;4;5;0;2;7;2;6;9;10;3;6;10;3;3;4;11;4;6;5;0;5;3;6;3;7;9;9;0;2;6;9;5;3;3;4;7;2;2;3;1;6;6;5;0;5;2;4;12;3;0;3;2;4;5;7;3;10;4;8;2;5;11;12;5;11;14;4;7;14;8;11;13;13;4;2;11;11;14;12
+Spirodiclofen;14;7;4;10;11;16;10;6;6;9;16;5;3;5;6;6;6;7;8;8;6;8;30;14;22;16;16;24;20;44;13;20;26;12;31;17;51;11;8;21;27;31;27;1;37;39;41;40;40;19;7;20;20;26;23;26;25;18;23;35;29;31;31;21;27;18;19;23;23;27;15;25;17;23;37;14;14;7;9;39;22;19;31;19;22;21;21;27;39;29;18;15;24;18;21;20;18;39;30;38;45;27;32;29;34;20;22;22;10;11;12;11;15;24;23;18;12;23;13;36;19;15;11;20;18;46;40;16;22;18;66;26;6;18;5;20;17;22;21;22;12;23;13;5;13;12;15;3;13;17;3;10;19;15;13;32;20;19;21;9;26;69;53;45;56;38;71;39;41;81;81;22;17;24;28;10;6;25;29;20;24;16;34;22;17;25;24;2;17;26;56;13;23;13;20;6;4;14;20;11;18;12;14;14;43;6;21;53;18;30;47;37;36;19;21;19;29;34;5;25;27;32;18;21;25;29;28;32;23;28;29;28;25;21;21;25;35;42;39;25;25;19;14;27;24;8;10;15;36;17;25;25;12;28;28;8;25;10;15;11;6;10;5;5;14;8;58;28;26;14;9;11;33;20;12;27;2;10;16;14;18;54;8;31;25;13;18;16;7;9;35;24;7;24;18;4;8;44;40;23;21;13;26;5;3;7;15;25;23;22;21;5;6;9;18;24;11;28;24;36;17;38;38;7;29;21;28;27;20;26;20;35;20;16;13;20;49;11;6;17;24;57;25;10;12;23;25;26;23;30;20;17;38;38;47;38;12;25;15;48;48;25;31;42;30;31;21;28;53;54;68;46;61;6;4;8;112;26;62;51;15;7;44;32;80;68
+Spiromesifen;10;6;10;5;6;7;8;6;6;11;16;10;7;9;9;9;7;7;7;7;9;6;20;3;10;15;14;17;30;37;16;19;21;11;33;23;70;19;10;4;6;13;50;1;28;23;24;24;25;2;4;8;20;10;17;11;9;7;9;9;4;11;10;9;10;7;7;7;5;7;2;5;21;26;37;28;17;7;17;42;34;32;36;33;47;37;40;43;40;14;28;17;28;27;30;16;16;40;37;38;47;25;36;34;41;4;3;3;3;2;2;3;5;8;5;5;5;8;6;36;11;6;4;25;15;11;10;9;13;8;23;33;7;14;5;26;24;24;12;19;5;19;11;7;12;15;25;6;8;10;3;9;16;15;13;31;32;35;37;11;48;18;34;15;8;6;22;7;8;68;26;10;24;12;9;18;7;7;28;29;29;15;42;30;24;15;11;3;22;17;42;9;24;10;23;6;5;21;22;14;25;14;18;18;28;14;16;26;19;41;8;39;24;18;27;28;17;50;8;21;18;43;6;15;13;15;15;12;10;8;6;7;10;7;6;7;8;13;9;7;36;19;12;15;32;8;10;15;47;11;27;26;12;12;43;7;28;8;12;11;14;5;1;7;13;6;31;15;25;11;9;11;49;20;15;33;4;6;10;10;28;41;14;43;30;17;19;15;2;14;25;15;5;24;17;7;9;54;42;45;26;29;31;4;10;16;20;29;26;13;23;17;3;14;35;35;16;30;26;18;8;23;43;12;21;24;11;19;16;36;21;35;30;32;8;24;48;12;10;11;28;30;34;11;16;9;6;20;16;18;6;11;24;45;56;23;1;25;18;25;41;28;22;27;18;39;9;32;52;58;47;60;62;12;7;11;26;90;78;69;21;7;68;50;81;60
+Spirotetramat;17;9;13;15;16;11;8;11;11;20;26;15;10;13;14;16;10;10;11;12;10;6;31;9;23;23;21;30;34;63;24;30;42;12;45;27;97;25;16;14;14;23;63;1;43;40;41;38;41;5;5;19;32;28;26;17;18;15;16;20;12;23;23;19;19;14;16;15;13;15;11;13;32;35;58;38;23;11;20;54;42;43;46;38;57;47;50;55;73;26;33;21;41;30;31;26;30;53;49;52;81;39;48;53;63;10;12;11;10;9;9;11;15;14;12;5;9;15;9;50;17;12;7;33;22;21;22;9;21;19;41;46;11;25;11;38;30;33;25;27;13;31;20;10;25;20;33;8;13;19;8;16;19;17;23;47;40;38;43;17;57;48;53;24;24;21;55;17;20;111;57;24;31;24;25;21;8;8;49;41;43;18;55;45;31;26;20;0;27;25;68;23;37;14;34;9;7;26;32;17;32;21;23;34;46;17;26;50;29;57;35;49;49;26;39;39;35;75;7;30;35;51;13;23;24;25;24;24;19;13;15;15;19;16;11;14;23;32;23;15;52;32;24;40;45;11;11;20;60;23;33;32;21;31;70;11;39;9;18;14;23;12;3;11;22;9;62;32;40;13;9;8;58;26;16;41;6;9;17;16;34;70;25;56;41;32;26;27;5;14;44;28;8;38;29;8;14;79;55;47;50;36;31;7;13;20;18;37;40;9;29;19;5;10;41;48;21;32;37;38;10;43;60;17;44;44;16;34;32;46;27;46;40;35;15;41;81;19;22;18;41;42;45;13;15;25;16;32;25;34;20;14;36;69;82;45;4;33;22;45;70;43;41;47;27;47;14;36;73;72;79;73;77;15;9;13;62;78;158;89;29;8;80;63;125;96
+17-alpha-Ethynylestradiol;13;12;11;8;9;9;10;12;10;15;24;15;12;15;11;14;12;13;14;14;11;10;31;12;23;21;18;35;38;46;21;26;33;11;39;29;76;26;15;15;22;16;57;1;36;31;32;30;32;6;6;13;21;14;26;14;21;17;23;23;21;16;17;14;25;17;16;20;20;20;14;21;31;41;43;39;24;16;18;43;38;38;40;34;52;41;41;43;48;25;30;19;28;23;27;26;26;46;41;45;58;34;44;41;51;9;8;7;9;12;12;12;13;13;11;5;4;9;6;43;14;7;4;29;18;22;20;10;12;10;33;44;12;31;11;32;35;34;30;33;17;37;23;13;26;16;27;8;17;27;9;17;30;24;24;54;37;36;40;15;48;33;36;19;13;15;33;8;13;81;59;12;23;17;15;26;10;10;38;34;34;15;39;32;24;22;15;0;21;20;51;23;43;19;37;8;7;24;31;17;31;21;22;28;38;14;33;57;26;49;31;44;38;32;33;35;36;54;8;25;26;42;13;19;14;18;18;21;13;18;22;21;23;16;17;23;32;40;31;21;45;36;26;39;40;12;11;17;54;20;30;29;16;19;58;13;35;18;18;18;21;13;5;8;17;13;61;36;38;17;9;13;49;33;21;31;7;12;18;19;26;51;22;48;34;23;18;18;6;14;40;23;8;32;23;9;13;62;53;46;35;25;32;5;13;20;21;34;32;17;25;17;2;6;35;38;16;30;30;18;16;43;51;16;36;35;17;23;19;37;21;40;31;31;16;26;65;17;20;23;34;22;36;12;14;20;14;32;19;20;12;12;27;52;78;28;6;34;10;24;50;34;24;37;22;40;9;30;57;67;60;48;68;15;9;13;51;69;89;101;27;13;78;63;95;82
+Bisphenol A;3;4;4;7;8;6;7;3;3;9;16;8;8;5;2;3;4;4;4;4;5;6;16;4;13;9;13;19;21;19;17;8;13;8;15;15;26;11;6;9;10;7;18;2;10;9;8;8;9;5;5;7;9;6;12;5;8;5;9;6;11;8;8;5;9;5;4;9;8;9;8;11;11;13;14;13;10;7;12;18;16;18;17;16;20;12;16;18;20;11;14;10;14;15;16;9;10;17;16;19;23;18;19;15;20;10;9;9;6;9;8;11;10;9;11;3;3;9;4;15;4;5;3;12;6;11;10;2;4;2;14;15;5;16;7;11;19;15;19;16;11;23;11;8;13;10;10;4;9;14;5;12;12;11;13;23;17;19;18;8;23;9;8;6;8;5;15;6;7;15;19;6;15;8;5;17;3;7;24;20;18;8;19;13;8;9;9;0;13;11;21;9;18;10;13;7;6;18;17;13;15;14;15;11;10;7;18;20;11;19;15;15;14;11;8;13;22;19;1;2;14;11;6;14;10;7;6;9;6;10;11;10;9;6;12;11;13;15;14;9;11;14;11;13;12;4;4;5;18;7;14;14;3;12;20;8;12;9;9;8;6;9;1;4;8;6;18;15;16;9;4;5;25;12;8;16;4;6;10;10;11;20;6;17;16;7;10;12;3;6;15;9;3;15;10;6;8;20;17;13;14;10;15;3;9;9;7;12;7;3;14;3;1;3;10;14;11;15;9;8;9;12;13;8;10;7;7;9;6;19;10;18;11;8;10;11;23;7;8;7;15;12;15;7;7;5;3;11;9;10;5;5;11;20;24;19;0;14;8;13;18;14;14;9;6;13;6;10;15;22;17;21;22;8;3;4;15;21;29;27;29;6;26;24;29;27
+4-tert-Octylphenol;0;1;1;1;2;2;0;2;1;2;4;4;3;2;2;2;0;1;1;1;2;2;7;0;5;7;3;12;9;7;5;8;5;3;7;7;13;9;8;4;7;1;5;2;6;4;4;3;5;2;1;0;4;2;3;0;2;2;4;6;5;1;1;0;5;2;2;6;4;6;4;5;12;13;7;8;8;9;3;5;7;7;8;8;11;8;5;6;8;5;5;3;6;4;6;12;12;8;6;8;11;7;11;6;10;2;2;1;1;3;2;2;4;3;2;2;1;2;1;8;4;3;1;6;7;8;8;5;6;5;8;12;5;12;2;5;11;12;12;11;9;12;9;6;10;5;7;4;9;11;3;10;13;11;9;13;10;11;9;2;11;8;9;4;4;7;7;2;6;10;11;0;1;4;1;9;3;3;8;6;6;2;10;5;3;3;5;0;3;2;8;4;11;3;5;1;1;5;9;4;7;3;5;3;6;1;12;8;9;9;3;13;10;8;9;7;10;12;3;5;9;5;8;2;1;1;1;5;1;4;5;5;5;2;6;4;5;5;5;4;6;11;10;9;4;3;5;4;8;8;5;5;2;2;8;8;13;7;8;1;7;4;1;2;3;7;9;6;5;5;3;5;5;13;7;10;1;9;7;10;4;6;8;10;5;6;2;2;0;6;6;4;1;6;7;2;2;10;4;9;7;9;9;4;2;6;6;3;5;2;7;2;1;3;9;8;2;10;11;6;7;3;9;3;12;8;2;7;9;9;4;8;13;13;5;1;11;5;2;7;5;2;8;6;1;3;0;3;5;2;2;5;3;10;10;4;2;5;3;3;6;6;4;5;4;7;2;5;9;10;11;11;10;2;1;2;7;7;8;13;6;13;13;9;13;13
+Estrone;11;11;12;13;15;9;10;12;11;16;21;13;12;12;14;15;10;11;12;13;10;10;29;12;24;21;20;35;38;46;21;26;36;15;39;28;74;27;15;15;23;18;53;1;33;29;29;26;30;7;8;13;20;15;24;15;23;17;22;22;22;19;19;16;26;17;16;22;20;22;13;22;28;35;43;39;21;14;19;43;39;41;41;35;51;39;39;43;45;27;29;19;26;26;30;23;24;44;43;41;57;33;44;40;47;10;9;9;10;15;12;14;16;12;12;7;5;11;9;41;16;9;5;26;17;22;19;8;11;9;33;41;15;31;10;32;35;35;34;33;18;39;26;13;26;16;24;8;19;26;10;19;31;24;25;54;40;35;41;16;50;37;33;23;15;16;33;11;15;69;54;14;22;18;13;25;9;9;40;41;39;14;43;33;22;21;16;0;20;20;53;20;42;21;39;11;10;27;32;19;34;20;25;21;47;11;36;46;25;47;36;44;37;31;33;34;39;61;9;23;30;44;15;19;21;18;18;22;14;18;22;21;24;17;16;24;29;34;31;22;45;37;26;34;36;12;12;17;49;22;30;29;13;22;57;14;33;16;17;18;22;12;6;8;17;10;55;34;40;15;9;13;49;34;22;35;7;10;19;18;26;45;23;47;38;22;19;20;7;13;37;23;7;30;22;7;12;55;52;41;39;26;37;8;12;18;16;36;32;19;31;17;2;6;35;40;19;35;29;20;16;35;47;16;31;35;18;20;19;38;24;42;27;28;17;25;60;19;20;20;34;28;36;11;16;19;14;27;21;20;13;17;30;46;75;36;3;29;10;23;45;31;21;35;18;34;10;28;51;61;56;48;62;16;8;11;44;68;80;78;26;13;88;56;85;72
+17-beta-Estradiol;11;11;7;12;13;9;7;13;12;16;17;15;12;12;13;14;11;12;12;12;9;9;24;12;15;16;14;28;34;34;16;18;24;13;26;21;53;22;13;13;18;13;38;1;19;19;18;20;21;4;6;11;13;10;22;12;15;12;18;18;17;13;13;12;17;13;11;15;14;15;11;17;18;22;30;27;16;7;12;30;27;25;21;19;37;28;26;27;34;18;19;12;18;19;20;13;11;31;24;26;40;23;31;28;33;9;8;8;9;13;11;12;11;13;11;6;6;10;7;31;14;9;6;21;12;16;13;7;10;5;27;38;10;23;10;25;30;31;24;27;13;29;19;10;19;17;22;6;13;21;7;13;24;19;20;42;32;29;35;13;42;21;22;16;12;9;26;7;10;48;37;11;18;12;11;20;9;6;26;27;24;12;29;20;16;18;14;1;18;14;37;17;35;14;30;8;7;21;25;15;26;17;19;25;28;11;26;30;19;39;24;35;30;23;22;28;23;50;6;14;27;37;9;20;16;14;14;15;9;14;18;16;15;11;13;18;21;25;24;16;34;31;22;23;28;11;8;13;38;14;26;26;11;18;44;9;22;10;14;13;14;10;4;4;17;7;39;31;34;15;8;11;34;27;18;30;5;9;14;16;20;35;15;37;34;17;15;13;6;14;24;13;5;28;16;6;9;46;27;31;31;18;34;6;8;15;11;27;22;12;27;15;2;6;27;28;11;34;20;11;11;20;34;13;19;26;11;14;10;31;19;35;21;20;10;16;42;17;15;16;33;17;33;12;13;14;7;17;21;13;8;13;17;30;58;28;1;17;11;23;33;28;20;24;17;28;6;26;38;47;46;41;47;12;7;11;32;50;63;63;24;9;56;67;62;60
+Progesterone;18;10;17;16;18;13;10;14;12;23;35;19;16;13;18;17;12;13;14;13;11;10;31;14;24;28;21;46;42;64;23;38;56;21;50;27;103;32;16;21;19;28;71;2;45;42;44;42;43;12;10;24;26;24;35;20;25;19;19;22;20;25;24;21;26;18;20;21;20;20;13;18;40;51;55;48;34;21;15;59;47;45;54;47;59;48;43;55;63;38;28;21;31;24;30;47;39;52;47;51;74;42;53;52;67;20;18;14;15;16;17;20;20;17;16;13;9;18;11;61;23;13;8;51;31;22;22;15;21;15;40;48;14;43;13;40;38;39;38;39;24;43;28;16;27;19;33;8;21;33;9;24;31;31;28;65;42;40;45;16;57;50;68;27;29;21;55;17;22;112;78;29;29;23;24;30;10;15;50;41;41;17;57;44;32;32;21;5;26;37;84;30;44;22;44;11;9;29;38;20;34;23;26;42;56;15;45;68;29;62;46;58;61;34;42;41;57;81;10;30;39;56;27;24;26;28;26;28;24;21;21;22;26;20;20;21;39;45;40;22;55;39;29;43;51;12;15;25;68;25;43;42;18;20;77;14;47;24;20;18;26;14;7;9;22;14;80;44;49;19;13;10;54;34;20;43;10;14;28;20;35;59;27;58;49;31;10;24;6;15;43;34;11;40;29;9;14;83;52;50;44;35;44;9;13;21;23;44;37;27;35;19;7;16;42;52;15;46;49;34;21;52;69;18;47;44;16;37;29;51;33;52;40;38;21;30;91;23;22;29;46;36;44;14;22;31;27;32;32;28;20;28;44;59;103;43;9;33;24;44;63;43;34;55;36;52;15;43;80;101;84;86;100;16;9;14;80;81;125;95;29;13;85;62;168;125
+Testosterone;14;8;13;13;15;12;10;14;12;24;36;18;16;10;17;16;9;9;10;9;10;9;28;12;22;25;19;44;39;48;22;35;46;19;38;25;101;27;15;18;17;26;51;2;38;36;39;37;37;8;6;20;22;21;25;18;21;16;17;15;18;23;24;19;21;15;15;16;16;16;9;15;39;46;43;44;29;20;10;46;37;36;40;34;43;36;30;41;51;33;19;20;24;17;22;41;35;38;33;36;65;34;39;36;52;13;12;10;11;11;11;13;14;14;11;7;3;10;5;51;19;7;3;41;25;19;16;11;17;14;35;48;14;41;15;35;37;37;38;37;22;44;26;15;29;16;29;8;21;32;10;24;32;30;28;63;38;34;42;16;49;41;46;19;20;15;44;13;16;91;63;24;21;19;20;27;10;13;32;27;27;15;51;30;21;27;19;3;23;35;72;29;44;18;37;8;8;26;33;17;31;21;23;32;47;13;44;56;28;60;39;52;60;37;39;38;48;78;10;26;40;49;24;22;22;24;21;24;18;15;17;18;21;15;17;17;33;39;35;18;48;38;29;39;42;12;14;18;60;23;36;36;16;16;61;13;42;21;19;16;26;14;7;8;19;14;64;41;42;19;12;11;46;34;19;40;7;15;27;20;29;49;27;55;41;30;10;21;6;15;38;28;12;37;28;7;14;75;37;43;43;33;43;9;12;20;14;39;33;21;33;18;5;13;41;45;10;44;44;28;20;43;57;15;41;38;15;30;27;46;30;49;39;36;20;27;70;22;20;25;44;27;45;13;18;26;18;26;30;21;18;25;34;45;86;38;7;24;22;32;50;37;25;48;34;47;14;37;66;81;71;74;84;15;8;12;68;60;96;82;27;13;72;60;125;130
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/scores_fill_symmetric_hungarian.csv	Tue Jun 08 11:28:40 2021 +0000
@@ -0,0 +1,175 @@
+;C001;C002;C003;C004;C005;C006;C007;C008;C009;C010;C011;C012;C013;C014;C015;C016;C017;C018;C019;C020;C021;C022;C023;C024;C025;C026;C027;C028;C029;C030;C031;C032;C033;C034;C035;C036;C037;C038;C039;C040;C041;C042;C043;C044;C045;C046;C047;C048;C049;C050;C051;C052;C053;C054;C055;C056;C057;C058;C059;C060;C061;C062;C063;C064;C065;C066;C067;C068;C069;C070;C071;C072;C073;C074;C075;C076;C077;C078;C079;C080;C081;C082;C083;C084;C085;C086;C087;C088;C089;C090;C091;C092;C093;C094;C095;C096;C097;C098;C099;C100;C101;C102;C103;C104;C105;C106;C107;C108;C109;C110;C111;C112;C113;C114;C115;C116;C117;C118;C119;C120;C121;C122;C123;C124;C125;C126;C127;C128;C129;C130;C131;C132;C133;C134;C135;C136;C137;C138;C139;C140;C141;C142;C143;C144;C145;C146;C147;C148;C149;C150;C151;C152;C153;C154;C155;C156;C157;C158;C159;C160;C161;C162;C163;C164;C165;C166;C167;C168;C169;C170;C171;C172;C173;C174
+C001;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.011318242104766061;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0480501832162959;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C002;0.0;1.0;0.0;0.0;0.0;0.0;0.0;9.826519226227063e-05;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.05881897890549432;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.012123553350886737;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0036044014431702073;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C003;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.001996725260781092;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0034417679332659546;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C004;0.0;0.0;0.0;0.9999999999999998;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;2.96280499314007e-05;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0040278645118103865;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C005;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.08691538223716926;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.029248397871103924;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C006;0.0;0.0;0.0;0.0;0.0;0.9999999999999998;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C007;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000004;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.2962603800677429;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.24648494087687758;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.1599716976791167;0.004610025522404731;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.10958281142372048;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C008;0.0;9.826519226227063e-05;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.038656628336262065;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.04212740008005892;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.8305017378945178;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.000820720249084839;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9852672272583464;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.00029368039695233466;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.03219002491077308;0.0;0.027665842310765316;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C009;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0018100838354455145;0.0;0.0;0.0;0.00026664699784285505;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C010;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999998;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.8830740509976347;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.13511013441733857;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.03220322415240876;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C011;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.06548316457544968;0.0;0.0;0.002822235577218386;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.032307395616397956;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C012;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C013;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C014;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C015;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.00011602983451019456;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C016;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000004;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C017;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.029406268278402002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.01384329695013215;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C018;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999998;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C019;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C020;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0021203215716821253;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.013256595576350394;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C021;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C022;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C023;0.0;0.0;0.0;0.0;0.0;0.0;0.2962603800677429;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.022168667764974538;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.013898997882147482;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.043337960507170155;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C024;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.038656628336262065;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000004;0.0;0.0;0.0017332297063265588;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.015334779446614212;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.03413530191202547;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.03939176850945091;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C025;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C026;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.029406268278402002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.5295366192304034;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C027;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0021203215716821253;0.0;0.0;0.0;0.0017332297063265588;0.0;0.0;1.0;0.0;0.0;0.0;0.006909605762680166;0.0;0.003739956152628162;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.005937299963270635;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C028;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000004;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.12611566197777374;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C029;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.06548316457544968;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.003411061282118579;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.010648746118229852;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.012271117296949062;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.030541540271258626;0.0;0.0;0.0
+C030;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.22764415600648266;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C031;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.006909605762680166;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;8.151616565605322e-05;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.00010473532999129162;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C032;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.002822235577218386;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.21425415437592063;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.2793597601790586;0.0;0.0;0.0;0.0
+C033;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.003739956152628162;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.006154155937664982;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C034;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C035;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C036;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C037;0.0;0.0;0.0;2.96280499314007e-05;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.012357527298678901;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C038;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C039;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.20853218749762717;0.0;0.0;0.0;0.0;0.0;0.08288716257143815;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.168991818906588;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.02270466528506333;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C040;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.003411061282118579;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.007650869416008971;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.08361053361285287;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.008355168723662657;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C041;0.0;0.05881897890549432;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.003020305116456188;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C042;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C043;0.011318242104766061;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.005937299963270635;0.0;0.0;0.0;0.0;0.0;0.006154155937664982;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.001183259462569704;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.00045173712879657656;0.0
+C044;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.21425415437592063;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C045;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000004;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.007277787276423934;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C046;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C047;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C048;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C049;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C050;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.04212740008005892;0.0018100838354455145;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.13085780907225475;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C051;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C052;0.0;0.0;0.0;0.0;0.08691538223716926;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999998;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C053;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.8830740509976347;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.05432473438070056;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C054;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.00026664699784285505;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.010648746118229852;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.007650869416008971;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.13085780907225475;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.046093674363750635;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C055;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C056;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.06178403072222939;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C057;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C058;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C059;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.5295366192304034;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C060;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C061;0.0;0.0;0.001996725260781092;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.001183259462569704;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.14221557456489292;0.0
+C062;0.0;0.0;0.0;0.0040278645118103865;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.20853218749762717;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.028561816063542016;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C063;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C064;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C065;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C066;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C067;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C068;0.0;0.0;0.0;0.0;0.0;0.0;0.24648494087687758;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.08288716257143815;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C069;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.12611566197777374;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C070;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.05432473438070056;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C071;0.0;0.012123553350886737;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.022168667764974538;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.054173939299958555;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C072;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.05062270554665014;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C073;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.00011602983451019456;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999998;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C074;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C075;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.2306102851149782;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C076;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C077;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C078;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.010938199140418065;0.0;0.010578616946970737;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C079;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.01384329695013215;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.168991818906588;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C080;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C081;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.013898997882147482;0.015334779446614212;0.0;0.0;0.0;0.0;0.0;0.0;8.151616565605322e-05;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.18186201472254987;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.08530780973820294;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C082;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.7475651587622909;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.16792628104548735;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C083;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C084;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.003020305116456188;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C085;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C086;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C087;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.20175667197274455;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C088;0.0480501832162959;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.22764415600648266;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C089;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C090;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C091;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C092;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.08361053361285287;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C093;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.8305017378945178;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.03413530191202547;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.8462955413819447;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.2166059994843529;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C094;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C095;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C096;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C097;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C098;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C099;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.007277787276423934;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C100;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.18149359661870704;0.0;0.0;0.0;0.0;0.0
+C101;0.0;0.0;0.0034417679332659546;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.054173939299958555;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C102;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.000820720249084839;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.06178403072222939;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.13706493564816769;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C103;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9156381551854463;0.0;0.0
+C104;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.7475651587622909;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.23056477665923983;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C105;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.1146910077339955;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C106;0.0;0.0036044014431702073;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.02270466528506333;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C107;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C108;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C109;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.1146910077339955;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C110;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.17905102969180828;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C111;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C112;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.008355168723662657;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C113;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.18186201472254987;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C114;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.13511013441733857;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C115;0.0;0.0;0.0;0.0;0.0;0.0;0.1599716976791167;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.6036445884907062;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.47189666500845856;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C116;0.0;0.0;0.0;0.0;0.0;0.0;0.004610025522404731;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.4698260707486995;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.31943916547515866;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.19770616284014778;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C117;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C118;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9156859645228715;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C119;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.012357527298678901;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C120;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.8548286745124565;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C121;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C122;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C123;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C124;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.4698260707486995;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C125;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C126;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999998;0.0;0.0;0.0;0.0;0.5919043730772348;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C127;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C128;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9852672272583464;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.03939176850945091;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.8462955413819447;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C129;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C130;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.05062270554665014;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C131;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.5919043730772348;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C132;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.00010473532999129162;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.08530780973820294;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C133;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C134;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C135;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999998;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C136;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.032307395616397956;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.012271117296949062;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C137;0.0;0.0;0.0;0.0;0.029248397871103924;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C138;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C139;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.16792628104548735;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.23056477665923983;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.31943916547515866;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C140;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.17905102969180828;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C141;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C142;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.010938199140418065;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C143;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C144;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.010578616946970737;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C145;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.20175667197274455;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C146;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.046093674363750635;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999998;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C147;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.00029368039695233466;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C148;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.09450372362416701;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C149;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.13706493564816769;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.8548286745124565;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C150;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.03220322415240876;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C151;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.09450372362416701;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C152;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C153;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.2306102851149782;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C154;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.043337960507170155;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.6036445884907062;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.4135048390885568;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C155;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C156;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.19770616284014778;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C157;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999998;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C158;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9156859645228715;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C159;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.2166059994843529;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C160;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.013256595576350394;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C161;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C162;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.03219002491077308;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C163;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C164;0.0;0.0;0.0;0.0;0.0;0.0;0.10958281142372048;0.027665842310765316;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.47189666500845856;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.4135048390885568;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C165;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C166;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.028561816063542016;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C167;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999999;0.0;0.0;0.0;0.0;0.0;0.0;0.0
+C168;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0;0.0;0.0
+C169;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.18149359661870704;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9999999999999998;0.0;0.0;0.0;0.0;0.0
+C170;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.2793597601790586;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0;0.0;0.0;0.0;0.0
+C171;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.030541540271258626;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0;0.0
+C172;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.9156381551854463;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0;0.0
+C173;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.00045173712879657656;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.14221557456489292;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002;0.0
+C174;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.0000000000000002
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/scores_rcx_rcx_modified.csv	Tue Jun 08 11:28:40 2021 +0000
@@ -0,0 +1,387 @@
+;Perylene_2H12;Perylene;Phenanthrene_2H10;Phenanthrene;Anthracene;Acenaphthylene;Acenaphthene;Fluoranthene;Pyrene;para-Terphenyl;Retene;Benzo[b]naphtho[2,1-d]thiophene;2,3-Benzofluorene;Benzo[ghi]fluoranthene;Triphenylene;Benzanthracene/Benzophenanthrene;Benzofluoranthene;Benzo(k)fluoranthene;Benzo[e]pyrene;Benzo(a)pyrene;Indeno[1,2,3-cd]pyrene;Benzo(g,h,i)perylene;Anthanthrene;Dibenzanthracene;Coronene;Dicofol;Benzophenone;2-tert-Butyl-4-methoxyphenol;Butylated hydroxytoluene;Bumetrizole;4-Methylbenzophenone;2,4,6-Tribromophenol;2,6-Dichloro-4-nitroaniline;1-Methylphenanthrene;Triclosan;Drometrizole;Enzacamene;2,4-Di-tert-butyl-6-(5-chloro-2H-benzotriazol-2-yl)phenol;Octrizole;1,2,7,9-Tetrachlorodibenzofuran;2,2',3,4,5,5',6-Heptachlorobiphenyl;2,4,6-Trichlorobiphenyl;2,2',3,3',4,5',6,6'-Octachlorobiphenyl;Mirex;beta-Hexachlorocyclohexane;alpha-1,2,3,4,5,6-Hexachlorocyclohexane;Lindane;delta-Hexachlorocyclohexane;epsilon-Hexachlorocyclohexane;Pentachlorobenzene;Hexachlorobenzene;2,4'-Dichlorodiphenyldichloroethylene;2,4'-Dichlorodiphenyldichloroethane;2,4'-Dichlorodiphenyltrichloroethane;1,2,7,9-Tetrachlorodibenzo-p-dioxin;2,4,4'-Trichlorobiphenyl;2,2',4,5,5'-Pentachlorobiphenyl;2,3',4,4',5-Pentachlorobiphenyl;2,2',3,4,4',5'-Hexachlorobiphenyl;2,2',4,4',5,5'-Hexachlorobiphenyl;2,2',3,4,4',5,5'-Heptachlorobiphenyl;2,2',5,5'-Tetrachlorobiphenyl;2,3',4,6-Tetrachlorobiphenyl;2,3',5',6-Tetrachlorobiphenyl;2,2',3,4',5-Pentachlorobiphenyl;2,3,3',4,5-Pentachlorobiphenyl;3,3',4,5,5'-Pentachlorobiphenyl;2,3',4,4',5',6-Hexachlorobiphenyl;2,3,3',4,5,6-Hexachlorobiphenyl;2,3,3',4',5',6-Hexachlorobiphenyl;2,3,3',4',5,6-Hexachlorobiphenyl;2,3,3',4',5,5',6-Heptachlorobiphenyl;cis-Prallethrin;trans-Prallethrin;cis-Resmethrin;trans-Resmethrin;cis-Tetramethrin;trans-Tetramethrin;Bifenthrin;Fenpropathrin;cis-Phenothrin;trans-Phenothrin;cis-Cyphenothrin;trans-Cyphenothrin;Flucythrinate_isomer1;Flucythrinate_isomer2;cis-Fenvalerate;trans-Fenvalerate;Deltamethrin;Chlorpyrifos oxon;lambda-Cyhalothrin;Tefluthrin;Transfluthrin;cis-Permethrin;trans-Permethrin;cis-Allethrin;trans-Allethrin;cis-Cypermethrin_isomer1;trans-Cypermethrin_isomer1;cis-Cypermethrin_isomer2;trans-Cypermethrin_isomer2;cis-Cyfluthrin_isomer1;trans-Cyfluthrin_isomer1;cis-Cyfluthrin_isomer2;trans-Cyfluthrin_Isomer2;1,2,3,4,7,8-Hexachlorodibenzo-p-dioxin;1,2,3,4,6,7,8-Heptachlorodibenzo-p-dioxin;Octachlorodibenzo-p-dioxin;Octachlorodibenzofuran;1,2,3,7,8-Pentachlorodibenzofuran;1,2,3,4,7,8-Hexachlorodibenzofuran;1,2,3,4,6,7,8-Heptachlorodibenzofuran;2,3,7,8-Tetrachlorodibenzofuran;2,3,7,8-Tetrachlorodibenzo-p-dioxin;1,2,3,7,8-Pentachlorodibenzo-p-dioxin;2,3,4,5-Tetrabromo-6-chlorotoluene;2,3,4,5,6-Pentabromotoluene;2,3,4,5,6-Pentabromoethylbenzene;2,3,5,6-Tetrabromo-p-xylene;Allyl 2,4,6-tribromophenyl ether;2-Bromoallyl(2,4,6-tribromophenyl) ether;Pentabromobenzene;Hexabromobenzene;2,3,4,5,6-Pentabromobenzyl alcohol;2-Ethylhexyl 2,3,4,5-Tetrabromobenzoate;syn-Dechlorane plus;anti-Dechlorane plus;alpha-1,2-Dibromo-4-(1,2-dibromoethyl)cyclohexane;beta-1,2-Dibromo-4-(1,2-dibromoethyl)cyclohexane;1,2,5,6-Tetrabromocyclooctane;1,1-Dibromo-2,3,3,4,4,5-hexachloro-2-cyclopenta-2,4-dien-1-ylcyclooctane;alpha-Amylcinnamaldehyde;trans-Cinnamaldehyde;Citral (Geranial);1-Fluronaphthalene;alpha-Hexylcinnamaldehyde;Lilial;alpha-Amylcinnamyl alcohol;Eugenol;Isoeugenol;4-Methoxybenzyl alcohol;Methyleugenol;Cinnamyl alcohol;Benzyl alcohol;Estragole;Benzyl benzoate;Benzyl cinnamate;Benzyl salicylate;Camphor;Eucalyptol;Coumarin;Limonene;Isomethyl-alpha-ionone;delta-Iraldeine;Safrole;Cashmeran;Celestolide;Phantolide;Tonalide;Traseolide;Galaxolide;Aldrin;Endosulfan;Heptachlor;cis-Heptachlor epoxide;Endosulfan sulphate;Endrin ketone;trans-Chlordane;cis-Chlordane;Endrin aldehyde;Endrin;4,4'-Dichlorodiphenyldichloroethylene;Methoxychlor;4,4'-Dichlorodiphenyldichloroethane;4,4'-Dichlorodiphenyltrichloroethane;Tris(4-tert-butylphenyl) phosphate;Tri-n-butyl-phosphate;Tris(1,3-dichloro-2-propyl)phosphate;Tri-o-cresyl phosphate;Tri-m-cresyl phosphate;Tri-p-cresyl-phosphate;Isodecyl diphenyl phosphate;Tris(isopropylphenyl)phosphate;Tris(3,5-xylenyl)phosphate;Tris(2-butoxyethyl) phosphate;Tris(2-chloroethyl) phosphate;Tris(1-chloro-2-propyl) phosphate;Tris(2-ethylhexyl) phosphate;Triphenyl phosphate;1,2-Benzanthraquinone;1,4-Chrysenequinone;Hydroxychrysene;1-Nitronaphthalene;Hydroxyfluoren-9-one;1,4-Naphthoquinone;2-Methylnaphthalene;1-Methylnaphthalene;2,6-Dimethylnaphthalene;1,3-Dimethylnaphthalene;1,4-Dimethylnaphthalene;1,5-Dimethylnaphthalene;1,2-Dimethylnaphthalene;1,8-Dimethylnaphthalene;7,12-Dimethylbenz[a]anthracene;2,4-D butyl ester;Chlorferone;Carbofuran phenol;Diazinone;Dimethachlor;Alachlor;Chlorpyrifos;Fenoxaprop-ethyl;Atrazine;Malathion;Metazachlor;Metolachlor;Methyl parathion;Pendimethalin;Phosmet;Terbufos;Terbutylazine;Trifluralin;2,2',3,4,4',5',6-Heptabromodiphenyl ether;2-Chlorobiphenyl;2,3-Dichlorobiphenyl;2,2',5-Trichlorobiphenyl;2,4',5-Trichlorobiphenyl;2,2',3,5'-Tetrachlorobiphenyl;2,3',4,4'-Tetrachlorobiphenyl;2,2',3,4',5,5',6-Heptachlorobiphenyl;2,2',3,4,4',5',6-Heptachlorobiphenyl;2,2',3,3',4,4',5-Heptachlorobiphenyl;2,2',3,4,5'-Pentachlorobiphenyl;2,3,3',4',6-Pentachlorobiphenyl;2,2',3,3',4,4',5,5',6-Nonachlorobiphenyl;2,2',3,5,5',6-Hexachlorobiphenyl;2,2',3,4',5,5',6-Heptachloro-4-methoxybiphenyl;2,2',3',4,4',5-Hexachloro-3-methoxybiphenyl;2,2',3,4',5,5'-Hexachloro-4-methoxybiphenyl;2,2',3,4,5,5'-Hexachlorobiphenyl;Praziquantel;Mexacarbate;Aminocarb;Isocarbophos;Acephate;Carbaryl;Mevinphos;Dicrotophos;Monocrotophos;Dimethoate;Dimethomorph _isomer1;Dimethomorph_isomer2;Vamidothion;Temephos;Methomyl;Ethiofencarb;Furathiocarb;Methabenzthiazuron;Methiocarb;Tebuthiuron;Iprovalicarb isomer 2;Propham;Propoxur;Pyraclostrobin;Thiobencarb;Isoprocarb;Linuron;Metobromuron;Monolinuron;Pirimicarb;Siduron;Bendiocarb;Bifenazate;Carbofuran;Cycluron;Diethofencarb;Diflubenzuron;Fenobucarb;Dioxacarb;Promecarb;Fenoxycarb;Indoxacarb;Iprovalicarb isomer 1;Ametryn;Azoxystrobin;Benalaxyl;Benzoximate;Boscalid;Butafenacil;Carbetamide;Carfentrazone-ethyl;Fenhexamid;Flutolanil;Furalaxyl;Kresoxim-methyl;Mepanipyrim;Mepronil;Metalaxyl;Myclobutanil;Oxadixyl;Picoxystrobin;Piperonyl butoxide;Prometon;Pyracarbolid;Pyrimethanil;Pyriproxyfen;Quinoxyfen;Triadimefon;Trifloxystrobin;Zoxamide;Secbumeton;Fenazaquin;Spiroxamine_isomer1;Spiroxamine_isomer2;Amitraz;Tebufenpyrad;Fludioxonil;Terbumeton;Rotenone;Enilconazole;Acibenzolar-S-methyl;Bupirimate;Buprofezin;Carboxin;Ethofumesate;Fenamidone;Fipronil;Flufenacet;Mefenacet;Methoprotryne;Metribuzin;Prometryn;Propargite_isomer1;Propargite_isomer2;Thiofanox;Cyazofamid;Ethiprole;Pyridaben;Thiabendazole;Tricyclazole;Simetryn;Sulfentrazone;Terbutryn;Bitertanol_isomer1;Bitertanol_isomer2;Bromuconazole_isomer1;Bromuconazole_isomer2;Cyproconazole_isomer1;Cyproconazole_isomer2;Diclobutrazol;Difenoconazole_isomer1;Difenoconazole_isomer2;Diniconazole;Epoxiconazole;Etoxazole;Fenarimol;Fluquinconazole;Flusilazole;Flutriafol;Hexaconazole;Nuarimol;Paclobutrazol;Penconazole;Propiconazole_isomer1;Propiconazole_isomer2;Tebuconazole;Tetraconazole;Triadimenol_isomer1;Triadimenol_isomer2;Metconazole;Triflumizole;Triticonazole;Ipconazole;Fuberidazole;Fenpropimorph_isomer1;Fenpropimorph_isomer2;Spirodiclofen;Spiromesifen;Spirotetramat;17-alpha-Ethynylestradiol;Bisphenol A;4-tert-Octylphenol;Estrone;17-beta-Estradiol;Progesterone;Testosterone
+Perylene_2H12;1.0;0.9166412882770913;0.9597373232066215;0.9131625203006809;0.9188888060177415;0.9135105403701996;0.559511292783136;0.9265113221085375;0.9242944628157075;0.9498757636655144;0.3511680562563606;0.9221415224231364;0.6008907030196448;0.9261393914277156;0.921885470076478;0.8967966822101341;0.9294679410190457;0.9337424206360716;0.9134087286129458;0.927933250811539;0.938469744860909;0.9262451572947892;0.9077733888064904;0.9434976142457332;0.9269827212435056;0.0038981395433715323;0.4479128632820097;0.2872625995516296;0.22719658015986072;0.24963376161761272;0.13182640031235732;0.20164952721673868;0.32262110093035173;0.7464011702040245;0.5166602600000427;0.9034361486913145;0.30870126936542186;0.14348730448337757;0.022012527447371068;0.5209204812600344;0.1497934942938255;0.5737559723721629;0.06371592567957358;0.0;0.0043759629432341;0.008069149284497817;0.011251597850071045;0.009391900642756546;0.008844273999667874;0.43444708301764007;0.3244656839657205;0.12308218361598282;0.0011026264273038809;0.0068480733665679284;0.27925913109689104;0.5931171885581866;0.288133423459747;0.4032913627679612;0.2661299247011747;0.07708698750351145;0.20023568181652324;0.3599258901710048;0.4741137659623163;0.46451621645397667;0.2818231226216113;0.378966319029704;0.3990278870085506;0.28697605542809895;0.28500877326346213;0.2832933201964729;0.26685050741648736;0.19112486889069016;0.002423235175910709;0.019721226966843742;0.030655472499634222;0.027348057943597025;0.0031636530580891544;0.0;0.0;0.06118714439881976;0.0031758127227500535;0.002941936247653361;0.002102252236436942;0.0020051434867278412;0.023990749334194074;0.006891657259492042;0.02849615727088484;0.0327683690861957;0.02360065221755977;0.004162554252129082;0.0022183136609299605;0.0004873401872240839;0.008342060425440877;0.0033164402229548216;0.0035876623490744782;0.02753682099712156;0.0020326651119653176;0.0064540722662414915;0.007486936629404286;0.0256809528802443;0.036695058860562034;0.010022260582200765;0.011644914690565972;0.03825186892252824;0.03298453657003804;0.6124513941000884;0.6229964949395804;0.6362623982293336;0.6512524759188526;0.6996968280250058;0.6561874806406353;0.6013140298000001;0.7013779934898774;0.6867503817282742;0.6661108156341298;0.17791954140548696;0.1586858586171032;0.14069195005702353;0.5405531804919522;0.07245043277341899;0.03851645645447683;0.20593494644299837;0.5606464812939403;0.00430416475627469;0.0021249933816709496;0.002070002054660714;0.0017637722545828182;0.004179575983505431;0.003976087352922778;0.01169538775577439;0.012562306060015339;0.023053610357509333;0.21781989932183662;0.028165633759299286;0.9229504819437464;0.01779332896596812;0.06108738966282499;0.03408613628710802;0.6527431196557858;0.748061596222929;0.31811147478105495;0.6063868648019652;0.10595790569365181;0.2502859797901205;0.5224362793568538;0.04818827017290713;0.028427439372457435;0.027567165755113796;0.06859704589512808;0.07102551936070103;0.46072927580809186;0.042915197491723685;0.013703448270627881;0.0016837981370161478;0.6041168098445956;0.32276804924110536;0.35407437673832676;0.11984010847792885;0.14855655812129884;0.060870106984495576;0.15530066623963937;0.013413885991842475;0.007885596865319082;0.018858312801429557;0.017551692066615297;0.017117625120015592;0.02850319987707089;0.011242796977282574;0.0192186906567145;0.01656605744875697;0.02046422564837537;0.11742417555524787;0.03386269246609872;0.0;0.009739929785531011;0.12320875986221443;0.0042542092241887345;0.0009275807684809085;0.32137834566585616;0.7585125238086129;0.7497071333143496;0.0030573311092864154;0.351363306415736;0.8318008647624917;0.0037000728055398588;0.0400561047794127;0.019724737326125452;0.0;0.5429996756227149;0.6315088528856817;0.7089438584586646;0.6889421574703269;0.3044194735980222;0.6926937615245143;0.5654860416855381;0.6599268498274246;0.6436739976827033;0.6782972864380935;0.4839335602439753;0.38674087789162875;0.7401133996734377;0.42308970841116933;0.6197597286251908;0.69167915840942;0.09475691335014069;0.9295187903647856;0.6241297670078262;0.11839535748929338;0.017696541395117647;0.048354404934914365;0.07030132679286168;0.4897563071173949;0.26005621950823327;0.20267702416530495;0.03788254427204874;0.3637972302905323;0.43129903774641887;0.07935086044462837;0.004405415104014027;0.0402384169181862;0.11781030925184857;0.01686905026209651;0.04563985044416301;0.7513327810198344;0.6662317982425312;0.4384856293521075;0.5978142587594828;0.37382981691673345;0.5043507146861804;0.20118838634978697;0.20949080963770345;0.18511653870192107;0.32892383125740376;0.4115691716383306;0.1132810252619536;0.24268522789397395;0.2046665290334008;0.23835725864008908;0.2786520374605804;0.24962903303934147;0.27241741359360916;0.059502040495399915;0.035356711992262;0.018700869418921844;0.05617277863802359;0.010824581707986466;0.0060737483224225595;0.011135989965595455;0.025589015986564025;0.0015252340320940218;0.17389916051376483;0.1751841681000355;0.001255332106203579;0.7625859622498443;0.03558838645910732;0.04001372431273232;0.015821452261696508;0.5002968754506805;0.010065199887203995;0.17102353811002424;0.02241287971515369;0.21635654904194915;0.0009320934641465887;0.0702312457549233;0.12733829243277753;0.0;0.2964489635078102;0.3516298787422933;0.4013070222157004;0.14016873753006406;0.01364826987227175;0.02068204643618098;0.2640579106730057;0.0033747399234201397;0.03779700733019606;0.3562007840758826;0.01994909782614871;0.0;0.00063763350551355;0.0003464915148149515;0.022659996108228716;0.04317663233738207;0.022760392889673572;0.6881782096321254;0.023280969647381602;0.02380652709244149;0.0004769909509268234;0.34924701135404357;0.0;0.02080741908032;0.02980662133651982;0.11461555188019461;0.09932672557742564;0.028783793469426652;0.06197524409850333;0.27324568286857254;0.17299978142889608;0.061956771933151605;0.03564097091449291;0.07799961883659744;0.022506864057736952;0.005920616360747015;0.3193302862375246;0.0621866436063544;0.30173233255419407;0.021175754338820997;0.13359798749173338;0.020807566914575734;0.05730178967506257;0.045104104589400756;0.05343708983337038;0.0561633281402326;0.0;0.0;0.18817433924441582;0.2992256444934002;0.8224562269496215;0.05893542815215096;0.14263201901652325;0.0036848741571449068;0.051834207059937264;0.13637673483623428;0.049357705155226604;0.37173438146116483;0.19132605639473899;0.01677678489575285;0.004234032123237971;0.00013733027627834985;0.006896226959546212;0.05998924524245105;0.010662064075493144;0.5370866298729147;0.07012573984804386;0.060871014520538794;0.0;0.20788809093993824;0.020976651780898595;0.033971790581134816;0.6278430472477888;0.7889785544471803;0.8424170215686815;0.36956861838406047;0.13105192122145673;0.0;0.0004764501252194636;0.00046938133104400183;0.0;0.026112444916994697;0.015130103952307928;0.0003592563666351264;0.014499867922097735;0.012635668149910467;0.0261189214800269;0.05409258928159272;0.11361653756278936;0.07074736065017342;0.0007852806312240661;0.043490266499886396;0.029635632568266977;0.00830986059460258;0.13995802391957585;0.024356922322313155;0.0016515408775686134;0.005685323229783939;0.00448551716614713;0.010229704342486183;0.00106612133469115;0.03354088539068975;0.0355558715499405;0.028799837172818955;0.01835450287142101;0.016592083848225605;0.06226334382043616;0.8773984832667132;0.05196483512444626;0.05491277492093753;0.04428480617985254;0.029309198349541137;0.22234674914164224;0.19685603511035724;0.07592492658014928;0.0;0.7316862182300122;0.7486162781172123;0.16855366571746844;0.1771147315306595
+Perylene;0.9166412882770913;1.0;0.9444945199479743;0.9724544231670762;0.9764359098458963;0.9597821827748257;0.6394245489454524;0.9829614426394434;0.9794090543595065;0.9732072955188806;0.34816634942897384;0.9633494645164316;0.6014326670986124;0.9885519652974786;0.9920265884203803;0.9826910064198071;0.9795996898541232;0.9947074203940094;0.9991389326278478;0.996366079886053;0.9785833008179351;0.9842490553605286;0.9236632637531762;0.9790003149367952;0.9567945654032274;0.14068726997454584;0.4471002320046971;0.2894487654562243;0.22213721272010822;0.24278498169047022;0.13193656975394513;0.1988107241995896;0.36475873637637823;0.7749809724929236;0.5205696737031862;0.8920499989042568;0.3143066014540748;0.14085057497789846;0.9323890868400957;0.5190660005623544;0.1516817128314667;0.5742731165061885;0.06268991017705926;0.0;0.004634077509337553;0.001180739287565638;0.002053716990030293;0.0018319524211189266;0.0015304894433390219;0.4312366552959806;0.32314759069561166;0.19403053305928142;0.005238034838891216;0.010939122976560875;0.27617461600453996;0.5945461032029332;0.28458269624575283;0.40075146042577797;0.26683271757149785;0.027802156455451355;0.2021405875952549;0.36385148128457556;0.47703582139691714;0.4675436259330989;0.2783538284136634;0.376767103735165;0.39642188175058746;0.2876567772901101;0.2858264321461404;0.2842677147559127;0.26817538437375926;0.1927285528812797;0.004226114976573273;0.019932582233959883;0.002758195129349946;0.0021683414384814272;0.00027238589829862064;0.0006606734076613895;0.0;0.03321451607651984;0.009900426106478536;0.01049812654709375;0.01891576054949354;0.017498717790959763;0.017642352174603405;0.0009446033937638271;0.08277075475800937;0.09255553608844738;0.0023939336038122233;0.012477331458086119;0.0;0.0011496259347559053;0.010713538401953214;0.0;0.0;0.02975427657059359;0.004193927700958614;0.00129454911185373;0.0014288629341520154;0.013307856435823358;0.02048823987064204;0.0013066945245879774;0.0036497184189481354;0.02568751914553422;0.023559700980882187;0.6996376059075021;0.7191775247900545;0.7288152671314165;0.7442503730198639;0.812780965041214;0.7471483034426958;0.6707137345584792;0.8476407557081798;0.8172951677014311;0.7705274172716254;0.16870704015554056;0.1506750862542241;0.13238490599983382;0.6185426483436647;0.056637364364725364;0.04565326249115992;0.1952755999867429;0.6325282615107183;0.009424452128430301;0.0017077661637460036;0.003506959444813515;0.004291079978404825;0.0;0.0;0.0;0.015110417448122415;0.000799356596945746;0.2140192046580341;0.018354449385919826;0.9464730798814519;0.000769951976876499;0.0322929845799878;0.006258603008252157;0.6415498954837993;0.7322147429248396;0.3180126934068137;0.6044126190065386;0.09159901714028146;0.24999201038575955;0.5136676678670233;0.046378330906224646;0.013346063190343675;0.024795522969910378;0.0683609842391469;0.08824375619911551;0.43998974086859594;0.01619384606926656;0.022820974262145254;0.003685936701599386;0.590111517911382;0.32427921082007694;0.35015211689567355;0.1175105696985721;0.1419018011085512;0.2771997123992322;0.15118326681706715;0.013713000787809466;0.008136486402596711;0.02872168453953285;0.0226860871248716;0.012058742955005796;0.008173503993809372;0.013190457317850846;0.023341314131950126;0.035990535961872246;0.010916542298888368;0.16726595572350897;0.0014459037084580482;0.0020104401786299343;0.01223140253962322;0.13178628159600791;0.0076509753918384;0.016544945580338387;0.31752284823852556;0.7368851994053861;0.7228702855100064;0.2196145993242214;0.34700118385726153;0.8333652018081861;0.06770744595254767;0.06163451970160685;0.06463889847648094;0.0027419614936406845;0.5378505807125741;0.6241778356028947;0.7048610193657785;0.6906383019585838;0.323280796341382;0.6967267922966316;0.5556660972720413;0.6596728544412587;0.6437445988004191;0.6565281239242562;0.47162811032436847;0.3746410192876044;0.713132995456902;0.3973072638071436;0.5924726592740633;0.6928334052130123;0.0890301371358718;0.934062546689823;0.6157222720574252;0.1302965503058924;0.00047842384565089307;0.01958301156647194;0.03196956870884367;0.4714056248100568;0.23709529977262755;0.2576857918464814;0.0013156805374479278;0.3602577752496329;0.4872770868575405;0.6887785351999606;0.001146023064831574;0.010818385857876832;0.0954269242478144;0.013965235722581164;0.04419572598269495;0.7569741895053612;0.6756910217799165;0.4354238018560809;0.5992844223899276;0.3761750648654451;0.5061832727678827;0.20490368857297542;0.21195592676342567;0.1871877541527721;0.3232825904645986;0.40821730887636504;0.11473047435585924;0.24302713109930552;0.19607045878572665;0.22725456020730353;0.2676960986116454;0.25057057930973603;0.22580535754918876;0.05881774723835488;0.03480779757612119;0.028304319735456027;0.04130841675401408;0.0012746383602653558;0.0028688139119573478;0.01852429279547044;0.030597074974021917;0.056828882350037115;0.17130566458804516;0.1729887770283606;0.016896763019392125;0.7871654178975752;0.011054512513745778;0.035752249570543335;0.016864338192639376;0.501775959642883;0.0015333523427975132;0.1707817405521033;0.0;0.20795739155124132;0.0;0.0;0.13335641170698365;0.004293225722667389;0.399543643430757;0.3538165362789141;0.45011232730130807;0.14350595779563421;0.054890502865427133;0.037027792437531196;0.22275842160895334;0.005258495560731385;0.09039032104416983;0.3775987383286244;0.020602432076506787;0.002692086753902647;0.004556821954539273;0.0;0.0;0.04058341420602284;0.0;0.6710245277064351;0.02646623043998232;0.00995910015380153;0.0023577727018691797;0.3552252083321638;0.005408944716291124;0.02014721069893918;0.029166266354753324;0.11260577068620664;0.09689535286070637;0.01735114169968625;0.002943786046536453;0.29753663864815905;0.16944792253456956;0.02314707606664413;0.02984198287266439;0.008384296984234364;0.0014485221752686041;0.0;0.29561361267660125;0.1458832881799654;0.3028824685354459;0.0181756991803418;0.13038121443207343;0.006585171880775318;0.005340822951450397;0.003857465213388927;0.056463022387137816;0.0;0.005991203329203176;0.007104002988166088;0.11820298628465775;0.2780880041669092;0.8237389581044458;0.06307440977234365;0.14538713841810277;0.0018083537661844928;0.012020395985187787;0.135593819292077;0.039045468315392025;0.36256180824260653;0.1673718543994404;0.010258555155502457;0.0036399247197572513;0.006475821964656818;0.0;0.022769372061429576;0.00213337846124007;0.5104263005996973;0.06693680067000433;0.05724149934910279;0.03445417938290054;0.20793726419935038;0.011178106619491283;0.026502366403247053;0.622997522739945;0.7856315895357607;0.8417141583448188;0.37187685154463396;0.1369706592844764;0.00878050660195619;0.0014731447277401824;0.004797698320674058;0.010669494220312003;0.03537285253928434;0.042954309633247305;0.030148790881619224;0.02963443420360692;0.0012954140694281724;0.007216548652822523;0.010354498064699411;0.10095796582587149;0.12971312371987828;0.002331199620053387;0.04060948702807518;0.006706011908196676;0.005925310236352404;0.13867060106221496;0.05182780430989667;0.1173380556582776;0.005480883096285533;0.0;0.46393097252561233;0.0026526210182739565;0.02122565683716042;0.018831996979758424;0.13790552124018116;0.12339289551635035;0.042372361758374555;0.10055343327516222;0.8730176729067687;0.01237601848579239;0.014727171380847818;0.015608606395675293;0.03897000770257693;0.21918971362796805;0.21168925722585183;0.07652828780451414;0.0014444546688947815;0.737825578224457;0.7882968816906623;0.18451691951536953;0.19369169872933167
+Phenanthrene_2H10;0.9597373232066215;0.9444945199479743;1.0;0.9462936297636826;0.9531103316900472;0.9413936460471871;0.53121663901696;0.9533922447945503;0.9486810335141213;0.9729510339502189;0.3853528226159509;0.9494328677201915;0.5595174913902017;0.9495344198134872;0.9494343763737733;0.9179333691214396;0.9645895517631009;0.962570479058184;0.9412858738130494;0.9565375754887635;0.959055086791319;0.9478180043216263;0.914525306960395;0.9685223625542234;0.9468693619568468;0.002037690372810901;0.4383348184758366;0.29621000445948525;0.22997744962715574;0.25421023233675843;0.13592223001733875;0.20292870182481546;0.4034241219135728;0.7482355235178629;0.5268243122251096;0.9157949393156448;0.31531195485147206;0.14410346660623058;0.013450044751848814;0.5281280556891822;0.1526221330315541;0.5843527088483559;0.06993818099133273;0.0;0.0031284632340255985;0.019211655039105525;0.019212978125352064;0.01846465505715998;0.020198953456625937;0.4380012599410835;0.32763700133997037;0.12835159279130726;0.0028255701036697025;0.0066092893868742964;0.2783871356345618;0.6048885790495694;0.29011908954626187;0.40715406697664436;0.26828528485826797;0.03064523170548068;0.20250238969600157;0.3657145202967621;0.48117723969525095;0.4715483947862617;0.28458609425171066;0.38345874728812146;0.40276498999796095;0.28913559065671757;0.2876956221076037;0.28525371558578216;0.269242537881171;0.1905763217972942;0.0029970662761893857;0.016890679035032923;0.002626457319489543;0.002168177670081263;0.002512617013249827;0.002262688861871316;0.00018917508279028938;0.014006527748116218;0.031090685530952736;0.029006399527090165;0.0020917084299955785;0.001370417901002478;0.04687246086599114;0.028284800204274416;0.018241366783545033;0.022427297467622332;0.006444970274226426;0.016596589753539108;0.002364154462196286;0.002229393938843278;0.0038037757185789803;0.025794441590817473;0.026278562034353827;0.030276205788998117;0.00392331064918712;0.008650548919689886;0.0031637479668847725;0.014585571441630942;0.029937201487374384;0.009365123480171914;0.0021490105055872104;0.024147237661205842;0.0186204961909958;0.6362073686872252;0.6280574427714569;0.6463023999932007;0.659612661570673;0.7278641880398534;0.6816846519763502;0.6209823305584465;0.7379481486841881;0.7202917350347339;0.6941512144221235;0.11293282456853238;0.0998570600071564;0.09328140471999133;0.5587327687871598;0.03773977806603635;0.04084703238994218;0.12857614284414112;0.5720942620292649;0.01219403549792076;0.006778349214978179;0.001284459678458458;0.001349332550106677;0.0024269877844146836;0.002276823147337998;0.0029602577669991317;0.01918092160238902;0.015447313804432329;0.17463025045356842;0.038213817637001435;0.9529548106373515;0.002334854760498237;0.1331674609443896;0.006392264154905543;0.6753596705959716;0.7630785092154893;0.3288940663693256;0.6271476398998502;0.12133902790580944;0.25178408891993065;0.5028728930910374;0.04964275303215856;0.017129767835460455;0.027859318660813735;0.07573776721516912;0.08042006775926491;0.5541543481033144;0.04635651109277283;0.014251520337733584;0.00924543904076178;0.6056645054701193;0.3308186704125537;0.3623428966323317;0.12607263464840296;0.14994285878366453;0.08550698527217127;0.16455933392708869;0.009851877548499012;0.011365791889177372;0.022340023077168855;0.01805325036842711;0.008291931595401028;0.004186782226728197;0.012644730855185922;0.020671576644805224;0.0631314865022078;0.014142572083303568;0.08505040040628546;0.005306983702026932;0.0014903323615885252;0.008295342970213932;0.12202563310811913;0.0;0.0017689319735947821;0.32523872476735666;0.7199095941164132;0.7048108973211712;0.015764484960959307;0.32806076874265194;0.8410849231366214;0.0;0.05024835983625477;0.007326299023891028;0.0;0.5024022323050045;0.6706657000122597;0.7580918369607418;0.7292551490484067;0.34047712691654913;0.7799737722001029;0.5999820372306494;0.6322208022333059;0.616029016468374;0.6749000073274148;0.48662761727437814;0.3922022108694665;0.7314275433666639;0.41969305238868243;0.6116939815119847;0.6900612401154664;0.05987230290156215;0.9610109135937569;0.6396858880549202;0.1300990403286101;0.007533669696494352;0.6044235767174417;0.051462565551197784;0.4852099345715655;0.2535393655979465;0.22618336581419166;0.03349578248525311;0.37209371162039645;0.4493985288716323;0.05405616245631345;0.15188088609267517;0.0;0.1085589202329588;0.012999006084922117;0.03237632492003533;0.7766801383552261;0.6825708917130109;0.44377389788821575;0.610567855976963;0.38029694023994565;0.5121537845132714;0.2023232417072532;0.21154623890196114;0.18705986168319502;0.33065868004927695;0.41419451626244114;0.11627723313355108;0.2460591290324057;0.1968651705615914;0.22917904150091806;0.2695742837502249;0.2526241273309961;0.21785144468754647;0.059386373955410014;0.036746064373213136;0.027896569385649658;0.06977249964239923;0.0005730565684927435;0.00890696587727335;0.0264896373058361;0.059302579623023016;0.00210794112861196;0.173785230838421;0.17559198826757516;0.0;0.7962442905501048;0.024598112852559306;0.025164597439168514;0.016741361857610042;0.6026084421404201;0.0004407803371088101;0.22860648552196458;0.003682615726120707;0.21900629136539504;0.0;0.0002936874556602213;0.10329620598106798;0.001351185482285101;0.3039870714783191;0.36296131139757;0.40986127954214585;0.1445519777997642;0.017796548573833313;0.023319245834976233;0.26986530317779317;0.002956693546323901;0.03914853956173706;0.3577342210365096;0.010607936989558836;0.0007806266078647101;0.005181108048920545;0.0;0.029950513006797987;0.040552371670036204;0.003699678476523619;0.7255201211230219;0.021230327120929048;0.016924623352716904;0.0012904515138427116;0.35681174674351673;0.0;0.024850244566118024;0.031910092139997966;0.113669470631932;0.09674441572861915;0.022955705314271897;0.0018167282662121895;0.21062392296734336;0.1749381404380905;0.09946631903311423;0.024236482206696896;0.014884739585537515;0.037065794481567375;0.01975531639214354;0.2974360806905994;0.06255626112920284;0.24587858243624078;0.01948413982845908;0.13132484733787536;0.007733560420798558;0.018151497111909037;0.00055046043034548;0.06903061115125993;0.027445846400484208;0.0003648296207884611;0.0;0.12434355049185628;0.28566772062402745;0.8544634711038533;0.05549681058114104;0.14980476195008022;0.0004453836665472735;0.018323955725306734;0.17448738014427875;0.030397654249052563;0.37332684952196016;0.1840082756572871;0.016166496725202213;0.0031710124625285727;0.00022560789616063353;0.00114673655777155;0.04917727174235832;0.007236265358731869;0.6438816664484392;0.06919091674742592;0.059630573497757425;0.009043914166622731;0.22027707035851546;0.02033477438858647;0.02734110277464303;0.6585866469326244;0.8684008342543337;0.8781146989350581;0.3773381584331158;0.1658469191015741;0.012301549326688524;0.00021109160906712614;0.0;0.0;0.0014638503347819192;0.00011716242050044386;0.0;0.0;0.0;0.00014013331771058153;0.0384625538028728;0.12097188513665286;0.07434191792811863;0.00046562359712277876;0.03795467076247739;0.011287867206232509;0.021258120309373105;0.1347839573696102;0.0010562824869742623;0.0019995878731470526;0.001091947517473075;0.0001290097666565608;0.0002925318452431011;0.0;0.001066055763426339;0.0030919048385061204;0.022654635110473307;0.018179566976869368;0.006568630464210582;0.02059421963170935;0.9204918342318529;0.0117586298232022;0.0152479511648885;0.019953743749013618;0.04127189676062344;0.22216064576469396;0.23316058916122076;0.07936147587356164;0.0002511530747481131;0.7808320161578779;0.7837942089587673;0.1741157871887139;0.18179856323559515
+Phenanthrene;0.9131625203006809;0.9724544231670762;0.9462936297636826;1.0;0.9986026416952778;0.9711990594448243;0.6630702930271106;0.9866896967577433;0.9830794415771825;0.9821373577963914;0.3549771314906981;0.9640607127718803;0.6479751792533485;0.9774920471000533;0.9806082055943368;0.968489823190279;0.9734937167986882;0.9774337953921184;0.9735350953139605;0.9784941903989366;0.9681042879960646;0.9670357269076345;0.9192531715179311;0.9689989290155193;0.9514891864313667;0.021099078082165403;0.4850082710031273;0.29507528095927194;0.26478717424494175;0.23357597032441546;0.1445298348907223;0.1951671446201651;0.4872601712447059;0.805542174009536;0.5265874082189456;0.9082256963768752;0.30435673929026563;0.1408529694975944;0.0131195858621187;0.5190973524928216;0.1479987301488314;0.5868769830784419;0.07215173379300092;0.0;0.025756308584340946;0.003703426060744256;0.0040560453745478895;0.003906443245593581;0.004074370205000804;0.4306388184573594;0.32285372395462675;0.17723928459992766;0.09183773522392198;0.04786567281553296;0.27296031555605754;0.6068153265724525;0.2836044038721532;0.3992605205778383;0.26348063859362547;0.01362469398597937;0.1971662084325332;0.3659583408831732;0.4802049864828942;0.4697404403677582;0.2771997720387291;0.3764071138283262;0.39499015376100527;0.284126462569389;0.28193907827018094;0.2805054464938663;0.26477960787739635;0.1872278242925472;0.003942405967879938;0.016417390829682004;0.002386215202071332;0.003626683119891013;0.002188971523383198;0.0;0.07895437115908391;0.05419627323412866;0.012637681856114873;0.01095411581102129;0.04094361640903756;0.03961928906957553;0.033396284714839665;0.015942620626324167;0.053715112623145385;0.04034423144690678;0.015220903184006884;0.009158788736478704;0.03616379510854445;0.18854167466607244;0.007695610642841517;0.010935494955917162;0.01181056936120484;0.027840958722542015;0.0009649006419822113;0.046403754683072396;0.03331912853061975;0.03148663225051995;0.04420262532502231;0.02623025719192377;0.018757295626713116;0.03607990925214376;0.031285977863758425;0.6808709243705588;0.6747303500144428;0.6909943671440771;0.7041023889389407;0.7881561108126149;0.7272364809332021;0.6543575050751343;0.8164659613888103;0.7897980384537613;0.7486625671277722;0.1782300247199617;0.15854060745503482;0.13882779242852888;0.5961105404451843;0.061099790836218845;0.04368260084304648;0.20299554237413583;0.6008977100471192;0.006702081832443981;0.009591791684487682;0.0008756509477618313;0.0003149585828253031;0.0;0.0;0.0;0.014397937301473675;0.004675696355451727;0.269271921534592;0.019178110240483815;0.9584795769977694;0.01710148894311513;0.037018126860365215;0.017228880662814496;0.6590331079460795;0.7478895251790493;0.33953752175653495;0.617319983649535;0.10082878845219638;0.27031446316945146;0.5621487227275199;0.05158016348280211;0.12290727186022911;0.0249580897633671;0.06918339441166538;0.07216296646943848;0.4841975366827674;0.017650647796345207;0.023774082960367118;0.02916594542796031;0.6172021572963464;0.3348865117132469;0.36103373290587865;0.12734091332085384;0.14788424576241077;0.232681745250093;0.16464618709063475;0.014810244495318757;0.0032583072297398224;0.04637129905637319;0.021643130952856693;0.014707662766561217;0.011147264152773992;0.011634508655257354;0.02063523025841635;0.02660449932126016;0.019010575580348507;0.1574930013600201;0.012931120014683512;0.06816352299539413;0.03963962383311465;0.120720980708572;0.002594638571042942;0.005234670766917617;0.37724748780070966;0.7774770642488502;0.7641524204972068;0.004883403061568121;0.3255157321597571;0.8401896343366667;0.0050957290613437385;0.00342684375892729;0.014934644665049042;0.0;0.5914751011338202;0.6641857883341259;0.7319213150261797;0.7032184238759621;0.3139930730918108;0.7235818629511355;0.5960549934510704;0.7169553386022308;0.7028956416479532;0.6893048558478294;0.48900253103422353;0.39096586509264514;0.7491497145001614;0.418155894986139;0.6232300084841356;0.6743508402806376;0.13017445068676506;0.9456747642166803;0.6257050718922011;0.23179721791913593;0.05217124298086897;0.013257465145012352;0.02133836190771113;0.47789580702158896;0.24976219451562004;0.21760835611591772;0.004160487289794061;0.3608941188877201;0.44023032529610423;0.05254135762007518;0.0011750197899771037;0.004016503505781795;0.1103512607005261;0.010820237981095727;0.04567490763872813;0.8480539530670494;0.7604354611472942;0.4505438124172957;0.6117238935927861;0.379482324678011;0.5083773947031613;0.19742598752201135;0.20625096259472545;0.18152677705728185;0.32218647522087446;0.4068015343564537;0.11266570573747113;0.23944461067348566;0.19481846831431773;0.22749291556229276;0.2657586786578174;0.246510214725702;0.1983689492071675;0.08591587202610823;0.1053037273479811;0.03285798457172223;0.04824435882595298;0.0017795658441995916;0.0005139446466468508;0.010374264966205821;0.030533061878630537;0.025912220284535728;0.1919226848178844;0.19370714830664118;0.02380347817986854;0.768325028158512;0.04169341213942212;0.05142737705666574;0.019417002779293344;0.5500346157510976;0.012857991859075237;0.17915843272537027;0.0032054606472008635;0.21189359536232127;0.017827727935882515;0.0035399584617531324;0.10548543075172676;0.03826276303479988;0.30372789760885477;0.35743895008639903;0.4067130977686135;0.14679400569121856;0.013924813819060055;0.06649283923244036;0.3022344078802226;0.011042562462254055;0.05114287710253735;0.37104412633451334;0.027583721546385033;0.024321234512190065;0.0017252482392443335;0.03242644716837844;0.02651706311493021;0.1519494680747418;0.003233200840895564;0.6916497098613088;0.026117619334615354;0.0693348767903039;0.008447083111945013;0.35363286684462314;0.0030781582108647307;0.02061679210860105;0.029696707765861488;0.1828411474888072;0.09708884860598467;0.04652884399889508;0.00944823567748085;0.3420473150622299;0.17162218575542318;0.02847892082172553;0.2274012442131446;0.009884092093647165;0.004295272358653197;0.26579985660561417;0.2968875196846392;0.06121686719703023;0.35659981058573437;0.04572944648958725;0.12876752259895188;0.003507649712123461;0.00993216979255348;0.002516470070925869;0.06189692867287125;0.0;0.00024340311528373698;0.00017480204680075083;0.11891683793094322;0.28138494565113625;0.835151774121609;0.06590474407819351;0.16655609776699432;0.01000706144998074;0.01597305097309136;0.1484454292409277;0.04560622546877751;0.373474814098329;0.20093879043512525;0.01214175168653713;0.05210380511056043;0.04196244691796722;0.0022259737716468705;0.020171352626288414;0.006969383261789765;0.520584160988128;0.07460836292029306;0.06508540372603634;0.0009081349061971654;0.21381032003039624;0.08706074600893271;0.026848185089446076;0.6784213383967334;0.827515986974704;0.871407595684017;0.37332094881575684;0.13433259350228186;0.009786807076862655;0.010903374690916207;0.020256968340437956;0.022219586484660353;0.002736278911865659;0.0026681614908534807;0.008045292376930984;0.0006061444400379187;0.0007483360924414438;0.013751071775550846;0.02997887235394252;0.17138331746047952;0.0829610454538098;0.0;0.0615473262561958;0.02590532016639875;0.04595508779514255;0.1410042077620924;0.009977507100574302;0.004366837587118987;0.0017052385555457517;0.0015717492273815367;0.005541367060683041;0.005076967724573336;0.00821050156060997;0.015221738663351837;0.058019116463181745;0.054328392402734696;0.06158765180346786;0.06208396491718502;0.9003272601265347;0.011546426865354379;0.01497277791877407;0.01025598871439971;0.02040169152296245;0.2317031501682753;0.1869465516385316;0.08257759528600096;0.00024259108136068475;0.7393663340823324;0.7632083922193631;0.16716294231837267;0.1758644401721163
+Anthracene;0.9188888060177415;0.9764359098458963;0.9531103316900472;0.9986026416952778;1.0;0.9766222744494747;0.6509527392046103;0.9904517149242096;0.9872625528553904;0.9852427262556664;0.35842515246258616;0.9698716427806519;0.63791820925954;0.9809594037880822;0.9834704962433395;0.9680739882443118;0.9800702999362079;0.9826595803951523;0.9767315300057553;0.9828025237939778;0.9736519359377572;0.9715660857325868;0.9256560450328308;0.9751768341746739;0.959984516825554;0.020580668193334276;0.48114714778036133;0.29982486862546476;0.2631376969509965;0.23931808982779365;0.14755098296479993;0.19911097023202354;0.4829212938987301;0.7986726318414935;0.5322707287222467;0.9170698898090157;0.3079818237308672;0.1431268746364181;0.01356116993418503;0.5252893955740651;0.15115449288895577;0.5925060330309052;0.07290717342209957;0.0;0.027931647063295574;0.003963427045535739;0.0044613856788051475;0.004214858139419512;0.004437786721181994;0.4361966401532443;0.3277640368599867;0.175923950326709;0.09443002558770636;0.046282671913581784;0.2772205907580168;0.6127932751238739;0.28731464574182347;0.40429781203927534;0.267297704540851;0.013014922953303166;0.20079130679403376;0.3699034408812562;0.4862583220675376;0.47501560739652626;0.2807623513750715;0.38135604794066935;0.40001752594668966;0.28811005387521216;0.2859604525637648;0.2844533705377118;0.2686290262530587;0.1904352529300724;0.004646664170376391;0.017954010696152652;0.0035356639705345213;0.005042387856903;0.0033852935442100674;0.0006079161355244787;0.07796865476341007;0.04873116354880155;0.012026346465982288;0.010742405074525486;0.036940700677878475;0.0354677965981967;0.03127639059205167;0.015319397012646445;0.048903113485022964;0.03990589749592608;0.018016026577524914;0.0076571320882247475;0.032889673259479175;0.17288892178590573;0.011729215384390156;0.011218161866238596;0.012404128513037791;0.029750868419014077;0.003682080726586408;0.04442650228259582;0.03306617020432559;0.03407515798806773;0.04456764791263564;0.030022673134405726;0.02239794092927417;0.03816879817030768;0.03126484685335454;0.6838595687202221;0.6727362559963402;0.6904278424400757;0.7032645654271668;0.7902310819907871;0.730293759775278;0.6579380369894147;0.8172175385100449;0.7907965365322348;0.7509762424146375;0.16834241627122687;0.15003843360010855;0.13177837236884632;0.5981215187174186;0.05828908637174805;0.04376798575323353;0.19183595455460795;0.601462596289001;0.0059112751744416075;0.009003396613270924;0.0013886465448889882;0.0011849448144065707;0.0;0.0;0.0;0.019903193471458802;0.00879297402735172;0.2578590817133191;0.02396147682658354;0.9643739886043317;0.021019932364328857;0.042587564912293;0.03049373593211186;0.6702197919993818;0.7592889380135321;0.3456094528406039;0.6272851544433369;0.10865291874927273;0.2788637753938031;0.5598297512906455;0.05694636608745642;0.13009072978906874;0.03665356126969644;0.07070808848337366;0.07604027056763381;0.4902087872138159;0.02398438637559751;0.026827173573509916;0.029283805283393787;0.6194413522955384;0.3416287109157872;0.36451124984298366;0.12940334238356746;0.1504001868550684;0.2254191198900334;0.16789056212458286;0.013605135273451172;0.002635635863126536;0.05341535307655684;0.02175290536757864;0.013320465672739402;0.011542650693105371;0.011663789198992337;0.020756130990494795;0.026211080111509407;0.019191202397472153;0.14972150932657866;0.011079971765117297;0.06712548150229448;0.03811775135717733;0.122279186546843;0.0029218354687374575;0.005865358411581325;0.38266732792110686;0.7753345148842468;0.760974365760768;0.00396523849015013;0.33117631289837857;0.8470427505978021;0.004505560847746403;0.0037626074703554294;0.016341655038711326;0.0;0.5810139587921913;0.6645472850377471;0.7360126679949024;0.7150128066567782;0.32093838423615983;0.72835183989678;0.5972409984107254;0.7090019870265678;0.6943528399440274;0.6867083035010272;0.4880368901928778;0.3900579781930535;0.7461521619438082;0.4167718769930002;0.6199704997133187;0.6790912159319483;0.12887200649376213;0.9539967297503948;0.6383142709370915;0.22690509508422926;0.04760364244109547;0.013052237141417481;0.01854832103620809;0.48286956929472186;0.25018448981626473;0.21380412847683586;0.004270495456414846;0.3644082869429165;0.44474581752885833;0.060494130400480135;0.0015391973714299842;0.0041327612004829675;0.11090946186007077;0.01732643637884612;0.04376335459911102;0.8388764715060534;0.7490634363331108;0.45423274376029454;0.6174587090755561;0.3832225874784258;0.5141495132293823;0.20147486319692784;0.21016920516930362;0.18529384451996825;0.3263163466630477;0.4119398493043239;0.11532286862843864;0.24343796018357558;0.19770035725910193;0.23064403911500622;0.2696896099631286;0.25052721797566685;0.2002801784156989;0.0883799948035847;0.10057425576129705;0.03385108059573439;0.04418036872371308;0.002677593938289012;0.00045305199812673675;0.010476411651782416;0.03080979896154605;0.02702228043774786;0.1904234728098787;0.19225807912078502;0.023215411561968106;0.7757557190113625;0.03833399064201359;0.04722799876490596;0.020757505492072472;0.5508037492814447;0.012369001982323852;0.1816890671332016;0.0019616257768945134;0.21524541660496788;0.013658050595204418;0.0035581073779312323;0.10875156726678453;0.0307736334827256;0.31033839778851763;0.3672919344392699;0.4209078881581641;0.14717292780689065;0.014061919781123058;0.06403513075375454;0.29171773699622944;0.017114859044775655;0.05753961118097162;0.37170332929907457;0.025061969067073475;0.0198937613061703;0.00385541547424423;0.02985309607479753;0.024072123131425753;0.14396701152403416;0.0019329849973603805;0.6957625297386897;0.027301465099886863;0.06980437339899552;0.008812543255088052;0.3577255265690218;0.003967394718758136;0.022139888766535106;0.02958660346837062;0.17390205693579225;0.09786729028772256;0.04020115829697926;0.011820343643816723;0.32541304847283775;0.1773926404344926;0.03366030611607123;0.21303702461190316;0.014263382449551432;0.005180393849242197;0.25594851386877887;0.29959232005237063;0.06177191068189914;0.34146268001167734;0.04367535388250486;0.1298566771881696;0.004184729902438757;0.011036802077613284;0.0026720451525560026;0.07208055739370227;0.0006583772739598941;0.0010654872574851215;0.0010216435597824173;0.12058450549228934;0.28495103141290173;0.8429313587996995;0.06840010148037567;0.16570665229452877;0.009732860893619199;0.015614695013710414;0.14852838213751693;0.04511447946664677;0.3770627662330072;0.20366862008778105;0.013663025284394814;0.052124479621627244;0.03582226480581903;0.0036160905189980617;0.0222112481410444;0.006967342822012138;0.5232557412598947;0.0765560090847572;0.06735341917435414;0.0011483885845364732;0.2158803537194528;0.08652595919085669;0.027949867819851662;0.6790149116044907;0.8313061203018511;0.8761521695660882;0.3775263465048867;0.1346534072666785;0.007827014729691042;0.008711440804044552;0.020434128605193072;0.022426859234586972;0.0036095613748969736;0.003544850209865073;0.00755268821468957;0.0007914196784232176;0.000889242972278638;0.013249431354575195;0.029923458990628638;0.17542619409100507;0.08159781259192161;0.0001298163216020669;0.05770127670862415;0.02603776777227322;0.046233117162604004;0.1415771856924043;0.011958939281101968;0.005071082625668559;0.002632397467132728;0.0015582705784833151;0.0074785004198768806;0.0049756945921257175;0.008144487386990305;0.015742042416809775;0.05908584149455567;0.05369832531854282;0.05972471955346783;0.060147150900279535;0.9074849346884077;0.012049901509193658;0.015455752566602025;0.009963673872626793;0.02099236503776316;0.24007325158081147;0.1889567848822188;0.08341401423819385;0.0009693434245692787;0.746186561071614;0.7708246132828043;0.17336036429232443;0.1824966876845853
+Acenaphthylene;0.9135105403701996;0.9597821827748257;0.9413936460471871;0.9711990594448243;0.9766222744494747;1.0;0.655989260489155;0.9790209555992042;0.9771270079323989;0.970224817474463;0.3523515610575033;0.9674803611843228;0.661357211617606;0.9718577774526932;0.9649018498487998;0.9491109964280552;0.9675454038043835;0.9682412084359239;0.9573490629139849;0.9659069453145074;0.9648380507176382;0.9603641224109807;0.9223909236405219;0.9650338304704453;0.9479826538483855;0.00989237123429836;0.5137219136057841;0.3136960356538858;0.2435053707198136;0.27192962928914405;0.19536064925206223;0.21667838678950474;0.34866833202130115;0.803472621823485;0.5349777292735814;0.9385553682946588;0.32576334709598603;0.14866544673583215;0.017091099726376416;0.5508329816490087;0.14888791157307324;0.6139367026453896;0.06861657073339841;0.0;0.010697772833766639;0.006678704672242283;0.006824026050520845;0.005688559172851483;0.007540709665233592;0.4306764829663265;0.3218557898693769;0.12916689700255163;0.02554086202304988;0.006336817274489352;0.29920761471944346;0.6323585696891144;0.287038452950047;0.4022948156150081;0.2648799881154573;0.010011200551174736;0.1986186853128098;0.3875425110066513;0.49948238020852775;0.4887313610649429;0.28141552426792676;0.3804212709517531;0.3980772048490719;0.2852980139115879;0.28228864260199243;0.28164424401026733;0.2650037759811608;0.1874584752030713;0.04482834331346764;0.04534638146221582;0.03239725012754899;0.037823246866284764;0.013431411840611546;0.011211736638950852;0.04818121157227262;0.17254230113825303;0.07572005055808477;0.066155217907531;0.1558583101273453;0.15575750995995283;0.09735657052002714;0.027027142826545388;0.194766066630782;0.09633411941759766;0.08527984657594065;0.015942679869924814;0.11704832077201159;0.00505010024899848;0.06419292383891456;0.07514255570519435;0.08533964151800837;0.0662873991766023;0.05051856761607294;0.10803917691953295;0.19562210579732583;0.056803346319812084;0.18129199555512857;0.07643296385466022;0.06305200720028203;0.06634580476573478;0.03983752840380411;0.6898359089705313;0.6529916055170721;0.6742180372994391;0.6845365647587822;0.7787559466058848;0.7257874648798232;0.6597937907322591;0.7967926200617155;0.7807977100935409;0.7496552121088784;0.17285081148782572;0.1529270071034971;0.1368856677513807;0.5854719810876368;0.06151351529385078;0.04322255230704156;0.19481614243888526;0.5758926282519476;0.009021690435650678;0.012490125132167889;0.012193044176890813;0.007365615238099948;0.00206291870439822;0.018700756089446866;0.002353062883459416;0.09268590251973513;0.05457168231103912;0.2913009917468977;0.0491398879027345;0.9630105201123275;0.0687147271747851;0.07269828525223535;0.0917742269593637;0.730186327502088;0.8139589030463584;0.38516231611370694;0.688700209327455;0.22107746629715255;0.2920734462331347;0.6143015358898606;0.1079975931259374;0.08985275748987775;0.16115757390665306;0.09082596655017072;0.1682083416376207;0.43544695786282783;0.11673817723389453;0.07946254411771411;0.01725637843217204;0.6473636452269149;0.37654142179279354;0.3638329415785394;0.12479910111063564;0.16519189916784996;0.17546762601347454;0.16837788690503028;0.049648249269569435;0.010715369674339873;0.02061095787329442;0.02711546113590406;0.01973410976535631;0.03241144840927151;0.014376737757647456;0.023383595581669487;0.0072492045245883905;0.010625734821015987;0.12696611282695358;0.06675713038207721;0.0063348751755613044;0.006480958779476713;0.12819975947348292;0.017509253526166342;0.020004647447397567;0.3651134515103899;0.8087330430419205;0.7950762107892899;0.027934569118754048;0.36157291934274705;0.8680666897711536;0.029908678330077137;0.01261107279258007;0.02309791630873143;0.013558993841445011;0.6137213323181775;0.650192206589916;0.7247302227744559;0.6995013014659952;0.31972982493447033;0.7040521980080333;0.5628237224099765;0.7247166299622569;0.7076554652953755;0.6810620028875325;0.4930904341979606;0.38004031689024376;0.7430047356266141;0.41405059947470146;0.6141936125811295;0.6809034460613362;0.09687080643504793;0.957669019838672;0.685165414332279;0.20624547529288953;0.007871204655063137;0.015128168521891356;0.03466303776829864;0.4787138123354403;0.24648716135257803;0.23079418937955476;0.0022401203216688304;0.3947089858680435;0.4547779266894864;0.03600189578490211;0.004867815494008129;0.015625010777812098;0.10610989742820011;0.017876965026649132;0.045957371351402765;0.8125145235719518;0.716551067515675;0.48852116283818425;0.6409428171265258;0.4048477634590616;0.5266358429612347;0.1995515842833135;0.20799486950965332;0.1828164524077738;0.32815392624006795;0.4098037956307565;0.11063162856675571;0.24090948119411884;0.19554776399975993;0.22777856576737354;0.2683276001414807;0.24787399191746265;0.2015558738682759;0.1399031909002663;0.254258533222348;0.0428193572794273;0.05758314352721304;0.0003133447067529608;0.01936536005294521;0.010776189457951064;0.04950732497299336;0.028557425916365065;0.17751724517436673;0.17940641688590095;0.018811199283081045;0.7862841588426713;0.032073293081973576;0.07155779282050061;0.028310242067299627;0.514000705518172;0.08059683199120438;0.17810307333920586;0.026310110072123694;0.25737989664380206;0.10955343533151658;0.0020733240664142245;0.10344757514254826;0.03439595536051242;0.3437933763152975;0.4169684698031481;0.4587023871601431;0.14652065823240726;0.055433640138239905;0.2026425712697449;0.41410682828222534;0.03235659986365795;0.04776315297163134;0.38511838134823445;0.030500049185822706;0.05107979726814101;0.030104896101470238;0.1630663315880925;0.003400889282169176;0.25884230293100224;0.025724924375964315;0.6963830486786307;0.05739113319102348;0.043252741205414176;0.004051171271971509;0.35404888777809124;0.0005544950421802769;0.0548588492678165;0.036654684317464145;0.12640709414037563;0.09665628696279727;0.20704086585145723;0.023674883988079074;0.35444609708371577;0.22862979922016702;0.04072882258958642;0.4104807511497014;0.059640616984176414;0.008527598132074727;0.01654119057670713;0.31074592503996007;0.06316456645124194;0.3782993647733961;0.026549078181743176;0.13024475100289892;0.00838059945276497;0.018220905989252602;0.009527060173544953;0.06456771583687007;0.007636634485905143;0.0029820194316905134;0.002851097216045308;0.12703490450459132;0.2942982713500101;0.8505208162166188;0.08980164449757376;0.15392416931590533;0.00417827706593105;0.0494872628674884;0.16569726267431603;0.03452174111077077;0.379005213422514;0.19515906864527863;0.026178872789324327;0.006309498033342967;0.20275373477115796;0.02693254383646177;0.03152925308953222;0.02428024292820811;0.5254629239068926;0.0900340046064914;0.0858823041716832;0.02226176568894334;0.2188118780736591;0.052432051449306384;0.03812481741835866;0.6430089187234407;0.801624259335148;0.8766418965654905;0.3880866011446438;0.1319776022369957;0.05552868106872812;0.06208396071230211;0.0016616664665731833;0.0019784307823811566;0.007180277854976494;0.03936107049745636;0.02699873437123221;0.0031454297967845415;0.0010689824554552915;0.03777332082433284;0.04786530229331397;0.12800958331822324;0.079352181542889;0.0003023845642990724;0.08462915288867286;0.010702518586155198;0.011708898532704452;0.14088787298400263;0.027039895848840274;0.005773616348234745;0.006196402209597978;0.0010362174028906964;0.015349924415305052;0.01808815278211775;0.015226709606074942;0.02374818951993956;0.05720348819240739;0.03381396884670232;0.07012601820720481;0.10773219678564666;0.9048622413390708;0.014784412542675327;0.019440196970940918;0.051041053067592455;0.030792199744781368;0.23589783065998407;0.19713424781409072;0.0923489021150683;0.00944781712749482;0.7545439299084106;0.7879195266169382;0.21502952564780214;0.24727012595505546
+Acenaphthene;0.559511292783136;0.6394245489454524;0.53121663901696;0.6630702930271106;0.6509527392046103;0.655989260489155;1.0;0.6707338812862614;0.6856286067304191;0.6309517249466898;0.1898197201090577;0.6099987004892177;0.9279152825518618;0.6613748238506206;0.6549071587673563;0.736524189563343;0.5518026643233153;0.6060940477823349;0.6480463905877412;0.6210680181937646;0.600524360990996;0.6291177682403477;0.5503900166412526;0.5666285571506295;0.5584215196714677;0.015503823965541615;0.557358744787064;0.15927086940134785;0.1278960428746948;0.13505330165549911;0.10013538795522095;0.10068922783873809;0.20315676321277565;0.8959158553424622;0.29445208498992376;0.5509855703722697;0.2734816844074158;0.07516303918837132;0.00716513541626256;0.27931608646080314;0.07780084888999023;0.3202853865837972;0.07745701191236484;0.0;0.002853131543979848;0.002542360918607596;0.0028453950423826743;0.002635786649126343;0.002761232562621465;0.23327295982929577;0.1694592802369792;0.06709005631202467;0.010027494804372723;0.010361236619674514;0.14043706343628523;0.33062071066187754;0.1482857701021296;0.20863147524698447;0.1379578906279715;0.026726472543024262;0.10342318935854028;0.19782778878285445;0.25620817021983316;0.25110049779345833;0.14510998446999357;0.1971958700620456;0.20642330968682904;0.14864215023021204;0.14755682120473942;0.1468273216402987;0.13878265084889968;0.09757796144067109;0.04569273675924365;0.04019308149524692;0.018935187130901896;0.014405204174207709;0.009943064151970734;0.0012395661142570536;0.0668654461500738;0.1453146045415129;0.17241488824549922;0.16095520847287467;0.12005368120906887;0.10985350184149902;0.08248201234821519;0.05493333027870516;0.13126805136150396;0.09385249943481512;0.0384593943837456;0.0037558137072075744;0.09846481001124655;0.0002936305720411719;0.027835173683467884;0.15386732744123702;0.16606949616947833;0.05010297683709871;0.04094771142068571;0.0910821725686049;0.11921282109385428;0.10419586675152846;0.13241678817488972;0.012489802296294702;0.018286499862002245;0.019612804962150003;0.048733214964760074;0.4699757162533182;0.5695330882512241;0.553661650129043;0.56301142936251;0.5641305468307637;0.500328461784658;0.435084137068815;0.6137836824581734;0.5848246516891142;0.5299141124375241;0.4795997030495204;0.40940859783638056;0.3515598693446884;0.43721148987933306;0.1599699572467584;0.031241293047803584;0.538805217429124;0.4467672993820425;0.011434981290701453;0.004646355537611553;0.0022007433549501992;0.00032078766404537517;0.0;0.013094874561244956;0.0;0.014524896959531146;0.01925284459617565;0.7833005152205287;0.012945632844463593;0.5312795894762549;0.053093627171244294;0.0182104844318071;0.0021257965948930833;0.36072522137551777;0.43352633283086756;0.40730259493456783;0.3455087877251624;0.11886812249315731;0.3169663009603964;0.6950944893003561;0.03381776149278102;0.009444307902358912;0.012960388905483494;0.0430119206469812;0.03813218264857851;0.24582422969037854;0.009708619263484621;0.018090641412785408;0.0018581951072652678;0.47528244372107115;0.17100084794478923;0.2159591091920261;0.10170892072399822;0.11542980102890912;0.42962151242758834;0.15102209234577663;0.02110672707762307;0.00465779082387179;0.015821777299856895;0.017441754367671806;0.0480920641621132;0.007757277230511743;0.008572863278325881;0.014742936098622482;0.009272276114666285;0.009347646736979465;0.3271496433514811;0.05995253673109276;0.005620644467226233;0.011519239197492944;0.07615913094694642;0.020493390323928013;0.007718607092910169;0.21312716570293236;0.8191920734418828;0.8346987215043634;0.024485929485338908;0.17596607466598277;0.5230907202373748;0.1740267503993304;0.003042532188069282;0.010583677288696006;0.0;0.8753032403377632;0.4956614173130122;0.4334113499235269;0.3891772358652721;0.20196788125692197;0.38143684706064895;0.3491976759469477;0.8797078326358285;0.8789232594584598;0.5778296398149534;0.3694358311726334;0.3019216161401163;0.6415732642369822;0.3356567532954044;0.5196998729067321;0.43650736921115896;0.2351107340397669;0.5239708009514871;0.3459162248831425;0.2709302218536722;0.0016214639477629752;0.006795345264509201;0.029803285572276714;0.2937326565903872;0.16698597328486625;0.12054000007508102;0.00278285546565184;0.19046202711376112;0.2676725689813242;0.017502440542105795;0.001885966016983647;0.08034580845831356;0.05411602409816547;0.01852312016270554;0.10801998204823351;0.7495307462089127;0.5976283643193688;0.2532265223361759;0.33335842878447347;0.20519180976424636;0.27044710253805937;0.10379075294439076;0.10818685826636414;0.09512160554242237;0.16848817655721102;0.21254948677645227;0.05664781475389515;0.12533459716772047;0.10169213249773947;0.11955940539869973;0.1399727167304137;0.12909182290172988;0.10668346027369358;0.06480239943292791;0.1345718100835168;0.016031418195647813;0.1008848635158826;0.000998047870218765;0.00014917965049114512;0.0060537014467922715;0.028736437011796765;0.010408391774784835;0.13172609157389623;0.1336493209444873;0.014502933551599324;0.4058636968658636;0.0732826323003603;0.18638823877727925;0.010674258126281455;0.4026763159334606;0.4058175543558512;0.09340919024432108;0.0024838370003641137;0.11163520077436496;0.051808936957563737;0.0009348330054587853;0.05397650501211438;7.43709014316635e-05;0.17187568559363753;0.18809277628722257;0.37220228291071256;0.08714714659265659;0.007421120796656858;0.11664726529740287;0.4983378695823102;0.00413358787475525;0.08960653008211886;0.247505721466877;0.11592201514732065;0.011365076204883183;0.05342793118509858;0.037255253397810335;0.00046630826860255434;0.13358131721237565;0.0025067956492590255;0.4249943639739086;0.01063526298882855;0.005396140461386906;0.008882583938951964;0.19386120214787314;0.0004944609839400483;0.011282545434910578;0.020713458108895685;0.06677452775592752;0.05059227646386923;0.09154340741963482;0.02844413760675172;0.8981882566134244;0.0904916067745223;0.022264385118415754;0.23670393741666415;0.005801329635234699;0.0011141936074214203;0.0012905394603923556;0.22555290649756166;0.03347875865676148;0.8783310872815301;0.07135554988084311;0.06791562089036518;0.04396316053877205;0.02490123357937827;0.003372057680815166;0.08693092309216434;0.0;0.002433362963530793;0.0023585222923579946;0.062694176668185;0.1531760587268894;0.5254222855745521;0.2112473803383124;0.07801455615073778;0.006562034971991116;0.20257275946091635;0.0967022842722293;0.013927339805707675;0.19695482720496543;0.11084041278425998;0.004826507809685265;0.00549932000195556;0.11573518583548816;0.0026950444304710865;0.0226379327416062;0.04175479970780149;0.32466433881748546;0.03959282347069763;0.03495746256502367;0.0015149712144624748;0.13107311878242436;0.04589231350209221;0.014558184042072434;0.3441586068148842;0.42612365133954283;0.5438032245301646;0.20924315890351805;0.09902500764554521;0.038405565671711675;0.0488364082887563;0.0004905355671857262;0.0006768050220484492;0.03520907807693696;0.03665443843215157;0.010696516797840085;0.010960750254699265;0.001496994598074861;0.03149840593528443;0.036842491463066535;0.06403585811634387;0.07340644853408826;0.0002696459982828687;0.11263713021568365;0.0017491393092576282;0.01777244843059151;0.09423194875429977;0.022029654678330957;0.0026988334925838824;0.006652944851754926;0.0005073432256118452;0.04377844760965455;0.007872752377094854;0.026093536076057116;0.024790000282632625;0.10076224497871893;0.021604783206733726;0.08312679440151158;0.10097095828480447;0.592050572849774;0.006654893854376486;0.008184122149247155;0.03416602389290195;0.027436881198352876;0.13094691782532758;0.12269951071980126;0.061903936795432435;0.0;0.4166983222888759;0.4284888439615965;0.09385688119535905;0.09299865866975005
+Fluoranthene;0.9265113221085375;0.9829614426394434;0.9533922447945503;0.9866896967577433;0.9904517149242096;0.9790209555992042;0.6707338812862614;1.0;0.999244339007754;0.9869169493249397;0.40708138676067446;0.9765268191155801;0.6614011291212945;0.9938164329435331;0.9915126568382387;0.9805246858111074;0.9802670011587935;0.9867023041564881;0.982245762535805;0.9854402206669681;0.9802162622598688;0.9796595562690418;0.9273060109910176;0.9789193976216728;0.9601597039677419;0.006697573434417838;0.48157970970180924;0.2974085609430411;0.2308662399966112;0.23454028440054575;0.13777190043119564;0.19750249154750246;0.3440655966845415;0.8154811955686387;0.5312352922505524;0.9186399654499129;0.2945983069680656;0.14241336398365145;0.013178596022198981;0.5261391419557878;0.14920133114488804;0.5841424426097728;0.06830413568169347;0.0;0.006277446556550455;0.002168026859868758;0.002395210874182893;0.0023189290384165616;0.0023919059677299215;0.4375833356087212;0.32773656395168993;0.13192560721206203;0.10682433407922588;0.07919714572047407;0.27470432882228046;0.6050522970828118;0.2878214539070866;0.40530882917530775;0.26739839701221707;0.014284512730163262;0.19978358272325847;0.36399115577969965;0.4803106056902432;0.4704952831921333;0.28124148988647596;0.38198036100496136;0.40101285483943344;0.28850913431900377;0.2864275786133602;0.28481770288808067;0.2688371506721001;0.19041647328922648;0.0;0.015101187047597685;0.0005488894466742347;0.0018802383603928564;0.0028001185456601324;0.0;0.00016074435972212534;0.014525584134420686;0.0;0.00016984192965640625;0.00048807514157790324;0.0008657239987328149;0.03977335208748474;0.022594881594295704;0.018689539110644738;0.0216321098860244;0.003025949753039353;0.0073946003033688685;0.0031661217156565783;0.003563211792241548;0.00878134911776099;0.00025329822899377647;0.00019948051270880898;0.026390039441458263;0.0;0.0012956118684314332;0.0007688765405483649;0.0141163949366345;0.022874488733035516;0.026820378282302642;0.02531622764787074;0.023217959968259642;0.046746094056675964;0.6884702764237721;0.6829290277459904;0.6992350372649601;0.7150219440264497;0.7974023223929823;0.7360298628435504;0.6633355027458572;0.8250681670821396;0.7986731594332223;0.7572635506443822;0.19150176070281005;0.17011248611712412;0.1501494009809657;0.603996193428559;0.06250761983138221;0.04521571305366341;0.2176199759876886;0.6086164433830977;0.012022006016125247;0.0005378633774799974;0.003129132890091671;0.0034380841300912335;0.0;0.00011103274491795809;0.0;0.021557738203540486;0.0008806789713655;0.2757375763992157;0.01825695608812215;0.9597433213941918;0.07028376505819312;0.033123082232361406;0.0048792809443278925;0.6591137097184335;0.7526289222111077;0.3443471397797852;0.6249968279587365;0.0986760806886272;0.2709442561189226;0.5615944510733213;0.047710155276232236;0.01557473042820136;0.024606542964879255;0.0700485325719505;0.07249011014253735;0.45256997928613935;0.01653094861385413;0.027790008678107346;0.006046976626101329;0.6148793084422427;0.3402431959013072;0.3657113949150246;0.1255646191101904;0.16914945244150337;0.2290389282301387;0.1692554565715366;0.014048368828133498;0.0016265705695735974;0.04657917764164208;0.020769942187345222;0.015802658894230253;0.008613538650347473;0.013748928381399813;0.023528178333838558;0.026548245125008373;0.018411523037624566;0.14065772565835896;0.0017907813322736944;0.06132067944392599;0.061493470816808594;0.12370122294021545;0.01804413831405396;0.013034044946122208;0.32646333803490596;0.7886469632431581;0.7777628958793174;0.008902650936317546;0.3273105963026039;0.8523318375622589;0.022817251998310646;0.006373519329341381;0.06083457939990889;0.014522906035644993;0.5974036669657447;0.7359083966805705;0.8025483297393116;0.7059180632211856;0.3087844442917299;0.7135518084447628;0.5640344575143335;0.718038613318543;0.7022799221103517;0.6797177932409982;0.4808527849213837;0.38137818726890504;0.7389748519235732;0.41000918938480646;0.6095588139863194;0.6847749222560645;0.1214414781198453;0.9563355214601749;0.6313648689537628;0.12447606658451695;0.0051616610348828775;0.10272688012993773;0.01747758191255247;0.4839178150886113;0.4785816664218554;0.21646207720334487;0.0010545385889765377;0.3630732158648106;0.45416284659555645;0.03257121971143062;0.0;0.004030802715649022;0.10113900792590622;0.052703710067859816;0.0482900136163192;0.7728204997303613;0.6811283572271386;0.4423569105491887;0.6097409960489747;0.3773468504795051;0.510950969912731;0.20055031214069854;0.20901330055522085;0.18359022808104558;0.32704536669135015;0.4130890326374112;0.11152708593482635;0.24242765213019496;0.1975892284550149;0.23108681875944537;0.27144189256779966;0.24996234634295425;0.2583093754166746;0.06713298505691637;0.04447827591007055;0.04885422812530064;0.06776712647200127;0.0003863850246185077;0.003140786471717207;0.011136934289606496;0.02788523854834393;0.020195391640653003;0.17740607074791073;0.17901856015834508;0.024081737703988224;0.8193370627404952;0.04452512309699952;0.04960471055372808;0.015736847993112067;0.526548924012726;0.0017625436603718335;0.17950283264809838;0.018166761706653944;0.2146102500741215;0.0;0.00020164021333915412;0.1391373032792243;0.004034849310561917;0.3143626778123228;0.3644278247072737;0.4197095326726835;0.14791554550671898;0.014447162166162921;0.02244905406008156;0.2528479727999465;0.004083671508020073;0.042111153047167726;0.3570482706054146;0.02917482486394975;0.0025300706472540847;0.0010343463728663762;0.004632329358349507;0.03945679856364662;0.12152737534385642;0.01747986761425039;0.6895739583920958;0.027437751657947516;0.05059217128982393;0.11695266589740733;0.35775126671669544;0.0;0.02128801402758294;0.046431498556777605;0.11247076285600167;0.09860876474460807;0.017517919023131583;0.004761782853097357;0.35414020405133123;0.17325236612460462;0.11677802703391645;0.018527835120440508;0.01585613876956302;0.0028730971640638244;0.014993065110378866;0.30399624019205806;0.06504984594533186;0.3648235171387153;0.023611045998247548;0.13081302115825413;0.005924262176716701;0.0032592360239947623;0.02055795712466595;0.05694095877046895;0.0;0.045282352654544826;0.04563164140423041;0.12021231986201547;0.2851335159994114;0.8467057651192881;0.05952109987115194;0.14554028271624436;0.013960480414345186;0.012104390750366721;0.13885735963750317;0.0326351788074762;0.3772993201703929;0.17236372697962388;0.01422173083317972;0.002455288134652213;0.0005968115474198619;0.00019491131599168868;0.05616462507883604;0.04326366314522252;0.5304590976051679;0.074313373054072;0.06430984886289395;0.0005723817727505623;0.21865491513437746;0.017583333110350735;0.027185153609017767;0.6605546905772609;0.8059880702725666;0.8724283590748743;0.3824526019892956;0.1315247004460567;0.0015015709434103002;0.0;0.002030031415107934;0.002411792788085263;0.00038403227391476524;0.001983643746731804;0.03766248705271863;0.07122537300752559;0.07740571625082185;0.003426591792692673;0.002531470756791071;0.12271967273345506;0.07570940991663108;0.0006311914600865249;0.048377633853368594;0.012285807549214961;0.003216701040583281;0.18062205202374018;0.011845393700799471;0.002840144684859664;0.0019276463276125032;0.007820816068184638;0.001521091954055132;0.002139313140934293;0.007608890166011939;0.005100453322289029;0.023676055634774925;0.061030645794247815;0.04532247314678242;0.028804408310775045;0.9043968705564063;0.01168315885812073;0.015150084525047642;0.004285802968356834;0.020686351134175412;0.2371348620922145;0.19366827713254292;0.07815581246491682;0.0016224393094899548;0.7502540059796882;0.78365304764254;0.17455800812039682;0.20762043268060604
+Pyrene;0.9242944628157075;0.9794090543595065;0.9486810335141213;0.9830794415771825;0.9872625528553904;0.9771270079323989;0.6856286067304191;0.999244339007754;1.0;0.9847989935901144;0.4063594380556374;0.9743104427825047;0.6758222646858909;0.9919055142200506;0.9893491945226376;0.9808308944032268;0.9754031801703626;0.9827225977729316;0.9788440927592891;0.981666573417782;0.9772954723720854;0.9775551167091705;0.9237007972299678;0.9748972711471383;0.9562151095492138;0.004304744682856514;0.48768939887442775;0.2972280936996143;0.22994788107174072;0.2332782185866119;0.13794897601255093;0.19837276299838555;0.33187794197297893;0.824792079368096;0.5295224031541315;0.9161091317218126;0.2948404879091492;0.14184554544866393;0.013118221255956937;0.5256197346725823;0.1495096254133991;0.582356128712563;0.06927121633228132;0.0;0.005499797828971537;0.0015190450946447128;0.0016072912570256916;0.0016586889612499349;0.0017262628554572316;0.43787838533004764;0.3274646238835781;0.1277833811636027;0.10967668301863139;0.07823694063274611;0.2756345587136793;0.603218885631901;0.28794149689581733;0.40531144993289375;0.267615031373216;0.014933727875486923;0.20005209106997204;0.3632130202375615;0.4794348268826495;0.46968044571901213;0.2811593915603332;0.38192402866340147;0.40101811451302494;0.2887735832202012;0.2864906252223581;0.2850967955485198;0.2693393307168757;0.190978582715062;0.0;0.015015806930441787;0.000521283388203399;0.0018448692241546474;0.0037528442293425003;0.0;0.0;0.014446256221566502;0.0;0.00018485415418100282;0.0004649367403993863;0.0006747401313307459;0.0407147015090415;0.02390187486246061;0.018488478239535963;0.021485094657511094;0.003213276869652551;0.007466235850551738;0.003229414960431794;0.0034931145663151587;0.00914084840103358;0.00025118023531135546;0.00019781252447469567;0.026260620157343206;0.0;0.0008143372582332505;0.0005826754200883019;0.013818329796087322;0.02266391564318756;0.027360661124265266;0.02582035973143349;0.023148056799464353;0.04756767778122899;0.6888082520701999;0.6850822238597996;0.7009693485981509;0.7172649796791724;0.7978087547064564;0.7364957717021473;0.6638905733992413;0.8256252262906525;0.7991287080498934;0.7575570540812034;0.2012994704120228;0.17806758498085767;0.1579679400462995;0.6046831423139586;0.06579939338563066;0.045363539282778934;0.2288849140122484;0.6096053410781256;0.012401932059545342;0.00051568099576656;0.003361596504217137;0.00368978636288869;0.0;0.00012318614321986106;0.0;0.022262238687884833;0.0007673010290141221;0.2936907763459283;0.018072824068957858;0.9544731935152938;0.07338652115762988;0.03312983219116032;0.005083456187401506;0.6562009346290285;0.7495614622700215;0.3494407041293602;0.6235044117381211;0.09977534599763863;0.27481074424421864;0.5710368588794402;0.04749158195724422;0.015384055298390474;0.024493813636426744;0.06970902423850457;0.07207425000443415;0.44765748608015693;0.016361459215164312;0.02623681045202389;0.003577258091238829;0.6162420900811575;0.3369687083187887;0.36449849864241884;0.12600638240388834;0.1719566348128597;0.23603141978934816;0.1709235974055088;0.015135726896734624;0.0014846488995914333;0.056101229309940555;0.020340786316259372;0.016764454529653455;0.009197195398851835;0.014117456656586775;0.02410396607726796;0.025706276968916062;0.01867779104820783;0.14411906346569467;0.00188423286470955;0.06048668073371457;0.060507884463404035;0.12151114422623578;0.02027886773499574;0.010929446757194417;0.3254238631871427;0.7972045085729286;0.7873094313414829;0.007479150311595983;0.32578933993486925;0.8504560418800136;0.025244671427725886;0.006728600180831738;0.06603762930745623;0.01611255115954715;0.6115745180305312;0.7388935683139762;0.8034639891274532;0.7022641923154083;0.30679017660163466;0.7080315267811287;0.5603316458113696;0.7296811524705129;0.7141069343946035;0.6819257957824877;0.48127650395314686;0.3810680741109076;0.7418402085290259;0.41042687269072026;0.611225493870007;0.6841307725880875;0.12978796077096327;0.9521368315255265;0.628614198866282;0.12413425370216653;0.0052597890661901184;0.10158704824185678;0.017968614190818643;0.48251310837599865;0.4806046605964025;0.2159669589836873;0.001200026954101282;0.3616728597930957;0.45171300867039843;0.03220136384619506;0.0;0.005152518769013992;0.09991777747982812;0.05264306457654092;0.05045307526361499;0.7699914767719821;0.6784554794352569;0.4405692067158407;0.6078786626975069;0.3765193523743478;0.510150072465096;0.2010226105562128;0.20932690786539385;0.18392244465668905;0.3270811499902932;0.41308485641763687;0.11177839840523396;0.24263664755340703;0.19827041555061464;0.23186263041048574;0.27226014476155386;0.25020968487422546;0.26155105338755347;0.0676768916919673;0.04519120106077691;0.049114008915177365;0.06924726624011732;0.00032460350270308036;0.002545203343540602;0.010694186145080121;0.026639072641148932;0.01762514664338862;0.1760848259845599;0.17768027141291357;0.019668026187336336;0.8142245088651039;0.03916590088230963;0.05432013180689383;0.015644542970847365;0.5244775607116338;0.0021063565597285497;0.17822101646779961;0.018044872698078026;0.21413781311721342;0.0;0.0;0.151902490234;0.0;0.3124157078640868;0.3633995578760434;0.41725356041196926;0.14760306544412236;0.014421739201187972;0.02214301453728146;0.25573703549460014;0.0036183809538808303;0.042579105720408676;0.3549929920228789;0.03209006860457979;0.0014585818028352777;0.0008785309393817693;0.0043964036972619115;0.0329758918052132;0.11752712934386811;0.01735953648156463;0.687835782013853;0.02789632521077494;0.04675437292017802;0.12422137022573279;0.3572380365287803;0.0;0.021086445730854223;0.05083307142273346;0.111355073793218;0.0978436035337284;0.017399190419976153;0.005544698834859551;0.3740229632747306;0.1723870061890143;0.11588593181986066;0.017605187944996825;0.014520383590877962;0.0031611093785701995;0.0001738830954753295;0.30368634378439835;0.0648308688606749;0.3843149166011264;0.02533100011765348;0.13034569135949267;0.006247517069689362;0.0036227485189763335;0.01680105615206322;0.05704210580972068;0.0;0.06168602698038384;0.062060424971830085;0.11960303463409912;0.2839506890385483;0.84374824012649;0.05917617758146894;0.14449968693585982;0.012898053940131163;0.011947272573458498;0.13815332243425266;0.033368714192638226;0.37464479385131483;0.17186256504445202;0.01563582945475295;0.0025082614848893577;0.00020935007925776975;0.00018498443525383532;0.05873130453520331;0.04591094009148075;0.5294930558061385;0.07499669519012198;0.06501481234133336;0.00033615519215413487;0.21778206660581242;0.01730699860440059;0.027090177444566113;0.6536053171476524;0.8000776604980478;0.8706615079011192;0.3808932627296719;0.1313341980577538;0.0003785219186246733;0.0;0.0015878689968167777;0.0017235107482813938;0.00016938431226660864;0.0021896708432031647;0.039623377638353725;0.07078024585206023;0.07711588303272272;0.003569265864975865;0.0023332688395679983;0.1192976991920516;0.07438539853782704;0.0008640258478316032;0.049558059982755885;0.012386420013150604;0.0030744969715378605;0.1784933927750591;0.010580637663665992;0.003101182535039251;0.0015984214578405374;0.006388104789726339;0.001552563102985551;0.0024120294289225793;0.008016852750604677;0.0054330924400195855;0.023647470077613936;0.05780501665932459;0.03901809263891968;0.02888028124495984;0.90236101884216;0.01162963510006338;0.01508067782874963;0.003990701513983101;0.0202495686734978;0.23807902309116505;0.19251820428826452;0.07785228672041093;0.0011325266086177558;0.7467925190230479;0.777773741942568;0.1742915586250145;0.20696502403217343
+para-Terphenyl;0.9498757636655144;0.9732072955188806;0.9729510339502189;0.9821373577963914;0.9852427262556664;0.970224817474463;0.6309517249466898;0.9869169493249397;0.9847989935901144;1.0;0.4358184210873464;0.9817091992523782;0.6450782692749301;0.9829940029505522;0.9820385456688249;0.9628311284289852;0.9844424333378559;0.9845144586121162;0.972309723936859;0.9813778295897989;0.9808350086077445;0.9748111292433398;0.945410459495474;0.9833854116876468;0.9645898378210974;0.005225646114421875;0.4918824133302527;0.32999513414133486;0.2953866924496446;0.25411431903219484;0.18843300781297403;0.20279753979642723;0.36206250408101043;0.8058122195231622;0.5424275458149588;0.9279812193518072;0.32587380213636613;0.2065121323493136;0.013770260817910515;0.5360203241948434;0.15423253639662884;0.5924979311904005;0.07248755544335443;0.0;0.00459386958602297;0.000940756061633015;0.00124414345000727;0.000978188746489227;0.0009828705045467714;0.4456258331276332;0.333282318482265;0.1290877797059501;0.015547318655360527;0.01134270677392885;0.28308946577626926;0.6129977861366398;0.29412606129037155;0.41306242487812384;0.2730198683109978;0.025200448778604518;0.20513641450855813;0.3696643276600059;0.4877103751563921;0.4773171972412474;0.28745275592045016;0.3887004422661363;0.4086655045278798;0.2941421074006742;0.29197811206068974;0.29038249943936956;0.27378553314258847;0.19535414997598197;0.0031458578466426537;0.01910941872393282;0.017372316693199618;0.017660800078649674;0.00498722584787145;0.0;0.0038753871317682926;0.029280626993873758;0.011296980981484205;0.008491690645657758;0.011115922491307538;0.011515434752584382;0.030378140595079685;0.011649370186901164;0.03734009625466064;0.04160393649304889;0.017326825612550667;0.007577855577808738;0.008465486053031995;0.0007848676946163957;0.010352578234821377;0.007457395536898246;0.008580622778518;0.02756852743912919;0.0018300505732059683;0.010777817772452594;0.015885004387701556;0.01961175128953583;0.03938632267734503;0.015805046464316793;0.022294990928680095;0.04528833500777713;0.04285552790311524;0.6703931447482147;0.6577323889776566;0.6760250241279907;0.6905206082348684;0.7711162976749862;0.7172718335799266;0.6499080574482115;0.7892419864705786;0.767743597004928;0.7348077602413712;0.19142467690723858;0.170296941184408;0.15617834668591915;0.5835034672950435;0.06656655883790477;0.04224437077543953;0.22126495928039513;0.5916809402156824;0.008248837200308666;0.0006832452916065428;0.0010333054164010879;0.0009032956263359893;0.0005271069056058874;0.010929122124842683;0.0;0.016520463699272406;0.032505791706335496;0.2569009021392015;0.048301141846989123;0.9608072190977778;0.05780986586288185;0.08389669501387453;0.024296612436296678;0.6856260285308203;0.7751884103423162;0.3540847248959386;0.6495845482710388;0.11476379072230534;0.2814513156695292;0.5684643820084551;0.04959369577834161;0.021292763024076802;0.02473783239985171;0.07285805131121437;0.11053445946783402;0.487959587989267;0.03184377798833465;0.028752117728250877;0.015183331624544232;0.6228427778707375;0.3796534251653299;0.44584388863129626;0.2529597425559766;0.21486716233138306;0.16113138239668945;0.23125363639498842;0.01239015122984264;0.0017364152742073088;0.029674412427260193;0.02018410311915302;0.014870149239539903;0.006300819590355389;0.011611263918803134;0.020445900153809104;0.03026111247625133;0.009648231454337195;0.13428201795433234;0.09364519425220594;0.006193521339366032;0.011356990229335916;0.19062602315374702;0.0025592464673257747;0.005337357427199722;0.33544477802946054;0.7782924117219913;0.7634647193801358;0.0034934138446316705;0.34084817756156277;0.8712184454468739;0.013871351771643715;0.011265344913471451;0.01509270978248674;0.0009901841438000765;0.6082350852145737;0.6872740801942303;0.7600529305864703;0.7641941958763843;0.3461640423157215;0.7417739304266031;0.5898662391302952;0.7108622251516046;0.6952487180132086;0.7390918184270425;0.5427845513996877;0.45740398322715053;0.7920052383075789;0.4866187147544021;0.6767814971429835;0.7380269905976102;0.10975082783019921;0.9702465939270871;0.6770347814578511;0.1589399049271545;0.008262952758970548;0.024198602478545054;0.03079491307144872;0.48866182171738687;0.32016370644943276;0.22537717748635705;0.00895255325792949;0.36984130838044255;0.4535451231916504;0.047704240180292436;0.0;0.006552277012873634;0.15780808806190352;0.017915632168143267;0.048917141941544326;0.8072273141564624;0.7231371745234119;0.4479177121719345;0.6176272870856901;0.3826957569618357;0.5184870644369886;0.20638811647598704;0.21459257534351997;0.1893532648449878;0.33465404487921413;0.42131622351954234;0.11742264443645588;0.24866082754218855;0.21244680267699564;0.2510070246047075;0.2858892191612626;0.255872919078933;0.21560523856226627;0.0616410047018876;0.051385017291483655;0.026856734217137544;0.06765622808902079;0.01527742008761935;0.006554645410220769;0.01122597184704724;0.027109587871372867;0.009052844406969367;0.18437486621262045;0.18599585987163986;0.001491023835773602;0.7988182869624993;0.02772020693359293;0.04423222717481859;0.017269543610817183;0.5601039801984776;0.011968364178261531;0.2406933542720662;0.0033361663106777004;0.21631355729626572;0.006039477794982919;0.0;0.10652897349047782;0.021096920171797817;0.31637355799563455;0.36698102264763677;0.4301141374339525;0.14892748336372474;0.014527244624772763;0.040003774955698033;0.2655907113576226;0.0018161592108433657;0.04128463226413147;0.3689005169064439;0.03814462326045073;0.002138930007606884;0.039474780625031555;0.0048086224938698316;0.021961304816183153;0.05992440752889457;0.0032241320448835073;0.7327531206113574;0.04065309103015729;0.01668910667575028;0.0087432933276175;0.3638270515817424;0.0015282527156475567;0.04357243949924312;0.031044881764396483;0.11531295673938076;0.09817357584864393;0.03014167512343909;0.009528200095339603;0.31664688232335314;0.1835711351207206;0.032441075606523616;0.03771059844142974;0.02001159243616743;0.009973498994254749;0.011693599913439703;0.3370732169577202;0.0611195125739305;0.3374580285709883;0.023715331503729193;0.13187596418909794;0.005974440228976624;0.00343360144756733;0.030193199556822925;0.0864710962859887;0.0020851035979046768;0.0010888862449922724;0.004704091805731628;0.12267030176544219;0.32250516356929787;0.8559237132076518;0.09906775859346553;0.14845249882615102;0.02934740784150951;0.020890183227001553;0.1454824342075702;0.029776983139679143;0.37715574987564204;0.1867608849688147;0.012216932867195836;0.003148012122932308;0.015414784891309386;0.00025460049001889163;0.09433212375327966;0.013591617978261333;0.5586977560217242;0.08314998437484755;0.07753952697404771;0.0029016988027186553;0.2195511148714834;0.028292630151293366;0.03004354624709299;0.6591993183054305;0.836284815705617;0.891131747887895;0.40159838644313955;0.18333592422831474;0.005891922111749588;0.00611296193376582;0.0031250898130953226;0.0035672932566720005;0.020075020536664254;0.009424552288766513;0.00554168352358005;0.029228460323804675;0.006654953614043858;0.0205215265502208;0.007324564605184412;0.1254349652559454;0.0825349318432595;0.0;0.05579812353777394;0.008258925989418152;0.04574381761665309;0.15646634520655472;0.0030226169251229133;0.0038229309952007577;0.0015657400234336497;0.010548548514471663;0.004497130980251788;0.002030227937842685;0.011756582198465131;0.010729627080177695;0.0333529060758563;0.00744766110051788;0.04922661429189572;0.03887470477624398;0.9212177164128015;0.027238619606236584;0.03132998694377152;0.02467774043772225;0.05716462373097099;0.24980396508424288;0.21511809278908472;0.1454147978291058;0.0030943373553738197;0.7670500921367084;0.7905801522486887;0.2253953560026549;0.21638179789304654
+Retene;0.3511680562563606;0.34816634942897384;0.3853528226159509;0.3549771314906981;0.35842515246258616;0.3523515610575033;0.1898197201090577;0.40708138676067446;0.4063594380556374;0.4358184210873464;1.0;0.39415940980279596;0.254546394022811;0.3479127343874902;0.3502226950247815;0.3406562196043502;0.3632092646699164;0.3560646722959728;0.3474986800673636;0.35513434605540206;0.35401799293812236;0.3512510727353101;0.3488235126647634;0.3645921262049421;0.3729818744243681;0.004793956663665233;0.1915354837241754;0.5837389579452547;0.8023446220318944;0.15756291156104552;0.4412523869362074;0.07294814478732077;0.36854422362946915;0.3883292727675121;0.22153118634578473;0.3693865928630215;0.31606890129155973;0.7621536749798938;0.022105884876679468;0.19958019732903406;0.12045543176813389;0.2313691970607714;0.065607671599957;0.0;0.0019791787831821644;0.00514541294991745;0.00558284669751493;0.005331100192605185;0.00578576258806701;0.17754330333095864;0.15767345948427228;0.0553043282048699;0.033898554613350375;0.028056209437293943;0.10920317630354638;0.2330817409986578;0.13775948911278837;0.1539378327638139;0.12659082951215148;0.017932684047188598;0.11770206102026994;0.16685357508702836;0.18823391626564148;0.18529917120880732;0.1507704019417294;0.14253302752990826;0.15184174658089383;0.11793368555093828;0.12014726741013397;0.11424441122829052;0.10103840096704494;0.08272750622061414;0.0024463609440952714;0.008193235633075285;0.003682310340197296;0.005017816132821014;0.014542088593604565;0.01243642434655117;0.016068431057801206;0.04157662101248834;0.006858419094929022;0.005262941364829514;0.00447160692628268;0.004152761329653383;0.013065336340197712;0.002058221519224756;0.011926076193489855;0.012414098762217274;0.0198574017454044;0.03264665503736851;0.002766134595440198;0.01342923990358676;0.026635047846274885;0.016490395994466688;0.015566549871051764;0.013508218454295088;0.0033549673749871645;0.006821502163290885;0.015447441841118348;0.020613772415649118;0.028897318679413374;0.014538926948185083;0.01563382432275897;0.02673421001122637;0.02716419342140826;0.23550178229728175;0.20358629641506934;0.21608061924701644;0.22348168714970545;0.26028054817481355;0.24711196542740027;0.23166181507926029;0.2608435490708807;0.2565122502892084;0.24969197232812435;0.0463628564878341;0.041244736096963996;0.13009262407516686;0.1966662040062292;0.03599191628305947;0.015773411542796344;0.0533133453705645;0.19040729687406224;0.05466448890873606;0.0019599638104830833;0.0016521398492997331;0.0023975436547673903;0.010797432740256727;0.010707809356471155;0.00615512493849842;0.024757267580521776;0.03715886322555736;0.1059391528544467;0.3810844978212693;0.36067065000774495;0.016516871767522347;0.5391398165166887;0.012472288039414598;0.5668485072666447;0.5153887831834373;0.2770761937444345;0.5636083504843654;0.19816677027715202;0.2748919563237827;0.4186013047354404;0.06100575895884929;0.12192075917393644;0.017904800697529654;0.11117094020594336;0.45474654839794226;0.17919644550289118;0.30518479673930643;0.08505366477309853;0.16659567432722833;0.44153835685667847;0.6516713586523991;0.7640620147027961;0.771287139859645;0.7518779394880539;0.09773938967675244;0.7661142025479647;0.03475606308802707;0.005224371421776801;0.012103056102941635;0.024914260711642027;0.011258415592474449;0.017573041232848318;0.043273283724165834;0.04584911447271189;0.08259367331574746;0.025276184865741406;0.03347950797980646;0.002181218316749466;0.022325803238501106;0.020214156060051742;0.7839717416295157;0.00047842348551618147;0.042939317047613695;0.20301135447757127;0.2987481507996977;0.2725647940136452;0.0013650274795875717;0.15886696503359676;0.4653206472714559;0.007193019549031595;0.24407204278812528;0.0408495947172135;0.0;0.1964525396232999;0.3992340662438428;0.42288942851578953;0.39067617693589857;0.254764071417359;0.2779967065933574;0.24461610652951943;0.2380909994523231;0.23083166893266335;0.7494800094726809;0.7141389534629109;0.8152976102861941;0.6837957480270427;0.8171557995825977;0.7702371391173815;0.6960808379841061;0.033657761346456774;0.4084086581328198;0.6786873981180179;0.09088086242395298;0.009136701686002587;0.09335417474581334;0.051286358305512904;0.20184728998480667;0.7988311877029382;0.24349346943378578;0.018101476941929345;0.13990538082017304;0.22338900315777407;0.11260469686180438;0.000590254123848055;0.011634679525590627;0.6703623410407687;0.08723516620031484;0.02688433843579878;0.32871558558632064;0.2726978151515859;0.18990221726954107;0.23445850442186703;0.17574799781896502;0.19338635581106392;0.13149108104144133;0.11873960675577426;0.12804884032784428;0.1621625484862638;0.1569014163569474;0.10682977576791235;0.1549249520687848;0.13391334294455243;0.23447503237615527;0.15118696887004265;0.1423233372167475;0.09846354619858752;0.057034238769167134;0.033726998029414305;0.02687543599357258;0.1148092185749314;0.01080127578763164;0.04228091388126885;0.015951939721384326;0.09389240192894227;0.005431171815976524;0.0825959713500963;0.08305391398078965;0.00892208649007018;0.4043588054484981;0.06819931429133884;0.02602446067796506;0.01905211367987883;0.22057816518139917;0.0126560371542111;0.7969019695584991;0.005396626753136856;0.09517067258072691;0.05623129113072999;0.0029046877319478187;0.05780104239962463;0.007489134633965328;0.1245749098347594;0.1410243056619048;0.19163132710594613;0.06093131604485631;0.006617961016869442;0.014051867948115651;0.11509220019197879;0.01226645662551479;0.055804664135936516;0.16270186849755527;0.06471208365176269;0.0169460157834378;0.025240432401925004;0.07282136837179855;0.0207968181840734;0.31586842471137827;0.00519253507543784;0.6838795697822695;0.2426238739506781;0.09131239041841976;0.013161312641791012;0.18666529094593806;0.00711023111125122;0.012312546830961285;0.014400671753590156;0.05104753138008465;0.04391519774902123;0.031111511053688493;0.003010442161336737;0.10661939791315343;0.07235126548396324;0.1582224447908875;0.06305053869459896;0.04876397481549127;0.16724730936148424;0.026686554210736534;0.5409035847914417;0.02393791735922133;0.10468492723227307;0.014674954362138011;0.05477457682458942;0.0039050235857987074;0.021075784310412415;0.03999829765950028;0.28901602590168973;0.013633856955135347;0.003048880322978849;0.0033929678890089934;0.06804367378521017;0.49226731282908537;0.3207646314095526;0.5487242874247077;0.12724397485623856;0.03501707937308536;0.009718977908047608;0.125078806660029;0.041635893407233344;0.16055703864741655;0.07577840381041678;0.07406186924952955;0.01740052024263069;0.002796394312694132;0.02871577746409084;0.7379644267679208;0.16103455774616673;0.5023077995964172;0.06706855491686871;0.04689164433666012;0.006697356183768457;0.13417408956634974;0.030299449410134145;0.015214506936048318;0.2609859084176821;0.3071510055014347;0.46806351377265354;0.17164585215011394;0.5116040509578422;0.0008884337903369603;0.0008188272934468055;0.037389094189245804;0.03232457427097823;0.0006855701294813237;0.0061350545798996995;0.02246684722140372;0.026925384348412303;0.01928626007552519;0.11854157429622325;0.04023896315101476;0.2934343221002891;0.27717941835209026;0.0010953869075629751;0.11374084293086416;0.2769760722557465;0.013411398491428214;0.2023966100280043;0.14709026837429423;0.07070678816764839;0.01800424728753471;0.09112541994410871;0.06713491629829174;0.017747788854342895;0.0028270607167509166;0.005877670337066505;0.06399726746833495;0.060239592337556346;0.22862521721988985;0.0655899939909859;0.35405075060481467;0.004567841453362949;0.006209791661127627;0.03481293105524779;0.012724844856733447;0.10215695697951352;0.10118302286341452;0.7909992858917406;0.015823736415895358;0.30533923965553705;0.3045870108626561;0.26650128576448356;0.18033845022504447
+Benzo[b]naphtho[2,1-d]thiophene;0.9221415224231364;0.9633494645164316;0.9494328677201915;0.9640607127718803;0.9698716427806519;0.9674803611843228;0.6099987004892177;0.9765268191155801;0.9743104427825047;0.9817091992523782;0.39415940980279596;1.0;0.6290184037509633;0.97231689356026;0.972199258854974;0.9505335322737269;0.9756922603167365;0.973782712126858;0.9613414998235004;0.9702745377497297;0.9702802099723052;0.9663449740445439;0.924692155402464;0.9733590972377653;0.9566148991929289;0.004645140805042971;0.4656394686352928;0.3023197425416636;0.2365434817926412;0.23893723179537793;0.14126800769643497;0.22660771787053294;0.34421733500266266;0.8069031852449033;0.5673064751822672;0.9259521897504378;0.29930254521751;0.15080110474253824;0.04459347688018607;0.5613780354666991;0.17894390900712237;0.6309880263524706;0.08799907245321162;0.0;0.0005436511896138458;0.00034433391756509405;0.00024747882266239586;0.00024813452699294555;0.0003684079797831045;0.4752279739561303;0.36365390132836556;0.1432233654868099;0.1303077385738826;0.13002743319585094;0.3121198293184263;0.6492499166783938;0.32457951026647414;0.4421140141705876;0.3001224517710676;0.024500604441470737;0.22924839030722977;0.40065165721193585;0.5165079499006411;0.5075195783192072;0.31819332506096754;0.41615256374240495;0.43666898528962;0.3206739673782881;0.3186515361055342;0.3162864198391261;0.3002949227475043;0.21769175698478577;0.0017074320067664067;0.01676526990211415;0.0028274856691845;0.0032257947589937447;0.014447988432038542;0.011773880833716015;0.00033561713645455476;0.016560689313202568;0.0032893230038431;0.0011736408431091278;0.0014373746707806011;0.00143881593586984;0.022508758937347828;0.00256742745034149;0.020520729220007056;0.024329522233984813;0.0072855386312938065;0.0057774957780990475;0.0009096624910272043;0.0006898180289269347;0.03422618160953889;0.004324790712509655;0.005861940051738684;0.03021880567330965;0.002811881526671141;0.007671431242907638;0.014249616726195924;0.023860354701686477;0.03470093305707262;0.01356652778121253;0.015400655561442825;0.03767973886617272;0.031598140914125245;0.6944305308950157;0.6536486110567241;0.6796326163847792;0.6928730163279712;0.7929834631211933;0.7420240173653702;0.6758009070605767;0.8079075921806078;0.783632163406557;0.7545454855392577;0.156237646766212;0.13850883035419873;0.12199897105830333;0.5929737421512734;0.058931007681022475;0.058555280034003614;0.17945776971715563;0.5962067941661419;0.0065261595165559865;0.0003932769845150397;0.008286284648147357;0.008223693100162743;0.022905574958894413;0.02289103881378156;0.01503847910617145;0.0494474997048316;0.03178748896794942;0.23497184036907848;0.03973948407061033;0.9635373051255435;0.023065479300727085;0.11211875090221811;0.02481712390766478;0.6971086104459833;0.7806624049610842;0.3500087769606139;0.6540745568685646;0.11286463026660422;0.265537967277907;0.5795394684594078;0.07294301098935232;0.08196645188665577;0.03537562570905009;0.0914150835738091;0.09315253885010609;0.43396977707618795;0.06317829953865127;0.04138021601231626;0.005053015378888968;0.6285991587953862;0.35026816244713427;0.3736136369800594;0.13393180337321015;0.1686602795125243;0.19680054899574145;0.19109837389550408;0.0235745188766681;0.0006541186110420584;0.03207228865418883;0.029121294596893738;0.016798209303807952;0.010731276088571263;0.02857329205241464;0.03788939688302962;0.01633852744195354;0.02198636388636733;0.12398630196890191;0.0020092853089388515;0.13353728978570664;0.13456592458443528;0.14117598416042704;0.0021610773437139063;0.0007637444088426947;0.34216189593360663;0.7675595341303566;0.7541266140954039;0.007879410756407716;0.3455381074279674;0.8559821785889056;0.0011264052351993314;0.07672753013068984;0.020202228383878515;0.0;0.5799004765680277;0.6955441508991256;0.7669096668214885;0.7203134966183831;0.3483660666557468;0.7027217711189195;0.5735864612316272;0.686289029251973;0.6696552737285881;0.6605868593805789;0.4825071895255675;0.3702929463299329;0.7180358650532417;0.4008669532952019;0.5899984078169508;0.6859014010814617;0.10399568098007517;0.9608283307592413;0.657400857445539;0.11995880701214996;0.002215826850927253;0.06842334053573784;0.023924003766349466;0.5056286244050777;0.3044813899377549;0.22794194356072855;0.008007811743455474;0.38561619123545043;0.4615195673402996;0.04270774801616603;0.0011621219174249241;0.019366026746432244;0.1079330528738399;0.06161463160465126;0.041229355647762936;0.7864478458737367;0.7186154553802859;0.4907071851391764;0.6526500311564991;0.41533130459596873;0.5466794076721215;0.23176140977873594;0.23946538225443798;0.21496968362607552;0.36539843416473233;0.4485068914345306;0.13479012494353793;0.2791809111505492;0.21949185962831158;0.2642473782785935;0.29775061282679877;0.28494650087989326;0.21637989292017265;0.07125789963415659;0.0415217068881673;0.02478684832567769;0.08782920959061445;0.008825754015099167;0.01792741184860775;0.01521271856228176;0.02641898165033159;0.003155631443179911;0.17754474904312792;0.17943456064765004;0.0031985380983891787;0.8039715991968729;0.023029592449830986;0.04136043689433934;0.03612019704204574;0.5011320539552564;0.009292534541324447;0.17661746379414806;0.021190700813619793;0.21505051776460057;0.0;0.004687025163462223;0.1095610548885135;0.005907465778992996;0.33240412582543805;0.38197565895202473;0.4114831246514209;0.1618948752084945;0.014199100761364365;0.034583531624504255;0.23653271395375874;0.022485316776710583;0.04361247049815218;0.3668009568776288;0.026113501458847218;0.001275290782240971;0.0016147472230119459;0.0490282135931587;0.026550004894118476;0.12369687352672652;0.021274951984780244;0.698293973212225;0.02369878936113739;0.09855408362143804;0.010082744425581908;0.3723417532578427;0.009385167041853805;0.044989122178990995;0.04293042917858466;0.11907325087024763;0.0970514838110916;0.02565834289911629;0.027539478080989017;0.30154407464813326;0.17813398101756048;0.15080075806152565;0.018022201365496142;0.03673066422509361;0.07293407939545912;0.0031530335453573023;0.30105251239431585;0.06149106848758952;0.32447035539063673;0.02042089010219857;0.15206222686664214;0.002575864973521859;0.02990229506623532;0.05530960952431049;0.053406110326647625;0.005787968366996682;0.0;0.0;0.13284152869151877;0.29614808845750085;0.8482091194367483;0.06686499268008458;0.14691447700840776;0.0028302887965156887;0.011361368917683825;0.14002059327348162;0.03909824536890668;0.3757867866064901;0.18123380990375745;0.011287535262727416;0.002975676807653268;0.0001864437980376923;0.003120145584064318;0.045969290417804176;0.011110318803978423;0.5294336778256161;0.07063540678964979;0.061987201904976565;0.0012893818471645473;0.21924120443539336;0.03649217828110656;0.032950623418259564;0.6464976386519447;0.8067774956381861;0.8739470830619646;0.41048730869530536;0.15753901718788704;0.0002458410102562553;0.00026383180209016795;0.0007217942872539485;0.0335176147820416;9.013121236959941e-05;0.00019061853865649239;0.005893958224396686;0.007239774545943428;0.017935906718501555;0.28849753665160766;0.002713542536236594;0.147583836074173;0.0802233474283922;0.0006371623781566007;0.19178228414081497;0.006752444415176021;0.03238446345970113;0.22417369376872348;0.07142830913887387;0.02882442390942448;0.005180335517459731;0.05231021193576452;0.01675564362061431;0.002065239945684383;0.003415855512190926;0.00392406080669136;0.046985300544733245;0.03129307036996778;0.10373489483660372;0.02957590499218161;0.8968952501132745;0.011971392698434771;0.017300825755159274;0.00914291537505542;0.031199267576879623;0.2285662798895788;0.1943926685455671;0.08224028332274344;0.02953757987467966;0.7535422360500714;0.7788219267325113;0.17849242588723108;0.19005061361481054
+2,3-Benzofluorene;0.6008907030196448;0.6014326670986124;0.5595174913902017;0.6479751792533485;0.63791820925954;0.661357211617606;0.9279152825518618;0.6614011291212945;0.6758222646858909;0.6450782692749301;0.254546394022811;0.6290184037509633;1.0;0.6470516839772076;0.6212115159633201;0.6828238171495475;0.5664148244543734;0.5961476527546561;0.6078614554697941;0.603290197640133;0.6069979585236949;0.6163122029704605;0.5840952872448206;0.5839416138263323;0.5529906353106748;0.030155145030447448;0.5734687829115204;0.1728895859140019;0.13619388660194864;0.13981278278607154;0.09465375854634246;0.11944024178849665;0.20153942126485283;0.9422521707953103;0.3215545959846958;0.6130736957678175;0.1875854527876317;0.08375985190717082;0.007743531402488882;0.31046042558114245;0.0914277925840398;0.35133816918964894;0.04474089180151234;0.00018324178389966548;0.0005532236060773928;0.0017069988893986647;0.001660765120228061;0.001468401141028846;0.001977879916261934;0.274251507703153;0.1969417002063459;0.07634721461369996;0.00606504034013514;0.008540322671846658;0.16259535713256662;0.36063692812867465;0.17077299225460982;0.23942856078097355;0.15904632601335256;0.008685974081245388;0.12109317910368464;0.21688998883279073;0.28493833981684646;0.27704847019884005;0.1669941074807942;0.22560001777288188;0.23686669034029642;0.17110498040406918;0.1695594968521867;0.16888251839006727;0.15920046996179496;0.11401159417205904;0.002124323336805254;0.011384864040972744;0.0013281592144652424;0.0010145518001391668;0.0025708068061170994;0.003503403919552053;0.0;0.008831447831181803;0.001205925900518705;0.0012777028023347311;0.0019503377797472183;0.0016957373061593838;0.014247454411893441;0.0039682481740312145;0.01058328830403439;0.012266090644350348;0.016001451998777293;0.006388719434916559;0.00011119403183343413;0.00041330154266007533;0.041658630849270996;0.0015309176831483893;0.002057553153599617;0.01903717799344123;0.0038804534103689626;0.00962520553428355;0.004452553660073288;0.01225036686891804;0.03409093788987817;0.029855700957895647;0.04375667629971658;0.016876096156656674;0.06635094061119477;0.40666195013301604;0.40994002531952833;0.4182522376303013;0.42280334011470905;0.4705229401665606;0.434347561224685;0.3902721876747088;0.48178995909300537;0.47363673899677683;0.44983875902825643;0.5328907071570526;0.45612558558664984;0.39105252523581724;0.3473042493376911;0.17474946751047965;0.026510808495707482;0.6039068796976274;0.34178023809978336;0.008072717951314924;0.0003978754142912035;0.0003241955488792783;0.0003560485089510526;0.015987204800524162;0.015741845192267696;0.01057071411623724;0.020782241172929376;0.13480001673722972;0.8278949379967967;0.022374463076812956;0.5792492262285617;0.0003225741801347123;0.05492063318386814;0.0016083289441445878;0.40906455364060157;0.4789780859488054;0.4638822441302306;0.39021353023083044;0.1317656781480205;0.37261287393457027;0.7538495334960958;0.03197386234468298;0.008356861595098864;0.01445840951754439;0.05599636932371214;0.05566860670927446;0.27096460524644145;0.015835013310676407;0.014175837715811877;0.0054839720159829825;0.5292579461721925;0.2017156438693044;0.21103030694252148;0.07857712912500728;0.09652186930751283;0.7625705519338856;0.15934748500656662;0.004802694904766379;0.0010412550879745817;0.010515075210320258;0.010549969524121048;0.051822969682259655;0.006593943306203428;0.006744633707547208;0.01157786181589956;0.013273576472599736;0.005415575245986016;0.35615222456113493;0.003473175731870229;0.00739660035925358;0.00705805140197375;0.08143639452148901;0.01732717850561063;0.0;0.2247303367583513;0.8752699812055607;0.895525217045121;0.01519608754639713;0.2115765855003722;0.5835625792735473;0.009407994712449417;0.015744819875736265;0.026669370042601576;0.0;0.9124031079709773;0.5367309353343809;0.48013417061573205;0.9513992545316775;0.20185398986236933;0.42538426537158475;0.37276891757863717;0.9574158455082108;0.9566172340976645;0.5960714416982041;0.3826269429644934;0.2921824881578763;0.6591363444180837;0.34150866324721874;0.5265949959950945;0.4810144536338293;0.2563651406096383;0.5822992624402876;0.3862374611581477;0.13126058664819457;0.01598998536435149;0.030348182098345364;0.014371385885949278;0.28255941310253757;0.22923815044534596;0.12256918408244458;0.003921170484351503;0.2208922438549778;0.267868640380837;0.049069612069023986;0.0;0.0016764226066252926;0.23891205582654695;0.027266699742774566;0.12044310723816715;0.4592054058079686;0.4026116061041748;0.26721821819494945;0.36334711841745554;0.22436052825949507;0.3023106265768895;0.12254664819903349;0.12682310747842349;0.11296730694989575;0.1940325606787415;0.24401127411232632;0.0743690271109922;0.1461506566678812;0.11902386908121397;0.13690635416670446;0.16122636906644386;0.14991107885150456;0.11726255723682671;0.03489903187616639;0.022615766936800716;0.014513664588057001;0.10427860208890015;0.0;0.00011238577060221472;0.00647946742298365;0.01392708513634427;0.00033210438195128934;0.11928761944138251;0.1208949387444105;0.0;0.4875680304695973;0.02342747965854245;0.20808283454069607;0.022370386961867158;0.45235188440670226;0.0004466005269153993;0.1030424584059143;0.0006979809313684139;0.12528179654791477;0.00046977486244198833;0.0;0.06010552225897183;0.0023212790629745235;0.18816781098597093;0.21119610533427421;0.2675452185848833;0.08462705365070604;0.008278887642934303;0.013640292986674685;0.16851666905115814;0.0010190480274340876;0.030985217128253733;0.20801409967246473;0.12047103865025612;0.0020775486667129555;0.001219518713509117;0.002235044096190209;0.0018528889702676794;0.02527660045261994;0.0006362516387833573;0.46315597718280827;0.012316412975212547;0.0070357792570341126;0.0030746121068948033;0.20850321839761107;0.0;0.012178128772255182;0.020025429975909767;0.0660176498641638;0.05678668007312732;0.027262888826767816;0.030382895424367486;0.8971471674984619;0.10258246017946357;0.013531786256954377;0.0199526861632665;0.009891399661635792;0.005986255497443378;0.0006428869157908606;0.21487786964538666;0.036919638709098535;0.9120557383270828;0.07498630704784544;0.07704208699363153;0.0013317293262567799;0.01556191790424439;0.03079913161275004;0.07388693698349309;0.0;0.0;0.0;0.07215316426147833;0.17250653692785753;0.506778510267424;0.03340728446600252;0.08725501423795642;0.3032097915085894;0.015529669789729821;0.09634874816811735;0.014386598516398983;0.21925449641312258;0.10203367954921509;0.006025045736893391;0.002160766616175643;0.015438273363930027;0.000442240685357334;0.04627353042288236;0.001077035092192724;0.33634383056689154;0.07175946548381561;0.03771040944293879;0.0022805635755030395;0.16625610159672183;0.012279167729063073;0.019262011712302404;0.42449179030561085;0.49044409308465586;0.5708810773683661;0.22987656721317148;0.07663690197730497;0.0;0.0005625168495883424;0.020049768353497227;0.038202860920728436;0.0005645752006107142;0.0;0.0010884037272905355;0.0003181118095132363;0.0004425667812244554;0.0007574105539816271;0.052370949268929975;0.08671838959822974;0.06167592679032117;0.002148439200165763;0.08812608148621084;0.0014774340942481168;0.1016017206599022;0.09109138963959719;0.0007462095232536334;0.012343637876300446;0.00010973327154376531;0.00011702679568006963;0.0018897427951634475;0.0034680602925869415;0.0008655373821274842;0.0007052582745120325;0.047850005283096776;0.016089628127488768;0.11655642933766937;0.012894759493497958;0.6535688754566257;0.006864836538409072;0.008901946388860629;0.00572812348743985;0.019879304712049697;0.20152526565250106;0.2718514355074366;0.2331369791661642;0.005296625757488818;0.4703140383575468;0.5338453826415958;0.13504213850537453;0.1241779803577553
+Benzo[ghi]fluoranthene;0.9261393914277156;0.9885519652974786;0.9495344198134872;0.9774920471000533;0.9809594037880822;0.9718577774526932;0.6613748238506206;0.9938164329435331;0.9919055142200506;0.9829940029505522;0.3479127343874902;0.97231689356026;0.6470516839772076;1.0;0.9948387418282544;0.9712850422787954;0.9861030477079548;0.9918986788022176;0.9895764293910064;0.9925732192509579;0.9810488925802351;0.9790077519169197;0.9325569817171272;0.9793785452888434;0.9597048752541686;0.007649870274886467;0.4722407249522334;0.29120856958986063;0.2271508880280377;0.23675052086935897;0.1356963209222051;0.20018536216587823;0.33184007436433466;0.8059637128598351;0.52419317925638;0.9233993482763483;0.3063880509581761;0.1418812484989336;0.02645047608853026;0.5270741629877874;0.15082028340827566;0.5870536875152761;0.09597680050996947;0.0005275670934217952;0.0062522278872613095;0.0046067224331547505;0.005883077293581337;0.005185452178353289;0.0046684334607755345;0.43768745819285015;0.3273114488024531;0.12467297335606313;0.008600893455366382;0.004818071220070424;0.28443564617398537;0.6034107022973109;0.2886709044337848;0.4060632766238281;0.2696218725519532;0.017960299066821863;0.200644109334656;0.39573505287268734;0.5028164002501597;0.4965577980345827;0.28217366034999075;0.38163154299069824;0.4018628900947513;0.29017791203441445;0.288175150527853;0.2865132805524331;0.27008989506311354;0.19197888923365022;0.0;0.017888850907035694;0.0019392091046316199;0.0;0.023496085429241056;0.00018513679695685524;0.0;0.020143200842007918;0.02483979629088812;0.0022252349285764323;0.006488913710301763;0.0004748272551449861;0.07206968230875865;0.07994463402111489;0.095332943608921;0.12118649417727688;0.06569806704831345;0.004755413932236578;0.003343552053895983;0.0002579529396857799;0.010709801003273709;0.0011330609345327996;0.0;0.02685875223743887;0.0016109958202112154;0.013947399000220908;0.014371652476161477;0.016079783832430278;0.05613731484100149;0.040857973780819665;0.11212105250458626;0.1409017170967787;0.12055473009375414;0.6923796432352313;0.6936669433270759;0.7077308152325263;0.7216986153261702;0.8008579888562728;0.7389125947425796;0.6652306404891143;0.8294461299724185;0.8029167946477199;0.7607693275537826;0.19444799888541875;0.17332415401931814;0.15262373967182238;0.605588484963038;0.06396860546534065;0.04474138414184631;0.22537924007314586;0.6145745205115158;0.005739483509526549;0.005348762469010107;0.0008323023825700478;0.0012423203267068657;0.0;9.762429522430103e-05;0.0;0.01550021316062898;0.0008982480364526413;0.25847987188147714;0.018041072540505833;0.9507879906201037;0.00030199867062745303;0.05065144307806854;0.03784572557206909;0.652706394735813;0.7454062727423645;0.3368894109084337;0.6147505370598264;0.09630656711996326;0.2645506271169641;0.5481004033073106;0.047965415263645714;0.014200399587411849;0.02432454516108158;0.06947577507255107;0.07576519888211686;0.44073929407486934;0.01626175626964584;0.022235150084974935;0.00732725140745935;0.6062644731536331;0.33751111754128293;0.36361172638473727;0.12234480372412015;0.17561918089246392;0.23489978698926392;0.1788430132224199;0.018702636679192475;0.0016651064590684631;0.026041087157721715;0.021780317199240277;0.016455291237810848;0.007891000726086408;0.012348179774757504;0.021641454218214454;0.010684918690322884;0.015601239591762297;0.13467823045958022;0.19344189248458218;0.00115180232058414;0.006196232205441411;0.12354335073666486;0.07469912260536118;0.010347708768874852;0.3250570571205402;0.7806324280591166;0.7673920518471831;0.02508812012243108;0.32599251101646337;0.8547744801749138;0.03185455689161673;0.02095711527877717;0.015990216196554757;0.019185784600416547;0.5825142966723704;0.6440052791974201;0.7160196531651946;0.7004502496620263;0.3012819553934027;0.7051880440212139;0.5583113331561437;0.7031562067476442;0.6871927366181162;0.6737559889358974;0.4773754680628122;0.37862559178796856;0.7327153118528344;0.4071045720999444;0.6056730073142363;0.689883549461647;0.12567469401109563;0.94923980555453;0.6252741638788232;0.13821808126026391;0.001083647836275329;0.049585777645535525;0.022145153924408464;0.47713368767796216;0.24966861564080284;0.21076449864540472;0.0004635907526360164;0.3648241530091753;0.4413823366510974;0.02848743380825372;0.0;0.010195030793992426;0.09651148905821935;0.0012211554950554654;0.04979286658622625;0.7683376727358207;0.7855555354551111;0.45868196874898487;0.6075856500800545;0.4064472486830421;0.5274453853314499;0.20420461460344622;0.20991415010619174;0.18454553522571027;0.32782293450259026;0.41352252105307913;0.11248495109397015;0.2440211668631991;0.2103738169082104;0.24261073467272232;0.2846351687898852;0.25150566282274656;0.20610370772122416;0.059103173196808995;0.03866812122930181;0.04115106020256041;0.12384507871134014;0.000912292707000802;0.004561989935178139;0.01254669834946177;0.031693918718746494;0.0006550235919647569;0.1799748399123212;0.18192467094195588;0.006924229784603755;0.7762445675446312;0.0102237322333101;0.04621133760626373;0.015376067360121261;0.5111572933525489;0.00025335175787149827;0.17361491151851202;0.0013380123687628178;0.214407962342585;0.0007770218476755172;0.0002286127933204494;0.12923552356558377;0.0026096213130420115;0.31680587196307003;0.36779713594443325;0.41601503702805265;0.14503602998509188;0.015479415608615106;0.02199870390117978;0.2267159504364909;0.004692745864768025;0.055214789795729684;0.41149707442431444;0.028740418310073415;0.0016363749365541358;0.002559837525201136;0.0;0.007682231221510023;0.04219829835735528;0.0012901680898436236;0.6855965359710905;0.01919067655766825;0.010273526945825001;0.0032173557978856207;0.37512371203440714;0.0;0.023671232128163622;0.029212859990649088;0.11560507170997388;0.095736675166831;0.03669463286704517;0.004568278128655516;0.3397033788207431;0.18680730183819436;0.019739778864899995;0.01360998281173358;0.020343361931670675;0.0;0.00014790194949196794;0.3118818142211586;0.059952239134837444;0.3515113515563099;0.08105015740438862;0.13236540033371438;0.013477736025444666;0.006509595007162058;0.052930158041504916;0.06007978293910786;0.0;0.012943217653950375;0.012910438747345408;0.12202812726513275;0.2826258087450516;0.837533315689777;0.06417711157036636;0.14919832316097326;0.0021509040164145706;0.01221178498530383;0.14071364071656636;0.027152186201348138;0.36839976862762586;0.16946263663612254;0.010145315924252347;0.0027140530482245777;0.0021844791848441513;0.01212963513045408;0.19298920313025528;0.018697856282404966;0.5185904765786318;0.06799132073394513;0.05821043454838917;0.0040690029543490385;0.22471205790763482;0.020816283844722457;0.027139079149078125;0.6331745685876811;0.7956971209315377;0.8593016287662327;0.38668036680887224;0.5320455432066542;0.005423966312931448;0.005216982569015838;0.0006631677748597234;0.0018754363553100427;0.09858887373614938;0.11001260410299957;0.0055391275875949515;0.00023568513026430297;0.0003635509039148726;0.000918542092428881;0.00589081667145298;0.10863746100367372;0.07727687800732992;0.0001913098312369542;0.0585980829099527;0.001868876321172184;0.006305100943783771;0.13989192913920007;0.020304531528816665;0.00017312344691309856;0.004539701150803884;0.01592421685605742;0.0014628055354875015;0.0002098710226017933;0.060150311392631176;0.05868782027546543;0.02140405978473374;0.02226948746562897;0.020857726655434925;0.019550392316874162;0.8926273318602721;0.011549266618804064;0.014976460356487663;0.0040620198228976815;0.1585723303162814;0.22351704252804208;0.19412366722597194;0.07938557750483186;0.001001521638797221;0.75374349416457;0.7866945130007348;0.173249829558199;0.17258358922524866
+Triphenylene;0.921885470076478;0.9920265884203803;0.9494343763737733;0.9806082055943368;0.9834704962433395;0.9649018498487998;0.6549071587673563;0.9915126568382387;0.9893491945226376;0.9820385456688249;0.3502226950247815;0.972199258854974;0.6212115159633201;0.9948387418282544;1.0;0.9888699799671483;0.9828267029280453;0.9922137250237286;0.9937137913069064;0.993292396815036;0.9806702121128753;0.9827635438057786;0.936375783516096;0.9799349691702051;0.9618262998559359;0.03069970266408325;0.4567624816623049;0.28688467482120006;0.22785123706633725;0.24171489468056187;0.13297234294577567;0.19885111520413193;0.3351305264104881;0.7911908229277589;0.5251799976872937;0.9142103612356703;0.30440996637451767;0.14072261580931741;0.01619813485654285;0.5220969538975687;0.14998719882410286;0.5787159106956431;0.09025083983638355;8.770416758419573e-05;0.0040649648111859395;0.0027055727589800735;0.0035151874475227653;0.003115024660789397;0.0027658840220188444;0.43319192749589114;0.32536660462774786;0.12492374685971831;0.016243023724573258;0.01337146762072578;0.2798166655708762;0.5982951884875584;0.28635924287500747;0.4030117657534651;0.2669268645444901;0.022308498177888436;0.2001787760820998;0.36467237579295275;0.47892468387363757;0.46936673186876043;0.2797124190257776;0.3785859809455601;0.3986366899620759;0.287701141899546;0.28544752530136047;0.2840353555596262;0.26732517168788245;0.19140329538642972;8.285861812178218e-05;0.01765886221839198;0.0009101052804912156;0.0;0.011433379697883342;0.0;0.0;0.01914867505280329;0.007918310962587232;0.0007802994343764079;0.002151866933169866;0.006708241447369964;0.04202594330998082;0.028796772102755955;0.043523524981502415;0.059707702876935234;0.0368819434927013;0.00804615891869335;0.0013089062149419445;0.0007316301598693901;0.008246537905692674;0.0002383482683985886;0.0;0.02570751569800618;0.0006937669144017462;0.003992324545887447;0.006758203771195685;0.014767298752847243;0.03716887301470342;0.031673068242686536;0.06030551666330378;0.0877145641584788;0.06386501920453402;0.7018251501557696;0.7187496078431321;0.7289382319707245;0.744073007823689;0.8143840290695279;0.7490538384142199;0.6725549302257643;0.8486331159047742;0.8180321782770942;0.7729918037189074;0.18611948232773118;0.1686451916134904;0.1475181168059204;0.6195244887780406;0.06319825777762358;0.04598214002476938;0.21671428829519596;0.631526330540865;0.00879036182068499;0.00258800035236553;0.0009668834748867856;0.0012857041701898908;0.003503109086374115;0.005508056296550874;0.0025121445410602587;0.016540291695570447;0.00174869352448394;0.23748171083943376;0.020681263522903677;0.940780975826004;0.02228897941938492;0.03211773611991781;0.0023786458049597893;0.646529097434061;0.7367475243357466;0.3333964857599999;0.6082759618538357;0.09641937936506313;0.2651829388106991;0.5311598124446197;0.046466386536492536;0.01345081180433163;0.023965068445343896;0.06863765986540202;0.07387808131219645;0.45258302210710255;0.018847434813324074;0.028950839934337863;0.0026699924955682908;0.597698378910418;0.33400151368189485;0.515221729632661;0.3161577617067771;0.15256506752629767;0.2747801728978999;0.16111473812030946;0.011679053940770906;0.006166903221162838;0.029969863954105714;0.022053385286975733;0.014270583825034181;0.007234983624046694;0.014452770157173297;0.023999723140848604;0.022972905763319583;0.011384128910997578;0.12759939756334324;0.23266307210273035;0.008113122990097166;0.014253368173733417;0.12073624799742523;0.012860331979885318;0.01050605344189904;0.3203147787468954;0.7517663596486849;0.7386468300794737;0.0;0.32402572456122125;0.8395234171849161;0.019804900464116308;0.008891163084205402;0.019277481374418124;0.013616863630937805;0.5609220456089654;0.6538226616274724;0.7256728908168716;0.7049535904054953;0.3026983936244954;0.7093303449405146;0.568571019771642;0.6808263843944711;0.6652661704042165;0.6657654737389292;0.47490258753499415;0.37995898522446475;0.7226358343170266;0.40328260481777933;0.6000715199077029;0.6968899226931696;0.11500950872064515;0.9400852803419865;0.6201942778827895;0.1314780388240761;0.006666785255477591;0.02355818384872222;0.026892084854792185;0.4734081423581184;0.2755421416998239;0.20997879284776613;0.028255021724091302;0.35780428357918054;0.43636291918891;0.03808400454787578;0.0;0.0007545876950342231;0.0958601905741407;0.01120016404282176;0.04807256522209884;0.7580102471036456;0.7155696521683201;0.4400131274116668;0.6030004169836152;0.37771644920235087;0.5085842158655524;0.20309669299750263;0.20948354449204676;0.18464744114962978;0.3253102179638466;0.4106160694131418;0.11413899721500222;0.24257112898165883;0.2001237817530964;0.23115211365210925;0.27233254769590365;0.24979940798020786;0.20793817020311783;0.06359438817096895;0.04054660656356829;0.03580542724517326;0.0719791935069598;0.0009259243050140657;0.008623148356085752;0.012626446211534827;0.0216610567453979;0.011209810043657214;0.17412154326868895;0.17535442956828387;0.01831981709683469;0.7695408644988574;0.03310223338925397;0.04041580692423178;0.015239843950215723;0.5215642965248133;0.010156924907929524;0.17361218144765825;0.0005121418653636662;0.2092399644072176;0.00014130333431890813;0.0;0.13028470837973255;0.01474900932774949;0.3151439531509388;0.36018733878953024;0.4179594655969356;0.14478451837395825;0.015582245552903612;0.02355163941645271;0.23599945301861133;0.0016704808745016562;0.043701948034366424;0.3819738306127652;0.02441568499040101;0.003010545014536665;0.007400246019517916;0.005370838727694347;0.04047978056417093;0.041702689461847395;0.0004910805962620422;0.6884060392671719;0.028465402227492238;0.010864842770733444;0.02011077463624668;0.36172509957440346;0.0049135766357514725;0.028855758113782503;0.02813428795130689;0.11328739973323165;0.0951166755128194;0.026723931022022564;0.0036754494258384573;0.3176108248834699;0.17938514748348589;0.021975026639889778;0.016992895782108473;0.029186556541148226;0.0;0.00018386563838114657;0.30002052876906204;0.06014494773225469;0.3240326238635627;0.03767438110127655;0.12966736654952413;0.003780280401601785;0.0016127603641096448;0.04432243278518669;0.06718251124270821;0.0;0.024065150204111263;0.02400420482468049;0.11838603023357694;0.28032102121351304;0.8277904490470908;0.05677985005465168;0.1453086258296787;0.0011409460161998476;0.010979939872750512;0.1383215414420994;0.03061078157800363;0.3674758815038703;0.16821414894951456;0.010337874503526818;0.0033721850763728;0.0012029246826957152;0.00019560430061096978;0.0785948583962595;0.004163860077841896;0.6202232512108592;0.06824930479989931;0.058196306941930766;0.002063937427409133;0.21301679691462533;0.026311766638938916;0.02656026828430411;0.6388055243954803;0.799194936923134;0.8488152151735066;0.377853106144459;0.2945274987582887;0.003089075713385855;0.0021539064908988573;0.001088979156464675;0.0027075251789283133;0.023971758661664573;0.023011731463087;0.0036452783512815165;0.0023404648591386777;0.003726247032053794;0.005248105230386683;0.0024688314836950817;0.11580345544860467;0.07170772226796104;0.0003556997917620069;0.044420675981412014;0.00122832129354015;0.002187028909079529;0.13561271991266458;0.0029683625067829012;0.0004813875626038491;0.007225294961624234;0.01383115340380338;0.0026419364092748494;0.0005565428164268655;0.03128435087515313;0.02894037669993531;0.022177122854722047;0.010373453136039896;0.005341292727963708;0.02351392176948034;0.8861309365659111;0.0113785874794486;0.014755132938167029;0.006448290596306439;0.09522273926589701;0.23007957834592477;0.19356729039378623;0.07594880018309286;0.0038797433712797163;0.7511673106888809;0.7708411302690603;0.24354836241817;0.18325439658435724
+Benzanthracene/Benzophenanthrene;0.8967966822101341;0.9826910064198071;0.9179333691214396;0.968489823190279;0.9680739882443118;0.9491109964280552;0.736524189563343;0.9805246858111074;0.9808308944032268;0.9628311284289852;0.3406562196043502;0.9505335322737269;0.6828238171495475;0.9712850422787954;0.9888699799671483;1.0;0.9530050368943092;0.9732723427925831;0.9870317879757086;0.9797392242711297;0.9567669634695339;0.9639404272082228;0.9241237312192242;0.9489821583873389;0.9302498214504172;0.028965722079803424;0.47756052786587355;0.27451527453111446;0.2191923992386012;0.22614427781000315;0.12887562798439037;0.18820890825059888;0.3294698258969895;0.8355125173331945;0.5016195580594763;0.895742666562455;0.30060421338817983;0.13391426828013617;0.016715523479020077;0.4965603352192956;0.1429360543189324;0.5504083995196724;0.08761540237006342;0.0003171986315124632;0.005307089784077021;0.0030905642654263815;0.004154860222056156;0.0036540308148361343;0.0031460975359873648;0.4144020655407402;0.3089913115761475;0.11783638483356847;0.016370741620757752;0.012594868475536916;0.26473907219869036;0.568532021020942;0.27175719118366076;0.38262247465485505;0.25334459591469766;0.032068360820912085;0.18959270197321085;0.3505801272036021;0.4578000496134839;0.44944614393919197;0.2655722188452149;0.35991864140034274;0.37850162398417864;0.27287019522528044;0.27100925283907956;0.2694055618587692;0.25408989922112735;0.18100412817440673;7.592372012942952e-05;0.01849100912228601;0.0012359456395745843;0.0;0.015131842001781737;0.0;0.0;0.01960842765580437;0.009568563456711726;0.0017085836074479468;0.0031965391658468753;0.0071447353278426785;0.0469915763018132;0.03699361316832702;0.05595039117723038;0.07582494483200414;0.04020355361959889;0.007526369082895944;0.0017593011731312086;0.0006577242453971704;0.013427743014449538;0.00046310153072276353;0.0;0.02465965526376223;0.0014915564677465925;0.005245793951256632;0.014919641892043381;0.015290027150719908;0.041942466619760976;0.04300101559559724;0.07087824435091242;0.10455673744752675;0.06905235213454429;0.6992967181803273;0.7447027027723093;0.7473343762515134;0.7637895129666403;0.8163244982626279;0.7451481914305104;0.665522727718322;0.8592167186648657;0.8258764732468639;0.7743499422539687;0.23060568481174695;0.20243042942627396;0.17682151234636712;0.6258038141950237;0.0756219767494317;0.04622746904920312;0.26269983435260635;0.6414823398956578;0.009430328976875181;0.0031175888614687034;0.0012756704657192392;0.0016404105427081557;0.0039024172067593376;0.003841088767708788;0.002798495805064157;0.018449620882835673;0.002192774867621871;0.31760362641513507;0.01750110852868131;0.9052363655190375;0.022182136025961523;0.031447307313130175;0.0046551143693688984;0.6202631263175892;0.7109606755490503;0.34634962836550176;0.5832518755698971;0.10102943708554563;0.2714590940225339;0.5662930160060071;0.04455629426956556;0.012821744707706998;0.022979937142356154;0.0656096383813634;0.06882009176488973;0.43402651634338885;0.016924778890950846;0.03906045881436143;0.003842039587224738;0.5956748605345433;0.332962438190723;0.4774729454353636;0.28189194005616197;0.15867652566065496;0.34341315047315907;0.1684443279834705;0.017544447912276634;0.004757018930688458;0.03032914477014842;0.02362698372998786;0.018597479638950046;0.011437790033956386;0.013304105499220207;0.022968142391095858;0.027278093266021326;0.01873793237305272;0.16006975819303665;0.3248509225136965;0.005742342017236102;0.013803354953909448;0.11743855894818805;0.005906897345511987;0.0034212691764680054;0.30879258039703905;0.7770523967235559;0.7681098084042268;0.005614143695050528;0.30918076048484516;0.8116929524488509;0.027260997147725004;0.021371802472461617;0.013616839293304882;0.005865752414241582;0.6167930336875618;0.6507883950182004;0.7054457597734303;0.6703062112306606;0.29594105005868226;0.6799130757419706;0.5521717741951768;0.7267629563165098;0.7130321182518041;0.6709545825700877;0.47317978695555335;0.3784509378819576;0.7294465406662464;0.40258349253069947;0.6051038691878833;0.6876227945437189;0.14890236942061658;0.901136467971249;0.5942849185088366;0.1381139613671373;0.005256964676613824;0.028094543622130198;0.03697032153164567;0.4524060011915863;0.27259331406149917;0.199993775887059;0.026692042622933388;0.34078466872847135;0.4200370283267183;0.029176208864888916;0.0;0.0005468314121273929;0.09149402548532122;0.005171890432205201;0.057276646490837385;0.7241814862308145;0.6988387310893275;0.42091836137782396;0.5730401832912474;0.36232601081918553;0.4851883532988573;0.19335961058396126;0.19838803790389115;0.17464836721236812;0.3087141468191648;0.3898047294890835;0.10715972900711994;0.22991070252006107;0.19009717227459855;0.21949261466460707;0.2588229303535315;0.2368145039500299;0.2080190550248908;0.05838430869256684;0.03395870482158365;0.04519266041800486;0.09074078155254149;0.0015641302236032008;0.013976682341213726;0.013023920633482051;0.026596493183732854;0.00788283023724591;0.16900971377138724;0.16982380813120007;0.014803747088548907;0.7355439907324818;0.02199459899482535;0.06211528301852761;0.014525859775129213;0.5146637493282257;0.014492543801441254;0.1650981736937266;0.001011620808713942;0.20007900058710987;0.0;0.0;0.1266637622742447;0.018606916283249675;0.31187302616429285;0.3481378951107145;0.4166544181445713;0.13965626126833744;0.014857281928700257;0.024568650299372927;0.22674302326388202;0.003227544949043765;0.04198833004199247;0.38541811526170067;0.03992402753558519;0.004718626335746888;0.0007838397817318083;0.00100731117381651;0.04063932283751535;0.03987421152147978;0.0009826935363527907;0.6641415736031351;0.027362323472417217;0.010972896419113804;0.01138620390301241;0.3518098458058482;0.0033441502582839313;0.031852185636951705;0.027305588817219104;0.11019852501019742;0.09086018321153012;0.03120680915369265;0.007088654691765619;0.41358552669669213;0.18185296936241885;0.025367048560122542;0.014281039825911805;0.03824449472470045;0.00029973059116795926;0.0;0.30251429603259733;0.057412549417025185;0.41070716844120414;0.04288402361028681;0.12401602349149993;0.0032919651446435133;0.00465148911185035;0.0754628587911949;0.058543592919734676;0.0;0.022413538090082074;0.022503792800578813;0.11286917792334863;0.2675125207714393;0.7920820208308958;0.05686640388498671;0.14011232073310498;0.0014717787121433321;0.012153708422159902;0.13083616507072207;0.03201279774102051;0.3502136422347484;0.15993982641137713;0.01082878903144136;0.0041879154521573215;0.001550180185807543;0.0;0.09626019870732243;0.01282017030995194;0.6255476647538549;0.06446484440015353;0.05521367001925983;0.001986116326535468;0.20994431260216959;0.0302880137528609;0.025432252110658405;0.6123475325656902;0.7652067132990705;0.8227684710429576;0.36688314478446177;0.3292821806930229;0.0061401318311718545;0.0030048959912649807;0.001193837691983622;0.003331009017771928;0.03142919302327593;0.03543019945515809;0.004228080877401302;0.002446116246963734;0.004238617099338736;0.0019605548694590887;0.0033107222168287168;0.11549167898627657;0.0709093256511993;0.0003124557744484766;0.051518199293956755;0.00202023237982824;0.002077513742683792;0.131865385171639;0.009646983389279067;0.0007316990604860467;0.005979192374897319;0.022550041083290628;0.002133592426662032;0.000670240124819901;0.042194521289658296;0.03913367623388389;0.021084459023746623;0.017366801960859223;0.017429874859513396;0.022294763579392758;0.8603406247250357;0.010910848247434553;0.014148594159849546;0.0038775345314726655;0.12219607404746094;0.2253349849920361;0.18949560829596074;0.07281059958912882;0.0062683098932208876;0.7237822055148401;0.7511900624867347;0.2331035815911369;0.17950705397304048
+Benzofluoranthene;0.9294679410190457;0.9795996898541232;0.9645895517631009;0.9734937167986882;0.9800702999362079;0.9675454038043835;0.5518026643233153;0.9802670011587935;0.9754031801703626;0.9844424333378559;0.3632092646699164;0.9756922603167365;0.5664148244543734;0.9861030477079548;0.9828267029280453;0.9530050368943092;1.0;0.993736722776802;0.9776934718589216;0.9898734799108199;0.9890820140259801;0.9812971862344391;0.9455990057997715;0.9946348887910145;0.9704694568073391;0.10186547197004185;0.4408655841398895;0.3000604501958375;0.23235363314562604;0.251246592415976;0.13685010701077613;0.2042512155005074;0.37045582817443645;0.7412593917256728;0.5428773281609599;0.9310891646872593;0.3191146687776402;0.1468609110624744;0.9749343521564297;0.5404200880768997;0.15665752154061055;0.5983036261718404;0.0674035274643885;0.0;0.003990085032950728;0.0013326241132173083;0.002140482888952218;0.0018981153983262731;0.0015887271463730546;0.44703367978828285;0.335543063412309;0.142646777951213;0.002051039993205263;0.0024212397617934464;0.28699782276914165;0.6186359380024592;0.29573878918541247;0.4166147285768075;0.27690539593618174;0.007662952808212329;0.2091617872744705;0.3786380274865971;0.4965311240130213;0.4866838330486878;0.2894128643063106;0.3914377194614275;0.4120971543802046;0.2982795803551898;0.29640375627597965;0.294640662948364;0.2773372760628979;0.1989270817101067;0.0023558268961279523;0.017604326519315816;0.0018140453771650431;0.0015562484537110868;0.001393229454370279;0.00047336000705391727;0.0;0.023094440843989164;0.00956952616964844;0.010093792960289632;0.018729424141431486;0.01738000398478448;0.025521840138303893;0.0069525001068473724;0.03469444044337753;0.035827159315715326;0.003015074535319687;0.012127450671898549;0.00040578547627885216;0.0;0.0038551182620321276;0.00016481252692515682;0.0;0.028760655001913507;0.0020193235721943916;0.00065016281773729;0.0;0.013948100550080063;0.024514985179224562;0.0014074834045797531;0.00333326700122583;0.025279306695409582;0.023884063955340557;0.6747868108539401;0.6370635363239799;0.6605504345840338;0.6741595360267469;0.7754096379014438;0.7218085123897834;0.6541005552580962;0.7934580976521217;0.7713286498196447;0.7387827773315575;0.13648529197553208;0.12657865412199124;0.11164456112140592;0.5788648960192689;0.04784181704407153;0.04245888743970186;0.16329127543552313;0.5816678231663887;0.005531731974476066;0.0022258070935025345;0.0037364862269631794;0.004487793309073892;0.0;0.0;0.0;0.013496273621721051;0.0016503003892570662;0.16649602405328928;0.021360657950225726;0.9760903449058168;0.000553631438332859;0.03334941879390676;0.0021023358120807957;0.6713376365070826;0.7595910183347164;0.3159141294305839;0.6322535737204609;0.09060115234987619;0.2540046215525428;0.5023290373700937;0.0484220825254221;0.013934183498302315;0.02583597775972618;0.07146783019198254;0.07680542996470952;0.4699186733460053;0.018650018035573566;0.013412826148245745;0.0041651780552730555;0.6055174613906059;0.33123855181303025;0.3651981330579327;0.12184455604132746;0.14596202094951105;0.1445506627492857;0.15522970741816902;0.0092224086445625;0.0054978746078793266;0.02545448880434949;0.01793515523606614;0.00910462751399159;0.005842854049113641;0.013193422832305379;0.022296567569983043;0.02673405343186533;0.005079331777095324;0.09856990626327373;0.001346190872729184;0.00023532538061499548;0.00295052682408685;0.12678208402801056;0.0008509408833284797;0.011469118536224758;0.3300913995533199;0.7320210962750229;0.7150777579485524;0.14352202409585865;0.335043524541053;0.8651741908590582;0.011621190116608386;0.024165268667266;0.008499065027314396;0.003142948331356848;0.509452253261606;0.6442733253554592;0.7340202185326047;0.7284331365641387;0.3288828096857163;0.7359043250487084;0.5774709265350143;0.6428894081047286;0.6258169830862782;0.6551821218117196;0.4725023186087208;0.3751665286062298;0.7106715206945291;0.40144603530420075;0.5884561427227524;0.6997476243276036;0.07532361231745396;0.9738733324261026;0.6426615265933368;0.12670057588445527;0.005449004862316133;0.019681004713177713;0.009734079718675827;0.4909358021156649;0.2425165330592284;0.21500279012936216;0.0009426602331272389;0.37261362829492545;0.45797543651436956;0.7201459126334113;0.0;0.0;0.09962097978200818;0.00949183334480342;0.03747488324366414;0.7880053845662869;0.7110380104182848;0.4545580238281074;0.6230936821199975;0.3915608994229903;0.5267312261706196;0.21196845152582186;0.2191329806735701;0.19358625574684574;0.3362449517703115;0.42440158945828893;0.11839820907256286;0.2523686105996905;0.20307663934295045;0.2357761680128209;0.2778246301470546;0.25989700959466033;0.2092175650807819;0.06050816675438407;0.0362219921301248;0.02885152187473423;0.03666424433241038;0.001056013874371443;0.0017772661154752407;0.01484452934521432;0.023243943283164772;0.004154926082181933;0.1778660166217858;0.17960644944319004;0.0032722009205050184;0.7989730864493834;0.009121667049058754;0.021185331762029094;0.015695379708650033;0.5267021695998074;0.0003479980178851882;0.17843606804205397;0.0;0.2174084981730131;0.00013639852044194183;0.0;0.11046509970815761;0.006619371188548396;0.352335528716806;0.36835040630853594;0.4439489122036534;0.14835926662659646;0.05515077901754117;0.03218991926998561;0.23254425441413804;0.0017427068619055124;0.07863273235065105;0.3854058678126952;0.011716231005638476;0.004150706868676918;0.003285555295178087;0.0;0.0;0.03807867752052819;0.0;0.697771212872789;0.028010426558455065;0.01039796732878108;0.0019859611928018488;0.3730285388143368;0.00450545517011244;0.02103503683851125;0.029558813313849297;0.1165030628709841;0.09899742907660983;0.020191036110225026;0.000711317837515324;0.2342390706948916;0.17727859317092967;0.019683283943583138;0.014308089844779173;0.008753767385659732;0.0005907886685484419;0.0;0.3048372134330251;0.06516661854176194;0.24721175655932218;0.015501156135580486;0.13568884650857152;0.0041028923702236065;0.0014742657720915706;0.0012123659694011737;0.06791938515002727;0.0;0.004323361861570189;0.005483666837418516;0.12318393375730108;0.29017598508389947;0.8601784344711737;0.061846904294792206;0.15127458269870708;0.0007754228117668487;0.011442068003823535;0.14070025519986318;0.027298320415063485;0.3790254583632838;0.17493459926065655;0.011889337369696459;0.0013486384922728027;0.004550157145792607;0.0;0.024357120447391516;0.0023270111508016393;0.5329040628411058;0.07006145541206868;0.059763957675957276;0.032560330957346596;0.21668480978370233;0.010948631341961496;0.02763413224918977;0.6632998357193223;0.8311384917038839;0.8752084295882343;0.3867593208486147;0.14759872452951894;0.0023747004769453127;0.002109665021529571;0.002295473615896525;0.005482149602841986;0.019921584738138952;0.027208683857806476;0.026346127867410845;0.029273893884310755;0.00035804890390536985;0.0037386355331673117;0.002479065101863842;0.10801037783378885;0.11535894257428729;0.0016740103654079904;0.03677807987210353;0.004251366428551546;0.0016777756105578016;0.14271454091252503;0.004220080310887205;0.036586214225646584;0.006470697989997441;0.0;0.318635092588142;0.0006318339859475258;0.026077730078090666;0.02461809635135338;0.054731890721800305;0.08521344279156166;0.0071616441037132645;0.028205825448397344;0.9081810931654605;0.012592818663931877;0.015376152915277436;0.011201874469119466;0.03938342731095186;0.2251206256383142;0.20762812629585203;0.07992173847639929;0.0;0.7691007607581224;0.7979752352053466;0.18007193817114112;0.19179872229066658
+Benzo(k)fluoranthene;0.9337424206360716;0.9947074203940094;0.962570479058184;0.9774337953921184;0.9826595803951523;0.9682412084359239;0.6060940477823349;0.9867023041564881;0.9827225977729316;0.9845144586121162;0.3560646722959728;0.973782712126858;0.5961476527546561;0.9918986788022176;0.9922137250237286;0.9732723427925831;0.993736722776802;1.0;0.9935073017887623;0.9985308771692393;0.9901170142580029;0.9886989210121455;0.9408763327989814;0.9925609180042965;0.9687928060797135;0.135470293866724;0.45043480515866885;0.2955448146577564;0.22823555603011603;0.2499313270079764;0.13506968434817032;0.20499279420048158;0.3663971793562152;0.7682397348527834;0.5357018468434316;0.9145738640636827;0.32225688756135945;0.144837969291153;0.9584082422347192;0.5347411932049457;0.15619779657085706;0.5907708207112903;0.06829427493464017;0.0;0.004377846144547874;0.001348819517457692;0.0021209562274590553;0.0018656873840784591;0.0015702994872231271;0.44357217948883426;0.33289341448038345;0.17519899140325942;0.003909990654879975;0.007557784066805702;0.2864416810678477;0.6113228533663051;0.2932409904770465;0.4129788857988529;0.2750392543845862;0.018863556373654982;0.20816831168433886;0.3738856357401385;0.49067760037740854;0.48093192228308684;0.28661635728960827;0.38797573418998127;0.4084871406408452;0.2964523187526438;0.29451622276647593;0.29294755469765543;0.2761284331484649;0.19872910371567684;0.002509813384514865;0.01804625777941136;0.0019290079453565944;0.0014802000747325204;0.0011726115371520273;0.0003947410739204956;0.0;0.02994861067133183;0.008836203137401445;0.0095817390249266;0.01810989586295873;0.016690370770950355;0.02458314816208026;0.006266466154455579;0.06796593495534473;0.07302116010767669;0.0024267012492847607;0.013083307801802937;0.00035572953447507547;0.0006682315800318147;0.007816335047081758;0.00014448196622606022;0.0;0.028644848695175487;0.0024834849392158707;0.00098786694996189;0.0008305408805343511;0.013666755131361279;0.02394634829915862;0.0012147502411133176;0.0033085084573642584;0.024748289967258894;0.0226516274601869;0.6903461661428117;0.684295419992324;0.7003436272395531;0.714928293567785;0.7967427165122519;0.7377524228814104;0.66588417248497;0.822162679404908;0.7961910623290376;0.7575663294042121;0.16256385033723078;0.1480394854911902;0.13002175137465952;0.602062124265799;0.05594547918237369;0.0440596492912175;0.19170887510313853;0.6115456055615536;0.0076100970754983755;0.0018608668736501172;0.0037786157805094565;0.004673278868863691;0.0;0.0;0.0;0.014559097227544095;0.0015613002426395756;0.20057303427947024;0.018504109016681983;0.9656595177728203;0.0005965056297192266;0.03301897628918546;0.0046948354125335;0.6596969108005398;0.7505870008537635;0.3182701346717235;0.6211540714255347;0.09169345731585435;0.25160446399325576;0.5177524537111984;0.047539610128128;0.013680238775672367;0.025517362516910176;0.07019107318816309;0.08318437541521355;0.46111419140268145;0.016841900121692423;0.018829635294156433;0.0031523562001945257;0.603266514566639;0.32937119657895114;0.3592790745810608;0.12022498470922538;0.1446704390262411;0.20739377196008302;0.1541403550769762;0.011554398247633872;0.00485389965808636;0.02807495987563926;0.02067426585017149;0.011592881551875192;0.006840549701043271;0.01294718763360094;0.022689574941262912;0.029113578511075922;0.008773605584684001;0.143279388539212;0.0017523530444642798;0.0014692991580374226;0.008394462750008966;0.13098560830570127;0.005079345339304863;0.013041046952199759;0.3258469961537683;0.7447593316858939;0.7297287037936101;0.19265851494371777;0.34797266729831006;0.8553486700894033;0.045516493109512876;0.04534139001964871;0.04105832669752389;0.003132961894339719;0.5351140559015886;0.6417568609422517;0.7260055234967431;0.7108158879226101;0.330737262542317;0.7225331442391564;0.573256751364728;0.6638258038869487;0.6474922739228485;0.664054974448636;0.47749970065468766;0.379268100814892;0.7210759571348535;0.4047664238974946;0.5983061482715805;0.7027078700684027;0.08674854083667172;0.9585687379086416;0.6314705892456243;0.12890694421425358;0.0046132589181982955;0.020954805242284373;0.023038357325500577;0.483843220675196;0.24198390800045153;0.24122405389540208;0.0007860966436152829;0.369225373281853;0.47746766121760337;0.7074748762231017;0.0006661373758307794;0.006288295050283302;0.09809400123859019;0.012039007261727923;0.043165611734721145;0.7771921137765753;0.698450353037056;0.44770128417875577;0.6159643749524889;0.3866607129319857;0.520790987861904;0.21112443277358234;0.21824010710603003;0.19278351227061974;0.33309786494992666;0.42067029966282404;0.11805660988645518;0.2505743063337379;0.20220784728152338;0.2343293754118754;0.2759671273095357;0.258275667099935;0.22113860698137208;0.05992438173675877;0.03552315739633395;0.030086216678612374;0.03916172829122951;0.0013113476545472728;0.0024356655508769066;0.01656826119944659;0.027682928127445206;0.034298739232835995;0.17573381959123296;0.1774428748581602;0.011166633772550222;0.7991137674331155;0.010524715003493041;0.03155598020858084;0.01647386541513515;0.5206963233636126;0.0008991559326158076;0.17521915248899034;0.0;0.2135245249387499;0.0;0.0;0.125470465105791;0.004334916124704428;0.37604054536503356;0.3641934486923325;0.4542540120411222;0.14609292125026277;0.06101830716404951;0.036144039075119705;0.2288799926339397;0.003484249759243749;0.08925003369752042;0.38149744563850974;0.018141077860631925;0.002718228910485799;0.004151216965710667;0.0;0.0;0.040240073189768084;0.0;0.6870453057239982;0.02761669234962011;0.010208468681117635;0.0024489793100716008;0.3665488117929152;0.004185012420602405;0.020651682004974192;0.029642945177135057;0.11577351386457585;0.09859452177146309;0.019387162093257436;0.002226706075133347;0.27242618196313867;0.17414682863521627;0.021608070851803312;0.02345556080041101;0.008594233600921694;0.0012922109918351295;0.0;0.30107412157238544;0.1127643992742323;0.28755065991724676;0.01670695128598872;0.13387857883958892;0.005853193864362733;0.0036401648770507168;0.002459642225344383;0.05835384130330746;0.0;0.005705963534712989;0.007021252884900874;0.12136549376931395;0.285909734107263;0.8457206385783661;0.06288720155458496;0.14942652716556312;0.0012917222935231835;0.01123354105383052;0.13890060675789445;0.034982509008792795;0.3723848490248808;0.17203361585017254;0.011325265534095234;0.0026407041889641427;0.00425421936445324;0.0;0.02362126055324194;0.0021505521838124497;0.5227958483982755;0.06883227911537766;0.058674784301920815;0.03851763331157091;0.21300246007427243;0.011243992287303588;0.027187599435951466;0.6503031456918741;0.8155010054908277;0.8633532148220578;0.38158832955229605;0.140165904122832;0.006124369447792926;0.0016891236411322361;0.003377341565764588;0.007680889703226473;0.028659078254649976;0.03551754522847307;0.029051265089223316;0.03362887940711349;0.0009371179071527771;0.005636840517288213;0.007029360361608841;0.10419648855902956;0.12887572456965768;0.0016519177263081793;0.039881546553356205;0.005273136729598952;0.00393141709398368;0.1421274818594545;0.03193506099986637;0.0898310909841823;0.005843756586668926;0.0;0.39341035110075606;0.0019579174742529563;0.022834397674865656;0.021448437355905455;0.10251116454400096;0.11177197102560213;0.026504736044259073;0.07042961282700057;0.8961763097760549;0.01261187595003366;0.015095928897295935;0.013459172759410783;0.04228588934521902;0.2234665181729253;0.2110691364380821;0.07859241987792631;0.0008396037323956462;0.7580582593169944;0.7984549237809424;0.18068207064861247;0.18847771330432947
+Benzo[e]pyrene;0.9134087286129458;0.9991389326278478;0.9412858738130494;0.9735350953139605;0.9767315300057553;0.9573490629139849;0.6480463905877412;0.982245762535805;0.9788440927592891;0.972309723936859;0.3474986800673636;0.9613414998235004;0.6078614554697941;0.9895764293910064;0.9937137913069064;0.9870317879757086;0.9776934718589216;0.9935073017887623;1.0;0.9964496448464335;0.9795609205040289;0.9855869744319813;0.925512194269578;0.9776508621583183;0.9547000990448846;0.1522014322026061;0.4489266483435783;0.2876159079446992;0.2208777360757873;0.24124103043677128;0.13156205916944652;0.19877293847424568;0.36343770583543483;0.7812283307933843;0.5189923396310604;0.8892476771025011;0.31101345756949234;0.1398624055768513;0.9276937815816414;0.5172441652638797;0.15110703189760005;0.5723869540170576;0.06669972905703067;9.912920437868106e-05;0.004656578589390127;0.0015937464204717744;0.002597393410743111;0.002291644972962328;0.0019267807795130846;0.4297157870065261;0.3224489442376472;0.1933098605956642;0.005528248517987324;0.01090036424846729;0.2770574072392035;0.5920794845641496;0.28385710540569337;0.3994435853623431;0.26596433126290214;0.027422388078780356;0.20132582317187414;0.3639507735894537;0.4762798575829776;0.4670048383478881;0.27765534483615856;0.3753300117737504;0.3951135072363979;0.28652033086694545;0.2845872462589715;0.28306307694214555;0.2668371980975014;0.19192201413278162;0.003907990468107791;0.01942595660764699;0.002959206001188726;0.001884752381767094;0.0012826345212173596;0.0006064923451197462;0.0;0.035359833711352644;0.009808027501416886;0.010297812862933254;0.01850954726954203;0.01721663041716716;0.024249686282687945;0.0065611668177975955;0.08865328563904759;0.09656689135911434;0.003235904321973406;0.015512709136275102;0.0003588098431842244;0.0010902180725633672;0.011213372836738518;0.00014573305452700162;0.0;0.029443818386245477;0.003891712739146388;0.0016257683746773732;0.0013550252712063266;0.013608482182488713;0.02357931300066569;0.001917304949358268;0.004502350153084359;0.02691582995018262;0.0244390881229274;0.7016972742897882;0.7240613042396724;0.7327566972240757;0.74830251956034;0.8154389830038122;0.7489357618656509;0.671854830342046;0.8516713740537818;0.8207418621261205;0.7732115092594749;0.1766019731062643;0.15813928727371362;0.13871655803077623;0.6206579154639476;0.059308289943135487;0.0458403703386409;0.2051268059760523;0.6348597325802645;0.009695647108775272;0.0019856652224325704;0.003771027454192116;0.004499056554301989;0.0;0.0;0.0;0.015643933325069026;0.001390618596033779;0.22552490516802012;0.02049498176496493;0.9402286734326758;0.0006286401974600406;0.03174514245981735;0.005300719274091307;0.6396738636307063;0.7287196547553949;0.3266854484287278;0.6024024067394103;0.09423699615602373;0.2600682341461683;0.5198685733760275;0.04604567968280028;0.013250337790972507;0.024993858571590005;0.06794436089065516;0.08669994891015569;0.44298897173029567;0.017663122146286892;0.02218460629089865;0.00438436084105738;0.5926367092737218;0.322507526206499;0.3483650629673552;0.11696471222085882;0.141006382213159;0.28923754701709986;0.15056185289044577;0.015150989762470765;0.007483268158919936;0.03156769399426207;0.022466631254108162;0.01286186174457958;0.009161267964294091;0.013730578374565242;0.023779104020303466;0.033404593893398137;0.011925906710616491;0.17077705288491887;0.00238553357896167;0.0019507253918264356;0.012143439147720455;0.13026285896609754;0.007946740875464955;0.013393225587248408;0.3162685603556607;0.7383729519476431;0.7248189258917742;0.22931173214367445;0.34964024517684034;0.832092201024195;0.06691105303930973;0.06936027550770657;0.0616543342097313;0.00367677645862064;0.5428757410420944;0.6259764673875812;0.7045480882964679;0.6953405307009553;0.3180513419380983;0.6979529333509609;0.5618905317037722;0.6671083717063827;0.6516394896567601;0.6565482693008717;0.4708114256038126;0.37486304008472493;0.7127976986346647;0.3968499079959523;0.5923156948890959;0.692024568398815;0.09298816979339261;0.9296942496194243;0.6124883829723514;0.1300838175882087;0.004852846898102893;0.022849600041873863;0.032279598099471236;0.46874316221563145;0.23602427561045147;0.2544487940401872;0.0012077830972639506;0.3593186670080688;0.4823216909858686;0.6849883120291983;0.0010868013838946002;0.010259336903986527;0.09506241140634077;0.018849018103554955;0.0460523682800099;0.7523188560113571;0.675215346189743;0.43595694625813786;0.5967111736655258;0.3760999850781789;0.5050052340248794;0.20471371999142562;0.21100998225231174;0.18660925914544035;0.32244321421070404;0.40685040805836636;0.11608062535584004;0.24243829621096905;0.19552598485167294;0.22642582374015302;0.26679578637764184;0.24969446099567277;0.22436541571642243;0.058229914697860895;0.03453079626438569;0.0325615700938769;0.04284200721418465;0.0012776993424642915;0.0032922679604868495;0.0176120751151066;0.030270258193862545;0.05364726255884697;0.1704883065140232;0.1721370632865687;0.016369679227909956;0.7816793854223422;0.011850468277316558;0.03791245966878064;0.016661873883916288;0.509743551927461;0.0014393822205649343;0.16965713362757678;0.0;0.2066899504714927;0.00012883493891582598;0.0;0.13234712469812096;0.006163970014675889;0.3975783123064371;0.35309753065154553;0.4373908714601146;0.1424582209548096;0.07204015554966119;0.03263215275432652;0.22134413629272018;0.004690768960100363;0.07757276796938449;0.3811670533911032;0.022516850608882068;0.0038651454873079023;0.003364850240249902;0.0;0.0;0.04214287111433882;0.0;0.6675967664918516;0.026678096070166205;0.009887667939971619;0.0024511755511996713;0.3555144182789312;0.004936331709194391;0.020002703681186826;0.029404549792557674;0.112994641684599;0.09608888851334992;0.01894331150103286;0.0033977979467681822;0.3073177677623701;0.1685164726316494;0.02263410243540305;0.02884975357365252;0.008324160135950666;0.001197699216576286;0.0;0.29397937784416306;0.14002116719415883;0.31107572219663665;0.018928630969969017;0.12950407432208783;0.006398939988726401;0.005396786624806199;0.0037893332065251266;0.0656673720386626;0.0;0.004281953863490666;0.006039165779004037;0.11766544959221008;0.27682455330880357;0.8186142807594995;0.061180386372510484;0.14506805922861968;0.0019240714048979026;0.011893018281632318;0.13482634216499423;0.038935742180400995;0.36043011242047757;0.16678803718911303;0.011195696598487244;0.0037152838611846056;0.006272678811529165;0.0;0.024979656986019092;0.0021725248958366743;0.5109376817359043;0.06659330279721001;0.05683093143048526;0.048350956182590166;0.2061047295820155;0.012134939034277075;0.026328302609156834;0.6308249055543126;0.7880025634250502;0.8384817565153674;0.370220776947259;0.1401760556745512;0.008393297302234126;0.00176352758441027;0.004145433366807071;0.00938296502295201;0.03830031034185995;0.046620612892619345;0.02823101618714282;0.04108411004446455;0.0011125574061936268;0.007485433322373587;0.010266870748754781;0.10430807095316773;0.13657309619618946;0.001991632552618253;0.04147240099997973;0.0058932880184621025;0.005853093155055043;0.1405662015408275;0.048694517445011964;0.11890548881864241;0.0065936601150329965;0.0;0.469209205637296;0.002612529933162984;0.025329176376843746;0.022764560509525994;0.13575323001117287;0.1304061229719539;0.03935479695170414;0.09728539539572591;0.8736339157765288;0.012003847572754639;0.014621539904214371;0.016130386622325247;0.04286878094575151;0.21954109936675992;0.21429241556890494;0.07640136435818139;0.00136981129028025;0.7350802154320234;0.7831481695352333;0.18388707790794964;0.19173460025744812
+Benzo(a)pyrene;0.927933250811539;0.996366079886053;0.9565375754887635;0.9784941903989366;0.9828025237939778;0.9659069453145074;0.6210680181937646;0.9854402206669681;0.981666573417782;0.9813778295897989;0.35513434605540206;0.9702745377497297;0.603290197640133;0.9925732192509579;0.993292396815036;0.9797392242711297;0.9898734799108199;0.9985308771692393;0.9964496448464335;1.0;0.989362998966002;0.9892088334457995;0.9428880388121132;0.988660352601509;0.963250849252752;0.13808066144758668;0.4525686978692624;0.29364797547769317;0.22612196364620246;0.24575624579517033;0.13433218804225508;0.2026086987010228;0.3713040656779465;0.7755205352621752;0.5311304128394932;0.9087439455271353;0.32580598608661143;0.1433006067996627;0.9495654855854524;0.5288131205630491;0.1554515595460605;0.5850755447506506;0.06570765386582893;0.00010572875303665869;0.0053764669526330435;0.0018738533530062364;0.0029242662408190375;0.002558629484593056;0.0021619832984237177;0.4388575772031363;0.3294062112295437;0.18408002919120647;0.004688640802740175;0.009076306831506781;0.28283068346803314;0.6050948336650305;0.2900138123960287;0.4080997144633938;0.27202494737190885;0.02355770563071769;0.20626319405547816;0.37183171794102693;0.48661837949464104;0.47729872852161565;0.28358677334995924;0.3836914127707266;0.40369222350174416;0.29294040710818814;0.29101832061901156;0.2894541436352662;0.273033615680226;0.19620204827370252;0.003061713367994701;0.01886216881455474;0.0026649009871352785;0.0017408367573017755;0.002222619448887786;0.0004997112219207108;0.0;0.03399281264425836;0.009570474239277215;0.010189857273916787;0.018539937524453882;0.017113707242749424;0.028181898472237305;0.010036061309173927;0.07587633269706218;0.08162090348531895;0.003548982160873054;0.0174018990932117;0.0006612775086202884;0.000704363426423843;0.008874951486105094;0.0002685823509355646;0.0;0.02913072389865965;0.0030888518960390365;0.0014285489936130262;0.0019456545056590828;0.013856979091193612;0.026112941352659978;0.0036716673314457805;0.0057158999079365705;0.028222394483793836;0.02455070949723866;0.6930457468293123;0.6945987668635532;0.7085112201572902;0.7232981014486933;0.801283582324041;0.7399948410766962;0.6666312312550989;0.829843101013007;0.8030687851358687;0.7616370180432802;0.16239250571161526;0.14635159070415435;0.12866222003481534;0.6067717094041327;0.056406546850442905;0.04456544395321058;0.1895819132725283;0.6177277377043562;0.008164261439076368;0.0019958101103449604;0.003788769875491415;0.004696862464654159;0.0;0.0;0.0;0.01566357452844408;0.0018887906402122818;0.21459617484367227;0.02075732828028871;0.9598311489333049;0.0006568468576495011;0.03279939137903091;0.004779458546212301;0.6563739191496202;0.7456580003550572;0.3271956960630569;0.6175219671905801;0.0942657190510195;0.26197823255609093;0.5244922753065274;0.047216683232486484;0.013587311698072108;0.0258823035998356;0.0695899285667333;0.08312850481920876;0.4578700861616162;0.018400358001525497;0.01912642385101662;0.004583190640267117;0.6052340829406713;0.3273718800137147;0.35623738320337955;0.11941839244579473;0.14340653262430017;0.23029257660895963;0.1530149642655783;0.013879196447977027;0.006087636351702346;0.03248034855982875;0.02110036977028546;0.011551372508311198;0.009709315913469043;0.01347081348185621;0.023278590888150145;0.0384760468828859;0.011561963782029993;0.1535932170808841;0.01630064055700776;0.001638555949958264;0.010108718774794948;0.12985713698335136;0.006057648737215964;0.014155231826661827;0.3229258329363655;0.7451621535169689;0.7307233152776584;0.20672516902513488;0.34970435212471584;0.8497413963306361;0.050637703033923634;0.05624157393082483;0.04296963421413544;0.004297925331295244;0.5417991705105885;0.6393642169460334;0.72103491664739;0.7112723397513571;0.3304559611706583;0.7181722834480814;0.5748148055412395;0.6719828559239959;0.6561528130432016;0.6635658814708351;0.4766151529030704;0.37901240194594366;0.7203105383716653;0.40372049093299717;0.5979815466312282;0.7021161605814066;0.08846393144472828;0.9504965456053858;0.6268764662254952;0.13233921820853398;0.009796732369676472;0.025625934234899905;0.02754958554303022;0.4792710697261447;0.24059329074389943;0.2425619101948921;0.0009951366611721797;0.3673377038257326;0.4786668317063838;0.701707855198972;0.0007021559868314157;0.006628308479181367;0.09743253423123278;0.01761201460871368;0.04286973727108414;0.7702553249726676;0.6941904069006319;0.4455530901828436;0.6097027960572973;0.38425490296453585;0.5160387614196535;0.21030477092172747;0.216276252448052;0.19141633604104022;0.3294361235187533;0.41569918934656686;0.11866346328356334;0.2482174874458957;0.19960048959657045;0.23138302396176894;0.27264870759068455;0.25565275660800385;0.2222195734453007;0.05947894363300749;0.03534138446963491;0.036598123460171134;0.04342829036665045;0.0016240533773885662;0.003234841321441639;0.017313095185293143;0.02988782883952674;0.03634773884796457;0.17430499359959864;0.17597763637027639;0.01181872654517287;0.7920692862734615;0.01148676595376995;0.034372401881891015;0.01642675282082138;0.5232976366738116;0.0010092531376121006;0.17385963296010065;0.0;0.21169590397707563;0.00012897292926644614;0.0;0.12672796591594143;0.007366413215475055;0.38360907102386205;0.3618147133120544;0.45335607628915275;0.1451635564383603;0.08558624627766803;0.036018795411528325;0.2270283258344535;0.003782117718088756;0.09178693955468122;0.38888715104842925;0.020824554746396374;0.004640601407946742;0.00422629427756235;0.0;0.0;0.04222885118335411;0.0;0.6821002759587312;0.026922447389295813;0.010139124631144105;0.003102940055668133;0.3640401388874109;0.004780285311449887;0.020511399332447687;0.030035207080457694;0.11608583884761114;0.09775279543148649;0.020647885281781114;0.002793222428843859;0.28652030741394413;0.1739538467761622;0.02233687523862204;0.024359810473810084;0.008535854721295134;0.0013062846635936405;0.0;0.30038742004874736;0.1149740558202969;0.2987769091749331;0.01781552940692992;0.13261533478743384;0.006678499556663091;0.004372516641653658;0.0029382251927154625;0.06756145612390531;0.0;0.005692003237864568;0.007832730113971929;0.12025362658347835;0.2830266786506063;0.8383412113333063;0.0634816882825974;0.14870724054903553;0.0016366940312838752;0.012066734956010463;0.13768892856822357;0.03541531351795091;0.3690798826350917;0.1710338864286559;0.011760382488021612;0.0030145611639615915;0.0054191469606735794;0.0;0.02608629976183894;0.0024938622840258305;0.5238307767261381;0.06813421791969593;0.05827621843451074;0.05863100371470181;0.21261290956725143;0.012479005965544196;0.026983627160860245;0.6553408428949412;0.8127736933469126;0.857879055244937;0.3788424302198897;0.14597544991154768;0.006452165872710005;0.001841428987292171;0.003691235937764247;0.008585989531136635;0.033818812486349416;0.04160570773052293;0.029265084576296438;0.0500021212223966;0.000961081216484237;0.0064762422028867075;0.00781871775621183;0.10670765067328163;0.13270493307798006;0.0019046285605418694;0.04110042974272464;0.006005469452333565;0.005820270873606449;0.14442335414332594;0.03360105452758318;0.09668875144993364;0.006882094044904499;0.0;0.4118326535958527;0.0019352297821058164;0.02604614842891692;0.02488685418422852;0.10839503316885361;0.1282895953083825;0.028891191269396578;0.0742159696015112;0.8930695428931208;0.012530423924899677;0.014993385324841511;0.014225938395014497;0.045154291545605824;0.2229989780331203;0.21554847103423694;0.07830648903285517;0.0008850018159277786;0.7545994498056143;0.7965665486458883;0.18203638255474203;0.19178157922955374
+Indeno[1,2,3-cd]pyrene;0.938469744860909;0.9785833008179351;0.959055086791319;0.9681042879960646;0.9736519359377572;0.9648380507176382;0.600524360990996;0.9802162622598688;0.9772954723720854;0.9808350086077445;0.35401799293812236;0.9702802099723052;0.6069979585236949;0.9810488925802351;0.9806702121128753;0.9567669634695339;0.9890820140259801;0.9901170142580029;0.9795609205040289;0.989362998966002;1.0;0.9908492820780542;0.9630568547255051;0.9915108630016113;0.9691963959300858;0.005615536730218158;0.4593516114842383;0.36307148361859115;0.23078172229843827;0.3080265740499232;0.13659201226568657;0.19309595566564958;0.3350153933459663;0.7678349341345032;0.5301096686692385;0.9200643430201388;0.312993232337422;0.1436028999801142;0.013168665725326982;0.5232954249902947;0.14497906712205;0.5817563409618359;0.05641463021421283;0.0;0.0041470518171858005;0.0011948734474730971;0.0017676344379334223;0.0015225793359556702;0.0017779138695867976;0.42975932756277263;0.32011098417527206;0.1351593436503487;0.008758318821018369;0.008297245224029628;0.27448898796161214;0.6015174257076953;0.28359416809521426;0.40059650263073354;0.26439717127154644;0.015702240869878623;0.1963423385019241;0.3601327773661851;0.4758074543198028;0.4657797834511578;0.2782793759203581;0.37605778203594736;0.39623944711861375;0.28413323158257225;0.2830354597257869;0.28041593232373446;0.2625169376826615;0.1863501499288622;0.00492744146589963;0.020812256875079205;0.0027883498244003313;0.002331928452847099;0.005713656365165101;0.0021160955708640445;0.0;0.037213918631051675;0.0031423042888492226;0.003928911512092086;0.0038434547415961296;0.003809343853326319;0.03785794290929775;0.019195649017027333;0.05937211776157213;0.06549474975020061;0.002481682370109895;0.017734335745695468;0.0022760614145788892;0.0025663076792160153;0.006421218312715676;0.0008328675880130969;0.0002448050524079054;0.03653849967166981;0.010336404368851524;0.0019738943300155122;0.0032666792821187973;0.013147948504010548;0.03543637821608098;0.004625239011543951;0.004169925540499393;0.026652246239881175;0.020029211003402637;0.6665469189557837;0.6528651903440736;0.6704167059881285;0.6849415921871873;0.7702291840253476;0.7146950277732176;0.6438510623854796;0.792181682931895;0.7691351268065526;0.7338286410864154;0.17251249155972126;0.15825788764696577;0.138600171949285;0.5790511686544535;0.061746432961837336;0.04213489219712308;0.205466650075164;0.5854861454884159;0.005392617833331587;0.000700421679113717;0.0011353826798372664;0.0010769875429076667;0.006481042460862092;0.006608430190686457;0.003089431564957529;0.016531478571488067;0.0011171059679889839;0.21355237665581076;0.053077275439172227;0.9593921809480873;0.0006398731996611912;0.032292256922646395;0.0010122577037154907;0.6723476692890377;0.7602994155057812;0.3304495490740634;0.6235486248319116;0.09195006885196562;0.2556262524564569;0.5247982528257149;0.0478645086107941;0.014094869381331178;0.026411993710302277;0.08768738436225153;0.0808901018551935;0.4490086780544448;0.017927897804840658;0.015553813492797594;0.00326668412222447;0.6041375366781342;0.3265248808689132;0.3621878718482843;0.12034362192533693;0.14384709360885586;0.16733755149400742;0.15303446271286403;0.010531682844904633;0.0013940846951819006;0.0359039374998057;0.025999173021237897;0.02093144769180436;0.0071258505985034954;0.026159928933757886;0.035264775708656264;0.013624419124185709;0.008928709316716429;0.12477029467252129;0.06186850381660288;0.004161030346402766;0.009538054776375095;0.1242168077442836;0.005300645612516119;0.004485872553633124;0.373880997159325;0.755929369248123;0.7419535319184157;0.00031769972945410526;0.3326267798701372;0.8639432014473241;0.0166393628508241;0.039636321728287634;0.035071632606835074;0.0;0.5501486956176449;0.6400285372947084;0.7268253416566091;0.7123705081477013;0.30371785585466005;0.7168903787514458;0.5538585446054914;0.6706198623840482;0.6538817183074943;0.6645899064962906;0.4741283786210734;0.3754210194846691;0.7221248211009399;0.4056475977886343;0.5971266451806885;0.6914412502054104;0.29369809807966113;0.9621217534181618;0.6370070119888299;0.18436213261125847;0.0;0.03013594121655863;0.021335517712421863;0.4827627435768259;0.24230057995918808;0.2165395336984744;0.0022057987639112334;0.367029370685346;0.4765174430526928;0.03231529855916416;0.00020073014823287358;0.0018948800102999556;0.11287570705932275;0.0072261036340677594;0.04680288748530092;0.7725713360349716;0.6824073127168597;0.4414682647480949;0.605948409975784;0.3732315983073271;0.5057015521857139;0.19658463639554002;0.20522252373867117;0.1800287134422806;0.32291582669589314;0.40821043002106744;0.1087607633230509;0.23867196491891476;0.1973795876180665;0.2306695098189199;0.2679365382304082;0.24589463921952415;0.20860051029889048;0.05995358626357292;0.04912416927497381;0.05303425573788193;0.05989780997696518;0.0;0.000413111725086428;0.01337861059504155;0.020766130280191374;0.011748937468493313;0.18810293439876852;0.19009336906244823;0.002700608434368093;0.7902705940170269;0.012328562003093818;0.0372220806512266;0.019187412429182076;0.5296579890580859;0.0003980913314936717;0.17585391852909021;0.0;0.25490695227080845;0.0010091151594210845;0.0;0.11255675049839971;0.010690865675271269;0.3178111494842911;0.3596559709551649;0.4126172303435334;0.15196203733577188;0.09575474991762181;0.02163161152863929;0.2280526008468626;0.0009049954918426277;0.03590466598830313;0.4095912021773302;0.018753434636498298;0.0;0.0019746106258765003;0.0029741210335366306;0.00017285369496522536;0.035557434582396304;0.0;0.6921581658128662;0.02112049317673974;0.011004804918732904;0.0;0.3610114068315086;0.0027574220250657176;0.02171557629592677;0.02941395489439421;0.11299850243346397;0.09787604935399878;0.04040897934861281;0.014428811169745568;0.28141340636297796;0.17866242990201656;0.018904960517949196;0.041390117562961896;0.008618565701424455;0.027642956560953582;0.000463718857315458;0.2971939435264983;0.07737454300933101;0.3022732480784003;0.05983560931957288;0.17328005327325544;0.005114709928835133;0.0016193735788789638;0.0016123742162613545;0.051880126522279905;0.0;0.0007104104485054274;0.002600620167735809;0.12168333746432795;0.34112889447907047;0.8484087381604906;0.05637105679227463;0.15478920576000488;0.006395527174166278;0.021538894509796163;0.16574987243813638;0.028530098114715522;0.37361448678600423;0.2043825418206778;0.009152689977702176;0.002802295754648565;0.036929215033407466;0.013869398079709144;0.01649255643653615;0.001178071572862218;0.5196802274665586;0.07401863152025814;0.06277470963812236;0.0692229683047443;0.21528690554233423;0.017945495805182517;0.027051344302688077;0.6401021911953094;0.8100261663094623;0.8694213732796956;0.3938040601619056;0.1341262356722401;0.0;0.0;0.00838668510231588;0.007055969240674191;0.01663766226245143;0.012404712168592876;0.04260406852670366;0.06183822820330722;0.01748347816435425;0.0092357818931274;0.020412909410832774;0.12068391061499181;0.0786506222289133;0.007780091583387528;0.04061190744067793;0.003476839493997405;0.004190783887048136;0.1458125751142458;0.014906470364428357;0.01847769771707937;0.008670252139183031;0.0011846222189427374;0.024252027492834703;0.007891098801638173;0.002974303994964086;0.005564533409835277;0.046020743614081885;0.056627794613121056;0.002625915840982511;0.040476815902219715;0.8980854097604811;0.01167435539865749;0.015138668677963768;0.05489393530459709;0.06511766869098588;0.22300589040219995;0.20628463500756974;0.08038181478178713;0.003666659227750024;0.7601285197283745;0.7817756280396032;0.17461278540009825;0.1903352576996871
+Benzo(g,h,i)perylene;0.9262451572947892;0.9842490553605286;0.9478180043216263;0.9670357269076345;0.9715660857325868;0.9603641224109807;0.6291177682403477;0.9796595562690418;0.9775551167091705;0.9748111292433398;0.3512510727353101;0.9663449740445439;0.6163122029704605;0.9790077519169197;0.9827635438057786;0.9639404272082228;0.9812971862344391;0.9886989210121455;0.9855869744319813;0.9892088334457995;0.9908492820780542;1.0;0.9443958216336716;0.9895255591482103;0.9653870004740014;0.0009100022683709233;0.4576696816807194;0.3771294210753441;0.22746022418896925;0.3230865386576224;0.133923071241974;0.20745905568775094;0.3402753256471215;0.778023712215186;0.5412851937787249;0.905089686772892;0.31025474548373977;0.14234378194773256;0.012931512238216999;0.5347849993231887;0.15380924356666206;0.5874918675315026;0.06825514613982142;0.0;0.003954648520884856;0.0021363317642924167;0.002843670163227299;0.002764158527711777;0.0029513530157053566;0.44465966521160705;0.3346014730049113;0.14199796532337425;0.010181751624835192;0.010593086803713972;0.2895410848498204;0.6084607637970894;0.29492035073394596;0.4138608485546174;0.275262604052311;0.023388856922805103;0.20612913685770326;0.36766847824970306;0.4858936318573649;0.4755731906836899;0.2877412731467515;0.38865356554954555;0.4093163756817648;0.2964388595492124;0.2945097120603027;0.29276026680835265;0.2762112823247727;0.19878208196774716;0.0017915086914868149;0.0168771932439013;0.0010542849543958498;0.0006984831546518698;0.001240013027982887;0.0026112640539797914;0.0;0.03734354061009101;0.0013757229579237373;0.001265738212131037;0.0013105691437749606;0.0012356162167389498;0.016972404675938614;0.00016400275493904856;0.035973709337402425;0.04082700918456548;0.0010371378695699161;0.02682107351996818;0.0;0.0033723179739695575;0.00828640597045182;0.0;0.0;0.036011654277266616;0.009914569525311582;0.0005009318840052852;0.0005951001234200785;0.012888367087326063;0.02025027425351262;0.000297325791367346;0.0005454486264585605;0.023295049595361373;0.018586012263442874;0.6905692502678936;0.6884665790829051;0.7039943555338298;0.7193767929076077;0.7985853776916655;0.7407097533227929;0.6672249688084513;0.8231538234946422;0.7952616413965715;0.7573286133101039;0.1842040466388451;0.16750638890992903;0.14658748375304237;0.6030451543967532;0.06127505354695189;0.044010538016109706;0.2175011000466843;0.6134626759467221;0.005944804856938285;0.00039679223697688547;0.0009572088814926395;0.0009727466290807993;8.191183703109588e-05;0.0;0.00011822298544991687;0.017345722447399514;0.00042410104564806044;0.22809198687118695;0.05881653667864388;0.9453194844355641;0.00023948328298599924;0.03144977776685831;0.00017195561857510499;0.6623131328190413;0.7451297549624708;0.33029660507525244;0.6140221304635431;0.09223676054342254;0.25506977022076643;0.5275790591944138;0.04681564377590532;0.013471906554662023;0.02654456206584445;0.07265663844964602;0.08030100001408233;0.4357238818282236;0.015965206224305348;0.024788275356279848;0.0041395033811407475;0.6021245655365848;0.32229289011332096;0.356067361990811;0.11838601205493894;0.14137934449409492;0.21957188498340272;0.15080318178108432;0.01341309000179018;0.0021245435701576893;0.04295401954157115;0.022683653299548412;0.027031150090319967;0.010277245206024068;0.029171243294761746;0.039387757523358415;0.01586249644062784;0.013361912331939401;0.13723284408856126;0.03115646622754277;0.004549301643871982;0.012176671870093518;0.12224547633623424;0.007289405283018108;0.005846286041626134;0.3689177435730232;0.7547037357877993;0.741947294630042;0.0;0.3272551252099316;0.8521006961395734;0.018101604363732215;0.04727895669919516;0.0428179673171827;0.0;0.555713524229626;0.630505925937975;0.7124320623174751;0.7000909993937092;0.2990471906307979;0.702176565438492;0.5576987185596697;0.6745643739061684;0.6583152716676618;0.6613011879696885;0.47125951308400993;0.3736028595534995;0.7188705475751671;0.40009127302132624;0.5950642139783453;0.6800487434703593;0.2948520795242288;0.9460861175758553;0.6237077025302581;0.19831422724115624;0.000978347249856319;0.03995612193769148;0.03154151504419255;0.4792966378160232;0.24034716135439313;0.220597565565073;0.0007567395855448623;0.36547807886616157;0.5003056474817263;0.03373855667281974;0.0003528882231137119;0.003331242694409237;0.12225904813201559;0.007041387557802996;0.04973865566929844;0.76609108978855;0.680934252170933;0.44363147258112;0.6133638274154286;0.38083027117779517;0.517200733285878;0.20669525253065318;0.21573565536557637;0.19003156381115188;0.3339587543241529;0.421583043671464;0.11702951672800742;0.2493159478329811;0.20507518272045147;0.2376634462655739;0.2784206856360768;0.25697663229335194;0.2082230997039996;0.060292581632840216;0.05472082517529421;0.06864834014244499;0.06787874908690726;0.0;0.000325656266351182;0.014289357016312799;0.024927248423245806;0.019771033127869743;0.1903954888421258;0.19275345308013878;0.004404695837444111;0.782871579063272;0.011495929788483801;0.04191831320993547;0.026146773527916795;0.5433942660613065;0.0007038154459708273;0.17268082010697514;0.0006997860072461275;0.2638824499776477;0.0012879077151329015;0.0;0.1170030071758138;0.01494963139794676;0.32503552610862735;0.3660224971654914;0.41423418753527974;0.15313867304115417;0.1212538112804988;0.02147230734761937;0.22392305938995063;0.001007471822760427;0.035197471113295825;0.36206948578475884;0.021414420461692733;0.0001113235075904218;0.00029378485210077303;0.013620296327544546;0.00015112682971129532;0.03598198914892213;0.000693244305004364;0.6846092221797522;0.02006676112555028;0.011237638537265032;0.0;0.3669302401853188;0.006385009231950347;0.02162038183348949;0.030056884619934148;0.11256420340560454;0.09617518251417859;0.017166003549405066;0.017722007535615484;0.3048802869844197;0.17216048364705713;0.01816756103898245;0.06505608347528427;0.008563375162524898;0.027380992499599587;0.0012273515220009084;0.2940919042276082;0.0897093118410145;0.3185460764316599;0.07827473290264261;0.18494701435882055;0.0073190436124909;0.0020185198577190987;0.002662198150553733;0.05106680090866286;0.0;0.0006814781377830172;0.00331910461049723;0.11992256157810843;0.340618763942039;0.8333010228072654;0.057092017756313444;0.15074735216045365;0.006153057955980075;0.02714484847490743;0.1767257929320371;0.028433091809964055;0.36747978225596895;0.20756567205993579;0.008139066101091247;0.0029226056506773644;0.05111997040268664;0.020172073408018385;0.015361992674499133;0.0017746996374145645;0.5111379598338694;0.08385085016546862;0.07255664677664153;0.08479623959178155;0.20989949914111175;0.014450709983295321;0.026873190072256085;0.6296336203485501;0.7942809650092264;0.8604703604167517;0.4011567998950816;0.13328141356065198;0.0;0.0;0.0014147794441511303;0.0010814026541437049;0.021459840383577428;0.01588625361626959;0.060843330531414996;0.07632447073026193;0.013166433939958887;0.01902171249925758;0.040752719252600884;0.12191952626003642;0.08112492876820547;0.009715544571044708;0.04202650180885457;0.0030256187938692927;0.005386930136631362;0.14763946846218065;0.027751153242479083;0.015526898587562229;0.012243864134792106;0.0022517443792333123;0.03557714025442222;0.011223900867989727;0.0036257043980721837;0.003855893342180125;0.06439758007565685;0.08430069921251739;0.004535302042371229;0.053697865447365885;0.8834422652205806;0.011464112831164254;0.014866037559362522;0.05690755685316435;0.07139789191272296;0.21924597504452817;0.2110423585046049;0.0789664541989573;0.014116465783622247;0.7506140806321652;0.7729079973635005;0.17224673275700833;0.18802322079062386
+Anthanthrene;0.9077733888064904;0.9236632637531762;0.914525306960395;0.9192531715179311;0.9256560450328308;0.9225576680371577;0.5503900166412526;0.9273060109910176;0.9237007972299678;0.945410459495474;0.3488235126647634;0.924692155402464;0.5840952872448206;0.9325569817171272;0.936375783516096;0.9241237312192242;0.9455990057997715;0.9408763327989814;0.925512194269578;0.9428880388121132;0.9630568547255051;0.9443958216336716;1.0;0.9488836779022377;0.9298821928803785;0.016366894864140415;0.4549457796688875;0.3986776459190546;0.23012635247771737;0.28348479850761127;0.1536307641598338;0.2176403817012866;0.34947613679368567;0.7289519373502965;0.5398052064991096;0.8926469363282316;0.3415376502718149;0.1440598444795803;0.023787657679097247;0.5394522367017319;0.16191572164999707;0.5879447577389131;0.08154366576783213;0.000730112769802634;0.027913850101814935;0.02008565877153556;0.021903128446605667;0.02085427802997461;0.021262812846203065;0.44696631599914577;0.3395378887019376;0.14772484236207173;0.017954815041469965;0.013268733721882506;0.3058476015432688;0.6066384436768575;0.2998920091664073;0.4177963467359279;0.2808126037427517;0.013851740384686749;0.2120704597215522;0.3764840133801192;0.49329909778931397;0.4805039498290358;0.2928335772416254;0.393139823476575;0.4134141741112129;0.30125149788151173;0.2987118123637067;0.29776528181617845;0.28138639234787033;0.20620942997928962;0.013454668377955916;0.031199810633864546;0.017651574879994733;0.015061502316457493;0.02502076359378392;0.01690322450990969;0.001115406550565238;0.07003370788773405;0.011898768681486807;0.014076432491562926;0.018349905036004203;0.017791552340014217;0.05854651568396993;0.041956529215637195;0.08384315187299296;0.0966649872784181;0.030023407510581992;0.0424610817841718;0.018090017371384774;0.006166050338457093;0.01856393712397026;0.007597982157440925;0.0075855093311633865;0.048141926764451705;0.025379275164743042;0.02132505882200878;0.03775552419660763;0.031419639058543725;0.07002929041601852;0.05822571112747878;0.04786806297103005;0.05342823758123748;0.032764877316340354;0.6413954756247034;0.5897629309473075;0.6172145467192286;0.6312647546676448;0.7305310518167617;0.6883645244553446;0.6259853264457675;0.7376940873099667;0.7194164106612838;0.6977592827653676;0.1722385756025312;0.1594958842588412;0.1406454637598471;0.5436317495438925;0.07386201590210388;0.03927737215414993;0.20944225376751466;0.5424415468335926;0.01012257057125572;0.00477283646978427;0.010181021601245064;0.008815392038957683;0.02151309656529534;0.02232214480136581;0.010499821168395805;0.04552233742022686;0.01914089501033229;0.21258994214375201;0.0846164280290448;0.9222796107768411;0.011148188840793369;0.04018618062607141;0.02484851414956493;0.6833094480474335;0.7622464315829033;0.35203410423768905;0.6174281281024665;0.11198450653883922;0.24787615064377982;0.5179744980499644;0.06464039349174558;0.04857906018644082;0.046083037488032386;0.07979327205882106;0.08983873034214138;0.4342673504159312;0.033016355668789056;0.05045664055268215;0.01137524410600347;0.5938366150619725;0.3365777684682061;0.35551856268176957;0.11915294715220535;0.14819355609808732;0.09489585728458005;0.15846870180860873;0.02801392383403665;0.01554598645121927;0.030026051317135864;0.03522845687453533;0.03283955278648616;0.023019390349580813;0.02625523783461285;0.036486850730582686;0.03501300627827727;0.02725743526537711;0.1309885892754489;0.22843771993742895;0.009188066580071822;0.013125114994479145;0.12273557642215245;0.00716021457685435;0.013579326642481229;0.37151994838617153;0.7359415377547799;0.7221656469287023;0.003744252024210823;0.337292103893999;0.8556391836906023;0.036441708271261516;0.07396846474930266;0.043843868547859335;0.00039315250656929234;0.5432141817000754;0.6254672720143314;0.7134631519687062;0.6893569840589079;0.3024131301024164;0.6954580686700799;0.5550315429476875;0.6475001620831546;0.6312820436058878;0.6363271742229611;0.4569757435162348;0.35817581186223435;0.6928864950111877;0.39320637590387;0.5713213414237309;0.6677539764210604;0.2950653359183884;0.9281709413322436;0.6548766688782123;0.24772429429695342;0.004212792823857727;0.04754024774178936;0.029347635562039738;0.4775048772522529;0.24848151154537376;0.2190059023745668;0.03009118514861934;0.3631582296994365;0.48205070152609375;0.048737256871815335;0.002734921904325665;0.017345089693938675;0.12256933168259448;0.01564876331251654;0.050303196508682375;0.7661393337762401;0.6902286805878048;0.4561634383325282;0.611423823371507;0.38990019816289917;0.5200831701848602;0.21318649055551528;0.2224152235929694;0.19645145528635682;0.3391285786932449;0.4255819725978514;0.1254765350387445;0.2540755966886906;0.2174250717603879;0.25052624158049197;0.28857286487755945;0.2614135451413288;0.230730754618443;0.06772936875612538;0.05642497476968287;0.07432729856002053;0.10470746261821025;0.0007114038379832399;0.006105171113431217;0.018509059256041384;0.033592611155534524;0.01425677584381064;0.19390652118527432;0.19488660393710597;0.009840788087779275;0.7748943137916662;0.02949934882940446;0.049897490914492665;0.036881596484709483;0.532650230244383;0.008561142516715109;0.17200508274819712;0.0029315418272068;0.2701110351017083;0.006394929575524067;0.0028492490764870427;0.12187974701206124;0.01792782934847798;0.3318567076194193;0.3798628194688113;0.4171724543931056;0.15224040997723934;0.13803045156078753;0.022538633187889835;0.24016634793883457;0.02826152748007373;0.03846155253501687;0.42862416333377645;0.018829385550010257;0.025665723602409242;0.01976574591117963;0.029946657743867504;0.012818376928238442;0.05544704608607614;0.0028464675282512406;0.6741417083363437;0.02462771986084673;0.02012309459043705;0.022378023201348067;0.3654699315004118;0.024087295728984128;0.02966411980536255;0.034170780113283644;0.12528305898649456;0.09458559841663237;0.03378959229849774;0.030710121633657335;0.2628302983182665;0.19715234889917235;0.029383155935859946;0.06227616961842506;0.022660402962960062;0.031634134976203494;0.01421865521528161;0.29304679206898576;0.07625516820525048;0.29109536963277444;0.07432711074502393;0.15318036724327883;0.03839502140332584;0.0030351913044232076;0.005563331942650552;0.0582501564024083;0.001332624108550952;0.0008729351328900346;0.005115508825004644;0.12126218897878066;0.34083109727885424;0.8192020653673777;0.07241259490299339;0.1716022273742598;0.01440733542124;0.04643428211479247;0.17956139463943607;0.043488841946552566;0.36363401288204045;0.22387353119830208;0.018567830387085236;0.016675499785362258;0.052165110747111235;0.0422451172527508;0.026279418647601027;0.004909239996438167;0.515486205601988;0.09470037386758458;0.08416307836784617;0.1088742315362356;0.22585058339105002;0.036817142319677705;0.03204192720604402;0.6197446604620954;0.7926794754616386;0.8446701160884386;0.39713388414634815;0.1443368872988337;0.005661426289650447;0.002070406512116105;0.06557750054650255;0.05889136783935629;0.03544105936671385;0.027053247773299795;0.035212109461998875;0.11675459562962916;0.03496140088779055;0.02451508701048712;0.05021883657109283;0.12253276640605013;0.09803242445722868;0.00644623923927464;0.04463215748933416;0.013451324586330441;0.015861042924283832;0.16161797110398046;0.02370897959791572;0.02558752668513966;0.02283151438293702;0.011178822068647482;0.027664625826863493;0.013959041903749799;0.010773985348553424;0.01817417902772494;0.058546074164445495;0.12702343685039663;0.036713292389079194;0.04799961419169721;0.8702188857781931;0.02134142706407129;0.02478615554488097;0.07018808263472334;0.05422465260909155;0.22326408652263455;0.24317682514526287;0.09165817848240318;0.026798511513508164;0.7568670644590164;0.7790534907772959;0.19614253424912878;0.21289379419065443
+Dibenzanthracene;0.9434976142457332;0.9790003149367952;0.9685223625542234;0.9689989290155193;0.9751768341746739;0.9650338304704453;0.5666285571506295;0.9789193976216728;0.9748972711471383;0.9833854116876468;0.3645921262049421;0.9733590972377653;0.5839416138263323;0.9793785452888434;0.9799349691702051;0.9489821583873389;0.9946348887910145;0.9925609180042965;0.9776508621583183;0.988660352601509;0.9915108630016113;0.9895255591482103;0.9488836779022377;1.0;0.9726062217715415;0.019247504938101595;0.4490411937682327;0.3312480180846296;0.23251074370132907;0.2684864903366003;0.1368859569099802;0.2070557842303799;0.35828101866510514;0.7509131575686371;0.5493308949916187;0.9266658933350991;0.3044997402706988;0.14701691569052192;0.02876075809642013;0.5424350218655394;0.1554639420779812;0.5986586049331176;0.06617204634606619;0.0;0.0026778659955447232;0.0032219886799153222;0.004391247135346448;0.003191314182562517;0.0034633998376202386;0.4492758854761202;0.337287829305073;0.1394440374165397;0.004232364962360494;0.0061657139073635955;0.2896371260564491;0.619889053306915;0.2975546430816556;0.41886791344117474;0.27788514538578846;0.014471977806466236;0.20853139861639006;0.37334112777495504;0.4935548853152343;0.482987992973392;0.29082647574673615;0.3932781897929639;0.4142808607778395;0.29939206126756723;0.29750348733149184;0.2956653180547096;0.2782340289164144;0.19975972836742917;0.0017131575028286128;0.018569424754498624;0.005458233092034849;0.005043698761354272;0.0;0.00022152950227742485;0.0004391359509656959;0.034176663655393784;0.0023703477643801517;0.002366905116633812;0.004487626699720405;0.004424485083739223;0.019252775920864787;0.0010712802115476518;0.043555231293530484;0.04840758424093859;0.00684408819760575;0.013970039205605283;0.0025443376935769353;0.0014397029021682322;0.005379606817685173;0.0005311343605649728;0.0010291453034990685;0.02870085337272375;0.0026169871329192714;0.002558603648295117;0.0033493287510449315;0.016300993095141346;0.025334059272059773;0.001635015212013366;0.0019351412891948656;0.024454022061870792;0.020387304410257243;0.6709336555486373;0.6431544784578737;0.6648563782659627;0.6784933791116151;0.7704888727759973;0.7188715719929905;0.6517632132250273;0.7856615736164106;0.7642338117207069;0.7335827677601289;0.15607173606388586;0.14467017051817946;0.12709093723814163;0.5785197855711778;0.0545615733008406;0.04368768607809451;0.18723552891642706;0.5845411644910632;0.004001914329096438;0.0006888158237415959;0.0008521495797886617;0.001007278716391326;0.0;0.000384913634983711;0.0;0.015303872615517435;0.0011887332213215832;0.18430509959719849;0.04068207657270442;0.9712762255884978;0.00022460361357594212;0.032373212532918305;0.00023745060164170645;0.6727013366252357;0.7618733427058612;0.31758961600934066;0.6294673471554495;0.08973220591906964;0.2497060329843271;0.5118672640227828;0.04819025422239656;0.013867471412700422;0.026074553920463994;0.07293293544987607;0.1079044842706473;0.45752905520384723;0.016825180191525978;0.013011301340363702;0.0018212916476272245;0.6064445073420602;0.3290425270672231;0.3652873023592257;0.12145431253826344;0.14666749301049245;0.13436717897207556;0.15603788268461383;0.010583030785616033;0.0009307436122310139;0.029283351333582456;0.018087230420927115;0.018290786148359862;0.016092984524739954;0.015346119303713586;0.024680720401487905;0.02608825017579954;0.014902484988701338;0.11274395016182402;0.006617659751024588;0.002442588154409172;0.00689033272241918;0.125599176585372;0.004090478093130514;0.004641507158660006;0.33712663109144897;0.7441821089917946;0.7284807115889151;0.005056180237331845;0.33735436703011656;0.8673252806616696;0.024177589477171833;0.012896834179145973;0.04411502396046302;0.0012363737362117233;0.5281739668656771;0.6417087625500146;0.7323294506544747;0.7188109934371592;0.3161558672602606;0.7517059828601182;0.5679909983347204;0.6564555458510806;0.6392457782934968;0.6665305800649789;0.4782024879885198;0.37831402247648627;0.724453299674405;0.40730486786267694;0.599772316237202;0.6953665024964407;0.21601971543827564;0.9716794446840179;0.6408355607638695;0.166532611911222;0.00042504814724933477;0.023963358400507867;0.021114441924273045;0.49042566950352173;0.243752147713102;0.2304972611689544;0.0031924619198360595;0.3735742652541051;0.47701669243314154;0.04465249018410648;0.0003862259336327332;0.0036459485908965617;0.11415481178014872;0.006261897695479126;0.042143624500579846;0.7862983257296502;0.6969399735256575;0.4517134600087791;0.6244227626783667;0.38679690341791506;0.5250890938618936;0.20985206197812353;0.2182027815244556;0.1922067963590483;0.3379516764034182;0.4267296255499354;0.11773004010422612;0.25222524021886206;0.20518132021351607;0.23832375167756867;0.28030186616454095;0.2599025307965063;0.2128852030962198;0.05962816825395875;0.03680392918737849;0.04954678483952224;0.03132007318114114;0.00041416442199566705;0.000959893153582093;0.014617523712639212;0.02317947766132167;0.02372091434084801;0.18778054156338791;0.18929856581640533;0.005911800182988814;0.8081900807318909;0.008203241055031443;0.029892182101231877;0.01661404505065177;0.5190166621887989;0.0014519614882932664;0.17776795325280412;0.0;0.23656223673527274;0.0004489971779384969;0.0018224147506263172;0.11660906937292864;0.006242349157663525;0.3288598675517413;0.3717513490772279;0.4331587655179768;0.15319003085712884;0.07336072065876358;0.02575247185053832;0.2404513790045748;0.00017333250180695314;0.03908121259722658;0.3708723812499668;0.014450278257715067;0.003272057824317595;0.0;0.0;0.0010757538804892356;0.03869627552083509;0.0;0.7000538031775703;0.0197234574670354;0.01034818543186492;0.0013594525578836927;0.37383171259386655;0.013699670195759203;0.021575063523939696;0.029851100561541315;0.1163846735564096;0.09921342011775204;0.017066645784393448;0.014718452015406103;0.24524911974417182;0.17718160620092405;0.018201920641407444;0.026792350675211428;0.00882765869515068;0.004735601387793298;0.0;0.30006630241331445;0.09102363507492829;0.27011732309837855;0.01864143244333484;0.1409807858077959;0.01681131700047574;0.0014049714412246235;0.003518221205364305;0.05758311654975296;0.0;0.001485893933371484;0.0033187865707123856;0.12302479480071063;0.3429642306262079;0.857648895600983;0.06149345276868791;0.1525091787681603;0.003556962029885806;0.021585860749048308;0.15689478056035341;0.0270656486951361;0.3781244425258371;0.19612382183658447;0.009133712113187928;0.002115900128130742;0.022928753747744616;0.0017215303844038943;0.015520845231596152;0.002242362994154007;0.522821341598449;0.07061245577353516;0.05947782836950224;0.04868584081004533;0.21520683745319175;0.011843409278073501;0.02755335409844425;0.648654363687294;0.8187466857100243;0.8789563051356584;0.39387950047285797;0.1345770172749489;0.003257933061955453;0.0018093540867086557;0.002747550648984838;0.0024955188356451754;0.037108534988462054;0.04011108362480074;0.01307928619384578;0.040460482394519416;0.003820530039961014;0.003723326723692753;0.05472656979020238;0.11104599004445169;0.11498750666039252;0.016949628266787455;0.03999515967208099;0.0023237156868563926;0.022566377594965013;0.188089179984766;0.03118504054825006;0.020775591138502903;0.014956185782260925;0.002591719773846963;0.05001261419124588;0.004364251223949741;0.017283912292002532;0.013600185325948606;0.0639235329635894;0.4691314803545472;0.00592481424079873;0.05663221127885246;0.9035433009345275;0.012053447765893049;0.015302537175278262;0.06658956788281215;0.023370656327184634;0.22033140877730323;0.20252978180880374;0.08020785658700606;0.0;0.7692563993627948;0.7919667787396079;0.17703675988869438;0.19557730658952888
+Coronene;0.9269827212435056;0.9567945654032274;0.9468693619568468;0.9514891864313667;0.959984516825554;0.9479826538483855;0.5584215196714677;0.9601597039677419;0.9562151095492138;0.9645898378210974;0.3729818744243681;0.9566148991929289;0.5529906353106748;0.9597048752541686;0.9618262998559359;0.9302498214504172;0.9704694568073391;0.9687928060797135;0.9547000990448846;0.963250849252752;0.9691963959300858;0.9653870004740014;0.9298821928803785;0.9726062217715415;1.0;0.0064282037790890645;0.4338886647363707;0.3122182075521415;0.2601234817464449;0.26477180653083227;0.15149504574571035;0.21680111147815628;0.3416765279036788;0.7242757415529266;0.5531338320982602;0.9048429206704693;0.32104225210033444;0.16607347036602696;0.01658402937630941;0.5465139541477421;0.15899732635430913;0.6038725457079783;0.07363621158527357;0.0006764970757171268;0.013626927872682803;0.010682074025084426;0.013655914594356722;0.011768535774301998;0.012917376573180228;0.45074096651576584;0.3405977158457012;0.1325971062922855;0.015386519214544892;0.014235011870193942;0.3016504774318678;0.6235377962163431;0.30425831897310734;0.42482262649565183;0.2815776211235803;0.02885149097292234;0.21072860102513133;0.38373209769855077;0.513809103790064;0.4924588901284918;0.297425296809621;0.3997156946624073;0.42053571900340947;0.30313712902754125;0.3012119631764048;0.2996087907058831;0.28173686278260535;0.20413225762229598;0.007964378622733847;0.022260112452359003;0.0026066406455277566;0.002303571592186311;0.005036263123657608;0.004192340434981041;0.004923649871857453;0.03397629452695591;0.006111264285016366;0.007152895827169435;0.006702832007894231;0.006651166219174707;0.024461389737161894;0.004411452724924259;0.023018929739761305;0.028776425752586314;0.05157641835850914;0.07177122784788421;0.014385393107959533;0.007625475807678241;0.023474505697602708;0.008858147877444609;0.009809676887855645;0.031124841802578317;0.007341961092425051;0.017670233432106143;0.01473923669803209;0.03498317806823251;0.04001219473146887;0.017906226761923105;0.00917590929156493;0.0443614213534001;0.048744424592856765;0.6736876504519375;0.6519952970044505;0.6736644387082907;0.6850155036467137;0.7712110236585726;0.7188681490060106;0.6527206896615108;0.7886649801298097;0.7657100556038264;0.7382519171487751;0.15047962956453348;0.14224118119351575;0.1404708267458987;0.5813488773679109;0.07267773276531046;0.048404762052993114;0.18271652121336449;0.5906344695029775;0.03440572528284229;0.0031198793421984695;0.0065253072303922905;0.005215597803338916;0.009073497015607647;0.009580314644482843;0.004596338394824061;0.027866708204587788;0.017192719284824572;0.1548039913702037;0.02967840940846345;0.9437949005499666;0.010529544350458131;0.06093930161960609;0.017865935623232163;0.6960206909706972;0.7739615897620863;0.3005855073416149;0.6330077601058385;0.08632583507859558;0.23553010059618618;0.4928263479924124;0.057795072383560485;0.028574337330100393;0.03966643632851022;0.0752583430275991;0.09689485595872331;0.43130770115417;0.029237963773100294;0.04492062422073998;0.013763540517740242;0.5863706282162826;0.368563785224341;0.38629352129936334;0.144977721601314;0.16650677052791682;0.15748362876328006;0.17864092341320587;0.03401871286813988;0.004980252602076801;0.027209258356145388;0.036483622421403315;0.09238090277900922;0.028209693979231905;0.013052331661220122;0.02224588713901368;0.03621833569371325;0.03769481312412934;0.10038034249436169;0.0071366008225308974;0.008936838757837887;0.014069794269131167;0.14598559959635843;0.0006665535198874972;0.018057219073005566;0.3399683716738714;0.7186613646860917;0.7010133774649063;0.001968826772720046;0.3384047855881131;0.8514680272565346;0.020896539820441498;0.007887619131936195;0.041922435004580254;0.0;0.5189474487075904;0.6238614030423236;0.7134231373653802;0.702045236068798;0.2954529036931401;0.6948551895170488;0.5536768302825389;0.6199652734474175;0.6027292549355939;0.6570013773181386;0.4783317074658232;0.38545546013681764;0.7106971208870688;0.41168029399719863;0.5958954708039786;0.6929250265742326;0.09718172060934961;0.9514814581561136;0.7049474897049316;0.15947194440844015;0.029558471235098083;0.04423740182856986;0.076302431400913;0.48815687590304113;0.2608572405988208;0.2147624326836283;0.015290370320238554;0.37017854087223695;0.44417579070148844;0.06874690987536484;0.0012612576034300915;0.004748912739896824;0.1213367198739664;0.015392914927167187;0.0441253956524367;0.7795834225082615;0.6965849576209544;0.46068561809985986;0.6261429024880886;0.3948926875814805;0.5327495078499203;0.21234234487755593;0.2210955040426545;0.19462727647349434;0.34403836520940584;0.43233584999142877;0.12476352913355648;0.2548106439670196;0.2114282667022899;0.24540803686446253;0.28957925795445844;0.26265242823116386;0.20351770692153556;0.09689840585361426;0.06804933560308606;0.03722603312435318;0.04057637947105417;0.0008788461031251346;0.0023606528406484493;0.01680346966272114;0.0232407708126315;0.011597272263641016;0.3791039978508687;0.38107802279076214;0.0005901802981158137;0.7859454072687038;0.019478119160702766;0.0239712854265483;0.042716132989451976;0.48600773856376184;0.00890657400851522;0.19603296523001315;0.0028871421027182346;0.2226930290354299;0.00018324923196879044;0.0009464727591255182;0.10455457559895465;0.0021749481368428633;0.32292854199584564;0.3773561123024455;0.4133149875795864;0.1587963420675321;0.030076172857850143;0.03416722799584655;0.2431183250868444;0.08176517366460302;0.043528194100898726;0.36401025376563356;0.012869017375235152;0.006649727006211214;0.047779525447239686;0.032816353909812246;0.0018403377131999401;0.0920037157498718;0.0029710901720323086;0.692451219032118;0.0965342497753816;0.09032133094586935;0.02018709790705544;0.3639308135819009;0.0004208199547442231;0.024473713640095436;0.03375860071287712;0.13079479265263363;0.12570912407103926;0.02138503405250162;0.06667448400504287;0.22338215256430513;0.20448993354706518;0.04784599965215949;0.05465062002447551;0.018378497058663172;0.008710933708631106;0.03305514684211064;0.3028708210470356;0.07164076801772871;0.24245411338187545;0.03876883610317559;0.13543689689347177;0.022817205133592224;0.004202435999280559;0.006206694626250965;0.06590388912635355;0.0018183664067512506;0.0022099348210256023;0.00013363369938883618;0.12683583309047414;0.2976887154606531;0.8391216920168642;0.0698088993853367;0.1577281610605588;0.013781103397562947;0.029108585072826744;0.1700495831863213;0.023277170293751936;0.38287613663285447;0.18491188136569303;0.021409997695098323;0.007860242783527089;0.050762951641520435;0.012165777639355847;0.0373180255089044;0.0406126044869622;0.5203134042847117;0.09196038238273065;0.08048473015040834;0.003504058281790437;0.21364796468582117;0.040718426467353526;0.035679441444677995;0.6319591692779725;0.790860341403099;0.8506703172837404;0.39178007946247306;0.14348026588776447;0.0004813684990739763;0.0009499841733475574;0.005498133843282429;0.004698269281682635;0.005838109479973932;0.0019700938088198627;0.007509318524012164;0.0475361374482617;0.04070078976471006;0.01942385772766125;0.014838928541916057;0.3692114890515841;0.07535195229373612;0.06525171576402772;0.04942530576494804;0.0006434617826272816;0.007300578344704598;0.14386038833275264;0.015219848734758703;0.006089644580480282;0.02147375668377317;0.00307306477145708;0.00962801398251038;0.004887557813671873;0.006879336075355998;0.01100102500272148;0.038824691947218506;0.015860619078417855;0.05037222793171002;0.03034076834699321;0.8719630579739073;0.011473841339778326;0.01531299599925917;0.0209155590225198;0.020618771483493538;0.24568356738863317;0.2262892314027472;0.10600937147885196;0.02032862278986232;0.7517408639451605;0.7681406944670469;0.1843350415790154;0.19198719809720474
+Dicofol;0.0038981395433715323;0.14068726997454584;0.002037690372810901;0.021099078082165403;0.020580668193334276;0.00989237123429836;0.015503823965541615;0.006697573434417838;0.004304744682856514;0.005225646114421875;0.004793956663665233;0.004645140805042971;0.030155145030447448;0.007649870274886467;0.03069970266408325;0.028965722079803424;0.10186547197004185;0.135470293866724;0.1522014322026061;0.13808066144758668;0.005615536730218158;0.0009100022683709233;0.016366894864140415;0.019247504938101595;0.0064282037790890645;1.0;0.007194237203603544;0.008627967178864871;0.014780613711024328;0.03145591853637083;0.008602788843759887;0.051207137088762476;0.0595845814894446;0.025461909762589028;0.09408064955981327;0.05841153864323248;0.07435814439851753;0.003652129600348671;0.003797173559865807;0.0023112478439226585;0.02382106801521388;0.010684210611806192;0.047713029265782886;0.010535203160526993;0.019050427277174837;0.01812518974580487;0.02395470075337616;0.017164580597166548;0.019399547232537923;0.00625443449872649;0.01018609861265346;0.03258476824979399;0.04862677584229601;0.03920076728257286;0.007736709154385898;0.009300716260351907;0.03665703121083287;0.02482189719832296;0.02119010406585201;0.023554355778271068;0.03465955775085586;0.010831386730750233;0.009183626424434963;0.009002499307145483;0.03810137027780654;0.02819663380002888;0.024255757753945863;0.023525469335763743;0.023438213708327833;0.023265795194881048;0.014098585876999557;0.036641694058754073;0.03404352849645208;0.037396558271292436;0.04934047320183947;0.04788734177161287;0.0729580362929823;0.07415565728568531;0.013106107305329009;0.04081868686826032;0.03781400712570064;0.03825625552187227;0.03923412964206175;0.03851203230923302;0.06922100691168369;0.06083381485453507;0.06187922232261423;0.07628822440759496;0.16084686109362448;0.006849206300710817;0.09263398687413184;0.06137612597704866;0.09641440970794349;0.024490119201030888;0.03432197149908928;0.03656857183906921;0.03393386073241343;0.04831444793210366;0.05953212278898338;0.06273872709402319;0.1107085773134319;0.07596021115161841;0.08740018476939226;0.05076488340637015;0.07213831473082409;0.0020277846062780117;0.0014532299356443978;0.002081775985901652;0.0025146146719278893;0.0016202721855995872;0.004217691478830089;0.0005472426994271661;0.0025221462308016498;0.0025404334104331882;0.004469852093958567;0.00585432323274877;0.007482860923121891;0.010649502012381372;0.007644217493960248;0.0440364563004679;0.026859242371923123;0.0034648100957310017;0.009236644745967276;0.027094968668575373;0.05695320422018783;0.04837971510073218;0.038771776727063605;0.029899086298543313;0.030747840987647178;0.03383874275930549;0.06884342163218493;0.04971904715091907;0.01679837528166193;0.031964960203818185;0.00790667596390465;0.04608979278186705;0.014191468238429856;0.03075085824549662;0.0716041078546912;0.08331274894774272;0.028348207378095142;0.05317383952812797;0.025506070044968212;0.04805081927344057;0.027076805145006162;0.004907006854645211;0.012152614147509741;0.001675396586027419;0.023375102988430197;0.01652071543931957;0.0018477118015383202;0.029682759769195537;0.03276275011964457;0.01593576703598862;0.028090876219209457;0.07130836183839721;0.020683869481132974;0.022281015904951;0.017449326158435856;0.04351255652543533;0.035714804960179605;0.018496239704500133;0.01969618906761077;0.010300695658305674;0.01333271248759524;0.011117795903765106;0.06005657075952094;0.007366916204902298;0.009074377182241826;0.04685708885892764;0.042362235034672346;0.03043620900606608;0.017636375683462283;0.035074656336989384;0.030501711777801897;0.0020437859242335133;0.000929172081800115;0.028283670003645418;0.011400398924661072;0.0044481649734886865;0.0073003754959430475;0.7246675593508989;0.32764648662168716;0.008917330767172145;0.05568809629685588;0.261804433315432;0.02875433680257806;0.0005844508693861752;0.037489040376444606;0.012811084937989879;0.033714464980812146;0.003474200242557138;0.028576129982404132;0.14868683930230706;0.03028598299208904;0.1686848438578543;0.17028001090780354;0.15429923280051788;0.15203424454360084;0.181636196190974;0.139284012220086;0.17933513316580996;0.16236645436558506;0.01574329702595841;0.049170188532952304;0.0005530783688872153;0.06402052005714175;0.04681963264827769;0.018568567480999023;0.010289808886797789;0.005986935219117993;0.010409319611981351;0.01784173294020449;0.009813510264098919;0.024870824309764065;0.013771569524768424;0.029168114147865;0.02702027385545793;0.0034065672587679017;0.017745944059881853;0.010466443318069247;0.012215976512692623;0.025154296417872913;0.010501307920138517;0.013980154373080799;0.021610268783916607;0.0106538200842287;0.012196667018177143;0.008968312432230627;0.031428301157158396;0.03143541065279695;0.03463318066539354;0.03271253561061954;0.022204812666138198;0.025625853239808278;0.02012709748204591;0.019653127586322282;0.007688860875006139;0.009434387431054026;0.01903846717992521;0.007907975489906252;0.043591227694290975;0.016278706565527035;0.018147693488021466;0.10794302310498036;0.00557730166331002;0.02248424475345555;0.003529306763496126;0.02149425791462501;0.012944871406911286;0.02853196389825955;0.028288795005127716;0.019179639463187535;0.015300379571303285;0.02758668062761746;0.02962743541379618;0.08000457976163956;0.05720871932715835;0.02339431144368084;0.00586776382961113;0.016929981036541572;0.0007670805704307733;0.0;0.03212550694679652;0.002616971443887139;0.019351116574129468;0.04313572577058572;0.03262953762556458;0.04402592330670269;0.000670617932041796;0.0006440834730796673;0.006703357577413305;0.10988986945980907;0.06352631712018622;0.01839288673142581;0.04188385208838284;0.1834347828148489;0.024104028124012737;0.01853916783190431;0.029188271553184205;0.03443951929415006;0.039622891341175435;0.01741212559087481;0.016633985634632108;0.027374385171237334;0.01930729675327458;0.11365406528564992;0.04135204526119348;0.0005649741203475155;0.009024268991192687;0.009072160188518011;0.009686750681727212;0.005481420852175234;0.025069817395066668;0.01586992778184155;0.0041521621507689165;0.007493544978305668;0.015954624405115834;0.04864170779282246;0.03736952019598464;0.010055473257184125;0.07421964444934627;0.033279357485164175;0.004577296582600296;0.02610710874081195;0.006799993317768765;0.005603238838200661;0.04468223066735095;0.015303180235326818;0.001049297298668962;0.02492645823339487;0.00223574569335803;0.0022542980111319444;0.0021945055444028356;0.031006876986584716;0.004507155115622243;0.005143254810797875;0.04131657199967395;0.010666999490610897;0.018409824862382348;0.06646935007351092;0.020719272602121655;0.030569380833623403;0.00048420064005554806;0.023128628597872174;0.010964353986003829;0.001331197910960685;0.012460253457824016;0.009168860493383604;0.010339430091428783;0.016580217494804452;0.03091539410393053;0.0253883922461781;0.026580484995107727;0.01931302128780619;0.02350509609767139;0.049133164732091644;0.02019871480576207;0.0056564740481757905;0.011232624373177251;0.01460214927618794;0.03126499059076688;0.011628659781386502;0.023568248842262943;0.027433724750378335;0.0027091963036044884;0.004971339033358489;0.20562216952760526;0.16065167672946837;0.014973155025511846;0.05103289273089391;0.03634137371915107;0.00538748032689563;0.04977232118683203;0.12805413875065358;0.6356376089172432;0.0027813159675589105;0.07552953556611236;0.040103363732092744;0.021708623006519948;0.22925261939153815;0.02215066239341267;0.035866381128269016;0.028996366727777438;0.011511148154836252;0.11973221317848828;0.01192443388979551;0.03535069233135711;0.06818176420017194;0.0837749413289843;0.035646515804328066;0.03791343344250181;0.13274631209277798;0.009980485267182196;0.004011943631207417;0.003684960283639712;0.026094958713334435;0.013407489857011396;0.015914372759353437;0.024759784496618226;0.011846400850254875;0.0230278805613981;0.02775143199507908;0.022009202345095576;0.04033475241741704;0.042951608621639444
+Benzophenone;0.4479128632820097;0.4471002320046971;0.4383348184758366;0.4850082710031273;0.48114714778036133;0.5137219136057841;0.557358744787064;0.48157970970180924;0.48768939887442775;0.4918824133302527;0.1915354837241754;0.4656394686352928;0.5734687829115204;0.4722407249522334;0.4567624816623049;0.47756052786587355;0.4408655841398895;0.45043480515866885;0.4489266483435783;0.4525686978692624;0.4593516114842383;0.4576696816807194;0.4549457796688875;0.4490411937682327;0.4338886647363707;0.007194237203603544;1.0;0.21752794516542792;0.18298492489361046;0.19026498744732226;0.9088991274300873;0.1058484605998877;0.1976725139732824;0.5678801514387478;0.2588152114401558;0.49206013534669296;0.34442232109289567;0.10730474530274772;0.057433373481416784;0.2427299903345668;0.08014730668451575;0.27677750054516775;0.06123726584512829;0.0031739025731714306;0.01823241073173295;0.014188812359374744;0.01733656812925481;0.012295171159294486;0.03104317064753425;0.20529079448649204;0.1562548297780622;0.09329360382988183;0.010752928377342917;0.020143754633328625;0.1499493371499679;0.2808447932817331;0.1341580359509345;0.18600003852866617;0.12486169093068053;0.01763879279987966;0.10326406824159824;0.16926779321065533;0.22127494807736472;0.21693018759620147;0.13249014216576538;0.17563863359758758;0.1840529395522722;0.13643682899284407;0.1322981622234008;0.1310285512826417;0.12844058005692538;0.09191561950473558;0.20390027125711127;0.19870965567163437;0.04736470336757223;0.03398687974062069;0.06137227486697454;0.05479438276428226;0.33516808492439215;0.4294727631567551;0.15356061955134584;0.13996384593145145;0.26418881633880403;0.2600098302841887;0.2023685748730312;0.13719149992724958;0.17311464135228338;0.16342729142790285;0.3811021425336959;0.023690715380686806;0.40821870563495355;0.006400515353664735;0.027243742211939644;0.12712168017081235;0.12899270343422733;0.13565453377048578;0.11333059438276509;0.4665014189671391;0.32525006405510515;0.3413716769446541;0.3048997693885388;0.012173727220942013;0.04263334902729674;0.06859019501452489;0.06269917963097815;0.2993609607567602;0.27960739807175977;0.2927105345394271;0.2937278898735422;0.3425340791047927;0.31930178567376566;0.28927276196756246;0.3494013539069438;0.3421062703809915;0.3275976143372311;0.24920747485360184;0.2188288639057912;0.18989150733872054;0.2519892095017182;0.10653689088624425;0.023145578141408774;0.3183130934189611;0.24848525129163393;0.023941419519413757;0.007670945592683368;0.024494936536094282;0.019836434453752688;0.4898147235175918;0.49974622329288493;0.5572586045261715;0.14270371247427246;0.049563888668658254;0.5263247010921737;0.1005170433827714;0.45381407105199056;0.07480131253491802;0.11934835577267577;0.19282063008758468;0.4741306343182941;0.49970955438373293;0.4948974798812715;0.44577674870128353;0.2663151879442377;0.41502555176210926;0.6329981134340832;0.6581391544035045;0.08688566918083172;0.015849348162105984;0.14017481868820122;0.1038048654082291;0.22150398910654767;0.15267064638125327;0.1160635290707896;0.06913007485184985;0.5135560272470894;0.290185419451932;0.18446285872719045;0.07491388591307437;0.09698433087011987;0.07081591670698525;0.13504192700291473;0.03378367813136989;0.0027957119883919787;0.01687983097281953;0.01740198701391933;0.02818545212800543;0.030097170770911962;0.010329052980448741;0.018017782293552657;0.023068023572006564;0.041127606636165444;0.22511745006910674;0.036889531350109646;0.015036248744894936;0.025152969904075378;0.08473496715463408;0.015832899875005867;0.05069982363536155;0.333697965502599;0.5917704955922419;0.6113666678920927;0.01598516239649564;0.19604355241050586;0.5018138985400546;0.018714960336652587;0.034575434524392074;0.007824460582282998;0.0015474751693857912;0.6000096181427014;0.3824939441085703;0.3863299930528444;0.36800582635895634;0.20779481845575332;0.34161514614045313;0.35961477734613945;0.5710479366261038;0.5673595004826153;0.42166831680810113;0.30015907140415177;0.2109172851205686;0.4735268338974814;0.24646996748585798;0.37517010788049326;0.3596478196470233;0.1405252752253532;0.45577639022266825;0.35940439691888565;0.296429647101665;0.05903057621349413;0.05810372035431846;0.04167641262062075;0.24054760191982172;0.22417052647501096;0.11091235587602735;0.010031604921013551;0.2480541175838122;0.23378048050855252;0.12416733483000378;0.04705949071637028;0.004336996622472556;0.060271826310158746;0.05790806302993563;0.06191343992145543;0.4057603198691126;0.35189584716741035;0.20752372074621903;0.2826896671572568;0.17526329427945342;0.23518138507648323;0.1034360195034098;0.10454352749677569;0.09540237558535948;0.15284552215266423;0.1895504472779101;0.06167179789585378;0.11934085393366844;0.13232787769248455;0.14781527481138465;0.16352830294037926;0.11874816739058992;0.14259052335122693;0.07745177751227915;0.07623795025968637;0.050352574768044014;0.049421759517340284;0.005144680305054896;0.002548909124788704;0.008397453409972317;0.061968912532358984;0.04204999467801683;0.09757343774402862;0.10178350895084173;0.010811044818593574;0.3645140105942376;0.30972624176500346;0.1555765855055282;0.04580507028497261;0.3507172823247094;0.03082876040305006;0.08539096321485348;0.011930834372363823;0.12819445459350115;0.015549833968822181;0.016816728415407097;0.052315056594367984;0.02965293449810188;0.1712767291395784;0.18834733538100812;0.25040675448424793;0.06905856022622621;0.00870601454078499;0.026997601496967248;0.1891399085966322;0.03230172137883717;0.026227146326773077;0.18626695379426322;0.07417898943271217;0.022908947988634215;0.14385908590113416;0.05417745251195962;0.025358368225093162;0.039379037435934836;0.012649137939244971;0.37354877193035796;0.030513890637218297;0.029906916412873213;0.005957641135382243;0.167690143825664;0.05910702552846725;0.03014077427245159;0.02041888195804752;0.07460482095066993;0.04625374414767717;0.14656659076718442;0.18871204749433254;0.4804680050733207;0.08170533720970159;0.1659759749471728;0.1366019564352716;0.23387452787231536;0.02451727805046135;0.017503307758637354;0.18455951983458319;0.03772007053465095;0.5035885042628248;0.05628350261889076;0.06901935697094076;0.17202548618200114;0.029573912635199075;0.0024994274447998465;0.06872665191823352;0.0098812880671135;0.000817318917833451;0.0017229303179583143;0.11167280746693538;0.16229970479635988;0.4169787803620893;0.04495925630736738;0.10307186602562092;0.028873639525471253;0.5046358446424836;0.08130875402970246;0.40601148072693277;0.19091909430670667;0.22530838588010224;0.10523783689049898;0.016307861589582102;0.031924355255653326;0.13049940182997505;0.03984936159796401;0.0484037658149212;0.26778515711218304;0.07136113158945392;0.07486160869205158;0.3546992908211515;0.1339054397771193;0.10233276936564402;0.11421258201628112;0.30357243207495943;0.38689898733636097;0.4417125485810857;0.3970151273106977;0.08815884678186608;0.006372916047160377;0.008516097736008208;0.0;0.0009315299150413032;0.01540505780009198;0.0135701567037568;0.007106403757833631;0.03846540390086397;0.01130134351148563;0.05428862645497711;0.03640725502416912;0.10691263696974052;0.1891531546881829;0.0003866306369493822;0.05898783100827908;0.24750015429602865;0.021309415978325193;0.20098982085648343;0.01239539436647768;0.019502942059236018;0.0024311971801952033;0.0002688992503573489;0.02268684609648036;0.0015818298569585428;0.018154745301204568;0.03401842593078099;0.0666920264802413;0.05368633052921402;0.23910843123991293;0.0563855356715743;0.4934927607638115;0.005620779405221411;0.014160220739682764;0.05499542703644615;0.0287396956262691;0.3257250348742245;0.15436028469234897;0.05572451389531954;0.02409456502910645;0.40720344028876404;0.4118632812936865;0.26711635074378604;0.30880886098810983
+2-tert-Butyl-4-methoxyphenol;0.2872625995516296;0.2894487654562243;0.29621000445948525;0.29507528095927194;0.29982486862546476;0.3136960356538858;0.15927086940134785;0.2974085609430411;0.2972280936996143;0.32999513414133486;0.5837389579452547;0.3023197425416636;0.1728895859140019;0.29120856958986063;0.28688467482120006;0.27451527453111446;0.3000604501958375;0.2955448146577564;0.2876159079446992;0.29364797547769317;0.36307148361859115;0.3771294210753441;0.3986776459190546;0.3312480180846296;0.3122182075521415;0.008627967178864871;0.21752794516542792;1.0;0.7864824607107149;0.3355575200028387;0.3617012933634391;0.0869108055939164;0.15247882185796063;0.2893730460064992;0.19838630855805656;0.335155307220513;0.4565459935318364;0.544010780889636;0.09599058175598853;0.16939186652537885;0.06094494440273023;0.19830082740936936;0.05509675257040517;0.0;0.029383745531450015;0.00818843226060944;0.010659720145331187;0.009043273637569288;0.010934977749910734;0.14354570925120794;0.10868205205887788;0.0627288380352662;0.24873078983035626;0.21008523214446925;0.10214752908421354;0.2012804223020706;0.11168288851469087;0.13596859574934336;0.10254336266641426;0.1510827397656533;0.07442598273935172;0.13634360414184646;0.16581695949473516;0.16108719868826268;0.11366009801507634;0.1303699066388714;0.13489841669423333;0.101742477731469;0.10543720670588232;0.10062398988605355;0.09364187265322424;0.0665459630706445;0.08723622913942225;0.09638430895988724;0.055649600172604605;0.05069083500793231;0.072149753826334;0.09927583528371536;0.2804713307972058;0.1070030663222506;0.11440302437498408;0.11163740124981772;0.09675187252773405;0.09153587460207063;0.059518840586682026;0.03705346095615985;0.061042834009247336;0.06531674234007268;0.10548656924847898;0.030913590377045847;0.07740126920957278;0.037925910794668144;0.11635928516592933;0.08701134957938102;0.09698007069225649;0.11861978680373789;0.11690732821840037;0.11291187138232464;0.1827404573717185;0.17792547792799335;0.1939204561276319;0.10009988584134664;0.12352090951730527;0.06743466410117056;0.09474169118422315;0.2046680333443916;0.18178605784420984;0.18955340084249245;0.18999782032975904;0.22458016367068764;0.21075095756908788;0.19371712890874118;0.22730668279904206;0.22983286768386305;0.22205070734644652;0.030746676089532403;0.026081505561002458;0.06211651759731946;0.1691517554746272;0.08977449727576216;0.014167376445037188;0.03601576238006848;0.1615453801422173;0.04869838960624251;0.03146310722365704;0.021003482181572455;0.02205375389858572;0.0688769768170737;0.07368710532305112;0.08275117005397883;0.10750813401814181;0.12867663724908063;0.10060717814511816;0.4127216360344189;0.3062117287814877;0.07188784491558957;0.4581110274187486;0.11802868945235027;0.5716687835625704;0.5189552083236466;0.4711363253063896;0.519851379557261;0.550303965900526;0.17112908434874585;0.4020962797646359;0.13682011003309463;0.10671518213641068;0.09874780205696164;0.2628308720850071;0.5363466923617807;0.15579671058758968;0.6707123222007447;0.18724915241520065;0.08847441094397988;0.2649134049021454;0.8199732856912589;0.5810945845327649;0.5379336544464827;0.5422987050884308;0.060708300281877466;0.5137662555073783;0.06237523722092756;0.018408102673852476;0.05912571988539492;0.03063439708729978;0.008718684548789837;0.07509557541851569;0.03418937795196132;0.04142948324838391;0.06883059083490173;0.07740355387200738;0.03830748464341112;0.023464625475595045;0.16913734798263705;0.15887500973144056;0.5206937123636549;0.034859317351698324;0.0704895298796756;0.4498516981609289;0.34840210545179723;0.3162778974156828;0.00922583714683593;0.2313199637124726;0.3786769896827179;0.0359618293858598;0.03318759480743256;0.03523730271429556;0.0;0.16883586734769673;0.22933587655169047;0.29871907093586286;0.23202417225510485;0.1852812242532728;0.254346380870924;0.2469533545515386;0.20966023649219226;0.20432069817977364;0.5421618787135638;0.5323103047266569;0.5609333737296455;0.5087149235013805;0.5718895599119569;0.5507364376426799;0.47331038695851313;0.049225277487928355;0.35677453553097443;0.7076006974052584;0.5745200121357198;0.025323223201674936;0.04993903688568529;0.01980914541551725;0.22770860142326343;0.6412284571442031;0.16613811106280874;0.0425300039897358;0.14168321906156037;0.2678579427658778;0.05900083119878678;0.009242825751607231;0.040319981447458186;0.49304615730677287;0.076913967241866;0.022751764787704763;0.25743568799659283;0.23237194183226637;0.16483260215347922;0.20436514410363119;0.1449620055589904;0.17251842508087456;0.0755384868660977;0.07744021692964911;0.07140877320644909;0.1230895306780808;0.13975705992418178;0.0451655237821062;0.09739719020876708;0.21197083983918844;0.2927994474246735;0.26143477866014325;0.09686947852738954;0.09284973563230173;0.40275714548010966;0.08488300529384625;0.10536964759825967;0.054752007719374864;0.043847885397673404;0.02417436295462812;0.04839735958077683;0.09266668626612874;0.04256250035105154;0.2804414002718411;0.2780944716307788;0.02865687860114792;0.2737842332947829;0.18200465044445321;0.08491074878734108;0.06655780147827872;0.2663010263385229;0.05636838956876266;0.5416018053298394;0.02362396425286909;0.48534151154320193;0.06203709148628128;0.022375957490061854;0.043216873119635284;0.06281044417614427;0.17327179280777777;0.1804153132218648;0.16892933938907043;0.1602449058984959;0.040579646235964426;0.043230557850029286;0.1553395658347946;0.10432701525685799;0.07307286292053805;0.21191636571398684;0.005381652128225558;0.047865299038522914;0.3523270936408333;0.05852834787996976;0.01696423321824217;0.09142775501270355;0.023764554463910546;0.6334239310819909;0.2585104448520407;0.031289526022707397;0.0012335405919642985;0.129449460483855;0.0028433466262621134;0.04763303327565144;0.06349954491667578;0.047758486882773996;0.05714911206095992;0.053704760883652135;0.04245348784126332;0.0791158255959081;0.0978856676548315;0.08140609440087605;0.1892571564095455;0.08217378632840062;0.04949841393165983;0.027444047041323076;0.4391340126182919;0.049146669783169374;0.0954085658788194;0.09137401132026939;0.06382767892513876;0.07825094960530382;0.030219314093897824;0.03701855480267275;0.18526343959767336;0.0344821315070346;0.0;0.0025506660734356196;0.0783116150099569;0.4290800069523507;0.2735158913031248;0.4138129407713774;0.07754699153898086;0.046153139066626735;0.05120270603237681;0.46846230927576143;0.0743081292802426;0.12411111723922691;0.3640830667704471;0.6094709335090386;0.035797765090791404;0.11416493343898315;0.054629159787683304;0.48416104538708044;0.13018787011004268;0.42665407916275483;0.11225182542056278;0.09523416582495714;0.10987851490517896;0.11267044227469583;0.07263678070417753;0.033335905724253344;0.21313359353002556;0.28251041069202165;0.5621616808647826;0.23213229254040998;0.41247799346507735;0.0035050676944853414;0.004476100552246343;0.0381074446632227;0.03206943216412551;0.02360877551320711;0.04271503166774252;0.06126191558398839;0.016331532085394576;0.0059205377718477585;0.1191709583951095;0.21946618392565154;0.12553308322413373;0.05554090361653474;0.004687943989282591;0.06892107271348524;0.05175463843711758;0.02907392610842226;0.07673367721991375;0.21518926788274745;0.04374919692067169;0.029723434172221713;0.0513844854985396;0.1492828139974663;0.035366313711029614;0.010991849718904424;0.022147272184555828;0.10524278531467757;0.03380589219861143;0.07813350074989404;0.09966299807327234;0.2873636381519697;0.0069514884044405145;0.013925605777402053;0.24511104573774145;0.030513287472472533;0.15320827563597672;0.12961229795311774;0.5196307855116182;0.09868154598184874;0.32025778702651997;0.2898749177048506;0.33240692153360163;0.2628686353170746
+Butylated hydroxytoluene;0.22719658015986072;0.22213721272010822;0.22997744962715574;0.26478717424494175;0.2631376969509965;0.2435053707198136;0.1278960428746948;0.2308662399966112;0.22994788107174072;0.2953866924496446;0.8023446220318944;0.2365434817926412;0.13619388660194864;0.2271508880280377;0.22785123706633725;0.2191923992386012;0.23235363314562604;0.22823555603011603;0.2208777360757873;0.22612196364620246;0.23078172229843827;0.22746022418896925;0.23012635247771737;0.23251074370132907;0.2601234817464449;0.014780613711024328;0.18298492489361046;0.7864824607107149;1.0;0.26105186759525095;0.5330114527901817;0.05855932468345345;0.08905655944395266;0.1859042060350888;0.1464066893764182;0.25102336649088336;0.4717594649985789;0.8906993972549838;0.07114412769668642;0.13520154196646708;0.04665364108256429;0.14375433533326218;0.03598220590382544;0.0;0.02100700402602791;0.008692894382967857;0.010209541272507673;0.00984878204518923;0.012007617375462614;0.1072781458080288;0.08364542248784017;0.044436509003503225;0.03392757915808983;0.01622868540900813;0.08231165892616238;0.1482006440740087;0.07898064703763645;0.1024471666538033;0.07068734809229102;0.05868728418372831;0.05556265533737944;0.09484733135580192;0.13268864449459147;0.11836316781508498;0.07990312641871093;0.09753760842277148;0.10170732008060113;0.07384892432856881;0.07184750493616508;0.0726505675719184;0.0669017565850082;0.0500340515212007;0.04086333060264824;0.044572846573290845;0.08104009829409281;0.08260133820353681;0.017161508579541185;0.01885259851482287;0.011355431625455138;0.05322087362004479;0.02972929520931786;0.028734639553665387;0.033683940723352256;0.03159005638098387;0.03673291809859419;0.026579690177868924;0.02288082806560528;0.02659188719747623;0.036280474255818373;0.004335634800919783;0.03095177662008495;0.3071024011265498;0.05738376470944728;0.024284122762046004;0.03025682449804769;0.0454130332154713;0.043429690048909134;0.029110900233076147;0.049760070893299445;0.04221802651454712;0.07955242251425364;0.04205297083701745;0.05387185953138277;0.05045380654253237;0.03638285104168173;0.15331385532922884;0.13295997513503238;0.14098384740425657;0.14364338439513982;0.1719696682454663;0.1621429147485705;0.1493922903932763;0.1730152714629233;0.1706771988242221;0.1657914469438213;0.027351251397481364;0.023145145684543632;0.1047743630030514;0.1310619297453102;0.04475429692102168;0.011944539456031338;0.03307146352688798;0.12438046920220464;0.06322691044065896;0.013267097974947446;0.009592330479503433;0.009650121427230601;0.05267036702232174;0.06496591271117155;0.061547815579358345;0.0585893633424231;0.16235852681885313;0.07452082390015069;0.47312692465463213;0.23805460817186574;0.13913748379139504;0.7180783097652698;0.16947587315259555;0.5310753491675743;0.4719594449758672;0.18683671517592135;0.5328517660364096;0.262736276574409;0.09897038280613617;0.3484463962964977;0.10204043679970116;0.08549420034983128;0.07882991129047219;0.1617881477818117;0.6035046783737658;0.11608460077857094;0.3902180537634023;0.18924119553246255;0.16467741636131633;0.2127138934395745;0.8453212603108279;0.8751873212541534;0.9168800667854895;0.9004232982196549;0.046438097506014346;0.8562975083658393;0.02007519586482502;0.028748461285073062;0.008739839132189859;0.01358338559421646;0.006569446169889641;0.018650577571217297;0.007096919459357625;0.010670416426015747;0.043181461630220505;0.033003542648478046;0.03225206600395739;0.004049017874015401;0.01712720430919531;0.013767272548319918;0.8990440446303055;0.019268275250310836;0.044908170242887346;0.17041891296540884;0.21167714730861933;0.18670321059953732;0.0025679189351644656;0.1834590674867017;0.389838243052793;0.016347160391165724;0.009659660790035156;0.04969012998906376;0.0;0.12946117818332137;0.1592607392194744;0.19783988024986182;0.1810490614817629;0.1785113232127558;0.18245630278377972;0.17771302980161424;0.19162377457119417;0.18840396752427158;0.7680423672009192;0.7758874751097808;0.8999572490010344;0.6817699136735597;0.8939373787336238;0.8041653744396103;0.6241590238046473;0.09241407196565991;0.294453694112982;0.7342236962490557;0.11548102907456416;0.0298545405115226;0.07658860371037764;0.01603668409173782;0.1623669583803694;0.867052165485184;0.17551212650469603;0.05462050355040306;0.10930838617393232;0.13149596023447072;0.08153215389280488;0.01617418314582531;0.03876805157063301;0.7709612941623742;0.06846839407482452;0.01306769617840414;0.1963072404767539;0.17423979969890915;0.1112192613911785;0.14938324245476023;0.09920753569212985;0.1275706095784783;0.055841365226957845;0.057370482988638935;0.05319837547559778;0.09169904556333264;0.10637241584954608;0.03599981433375444;0.0683456892119889;0.14741698084111055;0.25059080333680556;0.15901463438786978;0.06798754763524395;0.10375817530531858;0.05538128785182204;0.0412282657966976;0.06570966690320806;0.05106976096235635;0.06116780237598268;0.015287909231555128;0.014348659952116868;0.07654829323434556;0.010633380493029546;0.061194106313723955;0.06179718740697168;0.09319930675847284;0.19699791697738128;0.08982671464208021;0.028311035066046934;0.06729304092606198;0.14307328071398545;0.03281772368887885;0.907256227137567;0.045570651988386154;0.09783637296997723;0.018639522265060344;0.005458203791123602;0.029614215197155534;0.09266102995775247;0.1256808550399061;0.16275647853561348;0.171856969897364;0.048063092617315596;0.005500804539649845;0.019768868776491325;0.12191759620691744;0.08247330859966297;0.05201558681313245;0.17123076708436888;0.03411609250794972;0.08774446784941622;0.0820006281702817;0.06442995668005046;0.04911654379893278;0.03191732410439492;0.04521137243070138;0.7115355904689084;0.3297776362173188;0.08715585849598392;0.005438073444623886;0.10824212385545941;0.02645726615805542;0.05690228276613254;0.03240670405981656;0.030672115804508553;0.05846803078100888;0.04988147715462644;0.07890572116897686;0.0811754218954804;0.11596330449131727;0.15620305316702685;0.07921797448967552;0.07515930078455016;0.1460046957735862;0.1279349710013553;0.5968429857999689;0.06767425781282185;0.07770974158908472;0.056734264176065426;0.04100194414591467;0.057125341234072355;0.058072299654510925;0.07366645802383341;0.2563984182276487;0.10732860808433685;0.0003086810874781536;0.0020314335997419553;0.11646815988701077;0.5612424091058812;0.2128349602557456;0.634321586823556;0.10485865800495794;0.01425190008723719;0.026738122167903503;0.19662137334739704;0.07659770151190222;0.14485641707491254;0.12731049327925956;0.2659528522931286;0.018622257471993836;0.005788897862150699;0.028293737748673792;0.8282740536480566;0.1514394031093269;0.5089793305318658;0.12293758551725503;0.10660377442754117;0.06202168039393815;0.07091313880528204;0.0356576519798793;0.06665607359704195;0.16368969727076368;0.23451142916228326;0.43210737124252996;0.09820138736533117;0.573056970377217;0.01330486625647843;0.007910335103718273;0.01179024789422477;0.006822764065900444;0.009811939259221128;0.06178265583246346;0.004756898561606863;0.0012440628841256288;0.003778497465979862;0.04559629728455281;0.024594523624826326;0.19174428923126913;0.04113831425175946;0.00027487448045489824;0.05580251795213487;0.010581256756674108;0.021595151655701438;0.05835885825736336;0.08499478912838568;0.01994774682553332;0.02471089421024543;0.03715541539353336;0.0695876019688739;0.003709758261916405;0.03549652499850082;0.05145530696453031;0.07538455467902923;0.022509087833514033;0.10186727510299519;0.11764680662638964;0.2298185605739164;0.057242732254265086;0.06449905258838942;0.1046950797568319;0.03973291766530236;0.16860077243311006;0.14489228464501888;0.9134261709044295;0.08409593490412744;0.2874724451725617;0.2851064546162694;0.35915662433951506;0.19921342254833432
+Bumetrizole;0.24963376161761272;0.24278498169047022;0.25421023233675843;0.23357597032441546;0.23931808982779365;0.27192962928914405;0.13505330165549911;0.23454028440054575;0.2332782185866119;0.25411431903219484;0.15756291156104552;0.23893723179537793;0.13981278278607154;0.23675052086935897;0.24171489468056187;0.22614427781000315;0.251246592415976;0.2499313270079764;0.24124103043677128;0.24575624579517033;0.3080265740499232;0.3230865386576224;0.28348479850761127;0.2684864903366003;0.26477180653083227;0.03145591853637083;0.19026498744732226;0.3355575200028387;0.26105186759525095;1.0;0.7144822205809642;0.10399736809992421;0.11481280905838258;0.17999443933104933;0.19935148526910967;0.28939766582489446;0.33434209448208524;0.1281918138802737;0.01631694240272826;0.13237393478928483;0.046936794083499066;0.15234799183775005;0.03466021201411872;0.0012561868885077258;0.061005948055279306;0.09146651448262491;0.09981710741846406;0.09924045579881156;0.09458361018050244;0.10234687553937671;0.07600271126787306;0.038814836182763296;0.011436509317395375;0.01642469365855395;0.09766862496649915;0.1549142110297011;0.08318914735663947;0.10991214220658449;0.07302322689917445;0.08682353220248133;0.06122794055246767;0.1039383551057341;0.131196737549993;0.12724121388827833;0.08462494615483894;0.1021264258123642;0.10883722989488018;0.08066376785315671;0.07806735819775021;0.0792705262251003;0.06844704958439617;0.05756979362709402;0.15365396048976096;0.2350528205229301;0.18992541708032223;0.14344638358159922;0.04432744675803568;0.06592541815185553;0.05798843307020276;0.2513005735659409;0.1152768813676322;0.11722706217599316;0.15320173477107574;0.12846774659641524;0.07888815080714377;0.06381491330982773;0.12950495222433644;0.12683619280621353;0.15482491547917618;0.031580887692623155;0.05591440954025419;0.035209707841949114;0.14606726696960687;0.09840798329709881;0.12038521269193565;0.1743749594751096;0.2253094137812911;0.14048096692638473;0.20777452217162293;0.1650654892497248;0.23004234006688584;0.18499269172194144;0.186352823698754;0.15236618947491737;0.12790663256461776;0.14933504659126665;0.13182631813608386;0.1380878506599174;0.14238408623425375;0.17136800364847113;0.15930130326491965;0.14692384331591207;0.17386463422642862;0.1728762272727629;0.16646021331190486;0.09421079586644217;0.09559942946726233;0.21386469210768455;0.14191684893776613;0.14435843703685353;0.030714072649130474;0.13288504791208883;0.12262642356463317;0.060379554084759916;0.07132696344852343;0.02816750272306035;0.029386106940979158;0.06676319542662563;0.08864198025543558;0.09658203390450767;0.15986560983363637;0.2976451881522771;0.16500937820975062;0.3060203615906274;0.24861953756795338;0.2782723718226388;0.37170000661967606;0.28781709030541464;0.3711306103677209;0.3866314046377448;0.186424425964302;0.40626000042250293;0.33762910937464197;0.19919067477713065;0.4461273534860823;0.16627866311708936;0.21224328465584896;0.21679671635425363;0.14218059716189577;0.20940438891931934;0.17018690598861003;0.3953713301321029;0.1341084349365948;0.27606155235501023;0.2741897499015784;0.4380544748797012;0.16748928728542836;0.10186066812617005;0.13682348861263444;0.051566146415668146;0.11560979675765964;0.053088947927248616;0.14020028052512146;0.024575463433819788;0.04329716767177893;0.07666171126982477;0.06006764954840364;0.01846476362961788;0.023700437997145427;0.12764549974271713;0.07752403020562344;0.0887416728727109;0.028743010984566077;0.010314082373699069;0.016013548594148327;0.12296132920474778;0.053482808689925276;0.10761878015590085;0.21210438775168391;0.23958654778156746;0.23799522773527176;0.011275354751064474;0.3062077607960169;0.30245541176358565;0.04315555034181324;0.0429357739931375;0.14030570372881654;0.05137886067269382;0.14903478897632935;0.19300169556620625;0.2594615799812903;0.18370323391129098;0.31149922248852235;0.18652037499247787;0.22721547026320096;0.20581973447681612;0.20393945975046582;0.23830905705049027;0.2276465191529892;0.17246410450913519;0.2523617683627048;0.1873187686038199;0.22674564713007775;0.23377576868873995;0.08812011933793387;0.26085947627283956;0.4165560157398441;0.08372729014765119;0.0662646179215756;0.1432306156054531;0.09121122610366972;0.22287564013335634;0.2111699154123544;0.14956355375518005;0.28865949613034875;0.14212733679936124;0.17092363106003688;0.20299688843818203;0.07549208656391859;0.057967044772314257;0.13832761917877423;0.0393077593045489;0.03594482646835222;0.20703613022509215;0.18289873009850352;0.12688056772770462;0.16032151787886592;0.11438582081105717;0.1406092898488011;0.06079318109692207;0.06437978648515973;0.05814157338399617;0.09691886859108427;0.11127305212711826;0.03575245994433012;0.07134624360596493;0.17664913818343708;0.19536842330722065;0.21829379975280597;0.07116656957141275;0.16549666665537685;0.08079901801780687;0.07053743051887887;0.15303352416873253;0.06535005718719895;0.10990461307617257;0.012297846379110636;0.021536915261299226;0.06889773342457328;0.06857444993269289;0.3122550017404698;0.31391187250363245;0.11900701402766485;0.23707617724714386;0.08425665433260693;0.03351820088533727;0.09074205386661545;0.12979282427996833;0.049887237421688505;0.06350469697243148;0.3029379548868816;0.19104143668208;0.03590752191616267;0.01867953447371657;0.06652043612205945;0.3130906813153417;0.11910052172056394;0.21553651418890626;0.2615568921602038;0.06526580100014673;0.0776327075248382;0.04193238560069846;0.2059373903647721;0.10526698649592081;0.043559107022506593;0.1707709298312357;0.007683804365531442;0.1198273412055842;0.07392544532767398;0.07845801350962026;0.05421331702899671;0.05737565712130088;0.2972366524721087;0.2561704961073304;0.06019016016507579;0.07453704591080652;0.03371454861576772;0.15618400261808463;0.016656141329749477;0.7266292041621429;0.03761609947165601;0.06932120633577361;0.0795713532762914;0.05812340652168731;0.14050445006171708;0.05648101677285924;0.7652125887921245;0.1691953452127548;0.09996457993777276;0.17441345448674442;0.20905655027697267;0.19027370819848902;0.16014002383741965;0.06245555538954039;0.06935111397200902;0.045834030534151936;0.19656116765179354;0.07957055567735155;0.14293126854272342;0.02853512168564175;0.047285100524555326;0.12829664248382414;0.006886479086977313;0.003550100107359511;0.23172443679418328;0.24755735101605122;0.23609626132500236;0.08551105244254145;0.07087321850037881;0.02325028084551949;0.04712182361831785;0.21338352548526138;0.338266702088282;0.1414749328873956;0.15107343283945837;0.24798665247018267;0.05802034742547725;0.04789262598274538;0.11719988870651075;0.041866721905947764;0.07748225530655728;0.21230421543036632;0.11136701029396966;0.11761584848793108;0.3693983701888075;0.12074350221368255;0.07085796780311103;0.3017966634465038;0.1679525619974876;0.20525168605812752;0.2847181102255278;0.15668161894760813;0.060307939900264854;0.015953870303432274;0.019219035942168283;0.0511175000189626;0.04594599160183915;0.22217529074508938;0.04430974381608843;0.2033297063705877;0.016623686389761305;0.014459311357731678;0.1201209190985336;0.07027704166313352;0.2098710868672489;0.09785759909010192;0.03283941597400843;0.019113976233822074;0.033799065705792414;0.09604455771256352;0.08410694988026356;0.09633429822230419;0.01864004219916464;0.060155724347814535;0.046262276189327795;0.12615134408697184;0.006507746031596676;0.054459883781897034;0.0645103301351164;0.1973570586313077;0.055098175699700554;0.10121761158030029;0.1580079335794305;0.23194211141269996;0.01597369854966562;0.02712811973124584;0.38976711331032293;0.25273370787746446;0.22636635205126068;0.18798450678958975;0.19803230155415363;0.06580934844644185;0.32359420643703896;0.30433153725219547;0.40721119660696625;0.42850593774921963
+4-Methylbenzophenone;0.13182640031235732;0.13193656975394513;0.13592223001733875;0.1445298348907223;0.14755098296479993;0.19536064925206223;0.10013538795522095;0.13777190043119564;0.13794897601255093;0.18843300781297403;0.4412523869362074;0.14126800769643497;0.09465375854634246;0.1356963209222051;0.13297234294577567;0.12887562798439037;0.13685010701077613;0.13506968434817032;0.13156205916944652;0.13433218804225508;0.13659201226568657;0.133923071241974;0.1536307641598338;0.1368859569099802;0.15149504574571035;0.008602788843759887;0.9088991274300873;0.3617012933634391;0.5330114527901817;0.7144822205809642;1.0;0.06608667477114633;0.06223369620116874;0.1299167721650161;0.10040299973819797;0.17046897125104304;0.26130063705079004;0.4930777294031933;0.019923636831737004;0.07621190738370992;0.04235766601891318;0.09092098925226402;0.04260752801117237;0.01173288956916308;0.013453712169865448;0.017903426513589987;0.017187083521516617;0.015172347381267185;0.02147774888036882;0.06642752369957272;0.054519283300435484;0.024971608839136017;0.03281089457654198;0.02463139677424634;0.04764001021425315;0.08701857034628882;0.05019978922432259;0.06121480594074364;0.050129348916416794;0.012074840403633828;0.051355537948880134;0.05760546901048521;0.07077714677034991;0.06947104727240516;0.0515309866519372;0.057306997995200844;0.0607128193914552;0.054034510634596716;0.0482081967106729;0.04896364655410109;0.04734563070971873;0.0405004405174189;0.09507119780462853;0.09243259303785721;0.04879250399440979;0.0574509261532619;0.04245621778029799;0.04203961057018535;0.37728084243454096;0.4321462828757692;0.08529153473867081;0.08617664144236557;0.2466022722800428;0.24393043597215763;0.20191510251463135;0.14395747781640675;0.17173790261530034;0.16820158564056567;0.4188160509597289;0.03164911783783144;0.433073924533277;0.01381970888255332;0.13922413884375504;0.09047139247630813;0.11204802838657357;0.09961331310915783;0.11441832929575774;0.46513840216516217;0.44312145971854094;0.44242348679269966;0.3853946223654225;0.12686419678067273;0.14508483039794975;0.10059158295022043;0.026162203079790856;0.09441792919704668;0.08263776225068523;0.08791324621087139;0.0845692237139231;0.10211459609059198;0.09548706022031288;0.1020529142395453;0.1024152632268899;0.10633278720415937;0.10053527591236879;0.025006244936546355;0.021803991910720077;0.06704385385612559;0.09382504518767854;0.018836219299926682;0.007570141493430275;0.03443381962557883;0.07469917643681778;0.04511527751771763;0.008391192103192762;0.01754588670219857;0.016901322899827372;0.09421841435187348;0.1319055717621869;0.10748053514997366;0.15852559146161824;0.10855221207250272;0.0690560985792624;0.3803331166658504;0.1435533547518806;0.18728137890322066;0.5831640761430342;0.20792332750964024;0.3553446601853627;0.3490948343064479;0.20228842975041983;0.3935827672760054;0.21898801476316984;0.12563612244630118;0.2921908277608361;0.2477759579210914;0.16637510692567403;0.2624974428594075;0.10685010384400427;0.34963951092748907;0.13745944836726598;0.25033443826472596;0.1517565807724975;0.12611845230225055;0.17883297401759754;0.5464484672872902;0.4596480161972774;0.48371376407051103;0.49606295560873315;0.02714400898387907;0.48374992350887275;0.029979513271788025;0.002447918868592721;0.018614079341358922;0.012761014503574173;0.003344016261000304;0.010485737283248451;0.007609907170347818;0.009410653257099154;0.01636222923211296;0.021367390006863402;0.027790287539499848;0.03305925236760752;0.020239798880994617;0.020200368976588685;0.49537329067950553;0.004881960910809181;0.03533296090092575;0.33772617869452687;0.19022996861701064;0.19022191275819758;0.0055409816335481536;0.18619279533871974;0.25268901059413873;0.01325033464376722;0.02582839232679156;0.01204215560718091;0.0;0.12035599453738309;0.09410344981498905;0.1314647854036433;0.12319757862608387;0.08952618812374039;0.10293401971396371;0.10684489797330833;0.10845766992063055;0.10601350481838935;0.4357754904117962;0.42414901347807915;0.4886929168147889;0.3865553971015386;0.48726929164934063;0.44596278347645046;0.3584836610734674;0.04032577024163117;0.16917353053860895;0.414170619676215;0.2445902193826473;0.0622494934906985;0.05708844303797456;0.05196426612866435;0.18841338147802986;0.4813773229473577;0.09112910367247637;0.011570850519015128;0.1521549216931351;0.10588356608824033;0.14926243460569505;0.010398570817139229;0.009680583438123846;0.4788300565772369;0.022507150552987763;0.011021106252817174;0.13694994380301864;0.1211433546022024;0.06615076016067396;0.08822677042086546;0.061187496762647106;0.07522222953786706;0.04968682677913367;0.04986649111887208;0.049340486560540305;0.060183581881185264;0.06352613783292702;0.04053230312275534;0.05719948398051032;0.09479558929632871;0.15265944409239796;0.09812431872698743;0.051695262582811624;0.04943265696117196;0.09826558239488402;0.05881124195954265;0.07006346986774235;0.047625014984481094;0.007306328984737296;0.013285114059406366;0.00978642450045219;0.09578188863493838;0.03441220027101971;0.049329693070883925;0.053446307848499755;0.0392076219652687;0.11941727077509313;0.11647741217908765;0.03131922295877908;0.04197116393515214;0.0996881358978963;0.05546686342144525;0.4943789394437129;0.29890278404039755;0.08789837527697122;0.00913065643775681;0.007546699880768722;0.041601049533541;0.057194499457500804;0.062170165007334216;0.1788784937741369;0.13052633278831893;0.041172714575288615;0.017959727313559826;0.011671162445260537;0.12136283612884634;0.05967754628903504;0.03281969939887967;0.0722283424010995;0.005097355152898621;0.04606032643312233;0.19259646134985725;0.04922028859518407;0.01445400712057466;0.0254816914833176;0.2922800519565884;0.3733857178566984;0.13182477624496736;0.08743744108064669;0.002139184220968322;0.0625400653163689;0.020724676081289833;0.7945868425108555;0.03969722096718873;0.0433770298757223;0.014431226869333638;0.08854823685790875;0.21883557008558108;0.06431079476099114;0.8272883376556743;0.21542647107896967;0.13733427706198523;0.16926572836458298;0.04187931792104289;0.11754416575695248;0.29970925943061133;0.01988661051937644;0.06701598781832915;0.13688996315813132;0.06280647642650451;0.16060816507974296;0.04206292072474712;0.009898422036857864;0.245800545716305;0.01737850266213017;0.0;0.00011615186167572745;0.07506338308671279;0.3281275535968234;0.14906177699410605;0.321045489812501;0.03700280576348265;0.05726014232973743;0.3930172325950436;0.06228461990933724;0.23247665662316894;0.06758152737215828;0.10344459571536357;0.08773754970380872;0.009201818732765123;0.01565149442434236;0.09773781401092252;0.4595946490175248;0.07577032761693922;0.26398783642007884;0.08122274721801144;0.08311997515898402;0.39214364775725113;0.06581682984566162;0.05324157824337051;0.19050537736759335;0.09665354488271666;0.12437870373524172;0.20546371603503022;0.31314816538685364;0.2998414723780193;0.004988849807724909;0.0034208642731867085;0.003019086750293561;0.0027260820589433492;0.007417298653983285;0.009927379066303534;0.008988038136805246;0.050231189618511904;0.0038066967419591526;0.06767048559681096;0.04856106574409342;0.12303637324763161;0.17743449636471453;0.0013330709571977074;0.0507237705600363;0.2924670496028703;0.014899807628160308;0.16930412698559524;0.02247034361198522;0.033675445130627;0.008309640862646435;0.0044855968803804705;0.049303877927966505;0.0014802960000983943;0.009983338332579667;0.03299480325310355;0.07487710074241004;0.060844475601837485;0.11035328763102212;0.055991098545979855;0.14050570428882916;0.006465864544313972;0.011417163036136976;0.059412263306553276;0.04566439816672455;0.20548649654333798;0.09234819364907014;0.6416410547013068;0.052962219812280685;0.17077247944201238;0.16710145370612683;0.35218487263045506;0.3398873468492177
+2,4,6-Tribromophenol;0.20164952721673868;0.1988107241995896;0.20292870182481546;0.1951671446201651;0.19911097023202354;0.21667838678950474;0.10068922783873809;0.19750249154750246;0.19837276299838555;0.20279753979642723;0.07294814478732077;0.22660771787053294;0.11944024178849665;0.20018536216587823;0.19885111520413193;0.18820890825059888;0.2042512155005074;0.20499279420048158;0.19877293847424568;0.2026086987010228;0.19309595566564958;0.20745905568775094;0.2176403817012866;0.2070557842303799;0.21680111147815628;0.051207137088762476;0.1058484605998877;0.0869108055939164;0.05855932468345345;0.10399736809992421;0.06608667477114633;1.0;0.236701239216379;0.15075659667646849;0.5275905593879963;0.22139546114510747;0.10813316119082116;0.06391703164830471;0.006577585146309919;0.7327493791845566;0.543834424360745;0.5975848691016866;0.6561167166913984;0.10786594932195155;0.02233886763701012;0.01881536894884389;0.021643306687826613;0.01920325882458356;0.02008939933214418;0.833799997024451;0.8389744040927154;0.18402296941567892;0.00145184532435494;0.019805553947793094;0.7198568219221243;0.6283452423664847;0.6046099141444329;0.7481352553938664;0.6433638732306527;0.10381467051711604;0.5962775088034357;0.5225775318273803;0.6650904442837594;0.6306954436383954;0.5371060635636428;0.7242920369254534;0.754471029463678;0.7012926658816834;0.6657340147020905;0.7027861588281681;0.7212820322095563;0.7020464420404884;0.06822758055367575;0.07094870636606566;0.04706712125020695;0.07169982962914206;0.028219926790390478;0.048152278821000316;0.0013424891998514575;0.023493468202895936;0.04071750336112255;0.03629434213608625;0.052598177682144795;0.05116315035130736;0.03506576966004273;0.024889612474081318;0.025368455439921576;0.0315401035771388;0.09338437346501535;0.02862980694407133;0.010041345557820784;0.010142575851250526;0.07774604403407451;0.01567592572268009;0.024711617804300052;0.10534550804097371;0.10682970825992086;0.05827852507703026;0.05106043612472827;0.04130500488769215;0.07923902384987902;0.04204221111589671;0.04581164368839072;0.0360635014643758;0.01494177064263924;0.567180116132745;0.3546522260696111;0.45583313587484586;0.445736258238235;0.5050221247888782;0.6175186972051516;0.6644457843136227;0.39144313964642286;0.3725292701835366;0.4838570693525193;0.09791638436703265;0.14918493011481346;0.07812813608022956;0.39933985669778616;0.3842533965835803;0.7304421555805962;0.09030925951479919;0.4567225098417834;0.05623248981144288;0.0689793923564505;0.026406581537734383;0.03028966553539873;0.04229652729957494;0.032108867455498014;0.03778695676789081;0.13579861959487508;0.04707581514826714;0.039760793194531865;0.09059037753705065;0.19883070341745565;0.11746355650300655;0.041210879576046126;0.06189360970960523;0.19915394865298217;0.21206925393589826;0.12471902814643127;0.2024707582416094;0.12292392352289355;0.1365935372271433;0.14665167498409568;0.05535461984182641;0.050680208725983326;0.08905044021058603;0.12465874388415736;0.21132739395569886;0.11922526394311671;0.2502878851194699;0.08019602971755008;0.02206449178719061;0.13921716502568401;0.1526954108609135;0.08382401811265167;0.02708685937828789;0.04390796322024713;0.0045640178222911085;0.03617242589742139;0.0728222978453651;0.04031706894003053;0.04432074380669098;0.0548768528805594;0.03361675789220283;0.08601264495489143;0.022648862632884494;0.03425848009559522;0.0945481127631845;0.08003566007794664;0.03940476306417822;0.0029076943597668285;0.01465770587280862;0.021119264394202954;0.032315896541248494;0.0007360066798780358;0.021182536235184086;0.10584867705755034;0.17480907481230523;0.17783798837993964;0.0053953017074356464;0.12282706942651507;0.21399076243171078;0.02157014009426856;0.09214424788579441;0.014415063560733715;0.0007030169458619739;0.11702709918043427;0.14493348660595903;0.18420927586565375;0.15700216307219048;0.07388469363193872;0.14656435978662238;0.34348101001390263;0.13353714536137157;0.13006678097129928;0.13399810265523418;0.10567207375474287;0.07597373018748244;0.1518252089091604;0.08280148900292202;0.11974998203409742;0.14632901196152115;0.040625483401755376;0.20591245782028395;0.1919826708975706;0.05418482009752623;0.032371148842853734;0.030944731229316628;0.019827729181957396;0.20073492177966334;0.14501439127777224;0.2011799289850897;0.02994812276017236;0.23799611174435767;0.18789871083738593;0.029407962777138877;0.020794400153947984;0.025550154035795743;0.05839985707491234;0.008438364462299267;0.0989424787591854;0.3235471481802435;0.48309048390051457;0.4923305495128695;0.6543186320680997;0.5422189300143982;0.7354864150783608;0.6128753391102592;0.6506039125645195;0.5993551153933;0.6315485474151405;0.7564631235400242;0.5406441817234051;0.5956095414615491;0.6406469787469462;0.5660313348399804;0.658068234480056;0.6195345431819127;0.059687191628607236;0.03140558257527294;0.02236012085078888;0.04187408369257255;0.0772509393716496;0.01109092057197913;0.009463358696877807;0.00766957643677889;0.031086170639919513;0.1406922584978387;0.07149526778118516;0.07314486928770189;0.04597512213628851;0.29110803970510774;0.02740524778908392;0.09327298282914816;0.04131664658644523;0.12145821362615201;0.02009721573748642;0.03832717706454722;0.1712170602783633;0.24873300156123104;0.014821271295600414;0.011148894277166406;0.05284800567624208;0.05947803563160406;0.22933095517633437;0.40062160231251215;0.18620164932904962;0.03306849803730908;0.2440653796895459;0.006054557021695236;0.05374689679047746;0.03542342164716403;0.03599844762863438;0.09051616047404626;0.21567332182392285;0.05805897295381201;0.03275029320055463;0.027417146535639206;0.012540160575498975;0.01795416163459951;0.16904746283905892;0.18012537936466486;0.006299856106870123;0.023616435330716664;0.030287465018077064;0.2660388964270257;0.000574723480547532;0.09748737548819676;0.04238489104680936;0.08771826131482126;0.020329111345007384;0.04375639630397483;0.03314581283357165;0.04215577274983667;0.07756688347624788;0.02871585682894481;0.010212906937883189;0.059343026438021695;0.012318955592257878;0.017239985896667767;0.0666268129809006;0.0450618239528472;0.05200445286124103;0.007957287894340869;0.08739870726654302;0.015031784442355372;0.02127899935024786;0.002258164616669077;0.01919477148923634;0.011731285126079521;0.0025210339319693283;0.002627123651920506;0.05290041911149727;0.12857138639832785;0.178676704196848;0.02777631464351049;0.05467593389929844;0.011148888206545199;0.03707245059802168;0.06703672977622528;0.03155058546629915;0.2815878559477764;0.08136029585077428;0.024515999962833466;0.009937167227044911;0.022124186815076233;0.024857047852847838;0.010305688728525492;0.00560232536875788;0.1407772737004346;0.045577674703383024;0.05172057895033257;0.03847913033277287;0.07469580263798573;0.047928443549073885;0.025056288193577147;0.16603366932759844;0.2049846533414091;0.22190458777892477;0.3014349172242935;0.038600485122327;0.0009759568677258531;0.06307131293881091;0.0008356916765479458;0.0010928038143981958;0.052794441940484396;0.042753606823267044;0.022193255667997708;0.02080865334238788;0.002840666414287607;0.05275469494851617;0.019800659620828824;0.13688042871776657;0.1431033643565894;0.005889254348920218;0.010448280639180189;0.00923963386392574;0.026653530844464833;0.15452155612685353;0.010464427641013277;0.017370041339546262;0.010691443306170207;0.0034630481223116385;0.01486627034872345;0.009315374704991693;0.022927247098591806;0.027322814009239426;0.04343144915559905;0.024622411481766394;0.014943222423419573;0.050023736372992525;0.18806604738639368;0.013235587125544518;0.016554021879239825;0.04574536614153093;0.015280885335375848;0.07003676086697659;0.061635729547374736;0.02898811545362432;0.03676039569042174;0.18434906531395034;0.18065977764155852;0.13929282141296603;0.1641707634530079
+2,6-Dichloro-4-nitroaniline;0.32262110093035173;0.36475873637637823;0.4034241219135728;0.4872601712447059;0.4829212938987301;0.34866833202130115;0.20315676321277565;0.3440655966845415;0.33187794197297893;0.36206250408101043;0.36854422362946915;0.34421733500266266;0.20153942126485283;0.33184007436433466;0.3351305264104881;0.3294698258969895;0.37045582817443645;0.3663971793562152;0.36343770583543483;0.3713040656779465;0.3350153933459663;0.3402753256471215;0.34947613679368567;0.35828101866510514;0.3416765279036788;0.0595845814894446;0.1976725139732824;0.15247882185796063;0.08905655944395266;0.11481280905838258;0.06223369620116874;0.236701239216379;1.0;0.2851984649571844;0.3481527835981557;0.35328143469363826;0.22786658779433794;0.07489824904318712;0.07094404772382377;0.35357193594812375;0.18666539635765345;0.35369979992931005;0.19967564549287364;0.008972276114962565;0.02383285717768905;0.01784293562133657;0.02214121850141897;0.02178329534251948;0.023424182550448962;0.34830547092080755;0.27356934289577106;0.21459053889609958;0.07642257759589942;0.0963145548396933;0.3046555351563836;0.36486734487654887;0.23946610981027416;0.30139662243094006;0.23195840329000544;0.068427796663582;0.21181286263713903;0.26533777114698287;0.325048418919184;0.3156558610841385;0.2301130310450363;0.28701749751610595;0.2990118296001453;0.24628968713359917;0.24569568885411372;0.24623298179374922;0.24433944571282035;0.21537253781361543;0.07378251285473846;0.0763016144133621;0.04609317214994722;0.04781674571249455;0.014388228080888327;0.02880686888849475;0.007750238113528411;0.04253522809230802;0.07107682787967505;0.07013034093043342;0.09911993785374207;0.09228862776696026;0.025194868634799767;0.02101449244171826;0.08364309642400199;0.08651859269096544;0.053838054948717455;0.17347241029841648;0.019033212870631915;0.059272428452320815;0.009948519152303747;0.014231007568676086;0.016877092668726237;0.08304797151375058;0.06888500659451052;0.050798535891568776;0.038935455327190255;0.03460432430680218;0.08155804428218728;0.24397553579533368;0.20988760900614564;0.29506340700434386;0.2841471073470596;0.33906152152450514;0.27388575761202194;0.2900392854881694;0.29513921212946453;0.35021826741966866;0.35651778777328563;0.35445120579753614;0.3231786853963;0.3335798056370842;0.35114207587694085;0.20477376520661494;0.17985431480425096;0.13300612457113747;0.31378948205444396;0.12355438354992264;0.07416858636013442;0.05086772412892098;0.3084684726665182;0.07526667232903157;0.0158525787857936;0.020947008823711064;0.02022351009316858;0.18348837411843927;0.020523382312816016;0.010922873334725762;0.03582886770518722;0.07524464977115199;0.13028584075708113;0.13729176414149155;0.3556010276528825;0.033194434735008584;0.082977686731735;0.04523781028534693;0.28662301832159226;0.31526430129056543;0.18395451225147724;0.29009370460199124;0.08304438418821178;0.1910372150585726;0.23111425025487986;0.06292324104880966;0.11096073796962473;0.010811112989348627;0.11198717183168687;0.13091620736586113;0.44638237009114107;0.08675160869302298;0.08351325402094295;0.055152007493014736;0.4174421667299253;0.17897158976656444;0.16776493632924533;0.07507697296411825;0.08339017001926839;0.06861224521782289;0.10095297906022076;0.05954023400696907;0.08424940902756595;0.0535777510897615;0.07203155922853124;0.054050981056753586;0.0812609920730301;0.04754148975345373;0.06456719533126248;0.05552818679354575;0.10311291332937629;0.25044696888204915;0.029464534539799754;0.10479590081707765;0.08447400597597667;0.05019518513469334;0.04277641432987688;0.041128095241768234;0.1397952985704915;0.26569192934130853;0.26034132902698076;0.028090089675777478;0.127122383884399;0.2988658470553395;0.05129969886968026;0.2947811018240887;0.06858465950449348;0.04060061446161693;0.20743356921855183;0.44489715664917034;0.4800229002882328;0.3513171462396392;0.5210687255209838;0.4661163133087906;0.5011279613641927;0.22566571113184605;0.2205235025264869;0.28246396465760165;0.2708426763628904;0.1852583793664439;0.318450401783003;0.18988729111809602;0.2588028730501568;0.3078553725739;0.12152612182194682;0.3558145762003748;0.291815061342392;0.24075712386761022;0.01715775324392516;0.21964880594646066;0.17967179988836893;0.30606459515637574;0.14620039397877166;0.37435739576528587;0.0691427627294184;0.163700342341715;0.2654815681002977;0.12872912197729205;0.15395759020157007;0.10935497819874615;0.11095836153066321;0.15047219578034834;0.02201368943372255;0.3539424677047376;0.3715304443969265;0.28613681187910267;0.3743215508142753;0.2772118640662582;0.3500383040918804;0.21818890042703817;0.2230067025542306;0.21254786398895534;0.26260875423232677;0.30870853171539214;0.17656921424355612;0.23055296140544035;0.24216126507964308;0.2837289392937416;0.26560529867132066;0.23422275342235238;0.09650820492439444;0.10414348182376944;0.09737957995677582;0.04191242838980211;0.18236240792459815;0.01352302396080968;0.01125378384246006;0.029315501339849653;0.07670755804955802;0.07670115429791367;0.09462607669218237;0.095502961343234;0.05366584682615096;0.3263452804800304;0.06167911786120145;0.02665075559480066;0.01909531524356751;0.4890006395459103;0.04446718519653442;0.12864111227286917;0.009277569392006944;0.07960917687952467;0.10166897569676489;0.008596637844344845;0.09825023660959452;0.029795410695431773;0.4376675728302971;0.23268643184698343;0.3232646203453778;0.07275260898496276;0.01020053171691283;0.056224104064416185;0.12944652962732375;0.03691142770193264;0.12187673160819212;0.3704490663026713;0.008629918775199353;0.024585248694000146;0.0236561636380309;0.025517184325053035;0.022972620485377265;0.1816295560616488;0.009182553464562187;0.2967759419310235;0.06518822455302065;0.009961706767258695;0.015827273990213355;0.19666254318968435;0.05341677513103048;0.011910198364529431;0.07477850024675468;0.12203807707438515;0.03561385519777127;0.01998932230216077;0.009397869265579279;0.07229003111530982;0.0695855337505539;0.1190542700468023;0.17646247458004877;0.018950882171451192;0.01519357589743064;0.018945888323373516;0.1350413530322534;0.10002462374396393;0.11530705603580409;0.03250055973950699;0.08027221205872556;0.22311498318426531;0.029902136461933185;0.033228468313077304;0.1359162470086825;0.0021520134451022406;0.017682487950873446;0.01871192743166935;0.06453683539704709;0.1276040346564682;0.3085981980014281;0.1447639137740579;0.0929239051931062;0.06636203945204304;0.03878732088417102;0.06743901675898635;0.06307255127267716;0.1387908201074455;0.08938964752366557;0.07531150794791898;0.03904865651550324;0.07955942868817151;0.018384431789355084;0.08970180516235605;0.04923685967517728;0.23238478655271957;0.035560749794732574;0.03619480073659687;0.004012651770581839;0.1006533765525454;0.07522730076875503;0.03614323087676622;0.2757861751217336;0.4771799777352722;0.4205527836403329;0.29148316056425627;0.15248550684846165;0.02219329616240972;0.02555500155561702;0.031844914486105914;0.043109524077589056;0.024970682146584097;0.03919361668526064;0.02899762268998229;0.05036338881294901;0.017524154986650983;0.014387533933286494;0.08141211618953678;0.09482269521764297;0.08705506007194107;0.0519546972437521;0.4669043262718653;0.04355282925927959;0.043401207478627926;0.09569813147387445;0.060112432272157644;0.05694282602057389;0.03497965176408364;0.03895239048444927;0.09156048400856658;0.010094201541633825;0.041423058053435574;0.03783605283229243;0.1201260808889955;0.29407117963103896;0.0336846969011981;0.11424068268384782;0.4124148685680141;0.0092447283504038;0.012175230457233498;0.03665739336294003;0.019556030947987982;0.12500501873049166;0.1568922577884624;0.08989510475268955;0.06556557686799305;0.3151038956275799;0.3074399747567661;0.24618962628085572;0.28664381641617315
+1-Methylphenanthrene;0.7464011702040245;0.7749809724929236;0.7482355235178629;0.805542174009536;0.7986726318414935;0.803472621823485;0.8959158553424622;0.8154811955686387;0.824792079368096;0.8058122195231622;0.3883292727675121;0.8069031852449033;0.9422521707953103;0.8059637128598351;0.7911908229277589;0.8355125173331945;0.7412593917256728;0.7682397348527834;0.7812283307933843;0.7755205352621752;0.7678349341345032;0.778023712215186;0.7289519373502965;0.7509131575686371;0.7242757415529266;0.025461909762589028;0.5678801514387478;0.2893730460064992;0.1859042060350888;0.17999443933104933;0.1299167721650161;0.15075659667646849;0.2851984649571844;1.0;0.4231190724404482;0.7391751985411791;0.24463023024768604;0.10689549722729176;0.00989641277275298;0.3939986593471889;0.11684601309290472;0.45127542831459555;0.10393332957612317;0.0005066773567871988;0.002106631672546044;0.004869076077880112;0.005133967653025157;0.0048820112391790155;0.00510780584725392;0.3464475659881288;0.2502933651185859;0.09905853353493137;0.06641632205397419;0.06657945637112335;0.20547557300943053;0.46398258604190307;0.21645233287611;0.3033708825012879;0.2012022383916757;0.020156735153701942;0.15279052981413874;0.27365957478255404;0.3602592937794037;0.35308505473746565;0.21172241044261925;0.28616509430418463;0.30015305973280537;0.2163811854254034;0.21462784787960734;0.21355404457172456;0.20168067510125368;0.14334314937723597;0.005005799054795949;0.01573566608629927;0.01572566182867871;0.0037277828009001385;0.04529739436888183;0.047189573803009206;0.0717459821326248;0.01958741532524637;0.02612252189713526;0.021209180883340808;0.008358680769981884;0.007331844066775235;0.019439910996468843;0.0015264048932762868;0.02020706315418688;0.028272051624993712;0.06485447638611444;0.011692058383626873;0.0022774605891635524;0.009357627824622678;0.08241747728325494;0.02483649736892722;0.028197959772483034;0.024578001957063833;0.004716334661230143;0.014328646000586615;0.03930849562363647;0.06343576968316685;0.05698659163278192;0.028044549731618854;0.03326248324316518;0.04668019861393353;0.0611738983430529;0.5362939121824801;0.5603841929884036;0.5665241141524745;0.5748550289217316;0.6242392302477421;0.5725021508366471;0.5125041649073966;0.6487282080623451;0.6300129129973295;0.5933017440973941;0.47468064969434876;0.3990861853771312;0.352611022675386;0.471272238134284;0.14725567685415236;0.04073794896106982;0.5248552361452313;0.47351211287334816;0.01964740916208163;0.00984325238867635;0.0025935520683683004;0.010346569559978688;0.020637226349257472;0.020601382371107035;0.009743825516836075;0.042140802469036016;0.014680119116310826;0.6574146091007312;0.02780352765046846;0.7316933909915426;0.005393142331927464;0.2428356618943015;0.0075015622004814125;0.5225695558187292;0.5915862702974937;0.455574142266594;0.4958280400454224;0.14876222792233576;0.3641317243891339;0.729543124117331;0.046366115120423636;0.46476366734164826;0.01847818278067931;0.0704312657097249;0.07407093197474379;0.3555156626294783;0.02407519614295312;0.0576095967604792;0.6549810686576728;0.5988748150170327;0.6063363091611592;0.27150894119705443;0.09793532621046543;0.1213536630017681;0.23402529113928996;0.1290921613132707;0.013014609232873764;0.0055127333449492685;0.0164443708241017;0.016004585156721686;0.04386136220573209;0.005342720004225551;0.009483620611633948;0.016219714015745658;0.0208583536957397;0.007465341435031334;0.33293315850842603;0.006355230901732889;0.048974719673564635;0.05134989081332138;0.09139504758953562;0.01254850413198127;0.005594455470250842;0.3840080854136668;0.8928865047210878;0.8929532107931749;0.0020244369013340743;0.2549820466190653;0.7045703014095092;0.005651069996574067;0.03832068926694405;0.009426146749968205;0.0;0.8228412994064859;0.598737341771793;0.5856345636949694;0.5974941266140325;0.25867352000841787;0.554996881919938;0.4919295979450354;0.9392889037171698;0.9345438015463725;0.6746998167226018;0.45554392223669077;0.36178485659456305;0.7435584514914829;0.39809940035171043;0.6123895903312686;0.5780711754943673;0.2110057563282175;0.7328385067292704;0.49017382606996823;0.09803122140948485;0.040244437326437496;0.05284670428211887;0.023292739254370413;0.37004965893003955;0.2153623037006056;0.16055578749380595;0.030370249189114445;0.2900970215804881;0.3392506842807944;0.20866390810095292;0.008877119120418503;0.0024729977673628735;0.07793616595134469;0.033535800777938475;0.10907985970474476;0.6651796895941285;0.5235902869126909;0.3479539809849312;0.46717573761337944;0.2835934655278318;0.3829803324187952;0.1548959732474884;0.16011290681768237;0.1428836309310755;0.24580291670531354;0.30920088130877915;0.0975062162607698;0.18534274577881135;0.15082965890582636;0.17520021868190438;0.2061511033158264;0.1899784362030506;0.15005424097173106;0.15703873068133511;0.04006731191453017;0.014988632047589708;0.09909992148615707;0.0037790527663429828;0.140617031481448;0.032246529818723405;0.10723211483466068;0.006451261333210736;0.18901981663361664;0.19010747994924954;0.010294982649818289;0.5833945059497372;0.06072872332849237;0.14931539688440648;0.04370162533819678;0.5098731752079925;0.0003105115925569732;0.13367165808260112;0.00048684199119739327;0.16656585018509348;0.002429542136151619;0.011850498119053754;0.07649575347868741;0.01294866965319318;0.24335587332897815;0.26812469547652357;0.3158268190336844;0.13101929066819695;0.011213959754081898;0.03555937404985509;0.18714095090924884;0.03800410268463277;0.03255807880956815;0.2763180131961451;0.09227728376253087;0.0036504307871318893;0.09296450937798877;0.007222937763716627;0.0026863025736948314;0.10450696282627121;0.000472105279386679;0.5527851718702337;0.04646800252612563;0.01335033041900427;8.028401343484318e-05;0.2682754225058337;0.0;0.018738589425673684;0.021713265833265095;0.08530041987525736;0.07617778765083161;0.031222633073388868;0.02362881932572917;0.7417465652165499;0.13116770933292776;0.21928292801151641;0.039048449693455486;0.019511827681566604;0.03774358246621572;0.04227648930521028;0.25486148510042855;0.045378608066035366;0.742063006356993;0.062058953003433955;0.09804334355174736;0.0021673138262829337;0.05724959000140956;0.03482538085335314;0.08293150044109372;0.00039724020095275345;0.0;8.861149561880248e-05;0.09664776816603203;0.21662544634651063;0.6366580614280076;0.04436096789850126;0.8662998906287304;0.004790113058029723;0.014636282972983453;0.17539939996913018;0.051429912581706705;0.2820434349460169;0.13338495790962168;0.018051841016290603;0.0033456991497990184;0.008856028657883144;0.6605592284700187;0.016580261493767352;0.025082549483027107;0.41317893055880467;0.05291938903540677;0.046070485114727736;0.00791784125892652;0.18900558822944452;0.042127552531015966;0.021551647133167075;0.5877640579683072;0.676604479614436;0.6993285798746934;0.3133402380419194;0.09972737396354428;0.003662877305289616;0.001661100635383856;0.0015191712662542026;0.0023581845287387144;0.013176710634064396;0.005183452220208729;0.006802895501787964;0.001917262242381836;0.0008374882902915519;0.03102493219460344;0.570447149813366;0.1239610882416383;0.14949283751006587;0.0015634572729353957;0.08365264551188281;0.02366846507465842;0.012166334649775443;0.1277660254232246;0.01672439833026007;0.038544044193743285;0.002559193304429887;0.0006109959315003099;0.031340905157693374;0.009673986932568416;0.0030278126889854073;0.010703370162524244;0.05023767102359571;0.02823768193663205;0.04609190172942053;0.05597591849788425;0.7663391698316178;0.00877342035182254;0.011555939384573463;0.011627959927808195;0.02382517633054696;0.1718536116675851;0.14396844073829645;0.06493727349324946;0.0011704201298430926;0.5680447071587708;0.5831972769106485;0.28360767813972476;0.1510215770901302
+Triclosan;0.5166602600000427;0.5205696737031862;0.5268243122251096;0.5265874082189456;0.5322707287222467;0.5349777292735814;0.29445208498992376;0.5312352922505524;0.5295224031541315;0.5424275458149588;0.22153118634578473;0.5673064751822672;0.3215545959846958;0.52419317925638;0.5251799976872937;0.5016195580594763;0.5428773281609599;0.5357018468434316;0.5189923396310604;0.5311304128394932;0.5301096686692385;0.5412851937787249;0.5398052064991096;0.5493308949916187;0.5531338320982602;0.09408064955981327;0.2588152114401558;0.19838630855805656;0.1464066893764182;0.19935148526910967;0.10040299973819797;0.5275905593879963;0.3481527835981557;0.4231190724404482;1.0;0.5316006961575064;0.27219283536375444;0.1115857566671201;0.010002957144655742;0.7168748485155988;0.5965578833933123;0.8870269279466239;0.49444389273890255;0.00751493614266946;0.0841930904742916;0.0637407920299782;0.07053548759311035;0.0679813465799585;0.06834608331040395;0.7308313659434289;0.6911042749981442;0.5937654336953779;0.022813057172020486;0.028211502852212102;0.6375346751071225;0.8787149443760996;0.7859341372467717;0.8082896213102256;0.7109740101673035;0.6051248398068788;0.6604717554492648;0.8288934978448628;0.8605605918996285;0.8683384725534947;0.7699320661691951;0.8049066170702833;0.8029407719539181;0.6947423185637697;0.7090997425163068;0.6918879636762512;0.6907599920679315;0.6441829777631108;0.06339939899031392;0.053459081049366065;0.07653782249609445;0.0861301077202233;0.009656896889680033;0.01654932591731468;0.10598713785471842;0.07654727050286596;0.05837946616805577;0.05265045132483648;0.044321978115345495;0.043943637210155616;0.042515334571412905;0.030138043775844284;0.04439020064408373;0.04353272466979094;0.07403765817302684;0.08699821434688246;0.0321000031009545;0.020111000876873453;0.04659582532810626;0.050625476823852114;0.05103100012685184;0.06755274982684056;0.0502283424577588;0.05480259296860329;0.03691093733319579;0.04632704725554372;0.08287277233035784;0.05664706769809327;0.06605460318452107;0.027399518990626544;0.036991618148044254;0.6681722855549184;0.510973155096291;0.5587748929384071;0.5640521943203407;0.6650123013937995;0.6965360368458137;0.7010092811132546;0.5852200562663381;0.5687390678727201;0.6558303181391734;0.11199040113602417;0.1006109190433658;0.08832012365573143;0.4876233039246876;0.2389364579334109;0.171666947159338;0.1069380146403332;0.5075988281079175;0.026214584675972305;0.04508888795895434;0.03731323729209774;0.03087096105348122;0.03488891182126171;0.03645139126042333;0.0376472229477195;0.07229401049192914;0.12296186280147964;0.10532318111329947;0.09650705465167538;0.5404382559655484;0.13369397964347063;0.07202381056479563;0.10948581880544771;0.43019413655121996;0.5112911786762327;0.24987761640659112;0.39395840447526054;0.13167262236987828;0.2052572702861326;0.35532125778205076;0.03733587463361336;0.05929973078459802;0.017879340315896806;0.06005822255087347;0.07312720975093648;0.26063054866823787;0.05470060931427136;0.025079932757461686;0.009362999993566193;0.3566037053456256;0.21992812669710352;0.22045978141525457;0.08470071763499476;0.09847843668568663;0.027945505947328683;0.11673261060750491;0.12983940313548828;0.020830735349291033;0.06802917564727869;0.19298455544475618;0.08059638952141292;0.1258003157285873;0.21014623310457634;0.22626434743023544;0.09659383999801258;0.23691999839191233;0.13123166535588787;0.014244584475929285;0.020195276255460946;0.024940449561868232;0.08283168425011848;0.027427728924161877;0.06884897592891608;0.23580068946341823;0.4400244092720685;0.42949023290132876;0.014385110691399567;0.24855248170708338;0.5035924935892419;0.02951503576161295;0.059135964936580784;0.03760203643251881;0.022439049121854623;0.3083934885456148;0.375570132064125;0.444780888683414;0.40477587830007694;0.34228766277039;0.4011631820199063;0.509511377778311;0.4019060911325854;0.39478431161806665;0.4074771190081648;0.32756142513575215;0.2524968643839755;0.44945509865915295;0.2725313260139495;0.37186433146428455;0.40138384702765223;0.1354274717883283;0.5422425723449209;0.4167981941946078;0.10378283284914;0.016642094054140473;0.054516248774524816;0.1418275181533874;0.5676904188383507;0.21515586037992165;0.162809968030276;0.08933145586313211;0.28082090635183726;0.3593371230368847;0.07866194163580723;0.01784051885055169;0.02572830421371847;0.09249275090778991;0.016948162268160722;0.0441282231448813;0.6521390786543833;0.8570906050173533;0.8471453534721164;0.8720262118288521;0.8332086134748832;0.8448098016121021;0.6456487212043172;0.6558856586533439;0.6382976660406123;0.7942151932136541;0.8077733678537155;0.4431715726711656;0.6990832685597888;0.4364355895343151;0.44571976966075005;0.5132293903258406;0.7034594160608283;0.14920797835116853;0.05038605249737133;0.030576756432387366;0.028777080475041718;0.09442508914801344;0.06876409983187018;0.0217058137208041;0.025698236118786938;0.03074986862502357;0.2092269928441352;0.13175268070653567;0.1336916477524231;0.1521498997692659;0.5143925106671681;0.08328546373887187;0.023595271644279426;0.027423238424736988;0.3013975635965263;0.023049428235889607;0.11178316764739939;0.11070945096051885;0.12333240491136345;0.0038228216882297697;0.015353358119444313;0.09379010583472412;0.044449061685228934;0.35326466837965337;0.42272277235092853;0.3415189428801576;0.08762850182738639;0.009511074471550791;0.01661374469987877;0.1777330191298298;0.025642871346530247;0.04605488945580289;0.21049218403837763;0.026593133031860845;0.02343090761185888;0.03256114769993601;0.01484224522570371;0.03634756461445896;0.24026728419821924;0.11121731368282813;0.4222042066905302;0.02740518672744088;0.014129511151013683;0.019570848205401697;0.43421505113011805;0.03762927287105883;0.03149748626303026;0.2594199316652847;0.17853406477722364;0.07203268637897269;0.03487831088699886;0.05734809758149965;0.13361584971238263;0.10738644952163891;0.04050828345201111;0.05550491644879247;0.09022962946028731;0.07809000356411269;0.018858623123014628;0.18378245377888308;0.05006490231671407;0.14746518523888427;0.029994138979264343;0.5670331712422251;0.03555272610815398;0.06942586095788614;0.05624850425878309;0.04502727877125823;0.028945221318495768;0.002067132183623853;0.003991278337491356;0.11829744257468983;0.23814890459937668;0.4844418673159249;0.05521484887954021;0.09153596274963019;0.048383174738395124;0.024601883197578105;0.09465769001263306;0.06478236115489375;0.3380924770410368;0.13390566735047232;0.021010723579469814;0.03143925755233834;0.03135918029919093;0.01603738806816013;0.015030551256704085;0.01591312189875746;0.31366415968873945;0.05292806870607391;0.05097122280945556;0.028067171384898424;0.1904517831458877;0.09542293807801792;0.05217000877708552;0.3961652474347383;0.495033261507352;0.5370178329620708;0.5322283299707453;0.08230112876527237;0.01253639369565661;0.018741723283373906;0.020905673975573223;0.023000383201165202;0.012172673824445954;0.13710790456564198;0.02691463091672882;0.027712252300780085;0.015185341071963893;0.018480403955650936;0.053158986979952694;0.09817839678799918;0.16058602203805541;0.0178467325216395;0.051047668459283095;0.04157673207458018;0.07650317155671346;0.15960727897306984;0.0736509031941608;0.08149029801093312;0.031709007697407234;0.01727629009690136;0.040423898469650325;0.02997681410990143;0.09582012789806627;0.022224617973805608;0.08330083651302812;0.23540191083619896;0.12375240339281317;0.06590805311632526;0.5175382654261921;0.009173370963340938;0.01746119208186784;0.02266265064551195;0.043803672703010395;0.1934553212674397;0.15207358463831394;0.05564019996873491;0.0045837936001014625;0.47184683999170807;0.46983119501250376;0.16065384925742837;0.17835204641434188
+Drometrizole;0.9034361486913145;0.8920499989042568;0.9157949393156448;0.9082256963768752;0.9170698898090157;0.9385553682946588;0.5509855703722697;0.9186399654499129;0.9161091317218126;0.9279812193518072;0.3693865928630215;0.9259521897504378;0.6130736957678175;0.9233993482763483;0.9142103612356703;0.895742666562455;0.9310891646872593;0.9145738640636827;0.8892476771025011;0.9087439455271353;0.9200643430201388;0.905089686772892;0.8926469363282316;0.9266658933350991;0.9048429206704693;0.05841153864323248;0.49206013534669296;0.335155307220513;0.25102336649088336;0.28939766582489446;0.17046897125104304;0.22139546114510747;0.35328143469363826;0.7391751985411791;0.5316006961575064;1.0;0.3949432853852707;0.1632952737338869;0.13762894665282854;0.5118092306926885;0.15706556126464083;0.5862671341718012;0.14625452303323813;0.0007987141487669976;0.004804022057369082;0.011597347758546445;0.01485190248374797;0.012379439622361751;0.013539795488989186;0.4288245009810852;0.3218533281652255;0.1443069434133673;0.015261362445597348;0.0020510125936567918;0.26864733581640393;0.6039518740937053;0.29620532415304496;0.40370604533050863;0.2713190432831489;0.011850268558689595;0.2071345184933646;0.3713680038059626;0.48046703322545875;0.47119170249550646;0.2916167950451527;0.3821240616511901;0.3990101854611847;0.2884526101601021;0.2873910902837001;0.28440329337364667;0.26765943869237935;0.1915090093895812;0.0307407811272658;0.04494239619328865;0.030306321488433645;0.030006120584312648;0.05937265444384533;0.013476155987478167;0.022888958307363164;0.06328284701053573;0.05862888218323543;0.0580411011242034;0.033684921223903104;0.030870800265737852;0.25136770884525195;0.21447306656317494;0.3886491922611567;0.4017450747686597;0.059213893473826405;0.012687993226584116;0.05113469040369821;0.01100541045248212;0.035525346050983814;0.061321402907909286;0.061728018470149644;0.06209612068446578;0.04361568181610059;0.04466646203714371;0.05014205511360239;0.04654155026655334;0.22875557002735133;0.034805670159338754;0.05495840599092851;0.06187546606531038;0.048136566394909715;0.5990908677885062;0.5300143853663017;0.5609139928317268;0.5712739928848112;0.6814865718630099;0.6405412851027443;0.5885328247908719;0.6828405134409394;0.6719824790308112;0.6516030195673018;0.1460518031284916;0.13181359783537744;0.11891491578000708;0.5065341588000002;0.07372822389392729;0.05279370244211842;0.17288287659233553;0.4982041117700861;0.005040411926024771;0.0009692794066581965;0.006947774962977438;0.0070439728571093;0.017637615485102686;0.014511731500445846;0.018949495001860415;0.06461189781646384;0.07170142966810016;0.2937143731633668;0.16182875361572538;0.9372113151099147;0.041178189433903535;0.12526656878438133;0.10144499421966277;0.6966817541427591;0.7813631531469085;0.4308439315544279;0.6960201590945155;0.23805768623005644;0.373123330468533;0.6302912587011871;0.11976691936676843;0.058478601105662206;0.08885216469728074;0.30160672195067617;0.18910947461383984;0.5243247214591424;0.2340171385298112;0.1440665541694159;0.028948305156207135;0.6714518448318413;0.4142819821762249;0.4138627452180001;0.16668123287946737;0.2148857045388571;0.03520731775039558;0.18214370068518435;0.028814635960989057;0.002886667353972537;0.028948190083060606;0.030421103938243196;0.027624447435374844;0.04195960343824094;0.023454432300502724;0.034141578297698365;0.03252022122734401;0.032573700169928936;0.15633022092366614;0.03164077228748502;0.00252328143983529;0.0028307153842406715;0.13092885084412575;0.014582880379474025;0.007383107788915081;0.34683334341711713;0.7747323958447668;0.7603636624419581;0.008191770736579354;0.3522053374484877;0.8492122135512993;0.07929415588581534;0.04831670136587145;0.009514243953451901;0.0;0.5896954937969581;0.7282203994616986;0.7906301252206861;0.7705856206075697;0.4091461457329828;0.7978315551585927;0.5654393333272127;0.685069540043087;0.6690459695887176;0.6676703503221276;0.5213157638046287;0.3819941058195844;0.7224864774795389;0.4153795023288512;0.5978271030717028;0.6692365463900202;0.1104763361536839;0.9507637108351232;0.6708622266826961;0.14078585318587092;0.010170281366364992;0.030072754521235874;0.014453718009530575;0.5091616603525116;0.2744677606082189;0.2501657286492418;0.010214454171460417;0.3644648076910092;0.45991545892155106;0.1424284379905391;0.009132193834455762;0.17110505773543727;0.16621993322339323;0.1631248868335499;0.04029715294948957;0.7607905166530288;0.7426951347001256;0.4601682575921007;0.6117519797697013;0.38676137863648097;0.5083096043433746;0.20837772800942414;0.21522559818451578;0.19294093637496829;0.33564635581103125;0.4108057323094951;0.12398732851174078;0.2496316576684943;0.1946045442175332;0.22644980983994237;0.26685615049677397;0.2553760510919072;0.20289962554241195;0.2499213328562302;0.24734204831891737;0.05397280321424822;0.07232120303920951;0.17828747987629812;0.014217574459957711;0.03219571580870136;0.04057096211380208;0.03360347181662009;0.175232416326311;0.17597142059728593;0.003917607285171312;0.7874522699686152;0.11185146126591083;0.06952005211559881;0.05915743607162441;0.5528361625789512;0.1764744885104365;0.17442424680217897;0.019019946403546702;0.3013064026976779;0.04330412596657794;0.001886525291072374;0.1406884292846406;0.0344439362793632;0.3089891233585799;0.3823878710006582;0.4158827993845796;0.16445836130352126;0.11352607835646387;0.10742763833495532;0.35471053954965515;0.17461889779381856;0.08130939852500313;0.6130511999634507;0.04149193376145575;0.02161677450429015;0.012488361227035583;0.016059140158159565;0.009284614761052749;0.04081559658180023;0.01816366725010128;0.7605094555505406;0.06797353818929876;0.02992152866477296;0.0074602458798847405;0.36466067416441966;0.0066063803771090925;0.07876603875562858;0.07949157809103631;0.11115781971465684;0.09585921449031547;0.11503701986274169;0.013299873810320542;0.2874216555644906;0.21000309777237916;0.06854374409740709;0.03280892656642303;0.06152335681165955;0.011339523303273511;0.008614338006858244;0.42340465838762675;0.06703258476425847;0.32916921710237995;0.032781882193120886;0.15485815402953976;0.024792648869820536;0.00590155489906291;0.0006161406775164371;0.19495975060992368;0.007556172475710773;0.0;0.00032315525764200896;0.15324590837010377;0.35562937032209496;0.8662969550529029;0.14451585255340946;0.14942531219493202;0.02303105140098816;0.028508748928333615;0.1553136042432181;0.09457562159168226;0.3757878576332006;0.18523438093282138;0.044413218224655514;0.16314090318048433;0.0018003110600987742;0.03018863395496989;0.10359952365824317;0.01914357075514577;0.6999972541702583;0.07543001160965354;0.06969835605184889;0.03065988833117261;0.21809061798780996;0.06542518428312546;0.0393418368611108;0.6401987336252591;0.8073245716065628;0.8940968522436634;0.3720054964745909;0.3037289835427144;0.028096657315246278;0.041754577361623156;0.0012607107797899444;0.002051442681081576;0.05342069832034385;0.10519465243886596;0.14463844737082807;0.0010368337680501307;0.0019856507389292384;0.006250025384778374;0.04682439337297299;0.2011733221710625;0.07300407388424653;0.00012572154404032093;0.049844576422513366;0.039998502230434926;0.012058774077345;0.1415798119865694;0.05449619017778661;0.008678162483450661;0.012286288184137564;0.010357684496892625;0.017120202650802656;0.0010334427288709507;0.1158164566373844;0.13674137439774622;0.04902319493311153;0.059922145625781895;0.03978443504643239;0.05282646437780511;0.9166698452370307;0.027176050144699516;0.031922911236115924;0.0237804698829626;0.06452392131830631;0.25302897810990116;0.2082741388665025;0.09122046630686936;0.11278393234332308;0.7823826417462821;0.7751476221004817;0.2180878610093058;0.24027033259121347
+Enzacamene;0.30870126936542186;0.3143066014540748;0.31531195485147206;0.30435673929026563;0.3079818237308672;0.32576334709598603;0.2734816844074158;0.2945983069680656;0.2948404879091492;0.32587380213636613;0.31606890129155973;0.29930254521751;0.1875854527876317;0.3063880509581761;0.30440996637451767;0.30060421338817983;0.3191146687776402;0.32225688756135945;0.31101345756949234;0.32580598608661143;0.312993232337422;0.31025474548373977;0.3415376502718149;0.3044997402706988;0.32104225210033444;0.07435814439851753;0.34442232109289567;0.4565459935318364;0.4717594649985789;0.33434209448208524;0.26130063705079004;0.10813316119082116;0.22786658779433794;0.24463023024768604;0.27219283536375444;0.3949432853852707;1.0;0.3159598712806249;0.2702590120311231;0.18715003049276646;0.06677331783746923;0.1956651692935173;0.22410315434817488;0.0005074984995451371;0.11709414888559933;0.1535702490851324;0.15645985374210955;0.15286489981477705;0.1648899310013954;0.13644679388859635;0.10900497492948603;0.06020171436598498;0.10963441662871404;0.057754105584019576;0.11993381407073091;0.19816771020398827;0.13082398860127886;0.14738029528734375;0.09561886234122828;0.051030624541728575;0.07728216728089529;0.13787946782554786;0.1702252718979838;0.16190874037249156;0.1332560377624499;0.14315725055900091;0.14727424163544597;0.09506759282413123;0.09594601227743323;0.09451466160377603;0.08454080346401152;0.0662619520062679;0.11964853464461964;0.12438736249606254;0.5264952848746707;0.5106243103823218;0.0740472518919396;0.05249991337596423;0.1378010915729027;0.22782511754341772;0.3306303702322951;0.3136173602492355;0.14432534930690538;0.1402669521799172;0.27197581168787;0.25375461691704415;0.1801514639908603;0.17345572059804387;0.16898261536924242;0.12056433544188053;0.2025827760697538;0.088365962510069;0.18681814880399958;0.37401225651518866;0.3941743975778581;0.11637118450556809;0.11085449954893535;0.21053403231568163;0.2397778585131937;0.21738012266362947;0.3839831680460363;0.14545586088415;0.1747094951430488;0.09349963005203211;0.1830542961442093;0.19146258861921878;0.16582845449164332;0.17521019844317168;0.17932533954088836;0.21355831505400794;0.20168120641442358;0.18722746666225046;0.2273168951802091;0.21399062615823417;0.20956418814541947;0.04133591815716869;0.03816900366847553;0.06200140409421264;0.16894603037480585;0.10539650603045592;0.01835584778499799;0.05832641046133508;0.15390983244961978;0.05507792694837487;0.03340815441031844;0.02362952478795994;0.022856999184225263;0.13993978821046682;0.15584592023999383;0.1700905750857043;0.13542504891774104;0.5083927101304083;0.1094115935437519;0.3217251578650221;0.2996190656698425;0.39007042323728613;0.4778876481407714;0.5701156774746665;0.45547113646993387;0.48090467232461415;0.2192652565231143;0.5278743751430307;0.34110326278105774;0.16213411509007417;0.3879076359358795;0.2309889254301466;0.1734146037163809;0.12247730744936851;0.2615886382834071;0.3292277616492002;0.23669194466195426;0.30975837185117167;0.4867617630259356;0.10992787589254777;0.35785864760694286;0.679954919326941;0.5078247564773979;0.421406363562373;0.46252242615211947;0.20919276894788336;0.4976841755117469;0.12744348951376738;0.17806732192771593;0.0791454337906549;0.035225309357836396;0.0762394197367742;0.05002394565691573;0.021485511369817908;0.025120223341470887;0.19131100380063162;0.18755506725880572;0.053346846055485946;0.07968193858068125;0.045930212502387435;0.04509011243772709;0.2922409591280991;0.22684638951863692;0.02372721465736143;0.2794317627291509;0.33925918694868124;0.3241125954910223;0.16127130586324176;0.29158266167069524;0.373931273459114;0.11692088557336715;0.07385007690648904;0.057518600836095744;0.00019750129261901297;0.2968853984303328;0.29644103392959825;0.3645495154747456;0.26972953908665476;0.5316370302564986;0.33292874831122;0.32990018783309516;0.3991005429052693;0.39928510069277934;0.5433049148144845;0.5764038062386317;0.4442741002703988;0.5641436662817042;0.4492778937045185;0.5219963579330892;0.3317867867782352;0.16760311422395208;0.3447899523215328;0.4728679206895818;0.18420287107573619;0.07305663366793601;0.2279423705544054;0.12313175101505627;0.32209702393705614;0.4238114561077563;0.21571537496767546;0.1286216720918584;0.19563739534630128;0.26650924917724855;0.24064415921018042;0.020056691736554732;0.2030452962270068;0.3282171485834934;0.2543437484247164;0.01929162057817891;0.316126319023755;0.2647974889146671;0.16929703330193507;0.20400923257727935;0.14961464920074816;0.17383093281644832;0.08125814098685342;0.08060127565504561;0.07645274114119432;0.15946167949291523;0.16072914244751374;0.05315999767114371;0.09599817724581143;0.1209609036554692;0.1778104809732351;0.1660265220843977;0.09340440616626741;0.27603737864292777;0.2030315131062551;0.1556770048886075;0.08935110545889723;0.11827982436095993;0.26269962037199435;0.18178029068600973;0.0801232452859705;0.1745370812385206;0.08205642400736851;0.2640990548979169;0.26565182580206387;0.0807088394966678;0.29321870204522343;0.2683005085355935;0.07289714405904886;0.07852132354408799;0.24720223172960978;0.1694464410889356;0.2986725052264955;0.09858442987268969;0.18849264702106;0.08470421842408424;0.041134563823147445;0.0732384800393177;0.09967007452850148;0.3046768828597915;0.29395900708507233;0.3963436365326197;0.11865672489192672;0.24732079638971735;0.1245939606066338;0.5217070247400765;0.24206498933122048;0.560178569218543;0.45385633201188585;0.21951013921105614;0.11678039708094792;0.15031761409967964;0.06752808272569942;0.12913657587543534;0.12647754597140237;0.09796593987613694;0.5343360522007106;0.16599513703188348;0.14595794533300363;0.06017713407815076;0.16192134542266193;0.001642311944853433;0.10663792439752084;0.10172023442960665;0.08915932597537875;0.08532106801533984;0.13022323726900809;0.11834483454693422;0.08476343098664157;0.16830171103978084;0.21503243190334626;0.3185712579461413;0.2055123609875471;0.1816760057075885;0.10726151265753837;0.4682955248409586;0.038821614893680814;0.1454666238033546;0.06207751507848581;0.06547790809096686;0.5136378395801181;0.11557383620247208;0.15782157792027632;0.29594231526466297;0.10653190533944606;0.005099924268422265;0.019861019430331615;0.17326643847240156;0.38026994474358605;0.3446359225716305;0.531201836408417;0.09732607197059877;0.08792082376932452;0.06969419787426154;0.2285394557156519;0.2777351372357995;0.30866620957240487;0.2842118940822345;0.2749342984312438;0.09404407373813738;0.04230656458081697;0.11851774814389783;0.34943061849924517;0.1586475618867478;0.3869444440383821;0.0890312539059141;0.08656123287194188;0.2764163405213685;0.20254540165289514;0.1661119896827685;0.11518147567124212;0.24538713700013787;0.32196688719261246;0.507643781624145;0.18381088665494855;0.371853737883863;0.24151882047580048;0.24626562740195915;0.03517689894250619;0.01479776130682734;0.11061125894222165;0.10812121660436984;0.03151296070814583;0.02875418832144075;0.013318172225279371;0.09898341148163071;0.18584824589486812;0.32238432169440356;0.1903757685576445;0.0067616405715030005;0.19740139531198053;0.04927838473938724;0.049515875700921745;0.22174241231998848;0.1416343663998625;0.08343580598479668;0.12788269367160215;0.09074788082069042;0.12072613508788527;0.019676879955990347;0.283648713877848;0.3502562149899412;0.24057598842885647;0.35545715553420576;0.2426413603375401;0.2719469374035102;0.45881613371023683;0.40955658050782573;0.41683640939472394;0.12849416386042156;0.45134085569293825;0.4404783842852986;0.42538653558373185;0.28359197016791493;0.36355235726084206;0.6541626031113352;0.5510430929276285;0.5670310987014165;0.4371608802369236
+2,4-Di-tert-butyl-6-(5-chloro-2H-benzotriazol-2-yl)phenol;0.14348730448337757;0.14085057497789846;0.14410346660623058;0.1408529694975944;0.1431268746364181;0.14866544673583215;0.07516303918837132;0.14241336398365145;0.14184554544866393;0.2065121323493136;0.7621536749798938;0.15080110474253824;0.08375985190717082;0.1418812484989336;0.14072261580931741;0.13391426828013617;0.1468609110624744;0.144837969291153;0.1398624055768513;0.1433006067996627;0.1436028999801142;0.14234378194773256;0.1440598444795803;0.14701691569052192;0.16607347036602696;0.003652129600348671;0.10730474530274772;0.544010780889636;0.8906993972549838;0.1281918138802737;0.4930777294031933;0.06391703164830471;0.07489824904318712;0.10689549722729176;0.1115857566671201;0.1632952737338869;0.3159598712806249;1.0;0.15549668713207243;0.11251838213071985;0.04152348210817059;0.11720815153756349;0.02968381598406486;0.00014459475224644878;0.0010025410485859875;0.0027049324371876578;0.0026497852150656493;0.0025285639956584695;0.00397488485756044;0.0994900930362945;0.07931443438772427;0.029105453540144276;0.002307969226057392;0.0012044838163923343;0.08051841892449278;0.1218457339060619;0.06938083070806135;0.09374082130466749;0.06620326633049001;0.008130428032439192;0.05251487357754369;0.07875013664319834;0.10210044645911734;0.10073619825315713;0.06588412669118682;0.08817480800593218;0.09279299459039575;0.07170852448909142;0.06943185779116096;0.07109061595100372;0.06902665533212453;0.053718423948780424;0.02493855358066253;0.026817485734540725;0.029224453353713657;0.02752027533553882;0.005519198847550713;0.006097400161760006;0.0014197053545504143;0.0645463453861509;0.011711235359823376;0.011157571367013414;0.04130662680632251;0.026580034079105513;0.03246300473741043;0.026510795515487382;0.02681842666713;0.0245420326088943;0.03243065065230542;0.004078664900829338;0.021212302252226894;0.011623320181922246;0.021896537212477838;0.01366540072486956;0.016877097435096692;0.02378746414955224;0.026346119215832246;0.01743731553042098;0.02512975210675323;0.03159039767121206;0.049508515271721364;0.02331121461152569;0.025981771157733688;0.032020079882802976;0.029380706746727665;0.1163665363822372;0.09534692366656808;0.10371790600542369;0.10533055998031073;0.1269259440853055;0.1250518060468597;0.11846229053221104;0.12201948638842372;0.11952216135851541;0.12168936938160117;0.021367202044573458;0.021163364493059503;0.1437697201042748;0.09952745767860446;0.023537108910281546;0.008141215281237365;0.0320229622801019;0.09537326785006985;0.07623798344950272;0.007921863507528293;0.004978780194859384;0.004994188463018989;0.036928888393338355;0.03797962988528706;0.04845564063910075;0.03398418834824065;0.07549728294359852;0.04912879020347938;0.4289874796588885;0.1495774293176639;0.05746208702087453;0.6802470746511254;0.11312352001244287;0.4017550878331048;0.34452872963904024;0.09235868463754111;0.42436881320784664;0.06791354828825137;0.06903536981238888;0.22652993328180498;0.06668343334513908;0.04708528868683116;0.048465009749379784;0.11761023260889089;0.496300415615024;0.07268512613559944;0.18735429500620687;0.2208311078004459;0.2248412432035047;0.12180467867663228;0.6779636520116292;0.8769921636480547;0.9131314005671725;0.9096620978047695;0.012392848987496815;0.8247038067195499;0.027679115551231422;0.00914227637364493;0.005149888388865274;0.0050332863044938135;0.00415191748952205;0.004612051725946464;0.0022426244995761725;0.004690928046837253;0.013461550556615841;0.005706532840994001;0.017810979251404666;0.0009099901461578965;0.0015230690618896199;0.0016865505269250153;0.9360504016414951;0.010849889667290061;0.05944462467835597;0.10599523898385718;0.14059653260020727;0.11766193477979801;0.0005591126016434063;0.09884410168705852;0.30906804097044127;0.02234155896847458;0.003902520951427593;0.025529110219967076;0.013057778315702286;0.08010110176888192;0.09704925539476375;0.11615374699697856;0.10800208594980239;0.09510627044195735;0.10731704400553715;0.12062773456531392;0.1037451877694373;0.10158589146871351;0.7170018225836322;0.7468498909790424;0.8857324081722749;0.6198684590511641;0.8696103616223217;0.758431760791844;0.5750651936498032;0.014795333459531447;0.1982512510492878;0.6003112160514109;0.05840262248457848;0.020749884260611924;0.01925296275710733;0.00564522776517469;0.16019974013204286;0.8845970719841091;0.14589461727827474;0.04283873888337309;0.07039603276932965;0.08589599946839838;0.034039879135161814;0.008812842257050913;0.011957093536336035;0.844559915522971;0.12093013183502577;0.008332086865666213;0.13269667178059474;0.13294199322651193;0.0893777256875766;0.1238034664635731;0.08209483361283139;0.1098525757879278;0.05308105076100382;0.055615300067069814;0.0501739509352644;0.07761752401293225;0.09602016016898784;0.03368776875973511;0.06125119541724708;0.1478855597414207;0.2865329590766598;0.11557220965161115;0.06305599037764481;0.052221188605019876;0.029531553586624352;0.02120401771939274;0.004169795160797336;0.019554484765493683;0.0255298979881608;0.009553057319153705;0.0035557690458461358;0.04229288627370032;0.004471175411266119;0.031205821008444188;0.03166306185765225;0.005520348097970934;0.12725103604811855;0.0536232239071235;0.00629298491151895;0.013938821185375;0.07978753819291272;0.019622679288575483;0.9268415665613444;0.02223793886958049;0.03589294714829669;0.020997582635448275;0.00439295721506435;0.019192785533464776;0.040471033575588455;0.06564633279029622;0.09166259421113764;0.09841674643976986;0.03577886662180408;0.0026065338141952337;0.02242553200080336;0.05071092350470094;0.030408001867474117;0.030910771478983943;0.10831619727614782;0.001829221301557306;0.011353648408562185;0.0030985183887063355;0.012071102571429702;0.01562190284853338;0.00991615655983378;0.022145528204953073;0.6028224117775007;0.5094448916649128;0.014633642464974898;0.0011286444244249603;0.08487564314051729;0.00041447935914047315;0.0230000881794038;0.019380023498117408;0.02119581374144358;0.01850787439984895;0.00871361119550647;0.02942014721840969;0.05663626643378456;0.052598136429847626;0.0235076918096789;0.014085686202593782;0.04427555500421361;0.03220664466185544;0.012805304230451007;0.5395079573647755;0.011402842150200498;0.05159304214455831;0.006407862649823751;0.027304458907681423;0.010273997834069981;0.027340581789047243;0.007260261479859272;0.25265230498189123;0.020483464949931064;0.008966022673114662;0.0007242000435767852;0.0517090244758213;0.5751813138385398;0.13481860559794392;0.6579807868291053;0.03271640383619406;0.0019101735604707944;0.0030904533959935573;0.05578665374522426;0.04748045530834326;0.059520660669928435;0.05501528504314268;0.03413180065597358;0.008323611485095505;0.022819234973434604;0.012937013803007272;0.8194516724480326;0.13147358481728558;0.4414479229804113;0.06804341570427977;0.050435697858577745;0.017826315995591084;0.03922549117805347;0.008397621571692241;0.033757977494183536;0.10271889294102746;0.1253069750947795;0.2694097753158665;0.07934588245506019;0.6100441095118352;0.004208611121228295;0.0019019313736976583;0.001980248086023064;0.0005152871884375646;0.009781940525629656;0.00524476695665408;0.0015492045476572143;0.0003501120094905382;0.0013322384552465765;0.0024333612375360765;0.005250578977664623;0.11944217454104934;0.013962477161935792;0.2846795550301464;0.05080373421684735;0.0;0.0038446368950733616;0.025332950624940346;0.012230329361103347;0.001687620391055649;0.018529343972450648;0.00302044795908653;0.015109773260987731;0.0020931215677977098;0.011704044091916223;0.01583629698322992;0.03212140042968325;0.014527869340402896;0.01935910088847395;0.0453624217290548;0.1398292242210853;0.02049322756494709;0.023119116449710053;0.012580822642514942;0.01615592548503854;0.12092007781124911;0.06564934089414466;0.9215814455346681;0.14688572946771086;0.15936694753263392;0.1431318235110625;0.2654146954489739;0.11093222518798476
+Octrizole;0.022012527447371068;0.9323890868400957;0.013450044751848814;0.0131195858621187;0.01356116993418503;0.017091099726376416;0.00716513541626256;0.013178596022198981;0.013118221255956937;0.013770260817910515;0.022105884876679468;0.04459347688018607;0.007743531402488882;0.02645047608853026;0.01619813485654285;0.016715523479020077;0.9749343521564297;0.9584082422347192;0.9276937815816414;0.9495654855854524;0.013168665725326982;0.012931512238216999;0.023787657679097247;0.02876075809642013;0.01658402937630941;0.003797173559865807;0.057433373481416784;0.09599058175598853;0.07114412769668642;0.01631694240272826;0.019923636831737004;0.006577585146309919;0.07094404772382377;0.00989641277275298;0.010002957144655742;0.13762894665282854;0.2702590120311231;0.15549668713207243;1.0;0.007464246549378319;0.003733009045398744;0.008723572389357908;0.005480204069295134;0.0002636890185495705;0.0006468804343959113;0.0033638668645857993;0.0033568069919364864;0.003034399774792941;0.004943219330693934;0.006219907874195524;0.004644144135130227;0.005141343303146784;0.0027915894162313035;0.0012181871917470886;0.005836552649693837;0.008586097393374636;0.004149723718094134;0.006376291982182329;0.005372182252334789;0.0016264667809551576;0.004511445849524258;0.005135966662402031;0.006781143781227811;0.006658268412458425;0.004897458161733081;0.0061593238887984025;0.006387165377879075;0.005490872696299108;0.0047713564711928304;0.005506027022181897;0.004957223881449686;0.003981591042769399;0.02958495913414893;0.03171500916770431;0.008842641751308077;0.0077886830630599195;0.005571700603474692;0.007621247231137437;0.002165875167315002;0.004356708182593865;0.014483233043424077;0.015919481068194855;0.027111909601638225;0.026379200623146998;0.00718821754032081;0.00479935562627695;0.004844770839154759;0.008212950864303951;0.01559099800197939;0.0013402654722252704;0.003251500806254782;0.002728388955535258;0.011488094422502718;0.004730685629355717;0.005491193657184579;0.024077614641902154;0.025480554620123518;0.011327672072667726;0.014118686956098836;0.010462332249402767;0.02223202733874198;0.012047553545796438;0.016346133954797396;0.028266967630377508;0.02574444745954896;0.008672871868711126;0.007638606421866085;0.008108104790467323;0.008958540794561173;0.010863251205061264;0.0102996767100392;0.009695870860431636;0.010255821372841126;0.010067643904603404;0.009442266314886413;0.0006930640314268574;0.0004997662627441876;0.0009561248328517459;0.009488663481394592;0.05354542724696097;0.0016488799688737289;0.004010762095052855;0.007416783535768946;0.0032548867879928166;0.010804051353316675;0.005919811997924574;0.005485030298351438;0.05344704973687704;0.05322436213957596;0.06373581677699178;0.025797107325164038;0.1396009363027514;0.014054643199833163;0.24638996709463196;0.028474061020653734;0.011971508846664218;0.06426694647333003;0.3444470840812156;0.11303226438663583;0.09956613202772885;0.023798212983498077;0.36661737269844075;0.045011828343543496;0.034590628155973614;0.18589516663854003;0.0706080928417685;0.023127082145451897;0.026780128340490393;0.3939211731701036;0.10056270453434726;0.006880844882389701;0.030691688630051533;0.8527176340394745;0.01708177154193694;0.08570746356215454;0.2102336618316028;0.3772450517693258;0.06642558565413448;0.28756069821627533;0.0008305611324936808;0.05654338022115153;0.14216906530396317;0.006452889424438302;0.0011059150364117957;0.00040837887302747804;0.0035267655672579436;0.0033711575699460327;0.00024265224611272413;0.0012155335969416651;0.01088756058746015;0.006988032115421849;0.00643429449802507;0.0012083462295870736;0.002102318343040461;0.0018748662420851494;0.05833012465840318;0.0011353660789301247;0.002107853158146678;0.04288034157779556;0.023801683960891912;0.01949950329936072;0.1376513545617968;0.0792573313178146;0.02665708872138982;0.007992470827497919;0.0038914444585401117;0.0015296306529090607;0.0;0.008356434326461704;0.008804430639006275;0.02136150672524827;0.01049066595475939;0.06631041083639558;0.01041313008686491;0.02769563986130541;0.008965875413257798;0.008712080124050964;0.029304843725628072;0.33464264482466693;0.04470859333431469;0.033388144719999846;0.007930049479442295;0.022358374341715552;0.11084648863106432;0.0046337555492358745;0.014029661862752618;0.09870046427530484;0.054773959650079515;0.008983658078587331;0.012497956666418116;0.00047182597638488656;0.25085380682458114;0.025195471584603807;0.011781585228622432;0.06161204108837278;0.012806417671212466;0.01523890815710749;0.7625475089172935;0.013719302912432995;0.001441958907623681;0.09519343802096894;0.8060393514047588;0.001476560508590045;0.011444210508659392;0.03436815909163945;0.007616575506139934;0.008653365112446512;0.00592484010419158;0.0072271149043519846;0.003915950275644844;0.004601297866999124;0.004282715378363065;0.005821692329957098;0.006771003597809551;0.002729711038744955;0.005032251981570006;0.004374427674058953;0.004997282765595888;0.005348151258947133;0.004889630580814791;0.014225793145787306;0.053932032370385095;0.04266900356555354;0.004655833258404145;0.03037078808967341;0.0;0.0010861422380285862;0.004398045607876693;0.03368288936559859;0.008488044818618222;0.0029291612930958887;0.0028208185621703082;0.006325077918885484;0.014664626683920795;0.028232698661800257;0.00519101433914341;0.021426676173080726;0.01797912621074411;0.05840842181297205;0.002555355393439595;0.006464666821482323;0.00808336340634561;0.0;0.008472229457695157;0.005258642355226175;0.15993388953161045;0.015621900154105733;0.014940591854958404;0.010227225526021566;0.11093872798671305;0.00020747923947771776;0.09090824888728175;0.005251891800930648;0.06996855417212125;0.13562894323602645;0.3263384304259511;0.0020963803243495382;0.007939889482773254;0.004380405682963117;0.009554346273895026;0.002546427072803835;0.008229220848957747;0.006493252155778521;0.055534581966937044;0.010756938544146366;0.010323839260844276;0.00020478132746884776;0.006508866256882517;0.00892546268609966;0.03289251058858427;0.011684570731887741;0.002088621553612251;0.0013809502108433425;0.005655632511018425;0.008110206270311506;0.004830182150759359;0.012367735930307051;0.015831842517984744;0.00296160455769812;0.04511465980704869;0.0064145779340616885;0.0076471237290985875;0.025719155142179678;0.002197778195424083;0.0040626412301922234;0.005839511447166382;0.005596078147051769;0.005664424847496583;0.008339403760037875;0.0009673782090100071;0.1314817193441114;0.002808638505952932;0.0;0.00013335538235779206;0.016862678445169938;0.01171668695847011;0.012824364224369035;0.35099372232612336;0.01253630814359341;0.000384655899630323;0.003032857939078622;0.00519840875012321;0.04998965034666387;0.00595139878233663;0.04062294304621134;0.02253416942501213;0.04833301701022857;0.0004550365126282024;0.015021114097426097;0.11918848486626524;0.015977123804942057;0.012700043558462258;0.021508209863700518;0.010797163889458571;0.0164001085769717;0.007513625187267053;0.005838676492684557;0.013592820436899463;0.010029125130868904;0.012983790741172278;0.030131039017745335;0.00639677050373648;0.4996100776304674;0.0037301772452995917;0.0;0.0;0.0;0.013552375681198171;0.01510171563015961;0.020571090926029743;0.00018472092556463403;0.0014901040782057365;0.0018396694795369214;0.03438078533711642;0.053581870622261225;0.0028003573618829813;0.0;0.016278713395620276;0.0;0.0001917907242016812;0.011989802964734442;0.007884585371174117;0.0008148601917859065;0.076387200110571;0.00029207018594948483;0.21462411926868089;0.00046451805965052966;0.0012037294078029407;0.004984904321428599;0.06355723647808004;0.05251344290709924;0.031726109486469256;0.04502525130678313;0.013937650655720371;0.0008783731810953385;0.0016894373692241782;0.010321793382708118;0.014147305936494502;0.06608527785141896;0.04483628800256405;0.015279148322000339;0.9472756889952365;0.09076042441342111;0.05016123061133588;0.09656183191933077;0.07079589324892813
+1,2,7,9-Tetrachlorodibenzofuran;0.5209204812600344;0.5190660005623544;0.5281280556891822;0.5190973524928216;0.5252893955740651;0.5508329816490087;0.27931608646080314;0.5261391419557878;0.5256197346725823;0.5360203241948434;0.19958019732903406;0.5613780354666991;0.31046042558114245;0.5270741629877874;0.5220969538975687;0.4965603352192956;0.5404200880768997;0.5347411932049457;0.5172441652638797;0.5288131205630491;0.5232954249902947;0.5347849993231887;0.5394522367017319;0.5424350218655394;0.5465139541477421;0.0023112478439226585;0.2427299903345668;0.16939186652537885;0.13520154196646708;0.13237393478928483;0.07621190738370992;0.7327493791845566;0.35357193594812375;0.3939986593471889;0.7168748485155988;0.5118092306926885;0.18715003049276646;0.11251838213071985;0.007464246549378319;1.0;0.48339521076853875;0.792935134945192;0.5132153027946225;0.012728588195612336;0.010850024648181533;0.007777817377937712;0.008605395261205896;0.00793212481523397;0.008323826416665353;0.9284732295301251;0.8179398401343116;0.22262692080380847;0.015184288038566354;0.0033080163536706466;0.8854397376846506;0.8279229731473718;0.6497973594298938;0.8274046417940667;0.6591285708613703;0.008124136270310124;0.5580863514308984;0.628162179332778;0.8014666394367975;0.7766889703386501;0.5875755374354968;0.7892872750495243;0.8250138329234121;0.7133491853963896;0.6816660908270994;0.7119084401327146;0.7237277563518543;0.6321174553774597;0.016341125537342082;0.011572276593811107;0.02436127707483733;0.022139889179594027;0.005105305905956051;0.0038859105012206017;0.000465573912285976;0.013172396186252364;0.00442727302024312;0.003066998551067882;0.004811533435525316;0.004507794292720239;0.025330447442302135;0.014062318580840106;0.02273635692643094;0.02071374556199505;0.0280980885414319;0.06924646042163192;0.002440554426783274;0.0;0.002110839104653001;0.00274178852424163;0.0031368091186431478;0.028285645206856943;0.009541360005380077;0.015027798266713946;0.008324027730742601;0.025104098862834684;0.02518260748959202;0.0393915918717629;0.03452027298685057;0.05615365604438375;0.05367949109022437;0.8570923691818829;0.5961952336192285;0.6866877178126117;0.7024147929531059;0.8089570666619179;0.8888337176159361;0.9216253338654924;0.9904472346419999;0.685057456283549;0.7998230448450374;0.09800188809698007;0.10880781832536807;0.09584686430074389;0.5553380539492333;0.03278784478793272;0.04020487855188394;0.12247734637580801;0.5915398678661111;0.0249877710939932;0.005659637054976608;0.022639962305725545;0.023521968125098297;0.0031939237846264016;0.003086886486476473;0.0020667220102881714;0.055206558457185397;0.005637091205096043;0.08837643870721466;0.059280686611982554;0.5400266640144912;0.016337794021087725;0.026701214446528496;0.006537299136743132;0.45235034891609954;0.4969489189772852;0.24223368566345346;0.39195110528386173;0.04848001409742598;0.1364217137758891;0.2852800591822425;0.02738383098997762;0.013392247734085835;0.01454968358468093;0.07060561408980541;0.1695401867656707;0.24321778967422983;0.012611993392966262;0.025689743737718505;0.003081537464847866;0.35466733699788855;0.20138277505467442;0.21680436430636;0.07321109233409559;0.08236430630700783;0.006842038125978635;0.0908000324126185;0.014121752970839577;0.19155521427834063;0.04576741781919224;0.04666890688641871;0.08884578615571735;0.14647769377051506;0.0259687288765747;0.039116384257718115;0.104152116858375;0.1063670743416991;0.06264864435815326;0.0034333062278285296;0.005387945806744294;0.0029774756900113096;0.06922287928609523;0.00015778800335399125;0.009751093440419096;0.18951673071371677;0.415169320528197;0.4066055522054888;0.003125688658146662;0.19299854753046516;0.49327535920352594;0.013439732143752374;0.011523901892677567;0.005921704894719011;0.0;0.29729168894706925;0.36700578522143434;0.42165667673719637;0.400221008793039;0.17665310479743307;0.3960017668086306;0.552075322828905;0.3518969889652039;0.34017399435835466;0.3577176665194958;0.27406083350356786;0.20046039546298317;0.38832490230153227;0.2193754551107609;0.31880510193423556;0.3839928906738948;0.05918961593258658;0.5416293963400166;0.41463499013553123;0.08471648424528531;0.017273672214579632;0.044141732034249856;0.0757456325618444;0.37956086956735446;0.22533521118893482;0.11740135151578326;0.0085582792621762;0.291699883738596;0.2856764326171953;0.03344295212469243;0.0;0.008018971351584445;0.0969228370636328;0.013181746995908178;0.04765896185199036;0.6246813696293355;0.7327217349111254;0.6196376675496692;0.8450572018191601;0.6469759914919385;0.8724890755131625;0.5736257220010745;0.6053736253468895;0.5547483798758704;0.6889609406290736;0.8385412998880482;0.450120841288509;0.6102774620782087;0.6297432835375092;0.6082053504346023;0.6781516108589323;0.6331498608865496;0.11363518507809828;0.044765770592780245;0.033546016122265265;0.041302096627333355;0.060530319781714303;0.0;0.036031790129930005;0.009939906647530626;0.016956612314567424;0.00775876804055136;0.13899103982987462;0.1414005307684663;0.0038523342973058737;0.5232631341574627;0.04075343985630882;0.05604288875570389;0.021573468953841997;0.2977211139539802;0.01751369128170526;0.10006316067749345;0.017053145615080794;0.13843551353753997;0.022119868016436364;0.00018115435053057025;0.09065654141885164;0.020508413881453993;0.37794766586789275;0.5330120850430083;0.36434423263782484;0.08379003702911701;0.01022190236273974;0.021565447042956216;0.13493399854573057;0.007818244058631208;0.031932214873375483;0.20905327592972242;0.006025791390503633;0.019526579898268618;0.01452297353294575;0.027217228795513627;0.0006295509587742573;0.03953841083289311;0.017054747858364694;0.42162657195998626;0.06969320087946666;0.012601342971875087;0.001390357841481966;0.3744772691885763;0.0;0.012699997837318195;0.08269267085508618;0.12151140771741867;0.09497781355484013;0.03980012881950018;0.015468668067313287;0.11141470865768788;0.09787850608152357;0.024058142502997083;0.016498911346104015;0.006960905030119419;0.026095922631185473;0.0027193019909470817;0.16664956277464205;0.035332643255933764;0.13439378133783353;0.01743144271811066;0.1624562900254333;0.02865243124556301;0.005953074538834504;0.0006810437657197772;0.027724533336206444;0.0;0.002817802238452138;0.0035092068989091003;0.0678687266438729;0.314413288629414;0.47699114738140164;0.03287547796713146;0.08487834753086487;0.03745127505405509;0.02040233475837378;0.08461087560368431;0.04713866359291215;0.22304205527004387;0.10510927340094939;0.005021588077165364;0.018253385301644415;0.012108222401962573;0.0049784982653914;0.04121005979539613;0.026252805465761704;0.30930006788870545;0.06907686893929929;0.06175647185840547;0.009571002208431085;0.12526469580275099;0.040539425025849674;0.022147779364887356;0.3844526212520673;0.4786046314879662;0.5296763340138443;0.47601489432179517;0.07928729126125886;0.018214850425885155;0.019150348886297627;0.03347588015104741;0.035376724635849614;0.001652270990861323;0.04999264072062122;0.022583941822235724;0.002711638411416543;0.002796187198064484;0.0217372164064971;0.011128954116333977;0.09018522833881282;0.07045259915717236;0.006414427799450712;0.038485918667016644;0.00047993083091763764;0.02643750729734672;0.11458207757217995;0.027449988721537963;0.010989201669328813;0.03223202495674449;0.03247162734249579;0.001770675580711574;0.01985572780912706;0.010195961303658772;0.009093680268876306;0.01699403380150716;0.045234106830203645;0.0038905578327075156;0.026257706189731014;0.4946902737281869;0.00773991442247127;0.011667629802594554;0.05882257206448577;0.011144032276666736;0.14793294060654147;0.12188626714980612;0.06014523442735189;0.018730643021010362;0.44960315270407414;0.48046432819772994;0.10987666355917532;0.11323595768497753
+2,2',3,4,5,5',6-Heptachlorobiphenyl;0.1497934942938255;0.1516817128314667;0.1526221330315541;0.1479987301488314;0.15115449288895577;0.14888791157307324;0.07780084888999023;0.14920133114488804;0.1495096254133991;0.15423253639662884;0.12045543176813389;0.17894390900712237;0.0914277925840398;0.15082028340827566;0.14998719882410286;0.1429360543189324;0.15665752154061055;0.15619779657085706;0.15110703189760005;0.1554515595460605;0.14497906712205;0.15380924356666206;0.16191572164999707;0.1554639420779812;0.15899732635430913;0.02382106801521388;0.08014730668451575;0.06094494440273023;0.04665364108256429;0.046936794083499066;0.04235766601891318;0.543834424360745;0.18666539635765345;0.11684601309290472;0.5965578833933123;0.15706556126464083;0.06677331783746923;0.04152348210817059;0.003733009045398744;0.48339521076853875;1.0;0.5889440927782353;0.7538360184817581;0.0161600749236487;0.03902578013719135;0.03379345467205242;0.03606852345928809;0.03624078842759828;0.034666351506554255;0.6449880009006964;0.7840724972830267;0.6436985051821645;0.008419146730573134;0.009540687714834283;0.5351763594543373;0.5716610661254199;0.8860299821154373;0.7946487281233777;0.9226322910177399;0.12627337039696288;0.9783531001971096;0.7875764805630868;0.7182791801163002;0.7333590966303523;0.8899261485179265;0.7962116953841595;0.7947476345259116;0.8967396838543339;0.9097067059289992;0.8970839111725176;0.8692029169890682;0.9330748303281996;0.009524935270780403;0.029553348239379287;0.005493208947647047;0.014112829910132234;0.004557285313306411;0.0022052748511706935;0.0005540931847646157;0.017196772006229672;0.046401787981727706;0.04034038052941404;0.01005840737367984;0.010835353790928261;0.015966518692556383;0.007792072538444721;0.025833744060372844;0.0247826989228478;0.019392875650564124;0.23589629952939448;0.013780455477212232;0.010979758637282304;0.08265295089549234;0.033827515434587285;0.038630936487268765;0.017410119735650063;0.010725950233242668;0.03632214448012678;0.0664041757878797;0.062215393252411225;0.06937302708647074;0.06061178304724962;0.06448250555346778;0.031597325791372276;0.04179623379167425;0.43487713899710456;0.34492398314041356;0.3476201164226704;0.3123204897423941;0.3524396104768142;0.4143079770683431;0.4587551276458861;0.27111477193534933;0.3802957613325314;0.36072388296089286;0.14059877786347819;0.11617451720802288;0.039059732923309096;0.24639128973280458;0.3211280667387434;0.07508288189451826;0.03367749443521577;0.2781905013927921;0.03660483679270937;0.019309977461443747;0.016664338741957174;0.011668143493315518;0.015817004139857326;0.007952637104125849;0.004998910365588794;0.051739012351723186;0.005873790899647932;0.04396115174393225;0.0672417568587236;0.15988309754693245;0.04512339131809126;0.014264585373282998;0.008683278632381879;0.22293706313716807;0.26048865904075374;0.14251224610211488;0.17886805500481462;0.05564283122620514;0.15257061430241553;0.2281891706828999;0.011678973845220273;0.0075905986370754545;0.009380760046219353;0.016621750154396982;0.03974994737491879;0.07987087991968017;0.03486347253242643;0.0056933381532992735;0.009002811298788533;0.19467362216961934;0.09332517648680637;0.05836319646818166;0.023221075274752118;0.026038569367913638;0.006624777910161758;0.032868659963580134;0.05982648452326666;0.008897965955430876;0.0750473054134872;0.1539768208854408;0.07219810901234906;0.14222790923041098;0.16588894593568507;0.17034623174272542;0.09742208298482247;0.1683914392312307;0.04929619895605463;0.010595462873487265;0.011365914652719217;0.010324285900436646;0.01940812323112743;0.0010006668598523515;0.008003478224180372;0.05675285103459474;0.12246945401509807;0.1211669053579884;0.0002581003611963541;0.057643903428410866;0.14433401100596463;0.017879663769497896;0.05107252287159791;0.006220692404034713;0.0;0.08452070949568775;0.11518210180390298;0.13615306617862888;0.1868162863680678;0.10976144612932054;0.11819879045050208;0.22958134985039472;0.10495767057789639;0.10245711726701198;0.10417292941438909;0.08968740857967884;0.06405938383678354;0.1134938964067686;0.06521496563976273;0.09378533220330702;0.11820812601783896;0.07525068463953276;0.15476780111993535;0.17875637265637018;0.03406907108148034;0.0077149326830651095;0.044605623050837324;0.042126346383209445;0.15448190508786244;0.0867060776295336;0.0709663842803834;0.1270552858008261;0.11075423150003774;0.13167571259125171;0.049014728620278655;0.00283854762990091;0.004693027403333108;0.032128341576433746;0.03345575618516527;0.03778718634188815;0.2457680545660246;0.4346327092748295;0.6210994512094303;0.5614089701125852;0.7805036107281831;0.6746352777866563;0.9794917288260375;0.9696942326495087;0.9845221413991317;0.8767094258545484;0.799327361671652;0.8099464839125088;0.9373113631868826;0.4759427617746693;0.4093429560901459;0.49674739564510406;0.935353723523858;0.041396510105030905;0.0163022202521502;0.012114844856642248;0.013564331500572343;0.06151146135199826;0.014106469631763055;0.07438072341827306;0.07312778754290031;0.06803665846129042;0.023745283524887625;0.04678588877874138;0.04728209503377825;0.03885306365979134;0.1772014986520033;0.07049895182845631;0.01906008216499589;0.005855048011854129;0.14067082961538704;0.01087462416871005;0.030197606276198177;0.02912273723468935;0.03432857005025816;0.00983968472485146;0.01301829544598631;0.05877078620016859;0.02254903128504771;0.22272327623993035;0.20857587005773962;0.18769662102055634;0.02388345459111868;0.003682864168266011;0.018514686498204293;0.047339272264202745;0.012506050498174414;0.012980748444236797;0.06073667637259585;0.006621767367520814;0.010142620500431205;0.010994654994468602;0.0026293215984131762;0.0013878992177417287;0.03412951864744562;0.028946780084284102;0.1322236754960585;0.02567851695430395;0.006555245653097176;0.011276313249288312;0.1754832035394125;0.011026482379098597;0.006372418102516877;0.05367385347972312;0.11036052345589609;0.02234528533029898;0.01233899791434072;0.003875728849530805;0.03142427324264089;0.030529041414559067;0.02055400067233964;0.026825522646592707;0.010121759896754684;0.029314233582330953;0.0072896351039373666;0.050098535045630936;0.01440192734630059;0.039041942544771065;0.006936680229287564;0.3557200454972438;0.03114004076889603;0.010605188462781107;0.004466674109974722;0.05967090216510508;0.005593350422515522;0.0003321025262490042;0.0008065367596876185;0.03192411679321507;0.08649474948883468;0.21547680437960443;0.013144569171438407;0.025831282297067094;0.020324292414958946;0.028536357740163235;0.028442854249251123;0.006972026310458833;0.09139705858322186;0.03717782852496155;0.007707134911196283;0.016309665519220168;0.012501948185172492;0.004450953497513914;0.04106893328067878;0.011587098206160803;0.10869269042931105;0.014336619839099797;0.013102386414841518;0.0058269490084225115;0.06253909518484602;0.04203482915478976;0.023694079137221057;0.13020005739070345;0.2286399778164428;0.170480828589743;0.29259911848790265;0.027000231143962727;0.0;0.0132189534589895;0.005904936490258517;0.012259055793272808;0.008099952370877798;0.007464248970381842;0.030269453816216735;0.006891313767097357;0.0025442690991826027;0.005741887901663253;0.010552788658872748;0.03979661022524805;0.06998203632872457;0.006670061158714108;0.018235226333189348;0.0015926551059528922;0.05826777338502177;0.06081027735555261;0.018998598145592075;0.23722060826487867;0.008715748467416011;0.004257286693100839;0.018484360847852908;0.016190277059649313;0.012701625634916947;0.013344821635641097;0.03453579627249736;0.07926765924541936;0.006922786867314283;0.03285325869283956;0.1568864809722668;0.002250504715376555;0.0026022997523113822;0.01291288226465503;0.0037749951745190157;0.04152266161677256;0.06470259538900856;0.030661643006212977;0.001529056994169192;0.1449006941649168;0.1420699158443022;0.04693767105965389;0.05242569040540614
+2,4,6-Trichlorobiphenyl;0.5737559723721629;0.5742731165061885;0.5843527088483559;0.5868769830784419;0.5925060330309052;0.6139367026453896;0.3202853865837972;0.5841424426097728;0.582356128712563;0.5924979311904005;0.2313691970607714;0.6309880263524706;0.35133816918964894;0.5870536875152761;0.5787159106956431;0.5504083995196724;0.5983036261718404;0.5907708207112903;0.5723869540170576;0.5850755447506506;0.5817563409618359;0.5874918675315026;0.5879447577389131;0.5986586049331176;0.6038725457079783;0.010684210611806192;0.27677750054516775;0.19830082740936936;0.14375433533326218;0.15234799183775005;0.09092098925226402;0.5975848691016866;0.35369979992931005;0.45127542831459555;0.8870269279466239;0.5862671341718012;0.1956651692935173;0.11720815153756349;0.008723572389357908;0.792935134945192;0.5889440927782353;1.0;0.4903500090974578;0.006697486243790034;0.03502551848936893;0.02896869040976861;0.03143974936160051;0.030346620426299417;0.02879645099559597;0.816857937516489;0.7565624237230871;0.6533292439842483;0.004790022255120743;0.02882851745416573;0.7049116637335239;0.9951902592723796;0.8666786230410216;0.9069507094172364;0.7944977490590655;0.024827537701321643;0.676663402216587;0.9125300425837051;0.9705652032610321;0.972653150824361;0.8506172857013987;0.8964714967222931;0.8996348248993016;0.8070262464768496;0.8019661212596865;0.8017627561077005;0.804521702433178;0.6794678243446282;0.03416049994886291;0.02906147833645642;0.009518237010240396;0.0102716128565898;0.03138638948000682;0.03261341461881854;0.0012853359809652642;0.015963617894733946;0.021735518468368922;0.02193925466606322;0.017292029532484193;0.0176028656534921;0.017229369413671758;0.005499910935816471;0.024353048044470624;0.026946937149130434;0.012828706163953188;0.028213236656434118;0.003537672755113885;0.0005345098382082093;0.005715674781368661;0.0028108121051221924;0.003904264450748226;0.038609027112476116;0.01736112585864472;0.011773505731039302;0.006685101086105084;0.014631310254971382;0.02563522290613454;0.00986692164068163;0.013651579183947916;0.028861464178916076;0.02572176346832382;0.7234048576126206;0.5326649042835871;0.6054722932433266;0.614102957172562;0.7304529733489877;0.768497967157858;0.769316460515216;0.6423415094786096;0.6476621449013718;0.6980375227456312;0.10265701045129355;0.09935223346318617;0.12519344586435857;0.540274391334581;0.22270325719030715;0.04496160782674231;0.11890942575226907;0.5516793681699759;0.01541191187685561;0.0026128790837042846;0.010252221726872165;0.005219796579735142;0.042780297256924255;0.04698400950785252;0.03185585182423976;0.045210324814618535;0.001315807225727421;0.0993661730569277;0.03277826049348687;0.5945302572731609;0.006948751802679013;0.024236576036821767;0.002583032508856092;0.44243750829722983;0.5035423439387724;0.20759824124184642;0.3981011302503323;0.06890401474258485;0.1544664551495034;0.3271024764011448;0.03107906962135974;0.017143500304035518;0.016564762868469293;0.05995831423958223;0.07579022815375946;0.26999893655219714;0.03630115565605303;0.03485057222549639;0.005324422483481503;0.37618178726742585;0.21739197697766754;0.23089123174320508;0.07453985076192766;0.1137117455757441;0.007483375017153244;0.10281475802109727;0.19439395372056253;0.008362951842824711;0.04509059663181018;0.07764193996734152;0.04766804858367376;0.031278249338649484;0.07430748028058402;0.09022660828723786;0.09557823382036584;0.18192689521035257;0.11854709669089994;0.006795245456502974;0.012344524479092829;0.028000990538511888;0.07619289519864413;0.017387387270957472;0.022081909655702035;0.21639361055377115;0.45940378392789144;0.44890240966320544;0.0022361778742533396;0.21317444603407498;0.5418856843084983;0.015379668193016536;0.042589737674105545;0.031372578935166796;0.016481772405814072;0.3239817187658864;0.41625885575720223;0.46591337400428745;0.45485796997603123;0.2068401456011797;0.4400301477469565;0.5417927490929303;0.38865158312080295;0.37747572322337675;0.39857692428716396;0.3038655500738041;0.22974276814594827;0.4347014595430518;0.2470558797204972;0.35852854340746504;0.4264611020390412;0.1265235438898168;0.5999178290818847;0.4363291299884846;0.09867441063015012;0.0025986870229514794;0.11527941564106721;0.2614468805609755;0.4359929899930881;0.21857657004727316;0.1677954815491131;0.048847465451252736;0.29863618290847227;0.3095946748295337;0.022904053869893998;0.01834797709427821;0.027503575209455823;0.09196957821734976;0.02458887286422985;0.04464063900058054;0.6785369454151591;0.967860352985188;0.9287594332388482;0.9878678699773807;0.9070744713142788;0.9527010965212278;0.6731909790452971;0.686479097116619;0.6559187097946443;0.8241283306287769;0.8973258809479776;0.47403540858058063;0.7438744054768562;0.49351152278823107;0.48173081445924226;0.5651095353213693;0.7636567580102905;0.14852730216742394;0.09483548246293447;0.14476545249658312;0.025611466945270688;0.08066006726535686;0.0;0.004488117315003464;0.022183261578977195;0.022715369229006417;0.030492453289779658;0.14837134268375632;0.15068885947821706;0.013949086938385038;0.5556459633016204;0.04692390476617447;0.01286927541195225;0.013207394928378519;0.3212217679281629;0.013641227815143422;0.1119287689048471;0.010001779059735897;0.15841652834202713;0.040848632761780836;0.0014733641598258366;0.10329482041868239;0.024852006327029736;0.35339309040407807;0.4336749690456763;0.3442052288503271;0.10695917856200925;0.040082133920983906;0.07525081461839253;0.1625486181271922;0.024397732642376085;0.030213191018990164;0.24286366679552937;0.02011762817974649;0.030219587753112478;0.009812976611111681;0.06701989834538613;0.15473061080872827;0.12485771666106825;0.00998773351857335;0.4689442543237455;0.01590527778583473;0.009965085081288206;0.08504310693314894;0.3696013088668225;0.00047087556059918176;0.0226378557783644;0.075270645726472;0.1435251835809804;0.060496037824522765;0.02824587539190993;0.0016538000807062956;0.1237804709634105;0.10856902951506497;0.02035680544118566;0.08181173894325934;0.0414263862734605;0.023451597798155366;0.007936204527317898;0.18872559934500988;0.046148120981911435;0.1495138599967092;0.02670234633467166;0.5882360583246877;0.011194431495024566;0.09515221469376482;0.22993036489184773;0.03702806427369339;0.0403804531937139;0.0006289511802570458;0.0009545828563694366;0.08136158226933891;0.2352815959639787;0.5289228206156704;0.05035315902732992;0.09768869162430618;0.005522588409211776;0.010217879429402095;0.11663525598329805;0.01817129364885331;0.24728562282989822;0.1305644740677521;0.015209468176846382;0.01916672906408857;0.05570766805127038;0.005520425539158352;0.017190875726894712;0.009968910758732387;0.36535433110097965;0.051822425502699686;0.046366274715276386;0.005108421639531202;0.1434601635187943;0.05449977418314429;0.030443590648980202;0.4216752102793904;0.5265237768998055;0.5715015760657952;0.4627808345266843;0.12145116098477982;0.002272842917458223;0.03057157582555831;0.003027655107945167;0.008984982615255066;0.03269199798139791;0.03544924250802631;0.008229270371808458;0.0023632633768115277;0.0017620233824758142;0.016264408956262535;0.03239173913157406;0.0999374539501115;0.09883802447972413;0.008224005000568888;0.040232288489605667;0.022511434488137565;0.10915483619807527;0.1355743857155845;0.013343010913048516;0.07233384505528262;0.0446653383781372;0.05310608353398169;0.008877882958906201;0.02970815661798993;0.017707239952550143;0.017357355777175343;0.036074360614089224;0.12038538645109147;0.019027578100576734;0.034975585203422956;0.5497037721335417;0.007653714746095431;0.009800120976699106;0.09257954056103077;0.05518655466155741;0.14833568241880166;0.13858656679531578;0.05992588296196773;0.0003703979192458051;0.5209422554230173;0.5545670456919762;0.11880135080809781;0.13106728428634123
+2,2',3,3',4,5',6,6'-Octachlorobiphenyl;0.06371592567957358;0.06268991017705926;0.06993818099133273;0.07215173379300092;0.07290717342209957;0.06861657073339841;0.07745701191236484;0.06830413568169347;0.06927121633228132;0.07248755544335443;0.065607671599957;0.08799907245321162;0.04474089180151234;0.09597680050996947;0.09025083983638355;0.08761540237006342;0.0674035274643885;0.06829427493464017;0.06669972905703067;0.06570765386582893;0.05641463021421283;0.06825514613982142;0.08154366576783213;0.06617204634606619;0.07363621158527357;0.047713029265782886;0.06123726584512829;0.05509675257040517;0.03598220590382544;0.03466021201411872;0.04260752801117237;0.6561167166913984;0.19967564549287364;0.10393332957612317;0.49444389273890255;0.14625452303323813;0.22410315434817488;0.02968381598406486;0.005480204069295134;0.5132153027946225;0.7538360184817581;0.4903500090974578;1.0;0.0150303019206808;0.03756563127384909;0.03596282434607326;0.03715355700892764;0.036995638519630426;0.037737106396753275;0.6602706768380104;0.7417189093091011;0.4142773302166367;0.02985160774728503;0.032507252488061626;0.5257413020042007;0.4945283904309191;0.6891619961978475;0.7037442490200073;0.7707254962406586;0.30609111059457944;0.7762321000436675;0.5747544687390712;0.6107851274156045;0.5981413561854799;0.6553281782862339;0.7128900433245818;0.7116859617087505;0.7871829411648865;0.7757277070050831;0.790418102020181;0.7875092797123807;0.8232183147075363;0.014681131994665376;0.0296747525567299;0.027372328356491456;0.08365424765114526;0.022950896435504166;0.010806083142702648;0.08301343603799081;0.08664795854058437;0.15168264054773595;0.13945808832221032;0.04904326436266951;0.04928404203789343;0.10729666819640198;0.09585855829485292;0.10647584007126472;0.08782378042016939;0.07276056381217508;0.1492587640163946;0.09457841209886896;0.02081002645439561;0.01967909610356221;0.18113854167891089;0.1815506621732431;0.013851070238757182;0.010636692832891786;0.08209481870161095;0.07341416395258756;0.0801484947498864;0.11175848643607493;0.05958032228578359;0.06716931892579403;0.021847656162562904;0.07094097138499117;0.40214071066949936;0.24978956387054294;0.32284132443017366;0.2984307787613132;0.32532992009337947;0.4112037635722174;0.4749367641048037;0.2310600983666914;0.23714673452072751;0.38786032132912585;0.09194411429561135;0.05743684975026398;0.06353249839438985;0.23045119889585286;0.18895401861048577;0.05660535389743431;0.05896919739917137;0.2655975412964243;0.04791808698478725;0.02499984175149298;0.021990210495184723;0.016608071389936523;0.021496024361378797;0.0072536834490178346;0.006234035110110151;0.0347733373996134;0.015694247047725332;0.018452974752246637;0.033703524084641244;0.061247791125655045;0.038627729715287766;0.028212038621492214;0.005483838874688374;0.0672959791109441;0.10063728485287074;0.047927897314104656;0.06334106613647067;0.016787507696602436;0.05188407800359347;0.05622655366856776;0.023631539007060096;0.02577461758272533;0.0018603955278649568;0.010544764203305829;0.018514252673712997;0.031222659020528773;0.011976466935869486;0.004029792632596092;0.01835005860524532;0.06356504728899502;0.04705429310209864;0.038039889544466084;0.033440654365317186;0.03556725149742743;0.02096311825597672;0.0822773605514094;0.03522452275481527;0.015710953211443807;0.0626843454522037;0.07881167984125827;0.040367124532209406;0.139681302769862;0.043219251481589754;0.05023310643645974;0.043296068162594493;0.10677017000216693;0.03965054595468501;0.028313695771854008;0.025106559281191355;0.025189216798486503;0.01686583667388444;0.0061769969236221585;0.005131308327215989;0.11148865376442899;0.08657245699900935;0.08366612700868159;0.01574173535809026;0.03268449418030237;0.09028507487569573;0.06281873104550915;0.0420202400561085;0.004489285666625115;0.0;0.07874204753445534;0.067733931831454;0.0857757449257399;0.07668597049994;0.05531231599753367;0.07948197600507857;0.19569851220762982;0.05705112804575368;0.056281167166359024;0.08693818250457527;0.07053472171007871;0.06001922662512576;0.09557441239055534;0.0625945588364483;0.08401418460813617;0.06375912014254666;0.033081555013455125;0.07841226788525099;0.058447933404658335;0.08800063955937143;0.02897017168082862;0.04530512815614069;0.061637553411556294;0.1145777988818389;0.09189533937732583;0.03146637758184251;0.0803080645333273;0.08254071509438633;0.0653332420965384;0.04662507483833345;0.005796162444837541;0.008916466846262162;0.029006756678773674;0.023592533199137056;0.0341705934036335;0.17717866238270452;0.3473291002667501;0.44958467168157173;0.4931768675009566;0.570280013895032;0.6176804891314952;0.7748585747319675;0.7970166611882537;0.7741838247885603;0.6865969722837647;0.7011783033314042;0.7593699157458051;0.7422948866035312;0.5448288627349003;0.4566109210692855;0.5361544238809598;0.7612657608647984;0.034907087164974746;0.04878168248363442;0.010542458821166438;0.00951933458384462;0.09346464277735785;0.018723309395430404;0.008409398893133703;0.011721030512023643;0.031025189843602224;0.03041692085403372;0.06136162685182486;0.06177828131116552;0.04916457094657242;0.1035446976230445;0.06732467712545698;0.045514115495051646;0.028915790390574736;0.06643151454355664;0.07255897415644268;0.04433713290070617;0.009401901757535375;0.01594169396375729;0.011250469852651615;0.017371346422842153;0.029779810613692843;0.010874535288403394;0.1538396838337958;0.18874304900298655;0.11228178556145649;0.028839272888932274;0.001870267041042074;0.010679424452464807;0.17165239482347328;0.009836050000912793;0.03684546543531136;0.16178680729499068;0.02867089464871995;0.002888349954980797;0.04332965694856814;0.0009402012250810959;0.011450325501422144;0.04141454119809102;0.009904491285406278;0.1268089144981425;0.010025372726897352;0.00985325632326366;0.014518781627312448;0.15499656682535579;0.039890476401450964;0.005850521990563917;0.04562156954298851;0.07775640931369066;0.01800503869609124;0.029565218330084582;0.005457791759264557;0.013732498080226826;0.01602408215197001;0.08656307893239036;0.06501196481115214;0.019259699730664652;0.019810639096316262;0.02223307394055662;0.15755580805680808;0.004537007537105185;0.0582834070049398;0.013173575365915477;0.20158278781661548;0.030955999325605593;0.02103724555061989;0.0018989259394465055;0.10632598618144537;0.010596088775616344;0.000803764678865837;0.0012010470685565812;0.016984884859289232;0.08567852541510147;0.10173895322895048;0.1688471939005611;0.03501515377096266;0.012667863501069554;0.0459774541523864;0.05059239990630329;0.042809734429947614;0.08383643734241124;0.04939245819741518;0.018822784115202575;0.02384143594824072;0.009105017827200449;0.02075759167392101;0.06948160241664413;0.05287022767191756;0.14006292251311928;0.008057449027345218;0.007000308539526113;0.011805728663126121;0.06918245049880414;0.09725959401256026;0.006326942759170997;0.06128108772690677;0.08881692411387111;0.12741580267241698;0.1921084257193316;0.10593050252350943;0.06466317362942686;0.07789996392165988;0.0028033569042118667;0.004968917818801344;0.01071149769272831;0.009772372857812505;0.019860275160452457;0.005353906947730972;0.004488108347730188;0.009574940225230649;0.07847053039914342;0.04581744962822647;0.060933183745504535;0.0060490377631633955;0.030880129134161025;0.013680019582837835;0.0331426087491379;0.056574214445820725;0.03833241675858402;0.04558681732701083;0.006395091111647414;0.0026716864554008537;0.020255160592084275;0.013442466863609878;0.03284506254094488;0.037231238512622715;0.05532663568310258;0.09836070660915677;0.06379231413178597;0.05884292645720337;0.10655163301470914;0.0009148412961158695;0.0018197968782407575;0.013915879326317833;0.06536613914215285;0.06759823306691573;0.08976040588326405;0.03961095336613034;0.0013854035772312714;0.12273625631022907;0.10646798288057445;0.08947228467927941;0.053945985009383475
+Mirex;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.00018324178389966548;0.0005275670934217952;8.770416758419573e-05;0.0003171986315124632;0.0;0.0;9.912920437868106e-05;0.00010572875303665869;0.0;0.0;0.000730112769802634;0.0;0.0006764970757171268;0.010535203160526993;0.0031739025731714306;0.0;0.0;0.0012561868885077258;0.01173288956916308;0.10786594932195155;0.008972276114962565;0.0005066773567871988;0.00751493614266946;0.0007987141487669976;0.0005074984995451371;0.00014459475224644878;0.0002636890185495705;0.012728588195612336;0.0161600749236487;0.006697486243790034;0.0150303019206808;1.0;0.003280021529174531;0.0024574081884014337;0.003092142962379729;0.002931393849110408;0.0031285646791587105;0.01342037686367995;0.011338069778055295;0.013638868646610323;0.00012842615146365025;0.006417076481578393;0.014896107742492955;0.006500342959948247;0.01365581997717886;0.011599049166413607;0.011421737336018476;0.0227717752935583;0.01334255501633954;0.004024294157415276;0.00282876058774062;0.002470266621303903;0.013493679827993923;0.013053280320824475;0.013109647550058369;0.010384039675435558;0.01476928963295216;0.01116675414893375;0.006582734354826275;0.009382490199587184;0.0032367407975814207;0.0005007292710852849;0.00016124644052779313;0.008327744432042726;0.0005453806118292746;0.0006408905616045388;0.0;0.0;0.011350904599086706;0.009710261274754139;0.0;0.0;0.0009139532060045703;0.0004926150039467432;0.00042025233836469924;0.0005446430435903071;0.003695713660671128;0.014451671785506647;0.0002387552180500156;0.0;0.006599644744645947;0.00318607511518002;0.004462263036886911;0.0014385251928269176;0.0017430642480621627;0.002658219467484962;0.00807625518970511;0.009626440756775923;0.007959343395432077;0.005204379405784814;0.008352559317993884;0.0028456568802859928;0.007868345259098658;0.020340030306495806;0.029364812835867244;0.04312757704344283;0.057275933867025945;0.021126765323605252;0.06199926222246476;0.04172454192919865;0.01308461527602648;0.007477980396731141;0.024231304332445462;0.07030791866446165;0.06919169638789346;0.13945459934877943;0.08500994264306559;0.07461923366004664;0.21995692268461178;0.11043574877755821;0.1665699841847384;0.025747192699595425;0.005760044987743625;0.8388216357447678;0.889959150238388;0.055908644441398536;0.04678662616794852;0.0032937976123783796;0.46043311246793106;0.0006094514598015488;0.0005764560384585916;0.004204513906315561;0.0016811251041261147;0.0004972891393318386;0.0003940135379704621;0.00019590991364924214;0.000934633761223165;0.0020814786059704317;0.0014497535756796852;0.0014609874205067477;0.0005105880311826771;0.0007502731630873488;0.0;0.0006514823522946702;0.0003980736906024433;0.0;0.0;0.0;0.0007575730035525618;0.0;0.0005019505022497494;0.0;0.000585909363019179;0.000542771877291678;0.0;0.0;0.0;0.0;0.0;0.07064197283362415;0.5926027728012935;0.9097363083745796;0.24227863952818335;0.8084821349495918;0.07669346253625074;0.2982127078651756;0.3100950081211337;0.016603129779099748;0.0993011424524694;0.007802907458188787;0.0;0.011076412606782124;0.012735283760063698;0.0;0.0;0.007568115169236656;0.00017969132454357384;0.0;0.00011244074598355878;0.00033644123160856397;0.0;0.0;0.0015361402236047528;0.04179466493210621;0.014387256764930237;0.0;0.000447125735607186;0.0;0.00039497460001450756;0.00044750364261225364;0.0009699014191305223;9.553422601672259e-05;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.00024033650198247573;0.0;0.0018362195730902016;0.005213288848685554;0.0;0.0007193287155671491;0.0003457492511841563;0.0005395503176780271;0.002568906193451845;0.02720534364049382;0.003945206645612978;0.007617623958130357;0.012440687721924581;0.0011744383421197146;0.0010460463084227519;0.00753189759245569;0.0024076464217501216;0.003635947683706586;0.008881429023254095;0.004946973438794842;0.0008377134244015423;0.1503193820192636;0.006076635083702941;0.0012017956511416496;0.006113688770012638;0.006625289366830485;0.006302091095468251;0.004107733446788788;0.016343306932278673;0.016370405735375664;0.016157088284708077;0.015614629126171703;0.013198501763506463;0.0266597530868261;0.014334064047546412;0.1078386913143878;0.06346114139565236;0.07291120689072442;0.012604166882737834;0.0;0.0009052805009892439;0.005471073565091931;0.004483602095538934;0.0029929234427881024;0.0;0.0031007436356282675;0.000593361772376969;0.002333102770345898;0.01131528866827582;0.000759965453303036;0.0007603723786503819;0.008340085694648397;0.002229756643194345;0.0007173381054153606;0.0003684507808688251;0.00013574567484448883;0.0009817915524076722;0.0;0.0;0.012528696149249565;0.004839754365568657;0.0;0.0005276471588920912;0.0008831791283930938;0.00013435614517509116;0.005792507559110168;0.01479569935144765;0.002681856064013477;0.00035002368915278137;0.0001997245038173829;0.0;0.0;0.00035045903499461405;0.0;0.009919719465023102;0.0012201650898352977;0.00012917491937351213;0.0005682628396647312;0.0;0.00018428982548581528;0.0013004130747617268;0.012710031565850521;0.0011642862667918046;0.0;0.00021480505147544764;0.007569084111499921;0.007963433443759759;0.0;0.015054082005383433;0.004078225751604106;0.0008101732535404348;0.0002273765195946093;0.01760264741263116;0.000295791703194743;0.0;0.011622602356250534;0.0010864975334588778;0.0010899661076663031;0.005314215278037649;0.0003042803625585442;0.0002178306286020629;0.0002238783914291288;0.0;0.0;0.0019366443858623006;0.0017390012584826997;0.004402261820049322;0.0007065133185620052;0.001820675392256671;0.00016286846921250095;0.0;0.0;0.0;0.0036366003952893306;0.00027224749672762494;0.0;0.0003342635385898269;8.782138552636436e-05;0.0;0.010253998482007216;0.0012290457901824173;0.0022285466789156794;0.0011214081062763252;0.00022186344285858722;0.00010907683256827231;0.0017353057854669143;0.00185532072275361;0.019722561579175096;0.000588892847098977;0.0;0.0005693005089956824;0.0001959385856234338;0.0002367368200535696;0.009067257801203541;0.004141253467881459;0.10212938103302742;0.00031238546003445924;0.0004188956621504901;0.000730141209505411;0.0014551905913121593;0.013229131865314674;0.001134493769239828;0.0;0.037192103256850066;0.0003446854779042093;0.0045350334733353015;0.008786745790945467;0.007065634849413593;0.0014950912241187741;0.007820435457060484;7.809830095761568e-05;0.00036050894369080416;0.01641797749186055;0.0008115782078360717;0.013850465712105712;0.013505655236040134;0.0;0.001701992510898361;0.0012011477783878887;0.012407920281406627;0.00038928699863448676;0.0008202519518018126;0.002110294662113278;0.0030943763707099803;0.0002690566902922048;0.0003493022389005493;0.005022901771551034;0.005410890352961526;0.0007045815926721583;0.0033841300692500857;0.0005186850027233644;0.00016338494905435958;0.0;0.0;0.0;8.670158674460686e-05;0.0006062294069321122;0.00011462265576339012;0.00025353838224879656;0.002187004071560213;0.0014343322953718513;0.0011285446429439652;0.0004767055059963975;0.001300518417838089;0.0015756606860764639
+beta-Hexachlorocyclohexane;0.0043759629432341;0.004634077509337553;0.0031284632340255985;0.025756308584340946;0.027931647063295574;0.010697772833766639;0.002853131543979848;0.006277446556550455;0.005499797828971537;0.00459386958602297;0.0019791787831821644;0.0005436511896138458;0.0005532236060773928;0.0062522278872613095;0.0040649648111859395;0.005307089784077021;0.003990085032950728;0.004377846144547874;0.004656578589390127;0.0053764669526330435;0.0041470518171858005;0.003954648520884856;0.027913850101814935;0.0026778659955447232;0.013626927872682803;0.019050427277174837;0.01823241073173295;0.029383745531450015;0.02100700402602791;0.061005948055279306;0.013453712169865448;0.02233886763701012;0.02383285717768905;0.002106631672546044;0.0841930904742916;0.004804022057369082;0.11709414888559933;0.0010025410485859875;0.0006468804343959113;0.010850024648181533;0.03902578013719135;0.03502551848936893;0.03756563127384909;0.003280021529174531;1.0;0.984698070282821;0.9886021879705202;0.9915885883196925;0.9727128575045781;0.02847360059906362;0.019514565001842007;0.011409126122224328;0.05138677453477807;0.007312212193603594;0.009765462463957248;0.023528306369681305;0.06511306470446475;0.04838135978246286;0.07484789142382031;0.08540861689857684;0.04578023184001501;0.05947532528747082;0.05807861690198719;0.04841793994528344;0.07221534656671161;0.05432929174034387;0.056647048301041274;0.07886211435233695;0.07156531094183352;0.08421619226469353;0.06676159459143094;0.03976873144043793;0.007453023856924849;0.025601529303956344;0.012504679159580938;0.010902306738863568;0.008736336041625397;0.0047607010702920135;0.00877227616182548;0.026974646991933506;0.005663392828892039;0.004864349970088685;0.005883714714000871;0.004259930630759479;0.012334914213649984;0.00821977881983005;0.019636608060912514;0.022567015846603936;0.03749118998546851;0.07258692373443679;0.007323182482879339;0.03142768080238831;0.0480412019166211;0.008039366195839127;0.010917745679843532;0.0073272405718686736;0.009710583875960164;0.021000609084452403;0.02630390021888748;0.0321675463543099;0.050624351423719106;0.01892725545488094;0.02881469900220012;0.040476946749232884;0.03130741740751498;0.020403691233314397;0.020094971605603987;0.028382366852539243;0.014331571042264638;0.0037242101658985644;0.0035226556285559156;0.00297459067119908;0.004659879710559811;0.0091623808715476;0.00923365523864254;0.016161187520331535;0.014573074137126673;0.033997069710662874;0.07986167458896717;0.02116914831577949;0.014793330104322237;0.0049426418890493465;0.004942605465788708;0.012262357273522585;0.0010313485019400623;0.04584961472418017;0.04972902407643307;0.0720500237071555;0.07195165057889358;0.06525611826104914;0.09317596030745945;0.12922107566317237;0.007131590562299978;0.011241895735329892;0.1064213415773682;0.016485202199209487;0.0649510260789055;0.11933814765930223;0.039554416935815476;0.038730120707572854;0.0157255471250992;0.03842248154707159;0.010847790866796948;0.01650583863662892;0.005703459249675173;0.0173020369853737;0.035774847633798706;0.011965059421329211;0.0014832564311586234;0.007744771985730538;0.05069227086844159;0.00652764371549362;0.013407767246753782;0.0360701834326502;0.026873954537175542;0.03995344176758682;0.03144407212334432;0.05082878478630345;0.021047845816956724;0.10384205104080745;0.06377157702240543;0.0823270899385297;0.17103593533800338;0.05672649938091788;0.1406337168096822;0.09863825510233663;0.19061304147608324;0.03970237233491049;0.04637139028089687;0.2642851353020511;0.6294561726327655;0.013595330140159448;0.003937833995438675;0.006596491077683284;0.008539642829332245;0.0048656090998569395;0.02841700623173712;0.05308486096118013;0.061976869754842234;0.026020096280233905;0.025132920110228326;0.01180780891809019;0.02414856958115376;0.013163981400947072;0.06217479316099505;0.06307545005042503;0.07534744517266735;0.024578643019579998;0.024780474474319088;0.01372195952558803;0.05779459480076035;0.008317700308707722;0.05000861307788789;0.019944013933297026;0.00861496147669692;0.010460082887672693;0.010341846829918282;0.014274934507625781;0.0388793899492071;0.015511700170014433;0.015154061957042289;0.012113625313447491;0.014942088524646166;0.010783645084824899;0.3625284099457569;0.0;0.045443027521079676;0.1283193122397269;0.0020842148173428926;0.03972129487226236;0.07342673103151032;0.018541041691940034;0.03325244598748783;0.0552009233995567;0.06121023362748328;0.00691509203442982;0.12876995391816928;0.17552258011318186;0.0100556072716145;0.039675877675711804;0.08164732732773486;0.025453059586344164;0.04426941085271668;0.017025820268371784;0.02532210418871431;0.08016260204643685;0.02699068216116534;0.07272198691630224;0.046297032962872034;0.03175385021779248;0.038316910366718394;0.03794454085929463;0.06656164126126281;0.05171034713322493;0.009927045765147378;0.09253962238995232;0.015923677595482223;0.04143613725867518;0.03517576586755474;0.08121155511936994;0.01703624506511919;0.24994294046731663;0.1777773011538246;0.061645645483069215;0.2591139810884346;0.0890242299945211;0.04792946433016778;0.022971901039062177;0.09057141530230144;0.10237320110628331;0.17477250776299935;0.1742280917376776;0.12929823640870083;0.03059973129645459;0.023969312196934378;0.06651845240796368;0.03724238961898814;0.02601818149944755;0.014574411794277407;0.026586255652795536;0.003582231016757218;0.18092936910892296;0.02275302134376394;0.008196550414727768;0.025841452443058605;0.0031947623699442856;0.41020884043527284;0.37606111463709313;0.4828477579481047;0.01753967196080051;0.004811004909399095;0.004967434123135548;0.08628014478045654;0.14120267683771043;0.04133833095903199;0.04759782097501061;0.01110882755990508;0.022053906027222826;0.0698165905765015;0.11474904133727783;0.03606864083434701;0.036180573054010866;0.003801161487611477;0.043111378145368834;0.009288332854063691;0.019137547034867624;0.03014313815815129;0.01347608848251946;0.03991546963642271;0.008180416716192265;0.0182307065287297;0.0944627952358226;0.06745326511071907;0.01560347570377001;0.013499433095190697;0.0005769785235706706;0.046477658747631996;0.10783194404725242;0.20969680936968949;0.07750624582467097;0.0340085217932161;0.19097192059510598;0.031114398598066667;0.0024423785367508055;0.0006317870879254307;0.07144407315761715;0.007518178457288577;0.29248826565847363;0.0361309869580451;0.030435672801815482;0.02553736845307549;0.018438918025610908;0.0019998575391043235;0.006135678287047026;0.06968038200603485;0.17515565312295317;0.011183552549202848;0.03147233467542128;0.007901833714765504;0.15415166547248424;0.6184328550327051;0.08398418905928363;0.04349179594283705;0.059953651491052;0.0793094024017322;0.029522568268196065;0.016235776661497673;0.10084259889503588;0.0701888401326245;0.020397312091508635;0.020756279042991405;0.03371559007467251;0.003139741625149448;0.0022062914376390183;0.03201317369964175;0.026503534657250492;0.03289599747661998;0.008800155002631637;0.018648141788648282;0.05046310163343967;0.028075686315394307;0.05475941830448865;0.039738609101061154;0.07196359670129404;0.0024331172080119656;0.08619186946270947;0.08776832660977502;0.06574526576522416;0.023734303395820444;0.0190408552192372;0.011926094842189516;0.005730110435002269;0.01838540623550158;0.05742950814188333;0.06559059864549001;0.03787391683384619;0.006483295873109274;0.028165222321509555;0.04707530923813696;0.07366483763326946;0.04253503176205977;0.03142579212727584;0.03169877618310619;0.10075320686926502;0.08977840866019797;0.016023586945074133;0.015842742499828488;0.04385906855019399;0.10843449725879506;0.04709831822316231;0.1531035097580914;0.12930129260377377;0.055658123135876425;0.014083929522604835;0.024190558030925558;0.025153605726838047;0.11229290261463717;0.08544070257752126;0.16701217949298022;0.06580640993564968;0.0038759193813816648;0.005105443798301272;0.07731301261073266;0.0615838174342296;0.0671934786951035;0.047708774991956755
+alpha-1,2,3,4,5,6-Hexachlorocyclohexane;0.008069149284497817;0.001180739287565638;0.019211655039105525;0.003703426060744256;0.003963427045535739;0.006678704672242283;0.002542360918607596;0.002168026859868758;0.0015190450946447128;0.000940756061633015;0.00514541294991745;0.00034433391756509405;0.0017069988893986647;0.0046067224331547505;0.0027055727589800735;0.0030905642654263815;0.0013326241132173083;0.001348819517457692;0.0015937464204717744;0.0018738533530062364;0.0011948734474730971;0.0021363317642924167;0.02008565877153556;0.0032219886799153222;0.010682074025084426;0.01812518974580487;0.014188812359374744;0.00818843226060944;0.008692894382967857;0.09146651448262491;0.017903426513589987;0.01881536894884389;0.01784293562133657;0.004869076077880112;0.0637407920299782;0.011597347758546445;0.1535702490851324;0.0027049324371876578;0.0033638668645857993;0.007777817377937712;0.03379345467205242;0.02896869040976861;0.03596282434607326;0.0024574081884014337;0.984698070282821;1.0;0.9980457045292844;0.9971817040809485;0.9961693107217389;0.0237633804133798;0.020171415845380576;0.008640098230616839;0.1629643197737455;0.006480862001621794;0.006830718699436812;0.0206570849514233;0.0541568755765035;0.04083833004994177;0.06639301831796117;0.0754544099302762;0.04093022594357637;0.04648668940438411;0.046246159526355184;0.03891832128117459;0.06054478706116911;0.04628574581385795;0.04721640619723676;0.0700261483363006;0.062239407696432984;0.07516711261613472;0.060302063174622486;0.034155711355063276;0.015961971551486927;0.0284170738019661;0.022288552822119508;0.013086909223892874;0.01533846653094411;0.00855691540388556;0.004812108737330963;0.03754319165344298;0.005576828246271068;0.00463668332848406;0.02852524543790551;0.00469634124233105;0.012414123418260587;0.009596896143058878;0.033333449860193;0.03243662762464862;0.036857185937698475;0.05021710219693404;0.007599500301856319;0.04532598142829221;0.03130550899425621;0.020272844916270648;0.023715986749101265;0.04776415545017588;0.02554518893138464;0.02822378549375896;0.026302862776591746;0.043044078629797096;0.035605570073579805;0.02207685448774661;0.02841571875142608;0.017572724542330165;0.020680932365609982;0.014937841939556815;0.018885222565664106;0.029170855869587235;0.010701183157734877;0.002421168521434548;0.0026987893306678395;0.0022422570707660377;0.003876055663099539;0.006108839371207509;0.006345720550947662;0.011889941495752614;0.010641095161667325;0.03348627956148918;0.0849773024055147;0.014778360481695414;0.011166795592529718;0.005097729489636442;0.0052057644156976845;0.008760562119023827;0.0006955976393657192;0.041688908660716305;0.04502310706976611;0.07272395297455683;0.07187544312668101;0.06237949040947935;0.08678050736416529;0.06134323569627077;0.006344999991058459;0.012787127180475004;0.10132224548036346;0.01824249013802787;0.0281496079600868;0.09497745021338977;0.014882157734481814;0.029230225876142983;0.013684125617430886;0.05275573540243733;0.01258652847327456;0.014217657912671489;0.0071311936304342535;0.03466729083157842;0.05390376384732075;0.00853728282458001;0.005406201543181381;0.031221222960822904;0.04679948773225176;0.013817747909305586;0.06488291980442681;0.0723288958190394;0.012148845428348633;0.04651335754412073;0.006037383025982519;0.016454199475441064;0.014063681693473953;0.005481970817605583;0.02518381086246364;0.0810735902002192;0.1525313824558006;0.02692898147725255;0.12389874177934411;0.025284675086961937;0.17517042176939687;0.029909992618593405;0.03487748684503572;0.20035573792121975;0.16874995006754342;0.009506853020311849;0.0007399825799793404;0.005460549998627326;0.007033156232952688;0.0006583102325640647;0.01720532004106488;0.041982671561209293;0.01669059416089895;0.021149960581575922;0.0235989862478397;0.00430381696313317;0.02322561718214851;0.011648293625516677;0.04769753239410559;0.025119119896240286;0.054319787368867625;0.015828853872494025;0.015818157003559492;0.01799603693527848;0.03119064207580632;0.003513921698188753;0.07477909892026503;0.02503661946299638;0.007297187731962111;0.009019657713439357;0.00895149272914776;0.010727927293752288;0.01009301740007331;0.0115961757800549;0.0099442471227092;0.011155187320179602;0.011367345269435098;0.006622149130673012;0.3327151922548187;0.0004282069689315602;0.02239029491169204;0.04002792907207688;0.004218756585159466;0.025102012684214567;0.12377045266310543;0.1778854151750718;0.046572205302344585;0.037609579399591045;0.04449936989054595;0.012030224559060361;0.05562658836261059;0.028966070839480877;0.0039099911040814785;0.04168102833722202;0.05408174179835998;0.015342723790381676;0.032522608724422836;0.0055578500960776975;0.01776199087418865;0.0630005667309253;0.02284576580114208;0.05735829651647474;0.03623017452570459;0.026194292232533913;0.0327444872951697;0.03279494475773056;0.0529161140903684;0.04151656158338276;0.009003775159512884;0.08224526363572038;0.011041646139610803;0.033696578744570105;0.02866030586902548;0.07117146901544501;0.013394235138394772;0.039953039451792724;0.03993451216088412;0.04950077626846748;0.029170350113333687;0.0006752472178659075;0.057313197972528034;0.02336567787025791;0.2224315140425933;0.04668075285812122;0.006255800989272227;0.006179588796779707;0.0908286221344592;0.017534942876583248;0.02245726199045504;0.005966434345922618;0.007520752237699211;0.01579254554623964;0.015988266113912138;0.016240680093560292;0.004822054170691024;0.009823634443015315;0.00847703616971219;0.006087294773961077;0.029795046846004532;0.004373858938458967;0.05459366009924667;0.060450919592673576;0.035074571463010594;0.03283504984863677;0.013602651601523564;0.049424202798514894;0.07246818199603912;0.18425019677581206;0.04334756997490553;0.16373055062054787;0.00862827726550438;0.005749916016595264;0.04824030526783403;0.006239242391247153;0.024757413494415986;0.03220996680830551;0.00499244987941212;0.026327292458597544;0.004637657089673497;0.0074846304707286;0.025869848650199888;0.008993626145545441;0.035657026728943185;0.005308615367100197;0.01296623118043146;0.070964766177747;0.0694174292340718;0.046953504414779065;0.025706756614128683;0.0004922631574804665;0.006378225360288385;0.062252752939603966;0.1990009102798665;0.06380484054868608;0.08027633262824291;0.009837415333552816;0.04063251762390248;0.0030644066388575177;0.0014230058945137764;0.03254122337790088;0.006460497001815883;0.29910825212637704;0.021087095953379122;0.017592613160403663;0.014077498676360623;0.021386757078896087;0.10270713003882066;0.013500875037529928;0.05883748596172193;0.06022081028528366;0.008460424635152333;0.03668676267612972;0.009022673087256659;0.13719453632276035;0.5821450377240912;0.05557712756572803;0.0429714513485091;0.023345188298905237;0.029350135075925723;0.01159788811756164;0.01622292541128946;0.09688416406134451;0.05658275370559562;0.08538535157507182;0.0197052018653667;0.03409358657742066;0.012687061159154621;0.002370713730343362;0.0447397595130703;0.01840271421362516;0.028590580249439026;0.0009699926341209785;0.010045917030023244;0.01052053010781382;0.02518885879326611;0.05421653306684323;0.011276882041258271;0.6898094604694276;0.0022246002944422525;0.08158562202546775;0.08478553668157374;0.031745521594431274;0.017810532326645274;0.009995367588878248;0.010730265816508745;0.005088754655302422;0.019409368673895342;0.047978610962650395;0.07640750674049233;0.032517732220658756;0.003916810897568957;0.03363804123452834;0.045285278349112175;0.04832900667932884;0.044865102627099834;0.007499476585721644;0.0070585979450928996;0.09295188118143909;0.08916591184167608;0.020717646390282757;0.013747347871683819;0.042153517189378015;0.052065514428442525;0.10702953020346026;0.12008489484004042;0.03442495870196735;0.07871720387132382;0.004483213854943033;0.003343662129273039;0.005248637600163645;0.12236844517991075;0.4050149755784193;0.026550070822269643;0.056891755794068445;0.012168444463643674;0.030263185475206525;0.19543270303463137;0.048825806255744966;0.05843969774144837;0.061043522722204
+Lindane;0.011251597850071045;0.002053716990030293;0.019212978125352064;0.0040560453745478895;0.0044613856788051475;0.006824026050520845;0.0028453950423826743;0.002395210874182893;0.0016072912570256916;0.00124414345000727;0.00558284669751493;0.00024747882266239586;0.001660765120228061;0.005883077293581337;0.0035151874475227653;0.004154860222056156;0.002140482888952218;0.0021209562274590553;0.002597393410743111;0.0029242662408190375;0.0017676344379334223;0.002843670163227299;0.021903128446605667;0.004391247135346448;0.013655914594356722;0.02395470075337616;0.01733656812925481;0.010659720145331187;0.010209541272507673;0.09981710741846406;0.017187083521516617;0.021643306687826613;0.02214121850141897;0.005133967653025157;0.07053548759311035;0.01485190248374797;0.15645985374210955;0.0026497852150656493;0.0033568069919364864;0.008605395261205896;0.03606852345928809;0.03143974936160051;0.03715355700892764;0.003092142962379729;0.9886021879705202;0.9980457045292844;1.0;0.9978212858801224;0.9951342521678775;0.024307321783427576;0.021504845741304412;0.00984787585040388;0.16560901179322415;0.007615162089979033;0.0075552964370343215;0.022591563794363098;0.05881906579229678;0.04448196766127644;0.07227214243359793;0.0824508512054655;0.04330197702582777;0.05670707578403138;0.055662618815624246;0.04703050723109816;0.06561947991617328;0.050302752298126564;0.05124912111686391;0.07591643825349619;0.06882014254388058;0.08114909642931317;0.06589491414502989;0.036528188646328175;0.01806344874174805;0.031572121249031325;0.024120433345493356;0.013998539084091459;0.01586476707196691;0.010118908905169291;0.0023319086108741405;0.04876987370933116;0.007049018755156488;0.006024204249734001;0.03268058819769893;0.00638792959516305;0.013775059796011766;0.01087163217584836;0.037103650906968696;0.03643512065656743;0.03915492896170399;0.0573450567547245;0.009757485453750048;0.056797906419662585;0.0326532589285564;0.022791304086180082;0.02679217286227124;0.05664723830465792;0.0271059529028161;0.0315895799291222;0.026989102506617377;0.04763462485735774;0.04003918274236699;0.022083261768590167;0.03011389783592582;0.017674980727781696;0.02505178829039595;0.015727728797309028;0.020130182064558383;0.029368389154296567;0.011027826589306101;0.002645126734337838;0.0032068093725186172;0.002414241826166317;0.004689875166556877;0.007106880347232191;0.006976462496960779;0.013164774046941089;0.011585422280398555;0.034204253721376296;0.08408760931733153;0.018052455833849245;0.012952227576885527;0.005798700321128313;0.005486299349268789;0.01046562507941332;0.0012322835568287004;0.04386555877882269;0.04714742169197704;0.07567004246689321;0.0746874520136843;0.06611905671237348;0.0886102464335664;0.06353042703772067;0.007632690434984486;0.018533705604812035;0.10953720399530925;0.02072184672950732;0.026882653036426642;0.09416894952569947;0.019828037839475367;0.037806004565202125;0.02443804492634006;0.0514095042249987;0.010455924443126544;0.016779021616205904;0.005998670120287134;0.03682875300421143;0.05878043950104751;0.0025138787929298184;0.012203410457239963;0.041623158554953674;0.050896364845435686;0.014539215753168806;0.06375958388951222;0.07109267009654796;0.013579141724643067;0.04638829655517756;0.007170969990514792;0.017387246686649725;0.013581937731259121;0.007054512167712406;0.02609430923181796;0.08759378346206534;0.16237577140592296;0.026564596041880197;0.12889555121346824;0.03091197616683488;0.18768873058561042;0.0333042158060628;0.0389160692947926;0.2121335783932425;0.17661021739683264;0.010922393364778465;0.0010628652922108712;0.006490580228587961;0.008262125966978678;0.00040636968260824116;0.020401980792116893;0.052676521181145755;0.018101081369504536;0.02337691448595269;0.026369389041625415;0.004929477634230576;0.022984958483062423;0.011735257994125177;0.05523246671668509;0.027906459910179073;0.06671917047107595;0.019242041935615357;0.019275041408494356;0.021969726660698387;0.035290906758023696;0.004467582773235593;0.07820521576288325;0.030317015903211286;0.009180641233708669;0.013029661735213197;0.012968820590328094;0.01463116213773081;0.01374073624073794;0.015922565532161675;0.013424885858831538;0.015341826666757659;0.015501291376041277;0.007744381627976639;0.3444468688615545;0.00039871247882990895;0.03287195521710385;0.04679466212453476;0.004447494487274361;0.027726168229161584;0.13065421649692385;0.1764633269182857;0.048211167212123714;0.04349830435072157;0.04948910797588091;0.012313614572729698;0.06724995823802349;0.03285416132051053;0.004798372022560025;0.046511808915790695;0.05524163320383167;0.017054652273610273;0.034113035905908876;0.0062785498977951095;0.021036230658054704;0.06612045462703804;0.025171394530311773;0.06775291242111633;0.043200245858645556;0.028131797192140432;0.034771783291049276;0.034716396256350264;0.057643881456894586;0.04530981679562264;0.00953842578283681;0.08840034749169824;0.012806032955174566;0.036341871837459204;0.03204348914757116;0.07713697230958722;0.016126415959882026;0.03961713731146605;0.03924261061909658;0.0563538294928029;0.03058201492870353;0.0016235744423346821;0.06468193138730018;0.027013776997563847;0.23134540703300632;0.048206091785217814;0.007699024245617672;0.00766882256459501;0.1021397608369905;0.02083440761067146;0.024436872529422997;0.0073580831453985175;0.009931884392963306;0.017708006574108124;0.021382180420385713;0.017045246376542787;0.004260181497785222;0.012301233644703317;0.010223821780948335;0.00750476013556314;0.04560969961538229;0.004174795769542223;0.06446659196710855;0.06265728971856421;0.04230810060123502;0.03325871888777559;0.01729343585183108;0.049683038395284415;0.07854889712743254;0.19074173464495658;0.04525005895112458;0.16977692251289306;0.014074257296061867;0.005573160675256599;0.05538615089223295;0.005786493451668639;0.03017769685480427;0.038336861261062484;0.004452998533155434;0.0285542486105032;0.0059462089173257645;0.006381930259874822;0.028310729596013575;0.012124053194321822;0.03732394690861412;0.0057530901854511525;0.0482210911660771;0.07866434925686086;0.07092347268921348;0.056928719574280626;0.030261713017280496;0.0007507574428429791;0.004297905018679437;0.06712317695654317;0.20364118756669597;0.06767272530091564;0.08325332133556985;0.013494842539212114;0.04449868792903703;0.004129955815450637;0.0014844303447867596;0.033095132014832676;0.007933473534612183;0.29831879448018916;0.02536107001234916;0.0203041999872927;0.016724540751044247;0.02305083533019291;0.10980388346834909;0.016823776322406395;0.07114039626636737;0.06176160305062821;0.009303006383028927;0.03984611415140859;0.010926928536699302;0.14073484645341228;0.5758078833327333;0.05677827827899773;0.05039517258951023;0.02748161448542639;0.0319783092815231;0.012294696863084114;0.01759673523137233;0.10598839185145094;0.05856172865037129;0.08497440129625364;0.02107890763397145;0.036610593232150906;0.012644470016893736;0.0020678177309772627;0.05134468870937435;0.019607969993509458;0.03332138924423685;0.0005155587811841932;0.010813914061118934;0.012469359843272262;0.025677542457023608;0.05805988284300598;0.013185488004836543;0.681290859994284;0.0031422430049654086;0.08156844662349612;0.0851515488685568;0.041225217298062854;0.023780047173841978;0.01650776410246;0.012680533241257338;0.005969761247179741;0.021095768349781926;0.06284567472991838;0.09102109384020998;0.043271655226127866;0.004742473632484303;0.03492811611805645;0.05785811837272145;0.05875569923161686;0.05620512113521772;0.010020813114641952;0.011637509723436483;0.10000228987597509;0.09037977282724054;0.026419163052323145;0.015169222391740287;0.048417824867747955;0.05986312531151595;0.11440784340865293;0.1237291098081042;0.036492514316334594;0.08535255101414498;0.005362354554531283;0.004212481464689901;0.006279517120081831;0.13280014812113064;0.40389947821483974;0.0306314927537952;0.06037343392500458;0.011676698615169304;0.030627222145962703;0.19615559877581745;0.05025447207783364;0.06497478159155252;0.06918454780983531
+delta-Hexachlorocyclohexane;0.009391900642756546;0.0018319524211189266;0.01846465505715998;0.003906443245593581;0.004214858139419512;0.005688559172851483;0.002635786649126343;0.0023189290384165616;0.0016586889612499349;0.000978188746489227;0.005331100192605185;0.00024813452699294555;0.001468401141028846;0.005185452178353289;0.003115024660789397;0.0036540308148361343;0.0018981153983262731;0.0018656873840784591;0.002291644972962328;0.002558629484593056;0.0015225793359556702;0.002764158527711777;0.02085427802997461;0.003191314182562517;0.011768535774301998;0.017164580597166548;0.012295171159294486;0.009043273637569288;0.00984878204518923;0.09924045579881156;0.015172347381267185;0.01920325882458356;0.02178329534251948;0.0048820112391790155;0.0679813465799585;0.012379439622361751;0.15286489981477705;0.0025285639956584695;0.003034399774792941;0.00793212481523397;0.03624078842759828;0.030346620426299417;0.036995638519630426;0.002931393849110408;0.9915885883196925;0.9971817040809485;0.9978212858801224;1.0;0.9910499284084959;0.025654158340886923;0.02056994826632307;0.009316178639863571;0.17705004554720477;0.006710861727886768;0.007702303781289213;0.02107633644667259;0.058739595101261324;0.04443405576728624;0.07274479243079847;0.08224055734112229;0.04359631917667149;0.055436285294151746;0.05419414945867978;0.04611731557657255;0.06558844057072133;0.05031510892081496;0.05143373817939281;0.07595602122917873;0.06937360540613188;0.08122463546829584;0.06513180056494251;0.0369557331520452;0.014278902355462765;0.03039163876280564;0.021705289681513393;0.011538033865029173;0.014215737923694783;0.006927063051459267;0.0007744259039158112;0.043744212697414374;0.004811681030687037;0.004056680582806219;0.030428429248489302;0.003609637093626246;0.01249405038701919;0.009710811843504655;0.03651899001657198;0.03559344421869265;0.03467540888760675;0.054999556708636876;0.007155423251964395;0.044746056923475844;0.030948432845601566;0.022759583483141194;0.02592147440054577;0.04736650218625277;0.02472785676839132;0.026248827431313106;0.02474361368316251;0.04325016714382127;0.03381015865132498;0.020409130930630775;0.027384814259727563;0.01669208734229968;0.021753959201921153;0.015363399324551599;0.019285815176512323;0.028718766942359673;0.012121867318089308;0.0026704577519528596;0.0029756494415692307;0.0029555432110915996;0.003672096446437253;0.006904987726027072;0.0071351872343532454;0.013791499639179809;0.012031817058009374;0.03341688202819725;0.08308650084572176;0.018992681418738597;0.01807157833815808;0.005365283525239622;0.005030287295209158;0.00996361130610598;0.0009188113229050291;0.04441313513011381;0.04809085598479341;0.0727131445915454;0.07196034222643423;0.06305447937543639;0.08797727912215995;0.06336476417034409;0.014752386132113512;0.01734154125123856;0.09849234252547;0.018696392214820824;0.03218507482590034;0.09077337483956456;0.01984916306149662;0.035730431489347826;0.012165694118359069;0.05087957914543447;0.007444982873492963;0.012336206653038561;0.005415438440510908;0.033768652572069666;0.0525491948642404;0.001941275381174976;0.006621446072781328;0.03926452488883632;0.04666749268722261;0.005915632362092254;0.06210371164891556;0.07025337130402225;0.0185441106218514;0.045545235811841646;0.007137369648253854;0.017005494153368626;0.012921166248736519;0.006368211195160858;0.02536989609895829;0.08768295201133972;0.16222977901176164;0.027383944885655882;0.1341990811365299;0.03503042525308599;0.18371162766610752;0.03436880820462634;0.04013258218012672;0.2097823469582046;0.17466898278904414;0.010832964683531784;0.0012696022187854935;0.005766935114218614;0.007436715496973813;0.00028868674953927556;0.018102545551601592;0.04047129998924862;0.00983115965318917;0.01924992669698315;0.022014532809202982;0.004609151802536924;0.02173480584456158;0.010172202799102395;0.05547074212709218;0.029251795799486145;0.06376274247097162;0.016953199187487274;0.01866393742832541;0.020445421964078638;0.03312971275063358;0.00436638846004537;0.07195917213071006;0.024327225061345003;0.011509681988366742;0.008928545804322232;0.008850098042375552;0.010420930084223463;0.009946195577971233;0.011513780002865188;0.00986301033716749;0.010947758548036415;0.011176547950305989;0.0071864481031883596;0.33137069996659674;0.00038877964450145325;0.028607871249291702;0.04373496510650971;0.008151569462076647;0.031110439385499872;0.14315013665891232;0.1735486670691091;0.046686073760735546;0.03782410877848619;0.06152521113213608;0.011293820530730645;0.06498606173534298;0.035394901113324766;0.0035238999861443147;0.0438407784660268;0.05057327070082764;0.015735464450807805;0.03685455599984875;0.005624074395055403;0.019419193752509153;0.06657639546069212;0.023113855514523583;0.06608703273280554;0.041687017129036864;0.0285961928590712;0.03509170963317323;0.03505838687486828;0.05748605499996661;0.04512157203196531;0.009529749259802137;0.08799525257292914;0.013332241252884151;0.03705609966512135;0.032177932414081074;0.0767195569907173;0.03218049254000024;0.0396481979838744;0.03745600582912161;0.05719980729621579;0.03061695368691265;0.0008865144238829517;0.0642962105873307;0.025521262596516884;0.2227008216705046;0.047620097822074464;0.007021205404958833;0.0069736029502557185;0.1018128655938516;0.018210310457239202;0.023614419441226404;0.0055548162440285966;0.0049994549558494816;0.016684951403240496;0.01621082822057154;0.01720109615485835;0.003143530019520219;0.00410460789617874;0.009250851001096008;0.02839382154052527;0.04266139840282187;0.002473367094143136;0.06338850349972443;0.06205012462019137;0.039464529268018494;0.03188771334915262;0.0063292731970421645;0.04916946219108436;0.07176206687935877;0.1845882064875418;0.044485421787548766;0.1676547231553042;0.009540679229041664;0.0044197004493960615;0.05675883984752614;0.006165016035940511;0.028043239296321115;0.03454418230159704;0.003349734905723671;0.026979920988491838;0.004921075772333106;0.00813130311178068;0.02688888286298912;0.00989540593452157;0.03523989429658789;0.0025837880206829662;0.013316499038209676;0.06712439074313135;0.060084355343581565;0.04732704381012645;0.03303501887935954;0.0005449829679935033;0.004686837918772988;0.06925058419771363;0.19714107589371577;0.07135568579605657;0.08828657005311001;0.012119863245734759;0.04137822799526026;0.0035430217849838543;0.0012120041083856306;0.03223556044520298;0.007406663256303875;0.291719421985811;0.02633243761489526;0.020808648404762653;0.015428458158263342;0.020572846379121733;0.11266833453901974;0.015009983317043021;0.08133889829767035;0.05865333441868144;0.008941911217321031;0.03746267711605893;0.005695546217256326;0.13747918114477153;0.5621299506007804;0.05268402973559944;0.04645157221559872;0.03060016664349914;0.036320557593403836;0.01130909913812549;0.017839618692064532;0.10388164795761196;0.056546733170946474;0.08336833895056182;0.01987997922559654;0.03510277168509177;0.013003533679197073;0.0021890661404475893;0.04349577314696151;0.019048299039555728;0.03136855973062752;0.002483364000434383;0.009797911058709408;0.011918105408494709;0.02535193450124624;0.053954019447283126;0.011996839051579555;0.6842235248033776;0.0023775674796058127;0.07387087563584097;0.07742764576246462;0.032666001333914126;0.017031470847717847;0.014258153358572646;0.010261079939557955;0.004889323027938728;0.0205392387385063;0.04858478935397065;0.08936470251254186;0.03048742792689873;0.00449322012252576;0.03522659771011546;0.05397035906879574;0.05461298074940724;0.04584914318975488;0.010236066339659176;0.0073507280917942735;0.08913160183849554;0.08499263945370067;0.023797456317435503;0.013280489114381365;0.04490202585856511;0.05503358624221364;0.11160963721199721;0.12513389849887863;0.03438356351867834;0.079279396049014;0.004677085003694156;0.0038758829322789344;0.006021655334505098;0.13060975789679313;0.4061194732285532;0.029044450941466318;0.06002785722038538;0.010952389272311954;0.02956463602008338;0.19409230574772626;0.05092917338268296;0.05831472057085603;0.06411798757255824
+epsilon-Hexachlorocyclohexane;0.008844273999667874;0.0015304894433390219;0.020198953456625937;0.004074370205000804;0.004437786721181994;0.007540709665233592;0.002761232562621465;0.0023919059677299215;0.0017262628554572316;0.0009828705045467714;0.00578576258806701;0.0003684079797831045;0.001977879916261934;0.0046684334607755345;0.0027658840220188444;0.0031460975359873648;0.0015887271463730546;0.0015702994872231271;0.0019267807795130846;0.0021619832984237177;0.0017779138695867976;0.0029513530157053566;0.021262812846203065;0.0034633998376202386;0.012917376573180228;0.019399547232537923;0.03104317064753425;0.010934977749910734;0.012007617375462614;0.09458361018050244;0.02147774888036882;0.02008939933214418;0.023424182550448962;0.00510780584725392;0.06834608331040395;0.013539795488989186;0.1648899310013954;0.00397488485756044;0.004943219330693934;0.008323826416665353;0.034666351506554255;0.02879645099559597;0.037737106396753275;0.0031285646791587105;0.9727128575045781;0.9961693107217389;0.9951342521678775;0.9910499284084959;1.0;0.023087467447190865;0.022705597089001828;0.010545386024196182;0.14741599455988325;0.0078436751777865;0.0073894423265735585;0.021550094532135924;0.05566799215776301;0.042467259773099786;0.07108492203410222;0.0806927068585518;0.042081895063822365;0.052592016233311265;0.05122925317923677;0.04398312482299586;0.062014546958869154;0.047936220115189276;0.0483632942101148;0.07434244393277332;0.06685157637897983;0.07970860498960303;0.06576853378489841;0.03503553755629502;0.029188643291081697;0.049654975210015745;0.028585978057454522;0.019591200022898787;0.016846063892501643;0.01194992176792772;0.006891365258489527;0.0392390211547876;0.012623293717237003;0.011849644104929316;0.03769396169990092;0.013535912814800608;0.01465865134436839;0.010895563747989036;0.03449975726459517;0.034305107696244806;0.03994145340669891;0.05131182162049846;0.008579276821595351;0.05151611135327291;0.035004441047240514;0.023556654829600454;0.02738453642038064;0.053597033750087925;0.03315603544594716;0.033108428045563285;0.0291816308439695;0.046751302498374996;0.04123588263525595;0.023787108065627716;0.031065008975711194;0.017852565169235703;0.02291211853457328;0.014975239613789205;0.019885286590341937;0.029805323265303753;0.009550388589729102;0.0024376012347265418;0.003070136956898211;0.0023868649527951534;0.004313124731713614;0.006258069888951969;0.006188183167386409;0.012473395037823234;0.010721020091888876;0.03467168673769028;0.08669222683440456;0.01677323763419775;0.01230791326037359;0.006327041909000604;0.005327362444425788;0.009796899504540914;0.00180454725495804;0.04186668450217758;0.044822600767240275;0.09103627213682831;0.09002465889309366;0.08080966561850725;0.08989992534731316;0.06336349033923033;0.006180334033623826;0.018797460574105758;0.1228314734908804;0.02213210752723146;0.029578621466855633;0.09868558960151366;0.020097528180366215;0.03096164264115128;0.017216063865630273;0.05467899192219071;0.015905873201538027;0.015761527822324945;0.010725777942572439;0.058624858033459876;0.0631896612771517;0.010344300841159858;0.017103762018192387;0.041409095675684474;0.05711437064830403;0.01977485540982368;0.0692966830547502;0.07333270702343993;0.01258444721066963;0.05141122945070205;0.007198154502748608;0.017804644943366116;0.0152515462900207;0.006248914073103404;0.026155409627994203;0.08029990908372725;0.1598170721559559;0.025536823745238538;0.12134677016480433;0.027340276060777286;0.17785825011567913;0.029257344924329957;0.03384847231016946;0.20021289618520913;0.1705704087658663;0.012325181735354872;0.0008166790679139636;0.006164393419787116;0.008612609471272346;0.0010318843973437248;0.017019996065765364;0.046830523433095864;0.015184562578538199;0.021363105385903993;0.02435621800692144;0.004541468002528385;0.025122066514455074;0.013393002613844959;0.05052043734944527;0.027702104231739733;0.06221733951277929;0.015626908301383382;0.01803690178520319;0.02006213271372009;0.035476208141776225;0.0046317241974866115;0.0831973373437337;0.02593584818130957;0.009614053005913106;0.009851496523022394;0.009700543718817048;0.011756867213352236;0.011049925884962203;0.012777316208812926;0.010938232219437934;0.012072474221295355;0.012458134256936058;0.0073006501542121315;0.34447454758168033;0.0004464620767174875;0.028483356614053976;0.04290436586294853;0.005617329784420385;0.027829771406041617;0.10285398793751109;0.1811232576356304;0.053896637829118035;0.042219688435304485;0.0465906299834461;0.013939865995302376;0.057672497173329895;0.03438472293421057;0.0051800991608141585;0.04656014011557773;0.06224605473707865;0.016778907307156345;0.027179322211886736;0.006110855002062055;0.019058599395086365;0.05670639447632666;0.024039694126867656;0.06300919200351159;0.04002692914238307;0.026432718995429823;0.03346458738177238;0.03349845550007504;0.05432852279550267;0.04295144544388169;0.009570307390690811;0.08761083569134644;0.011448484106752936;0.03398422165233197;0.02980535192838049;0.07620280070818947;0.014600763169163873;0.041010676595144506;0.04027358203012924;0.05497623704968849;0.0297761046984629;0.0015992201430156338;0.06181305405553737;0.02528676879548107;0.22877269198239814;0.05036744287072537;0.006433037228012275;0.00635107574567123;0.09473625745618336;0.01839540369317506;0.03208953668217492;0.006129045442767626;0.006518760189101366;0.01561813428254514;0.01665264936081651;0.017014665450652597;0.005901137139922878;0.012832525348284033;0.008707376242119001;0.0060590297647138405;0.03857220941736864;0.005394209272535197;0.05917839546955329;0.06608683529125044;0.03755674631005603;0.03356777459879733;0.018272085912396582;0.05109507125667979;0.074591946740694;0.19108950889754897;0.046360528007211584;0.16941238016983712;0.009483669316274106;0.006606969380864087;0.05522249978211613;0.0064644032600767;0.025318668160715093;0.03533417558434969;0.0060962147614638754;0.02685544624143809;0.005689867936483416;0.01025864041829431;0.02867982324862655;0.014206933211480947;0.0380853628844751;0.006791159257206938;0.04835598340776533;0.07432129371655637;0.08272473883736083;0.0507381712770121;0.02977672615790016;0.0005959670062730515;0.006307595517358513;0.06914669025280536;0.20932034904394295;0.07231336061928281;0.07506257419558199;0.012075154126892381;0.04114852398031756;0.0035082999836732985;0.0016313170139343998;0.032646061944716545;0.007174684401019843;0.30352850650669794;0.02829997225033363;0.021284963625335523;0.01444309741282914;0.020213888915841336;0.10217448457491358;0.014575654305607632;0.05940445255990085;0.06473165764170488;0.009025112710651503;0.037269089274821116;0.008203456156310561;0.14266512059683112;0.5899393930827314;0.06465396726050822;0.0568475303610857;0.030041316604037086;0.03636240699284722;0.01271714552181917;0.015992730414227642;0.10348842259301484;0.06451046470080647;0.08713049589117595;0.019938862859437977;0.034040516865866094;0.015469970377162062;0.005045161215040394;0.04964945923973841;0.021496889783043493;0.030885916411768934;0.0041303168597105816;0.011370389541535485;0.01033544930919241;0.023650154210031794;0.06081899190484007;0.011414580038514562;0.6988642483691349;0.0039586964668671875;0.09353854076504968;0.0976067900258855;0.03527445369192536;0.018708068891078525;0.01583834367949951;0.013616167218308156;0.0060989102078641815;0.02068026080543099;0.06084527741760976;0.07720373312325637;0.0341444611364705;0.004185870984768461;0.03571664267367538;0.05451428941264936;0.06016942148142482;0.0508898842954777;0.008676097256945771;0.007975416374738947;0.10691873651412269;0.10022270380650355;0.022014134825282677;0.015358755155315285;0.04298242127666933;0.055039588977879424;0.11079529865357388;0.11596127986510034;0.036821886990131406;0.0826425041508583;0.0052512972595666;0.003630539231201759;0.005680671283116137;0.12139420920810047;0.41292053642443727;0.03156550763611346;0.06275576827425045;0.012680441261832966;0.032036344909482505;0.20024287817314848;0.05237610144325322;0.0673674174755416;0.06997422142696172
+Pentachlorobenzene;0.43444708301764007;0.4312366552959806;0.4380012599410835;0.4306388184573594;0.4361966401532443;0.4306764829663265;0.23327295982929577;0.4375833356087212;0.43787838533004764;0.4456258331276332;0.17754330333095864;0.4752279739561303;0.274251507703153;0.43768745819285015;0.43319192749589114;0.4144020655407402;0.44703367978828285;0.44357217948883426;0.4297157870065261;0.4388575772031363;0.42975932756277263;0.44465966521160705;0.44696631599914577;0.4492758854761202;0.45074096651576584;0.00625443449872649;0.20529079448649204;0.14354570925120794;0.1072781458080288;0.10234687553937671;0.06642752369957272;0.833799997024451;0.34830547092080755;0.3464475659881288;0.7308313659434289;0.4288245009810852;0.13644679388859635;0.0994900930362945;0.006219907874195524;0.9284732295301251;0.6449880009006964;0.816857937516489;0.6602706768380104;0.01342037686367995;0.02847360059906362;0.0237633804133798;0.024307321783427576;0.025654158340886923;0.023087467447190865;1.0;0.9553883382631897;0.3214018669624116;0.0015381717027010825;0.004410377738441857;0.8455714367771044;0.843658300977175;0.7757762015813332;0.9117629674366509;0.7969240890822287;0.04610813715835212;0.705644931714183;0.7318822170898893;0.8662475141413344;0.8437762330883185;0.7189608351142529;0.8864947076117698;0.912850680523035;0.8412338386354872;0.8085470051386036;0.8400326134433338;0.8503351915142058;0.7805928458073392;0.0020403475924715996;0.007835576677267947;0.00028068721164169777;0.0003489116408593805;0.0037773204364939706;0.0033082506980594215;0.0;0.006249897727109249;0.0024996727132602413;0.002161162990823688;9.023749548029989e-05;0.0;0.010986547338427058;0.0028379932502845748;0.02117698541380267;0.023386384652388077;0.010580734401760668;0.026277990054470072;0.0007081753992782668;0.0018475430141041596;0.014923172780364431;0.0007768820883938758;0.0011542228592193672;0.020299397254269366;0.006766841968661199;0.0007251103777892786;0.005377789066938584;0.010726855725815167;0.009514107570163;0.0003009448874878183;0.0011900798833167708;0.009317383936255608;0.01112870277922374;0.7665995791743282;0.5297153187451038;0.621805071675082;0.6017662246212828;0.7160020300184354;0.810435257509393;0.8407905159398161;0.6147373311568255;0.5769119742340499;0.7009263251274928;0.09318686797287054;0.08865653643202147;0.08904526723546552;0.5397495242937382;0.18298595766442913;0.09602218301422626;0.10598826240612273;0.572558057976932;0.02572514538163891;0.005513038309595023;0.024463491107803544;0.030616788062939427;0.006351367072261345;0.0010265324854502019;0.0014772225007039827;0.04087057038672162;0.000819560579621299;0.08351011844318712;0.03370346657635777;0.44204542666988944;0.014637308483902205;0.01643507665349758;0.0006702914048962812;0.3458494740414774;0.38726062228857017;0.1709999407338998;0.30881729746031267;0.04978385773501246;0.13910199636123047;0.27429072402030064;0.024269454165209505;0.007668329551630089;0.011829279575484271;0.034000875768451434;0.041204780966866195;0.20719855065255213;0.013275106531299645;0.006655901545879662;0.001443291704977514;0.2978700826845315;0.16166689775427603;0.16492501589407044;0.05535566978819097;0.06630951711836755;0.006767994421522844;0.07203781709808482;0.11079914083192946;0.0823160727646214;0.05325024225076589;0.12619051950949603;0.06203851907021648;0.32781278252506635;0.08388968952800825;0.0979547554392842;0.5647110982933756;0.16516190871475103;0.08540309564924797;0.0024336755267016248;0.004176327738740843;0.0040247354928456885;0.05579782964265455;0.0011309638249627555;0.00594326018371029;0.16120538735313664;0.35140028399231293;0.34697196003905384;0.00013448264667705864;0.15944398001273083;0.4092837203520433;0.015385941455193826;0.04052037959589302;0.013871844343963333;0.0;0.24403048242117434;0.3054218612029294;0.34835556790783184;0.3491268175115686;0.14507616054320702;0.3254019834089747;0.5096419921754183;0.29878895450616255;0.29065241657903007;0.30229497905387187;0.22912837668846694;0.17232703990302453;0.33044690090922957;0.1861955221351797;0.27263544025957287;0.31955208677741176;0.05489609527346164;0.4489116001416227;0.323089358444982;0.06584168013900826;0.002730895644121029;0.023974761737570096;0.03993736180037605;0.34317845450522316;0.19761851264502733;0.11952228766558128;0.015217073084584502;0.2595308661030249;0.24685684696061566;0.020962565260619664;0.00020449303035516834;0.009196449923827052;0.07373543334056289;0.009358888941530188;0.05514181672976679;0.5578651724721966;0.7124407164827209;0.6827777955082841;0.8590704057117678;0.7518004904837725;0.9246642928603572;0.7239429625768925;0.7519769768767172;0.707347189955664;0.8099042421527513;0.9204326647458897;0.6023432227465406;0.7614312262690633;0.6797155785392792;0.6276278427950975;0.7283922732143165;0.7786657409527052;0.09167622986306624;0.02870821557651027;0.023223776424447003;0.01980072123423966;0.06369032083861534;0.0004973756755604559;0.004652128040766819;0.008901026707717754;0.009558088062565325;0.042628825236246226;0.11750973687958105;0.11990289298704217;0.02755633833294489;0.4404916222359184;0.04529758147694712;0.02305626484087872;0.010008390765909642;0.25759039034535974;0.005586812344081314;0.08332965657603643;0.0004974261451164244;0.09942624737865301;0.029994220764730434;0.0;0.08904444935720748;0.012660451707081055;0.3114445312841411;0.44108977162835344;0.2979303632529209;0.07278206762536248;0.006649926985937736;0.01807596740890897;0.10481563314281352;0.002443232430864422;0.018886898304526237;0.16630399743729518;0.009897090406993173;0.0024583965432510356;0.0012532301075273953;0.0;0.0004830591276860145;0.024529747647664732;0.000567756786908225;0.3450606316508499;0.015011228861148505;0.005179139736278922;0.005910417866506096;0.3669634281937212;0.02059600128838362;0.010693276195493078;0.06508642208818234;0.17486650332981693;0.056436937503954385;0.016643236928685346;0.003479570600205302;0.10110134375607539;0.08063767489642759;0.006603301570703918;0.01148392716145536;0.004893812166076957;0.007714585714342096;0.0;0.137746123302954;0.028520512241270377;0.11874846682896793;0.012231184989630517;0.21714207723648304;0.005308648478437059;0.010488522809490128;0.0018520317146169469;0.031376314003947386;0.000477121803770801;0.0;0.0;0.055635341508783215;0.19975308652903126;0.3954308122300175;0.026752281886997454;0.06708809340480809;0.006613694172341986;0.03834539895687883;0.08678704078236438;0.01132881921883978;0.24987932505340293;0.09668322330411648;0.003659612554279439;0.04067982744971566;0.004317676822599721;0.000703788990638499;0.014743786212448512;0.004897744996952443;0.2590157118114546;0.03397620446179337;0.029669221106338482;0.004035272688126973;0.18380793629789083;0.058420365907076846;0.01986096526862398;0.32406536113208956;0.40573443279483284;0.4404011477580057;0.44493164515607925;0.06217181862544659;0.0;0.009676063074458213;0.004495356529553592;0.006324284336362709;0.0046819336475421025;0.0047708412590390225;0.007514860967542515;0.011290827049326194;8.292369515851078e-05;0.0010221043196591358;0.011505472425428803;0.05077387818889236;0.08464339266481954;0.00889509292340128;0.01866677356343165;0.0010162826503823965;0.013901663487472349;0.1165893135208561;0.010002531866205233;0.07487217858640026;0.004536456868282724;0.004642724820224955;0.01055744007302748;0.0014368539714919666;0.0020808692745106347;0.0022224513749553127;0.02925152162340841;0.034085663694397285;0.0018420398202339695;0.02455681075481707;0.41305536326820425;0.005514105725275651;0.007150392186947699;0.0242269003997798;0.007857478278467687;0.10354891597704363;0.08904068464871343;0.04104748437822366;0.002210201480735437;0.35564903227320555;0.3625791283266558;0.08097379319537686;0.08488651273317163
+Hexachlorobenzene;0.3244656839657205;0.32314759069561166;0.32763700133997037;0.32285372395462675;0.3277640368599867;0.3218557898693769;0.1694592802369792;0.32773656395168993;0.3274646238835781;0.333282318482265;0.15767345948427228;0.36365390132836556;0.1969417002063459;0.3273114488024531;0.32536660462774786;0.3089913115761475;0.335543063412309;0.33289341448038345;0.3224489442376472;0.3294062112295437;0.32011098417527206;0.3346014730049113;0.3395378887019376;0.337287829305073;0.3405977158457012;0.01018609861265346;0.1562548297780622;0.10868205205887788;0.08364542248784017;0.07600271126787306;0.054519283300435484;0.8389744040927154;0.27356934289577106;0.2502933651185859;0.6911042749981442;0.3218533281652255;0.10900497492948603;0.07931443438772427;0.004644144135130227;0.8179398401343116;0.7840724972830267;0.7565624237230871;0.7417189093091011;0.011338069778055295;0.019514565001842007;0.020171415845380576;0.021504845741304412;0.02056994826632307;0.022705597089001828;0.9553883382631897;1.0;0.39228940928385964;0.0022101112641571235;0.002602329963104224;0.7956314450468053;0.7714835525843002;0.8374840548925266;0.9025308661456913;0.8654165989754548;0.01657124994131812;0.8102936122151231;0.771655170821017;0.8416152378209502;0.826520605749882;0.7967737650598484;0.8917016285068682;0.9049876555251883;0.887663120745669;0.8585155779236823;0.8864355489676798;0.8906217315178534;0.861452755556623;0.0027585168921061423;0.026684335598730926;0.0012928061401700575;0.0019182491547059231;0.002515675542554945;0.0024546911076430335;0.014637976416126904;0.005130699611181532;0.017411107483633937;0.01522736140388189;0.00047545278003543117;0.0006608739091710105;0.007073777515589716;0.0012218412583209941;0.007433535593176051;0.008435507237681059;0.015319117814068256;0.058838332294591525;0.002866774579389302;0.002519304446789896;0.006988123498348229;0.0010920005509825088;0.0015527260623221747;0.024784767476895966;0.0008159548672962272;0.0025424110950486955;0.0034615466560245682;0.012226802703015044;0.010123590192568345;0.002425209388905868;0.0030884643762814933;0.008283211536181076;0.00828197496283615;0.6922328423788824;0.46693131696874446;0.557669454181039;0.5250806942119784;0.6221243999152005;0.7108907322640009;0.7644693120028228;0.49786130976608806;0.48338642982689256;0.6074389710708643;0.16863033460144164;0.1156969125603403;0.07078342204126424;0.44931181535059445;0.12190374295715767;0.07309437753206685;0.07451192947454366;0.4977186582309372;0.0329504355974354;0.0007525062860269842;0.015750338386219264;0.015964983220042618;0.017423112101886493;0.0011913605348169763;0.0008790352021352631;0.03393522918933698;0.0008712392635715657;0.06740777460551979;0.04846796401684732;0.3302466320015168;0.013841494688262922;0.013849920313911648;0.0005259225581078801;0.30739466547409344;0.33877648328449644;0.17088721560425527;0.2619775806868486;0.053976450512271894;0.16020747513124506;0.26300901404018107;0.019137569659486132;0.0066155981708277195;0.008812732566293757;0.02440020369205013;0.04518471140063003;0.15262444104611186;0.023195194757196485;0.005036560704811663;0.004361535023820564;0.26034497265630896;0.13876992589634105;0.12310449270833164;0.04247320327087129;0.05051283517858535;0.004658914140273546;0.0572161565560862;0.026809754982869437;0.015178022259920272;0.053668951552941685;0.18806542409552254;0.03037222266175652;0.07417487012583406;0.1456758360107818;0.1547246077994066;0.03941861455974897;0.08090088822773162;0.05491541833275718;0.0017315924738619019;0.0025347217381750274;0.002800884346099648;0.04181214573434125;0.0;0.011141554712192024;0.11842967405625833;0.25921871965964255;0.2532571771552111;0.00033315764820511073;0.12070863486853695;0.30855126607136935;0.0009532458614485769;0.02411782812341237;0.0031060109945543852;0.0010698564140619584;0.17865263983889917;0.232782779877864;0.26783676205066664;0.2965482801774885;0.11520140009290271;0.2442478097196098;0.42274046292081086;0.2180924710564338;0.2119092263688452;0.22137380875739826;0.1643834034966574;0.12661557303883808;0.2413863236850052;0.13694263955072442;0.19910542003019235;0.23836450081326266;0.04903620091038363;0.3365422533554105;0.27065917545672885;0.051366480304026935;0.0035731842081780916;0.019141068067415487;0.025833688082593932;0.2729646542361118;0.159340248577889;0.08291432445009618;0.031094222949617823;0.2056142331895997;0.18244824458818373;0.03744857307614629;0.0005182144036651939;0.021476023225681106;0.058566921562160666;0.021908483114522315;0.11122989296607404;0.4622297839970493;0.6295028323180177;0.6788754962559944;0.7817408336540542;0.7884584959877057;0.8772411776702025;0.8311366577775527;0.8474284925054174;0.8191700466039131;0.8635330871915761;0.9094005761863114;0.7314958632647722;0.8542129829197168;0.6718708003923763;0.605473420128233;0.7186232396591504;0.8595173636649681;0.06818280031200934;0.02035352584542628;0.012486089422203037;0.009823685729902406;0.06603605213022126;0.00032596173459710883;0.0054442704991202835;0.009445894931865876;0.00668532342263071;0.032508058505979064;0.09393287663047181;0.0959625565793225;0.04508503467342549;0.3413134549857394;0.06625362208385453;0.007340678147479347;0.006046497776836714;0.20121863044817914;0.0;0.06399562234421502;0.01400126584984181;0.07422686358233972;0.0004866006547713034;0.0009973696148052969;0.07669856220724944;0.004203405559285957;0.26664184671360724;0.36715270781038717;0.23639085132678864;0.05005221544461555;0.006413671745482512;0.00876119177501044;0.07981315069698462;0.0003470386412890131;0.019794558794097833;0.12631190489280908;0.016066665195056878;0.0;0.000967875377758629;0.0;0.000444816195994921;0.01853616411370448;0.013958724699825592;0.2634044570097283;0.020828393191158458;0.003958251485780588;0.00940357515356309;0.3525415165556396;0.000610428266716429;0.007478858845115973;0.05559284271915691;0.19919800579096755;0.036843502835648224;0.025244485166117506;0.0010592757942562803;0.06908986192446183;0.06008299173129352;0.006481901867700387;0.0062416732503708305;0.003320138888798489;0.01332944523348695;0.00020316237054241018;0.10234218810443114;0.023436133552820714;0.08320182938752856;0.006400047028589988;0.2616769489377313;0.005807513196879377;0.0029891199814516783;0.000526234996225227;0.054088608575399516;0.0;0.0;0.0006493515445228114;0.04152183246191664;0.1615512408889383;0.30534754152281135;0.020961417223860423;0.050315523341518564;0.008246619242865898;0.03336988316661582;0.05387733562440705;0.009921508328349938;0.15556034502027888;0.06564937123250618;0.0049233268106544876;0.00816459529872689;0.002802443128149087;0.0;0.02637649416058578;0.003577640114058225;0.19624794442506316;0.02369777437231984;0.02089751884168236;0.005192013482052582;0.09482937413314077;0.020731986753645827;0.015961315494623835;0.24341402615190658;0.3065514242595308;0.34280067251772384;0.4145743822938083;0.0490379970339259;0.0;0.0057753593199517585;0.005524203388124586;0.006920855831449584;0.0064924487660122316;0.005101536708038086;0.0017449186533010203;0.023007737457374024;0.0008627611403975859;5.377074149366122e-05;0.006908396600741889;0.05067502188611185;0.09489515958889387;0.002385795546842712;0.013346875444375739;0.0034509321413020194;0.01842700211702265;0.11253398509828567;0.000666375233474006;0.15324015527037207;0.0069163203109824465;0.005483739211862761;0.000489997153565542;0.0007679625616314233;0.006880550744611702;0.003948610976209879;0.010833347117970826;0.04244049794996594;0.0003449326280280687;0.00833867823703488;0.3148965047553317;0.0041171512958845975;0.0053388977152960095;0.012516459371656177;0.007299414862422368;0.07830605562562068;0.072128335163175;0.038819400568879926;0.0010047754582867842;0.2721633192125878;0.27532221048265904;0.06359344850984062;0.06585073356702645
+2,4'-Dichlorodiphenyldichloroethylene;0.12308218361598282;0.19403053305928142;0.12835159279130726;0.17723928459992766;0.175923950326709;0.12916689700255163;0.06709005631202467;0.13192560721206203;0.1277833811636027;0.1290877797059501;0.0553043282048699;0.1432233654868099;0.07634721461369996;0.12467297335606313;0.12492374685971831;0.11783638483356847;0.142646777951213;0.17519899140325942;0.1933098605956642;0.18408002919120647;0.1351593436503487;0.14199796532337425;0.14772484236207173;0.1394440374165397;0.1325971062922855;0.03258476824979399;0.09329360382988183;0.0627288380352662;0.044436509003503225;0.038814836182763296;0.024971608839136017;0.18402296941567892;0.21459053889609958;0.09905853353493137;0.5937654336953779;0.1443069434133673;0.06020171436598498;0.029105453540144276;0.005141343303146784;0.22262692080380847;0.6436985051821645;0.6533292439842483;0.4142773302166367;0.013638868646610323;0.011409126122224328;0.008640098230616839;0.00984787585040388;0.009316178639863571;0.010545386024196182;0.3214018669624116;0.39228940928385964;1.0;0.039627423798420436;0.17934091525321535;0.1965793883726796;0.6024082584528908;0.7903786061258159;0.6241731571605602;0.7281383783250135;0.005488490841080576;0.6974453578270038;0.8172459149659976;0.6963171718428678;0.7318953355179015;0.8104262452780544;0.6744246589515479;0.6185798067593342;0.674215032805446;0.7142233817386692;0.6706505834944351;0.654313615261941;0.6139186381298694;0.02239784287413009;0.034017573764412674;0.004491136991097437;0.004710811705872806;0.005856517481725519;0.002823437607342764;0.0032650118693676416;0.017896177852716865;0.009529858591923825;0.008934187353566396;0.00428375166236433;0.0040640846739569796;0.008496836639284222;0.005901251623915228;0.011326766619056594;0.01487255437187676;0.011185075420997432;0.10525495321578811;0.0075530961330935575;0.035000451490084884;0.03587679780206635;0.017380021272597152;0.0182043138821608;0.024085660807697258;0.015657616614196516;0.01574327960913961;0.012251805428462206;0.016430337592115443;0.027985518283010182;0.012616605790362865;0.014972823617394772;0.014011621552700766;0.016121476507186244;0.20688828478282584;0.15443724723346938;0.17487555952467798;0.18489874756984473;0.20384923392489518;0.2149812535382388;0.2233220841504931;0.16575520151500173;0.1863401156275766;0.1894745818191733;0.032262559079464535;0.02917129249732201;0.025516523025352674;0.13252771950249959;0.46500932682555574;0.021911189631854018;0.03201864502588455;0.13834669077226164;0.009398990332301894;0.004660625953159185;0.008141243007204948;0.0036585544535624715;0.03710807018859664;0.03571277895390662;0.04100036946572777;0.017584930499664406;0.004562360671883667;0.02220602947623515;0.015184289087206404;0.12909593112150705;0.013889343020543937;0.01085997624069835;0.011247046810684162;0.12018789409128434;0.1623929323838907;0.05412307669989599;0.09555706417782878;0.0230516009365972;0.03759247953408891;0.08807138296729812;0.047995920119665546;0.00841825717544142;0.005317549484605981;0.014042424565982911;0.017214247803190343;0.05764786500016179;0.006829968731602581;0.016271270553103657;0.030001996775212945;0.09629977879317275;0.07052706399735563;0.0513141689782156;0.01744771550285643;0.020525801563222874;0.004945699156141068;0.022822770399702385;0.024881219265059512;0.0099471072363507;0.051360574061299645;0.07451618683112242;0.03498745198889633;0.1772908087059651;0.0550196006325935;0.06566539006823516;0.11129718475064122;0.29306580372126567;0.9628570628914469;0.003963563375740545;0.060331054660702876;0.18927616363355487;0.017200876833093768;0.024686210136495874;0.03805389059157334;0.047866363128436895;0.09833387166330644;0.09618902127087972;0.03708403458801026;0.05552180714816077;0.12723835196876818;0.017298102284805023;0.05139057439087774;0.02972682658124069;0.02304103101561785;0.0742710453765162;0.09917520648164053;0.11392985497251899;0.10653899348374819;0.071159391297891;0.09718742843347641;0.1385868064982148;0.0911011499133043;0.0887123096606866;0.09250733879516237;0.09153980659157297;0.0656778981119553;0.09860908680763343;0.06257334042135575;0.08410430760529007;0.09966853326624613;0.05073659412570884;0.12815700686349363;0.11886367331001244;0.08058701876047045;0.011801684989342793;0.021802555351136847;0.05553846902587728;0.1244022868792027;0.06978690812427353;0.06693294514517092;0.11635435532436737;0.07503960696389214;0.2245787409923167;0.019847124710475835;0.0028453311778741147;0.0015431644804561493;0.03934035182098331;0.07285599346357124;0.011048844631749719;0.16555084402764964;0.5701769470628641;0.7525220658531596;0.5623305057769198;0.7653348644417802;0.5618395208891742;0.6630926003990709;0.6482029461510312;0.6595180559186268;0.727167442177223;0.5911944686217735;0.4837465715400893;0.683129510709481;0.16073984693785048;0.14998855823317103;0.1830987270825522;0.7005229072039352;0.030117913857279945;0.022254442160160946;0.019388619874184145;0.014940510124890656;0.04487247728762459;0.0001412796863798812;0.0006735159044604579;0.021698991298523373;0.009942312829409;0.07455492443474747;0.03935475333324362;0.039981579411878986;0.07278132354691791;0.1379491723709249;0.05686010867841761;0.0028832349501768887;0.01391196307691388;0.10057573880495886;0.0027023034204728385;0.02749426259848903;0.016481655902139673;0.03311500854575215;0.015786140701542082;0.0017680947930172402;0.025762675472603656;0.045208823433911256;0.21637069220614846;0.12801978928266217;0.10424085387254052;0.02373172346995495;0.002607520960559873;0.005314671292748573;0.03897464926857571;0.017158521037299673;0.011170993452522173;0.05542670250332248;0.021311720731028744;0.013049166466040627;0.009632830777678594;0.015550901320796139;0.013579014316365203;0.06575407132116443;0.01657053177858161;0.12138541417447524;0.009273860111404617;0.053027533243802154;0.016852339430082658;0.103217476841686;0.0006903502582735914;0.004748260509159146;0.062175074181929;0.08506879384357294;0.027505529839651096;0.0037839617064107096;0.0022792095337573312;0.02631892631425945;0.04317521463974798;0.02123329799966228;0.05150590346751776;0.02944673953570744;0.015161639879948667;0.19347055838610205;0.04260372726212299;0.015839217668353136;0.031740014477609234;0.015778216140892427;0.7594197799680168;0.03225662191973153;0.003177142187784641;0.00347503843041308;0.008127365208884138;0.012221026144505645;0.0003833332057529823;0.00035862428508928463;0.021709258528888192;0.057637851993201955;0.4663827655851028;0.01050996628498466;0.030501279263255666;0.015570817504218529;0.003646095632122978;0.032800165035661875;0.06949378269634857;0.06244883909296003;0.042578376179523286;0.012218945637845183;0.026916718316680882;0.04780017995144074;0.009805423246492277;0.017156457403661514;0.0035315877277189486;0.07759180115227277;0.01638676183324167;0.01466865989826201;0.006398872577697272;0.03552270239733208;0.03832182971761526;0.013061316411998224;0.1487969518034161;0.13535213600640944;0.13283100511018953;0.15703531091283726;0.02609139836218325;0.0008516760356274648;0.0041020509140454395;0.004464490959311899;0.00529977431420352;0.004988946858184207;0.006299916566354977;0.010960073415451589;0.002158159350952382;0.0027030782201319385;0.006935309177688784;0.01098233060864034;0.08389232205774359;0.041852455398389395;0.000867618639875581;0.038883620660842444;0.026187483575623106;0.03913804469816767;0.05689939006534411;0.00865995350376788;0.37408423603252544;0.006168772861402264;0.0050637975889169795;0.06687050225725968;0.004878762469685729;0.0066965018983168355;0.01296126369088201;0.0642756385833232;0.0755490150000919;0.01734137137271008;0.0425688479174175;0.11704538269108819;0.0016939207960513097;0.0027796953575925836;0.01785620136218286;0.006944890864481595;0.04200009601224115;0.06042817165840534;0.021414771900781955;0.0;0.10984810981006872;0.11283952143726923;0.04934825859288722;0.056098784164397154
+2,4'-Dichlorodiphenyldichloroethane;0.0011026264273038809;0.005238034838891216;0.0028255701036697025;0.09183773522392198;0.09443002558770636;0.02554086202304988;0.010027494804372723;0.10682433407922588;0.10967668301863139;0.015547318655360527;0.033898554613350375;0.1303077385738826;0.00606504034013514;0.008600893455366382;0.016243023724573258;0.016370741620757752;0.002051039993205263;0.003909990654879975;0.005528248517987324;0.004688640802740175;0.008758318821018369;0.010181751624835192;0.017954815041469965;0.004232364962360494;0.015386519214544892;0.04862677584229601;0.010752928377342917;0.24873078983035626;0.03392757915808983;0.011436509317395375;0.03281089457654198;0.00145184532435494;0.07642257759589942;0.06641632205397419;0.022813057172020486;0.015261362445597348;0.10963441662871404;0.002307969226057392;0.0027915894162313035;0.015184288038566354;0.008419146730573134;0.004790022255120743;0.02985160774728503;0.00012842615146365025;0.05138677453477807;0.1629643197737455;0.16560901179322415;0.17705004554720477;0.14741599455988325;0.0015381717027010825;0.0022101112641571235;0.039627423798420436;1.0;0.9834936651834758;0.02694278477252796;0.004152384581444912;0.005752062616506403;0.00663043109357317;0.0007035630027838437;0.009427454194013682;0.000474487144205493;0.0038722590442379396;0.004405726399313631;0.0028533242182055803;0.006174713236597733;0.005180725210630658;0.005004283116663831;0.0006898443109038156;0.0007335539025682667;0.0006720208903792928;0.000402604149966226;0.00041250837895510505;0.00947801970779773;0.003170903072660802;0.0072647030610953345;0.002640157435232874;0.10165744213042485;0.0942336518284733;0.21851204451666392;0.015373550522561204;0.05612072672163681;0.052697743143154605;0.007612646697951022;0.0040840994046271685;0.09283405823961464;0.08396915096025225;0.014525253767759384;0.01673714034494698;0.0194035574935236;0.5905397871796036;0.017341807002552657;0.06051353385302249;0.09475684787489462;0.06292317879885338;0.06850205895721291;0.0051160172702211185;0.005691162648240336;0.03315819210020274;0.0917189879608707;0.09893989629420978;0.0975086057982887;0.1399833860425962;0.16658349024236652;0.03825942031102204;0.15340220396631163;0.04738594756160167;0.06322321517641095;0.05204898458235399;0.0675952921968718;0.037326981623198086;0.03290570971833697;0.029722962787946044;0.043470754926658486;0.054185413306028773;0.041358881405530824;0.0026960075675123364;0.003275413100757531;0.004138435908264453;0.008659656644687154;0.10613951103254465;0.018463841569892784;0.0005535143713051427;0.004682464678665661;0.016285064648905157;0.0018899075767035156;0.03167370227642716;0.03306531757458452;0.0;0.00835454364146006;0.0023754497693090904;0.10003220684145465;0.004147304091268134;0.003255753725925405;0.0064374136155858465;0.003819105779248649;0.1181250260183998;0.035464901506352335;0.09114384448237425;0.06969331466820047;0.09945279037618747;0.011585978762133827;0.0998169121067088;0.0029794866330292735;0.0002805352958730381;0.0011879094540716492;0.04027154794309693;0.050461328173389816;0.08349923923863099;0.002057472944180037;0.014452976059689426;0.00034760513575291305;0.0004836061224236146;0.04595900376424968;0.02050130156818009;0.004709600120887857;0.07617536273202706;0.026174960492248326;0.033366609279273665;0.03814652117183323;0.051318488688354987;0.06386646067004899;0.1198493886510676;0.016241963638498533;0.22451454081657743;0.06386033482604266;0.056249003891714625;0.21215205113972982;0.053804288294295025;0.05567649529363869;0.06841394848271841;0.08275464501191267;0.04086578927184239;0.03937823827855115;0.9768621323814596;0.9669401928579342;0.0021315613048868303;0.013699204661396899;0.021871368034371633;0.27861638258745086;0.10727958204244438;0.07661633743840324;0.004523946877823854;0.01915434554225787;0.01666257557158826;0.062064732253068064;0.10543306947849027;0.07509259936204281;0.010360509786321413;0.005407608971749024;0.10425429341899675;0.09676859579040363;0.026305866411073537;0.00799166315053868;0.007604320429993495;0.01330464947911422;0.0019083725853224008;0.001833549460272432;0.003724397162729336;0.0038997954587894016;0.002626526511627074;0.0049089747768349705;0.010423401689805255;0.003956309221327393;0.08239611614465453;0.11248163029481244;0.0010945924571658077;0.07124439526073857;0.14906901501306344;0.030143340433163475;0.10581727101870034;0.0628974270903843;0.053199808978191106;0.161251871072654;0.011288270663449411;0.08474861286745423;0.05022564531651219;0.22687786210598188;0.06871114575833384;0.0025108457992305154;0.023240922311185082;0.050504027592906266;0.022718316579285927;0.002536235668908583;0.019009093535170246;0.023196018527145403;0.007106192460003357;0.0048419907705526035;0.0038532695924351173;0.0031576631080533187;0.0005682811664424639;0.0005911370699220587;0.0006353324294202727;0.0014148547285383337;0.0009202938192899432;0.001124378579524464;0.0005772433148010223;0.04708805696098765;0.04445975254657299;0.03606659875576928;0.000606742911587223;0.04851811325862337;0.34239201205542713;0.042773848413734154;0.037373183534748194;0.11990407834024414;0.0009581302730138565;0.01932944373171998;0.018518038908632517;0.035200663901337095;0.14498899583952318;0.17794562159830654;0.17677000134489187;0.022934353259504093;0.018358364061705903;0.15719708916255445;0.07094023677218698;0.04182133465826413;0.0658694976564553;0.007172127866106283;0.0108085213518679;0.003428531700330732;0.018787468112837255;0.0019485354088250805;0.020211453804319268;0.020612286210676754;0.005250052344923209;0.09048345758127586;0.06694493125868654;0.09084517102614609;0.0739182017799134;0.003958025361023309;0.03278351664193605;0.10122694860012224;0.10611941837214056;0.012646226428669277;0.03845333407249185;0.0060368944224481426;0.010951932244839334;0.2890877179475339;0.007078946707758276;0.025842615779576292;0.181000135276289;0.003457211487769201;0.06624696847110832;0.01820825278614456;0.02705598434338588;0.22021085330068071;0.034062775103356605;0.0;0.011115977917877405;0.1052990876760879;0.02373528236743339;0.01009407259985162;0.005146961404979038;0.012435705486630637;0.0015444929009348044;0.010028217339239639;0.051600552188804764;0.18674526620681262;0.018778928582758418;0.1429638568511578;0.1036212913308208;0.010058158469790218;0.004864915273444811;0.05441358367166954;0.02960605611725326;0.4158616786998421;0.019176112102865517;0.002388523488662752;0.0018925301005393563;0.0066003605603285375;0.000762929421005197;0.00041542247466957517;0.00012473867198705047;0.005172484989921759;0.0179223628003096;0.14620686224571494;0.010685351740257254;0.022367347709559494;0.029506747379838084;0.006579975835956277;0.0908731699433544;0.0174029922991385;0.2897578505717055;0.07764150064523587;0.20128165079219648;0.015302576975622718;0.028914323287609622;0.008920082381856624;0.0682748524051645;0.047408435248296396;0.05501937525657421;0.016534663810027887;0.013802776372789143;0.009413441516815075;0.03860360220073045;0.037376773491894374;0.0016330897436177185;0.075070203855259;0.006097989269150483;0.04490402738277986;0.043860250441777035;0.011873802223263187;0.02243090055754485;0.002099891190678067;0.008232745758327437;0.011119166470284403;0.010624946059493164;0.015821739945552745;0.031079704388604475;0.059703596303317466;0.006539602427197618;0.0779745412361649;0.31648509906762645;0.07132522428223144;0.022344660704371005;0.0010552879961825727;0.11633572652303155;0.05026328393711118;0.14625972960160935;0.4692532190396911;0.11841450339727061;0.04817108571373537;0.02630166404287138;0.003917544469871997;0.050499546220680105;0.0048877794229771915;0.018018542218896483;0.06301348549248602;0.11272544575769346;0.14715109959929537;0.5343511446926602;0.05966060100282499;0.001672673539978137;0.0;0.0;0.012239865577267993;0.024518991492987245;0.06568420978712422;0.05191648186336089;0.046353397289194576;0.01990108334026571;0.050676316954050296;0.03900813428494792;0.0323676592778168;0.045778587820067
+2,4'-Dichlorodiphenyltrichloroethane;0.0068480733665679284;0.010939122976560875;0.0066092893868742964;0.04786567281553296;0.046282671913581784;0.006336817274489352;0.010361236619674514;0.07919714572047407;0.07823694063274611;0.01134270677392885;0.028056209437293943;0.13002743319585094;0.008540322671846658;0.004818071220070424;0.01337146762072578;0.012594868475536916;0.0024212397617934464;0.007557784066805702;0.01090036424846729;0.009076306831506781;0.008297245224029628;0.010593086803713972;0.013268733721882506;0.0061657139073635955;0.014235011870193942;0.03920076728257286;0.020143754633328625;0.21008523214446925;0.01622868540900813;0.01642469365855395;0.02463139677424634;0.019805553947793094;0.0963145548396933;0.06657945637112335;0.028211502852212102;0.0020510125936567918;0.057754105584019576;0.0012044838163923343;0.0012181871917470886;0.0033080163536706466;0.009540687714834283;0.02882851745416573;0.032507252488061626;0.006417076481578393;0.007312212193603594;0.006480862001621794;0.007615162089979033;0.006710861727886768;0.0078436751777865;0.004410377738441857;0.002602329963104224;0.17934091525321535;0.9834936651834758;1.0;0.013968536844142218;0.03025712093111816;0.01085102490285342;0.011082172992244451;0.0017487167515047356;0.058441097752361636;0.0023698910552226032;0.026255858428713096;0.021887484161312008;0.013322219816528869;0.011673755166526927;0.008123179446480434;0.007992978084273603;0.0018656289869292395;0.002804239771171764;0.0018488266362267551;0.0012057167197464028;0.002524876298405312;0.008019707477406633;0.007466517126876357;0.006995819134297914;0.04057956169211516;0.10162687944386105;0.10892895319417778;0.20670276023812448;0.011664215783091354;0.05630465307265046;0.05312410151025947;0.006559020648782592;0.0035235314656594523;0.054435463321187004;0.048524445178509956;0.005884401133035125;0.01000653024127052;0.020946441696070562;0.03172533822502711;0.009979912299663453;0.04590610903563103;0.10838050032501274;0.06330852406647046;0.06979064289981013;0.015298648680944707;0.011105685424025274;0.0628066072156238;0.08936646526431707;0.1241745901974281;0.10901401379712301;0.11392785771996021;0.1357866640118849;0.03785628932890474;0.1299653594702768;0.008125606846541707;0.015056057192420596;0.013576461894080525;0.040612354543533395;0.0077986886615539685;0.014718823901720671;0.005644141309215089;0.009801106079136276;0.006857069591125903;0.006345154591213525;0.04538183000538224;0.0567460630033427;0.032210430664530304;0.034960012426630264;0.10573103818829287;0.10656393571116456;0.027995765268859014;0.04273147572932268;0.020402276449775488;0.0033625718580170567;0.03384120800994196;0.03387045558566073;0.030438569135724167;0.013759399782574316;0.015350394488767752;0.10302299164853287;0.001646380496577238;0.0015231222406825826;0.007817900584814387;0.0033946503479416867;0.03552818719239715;0.002251654078480792;0.00471612067282128;0.07340060102114038;0.08471413732874505;0.01375759235749911;0.02990134738887263;0.005796454888383604;0.0010005652500339611;0.0041531641916439715;0.03978983676248904;0.012857333895201061;0.0006627170756233416;0.006775253469493473;0.006788746188026315;0.0001848198696026544;0.0037927669426383623;0.010063051994530269;0.018731569392445257;0.01065615052482628;0.040167752996555145;0.008820903174934008;0.006632545620026097;0.014563236107184173;0.00931473443033922;0.023641421398282132;0.05405433271491588;0.014514894183833449;0.035658241516194046;0.05668793561253714;0.05776533938869038;0.054980337436346116;0.04429106282346902;0.0507079193401542;0.050697631935087535;0.08825942162218271;0.18023157042034835;0.4968972306064183;0.9807979077378133;0.9899021622371952;0.0006846076255530606;0.01830410825756676;0.03396129000182784;0.25806784883403805;0.08822618596664249;0.061562740985972655;0.009249121506610895;0.01632914720081635;0.013373185067630411;0.04103308497482382;0.03986487692449066;0.047840834127074225;0.017602241630482053;0.002678788121106089;0.07987956700084214;0.09211702304604272;0.012590245605324854;0.02645316780562157;0.009672500494851454;0.008934986783220786;0.0012963302658831725;0.0011994744942508246;0.007836253155156823;0.09118508961993026;0.006669083004182251;0.025249368015903644;0.007225757682190944;0.013070665685935479;0.05920219284312315;0.02554504457369714;0.0037598218849044245;0.07857773316826826;0.07822310373490939;0.03646806640727537;0.05248380454729904;0.032484949123103006;0.02371670370985162;0.12293972027465344;0.009927887284139186;0.026865010705078986;0.13807872932128118;0.046913622500126886;0.01657285416561884;0.3977502815781346;0.003045520897049386;0.05344170438736051;0.024024489178850448;0.1241054634403225;0.009986811753763723;0.010592724555427403;0.03597928177526057;0.025468642665630845;0.0180050376717792;0.010844149656349127;0.002377035066563883;0.0023322256368310985;0.002541060084173391;0.0021380722001911844;0.0017365043418064424;0.004982520999576809;0.002057561095337;0.05807360274261458;0.05420910105046725;0.04691469110637792;0.0018907875724867873;0.030551639367810367;0.30388607113752947;0.02560206444727146;0.043879256377657085;0.12785011551871084;0.15539039783599898;0.023591153218285206;0.017052320069608627;0.04949159373412327;0.03647817951010599;0.16686226878450083;0.1660510453068949;0.03072987293770902;0.019503291328431534;0.148049647699459;0.006992751420004599;0.04794033761461844;0.09224616986289529;0.0009627309504101216;0.013859157730500357;0.008276645230336162;0.00660261613534342;0.00015529418941444178;0.022412187016247434;0.0012897668453481558;0.02607147848964168;0.061387555554059774;0.046132518091475026;0.039565004920976685;0.06265376212173342;0.0009778372440923716;0.02821374301268977;0.06702133106816141;0.09404402103598751;0.004731515104193207;0.006834564890228679;0.0003752001332890678;0.010652171369679409;0.2653401164378384;0.011001456270089237;0.026043113460559295;0.19024721935227015;0.008386041593034431;0.08079960568792653;0.005887448142600552;0.029860582213904648;0.14256878495459813;0.01188514874246549;0.0;0.009850748214516309;0.0023528908504729467;0.02393154372770866;0.01717179552282786;0.019273371052370432;0.007736317030842033;0.0013423397935207531;0.004518752601033782;0.16846402689653056;0.0477230958980684;0.02609320380391454;0.005120310641882547;0.11507216172694744;0.0036680863910894404;0.0022567088556047746;0.03493876074550169;0.03763997669926641;0.41576376546704125;0.017291239977806037;0.0032539033295040914;0.0031693889713247094;0.002524260436050583;0.00026912759422442317;0.000231775797656014;0.0001664517883508573;0.009021552706298586;0.021168522863063047;0.09138860785909392;0.0028662081126169404;0.010610773639447943;0.018138512942031622;0.009240382578370662;0.06848513475100443;0.029215053332405542;0.2934047533009461;0.017039000945273067;0.19111383696653866;0.012720210257634352;0.03931199346312701;0.01792095601179832;0.05685049157144676;0.02390950084827717;0.03193114459987924;0.007364612287448764;0.006925720493243458;0.004647230040488854;0.03208141351516622;0.04001612545639106;0.0037205184530973816;0.06442477990719092;0.007934898272100636;0.04784232184430133;0.035134807042514905;0.01018731555920437;0.0016217798756045646;0.11332835769797595;0.014126661924770854;0.018467652871454493;0.005809828900756334;0.007889778300627153;0.03379110138318922;0.011120843107620059;0.006330423918882663;0.11549605018864412;0.15751741886637008;0.03874363821493457;0.026491787354529377;0.002219562182220284;0.08326082639163143;0.058154815897667786;0.059627061962214116;0.4739150275909619;0.1336792624632658;0.06788629564714817;0.030308266637985984;0.011141032618887525;0.05188340974941623;0.009257230150021818;0.005545390971788346;0.011571159145790271;0.09459889159745209;0.05182191728581829;0.5358631794484483;0.049024430515127046;0.0005342477917059382;0.0;0.00019381007738023174;0.023714914875076536;0.017623556645741452;0.05640247836884981;0.04754632479433746;0.04519453493002498;0.002990329506453825;0.03055238803074639;0.019793827501881717;0.019172079777700808;0.031177864381819218
+1,2,7,9-Tetrachlorodibenzo-p-dioxin;0.27925913109689104;0.27617461600453996;0.2783871356345618;0.27296031555605754;0.2772205907580168;0.29920761471944346;0.14043706343628523;0.27470432882228046;0.2756345587136793;0.28308946577626926;0.10920317630354638;0.3121198293184263;0.16259535713256662;0.28443564617398537;0.2798166655708762;0.26473907219869036;0.28699782276914165;0.2864416810678477;0.2770574072392035;0.28283068346803314;0.27448898796161214;0.2895410848498204;0.3058476015432688;0.2896371260564491;0.3016504774318678;0.007736709154385898;0.1499493371499679;0.10214752908421354;0.08231165892616238;0.09766862496649915;0.04764001021425315;0.7198568219221243;0.3046555351563836;0.20547557300943053;0.6375346751071225;0.26864733581640393;0.11993381407073091;0.08051841892449278;0.005836552649693837;0.8854397376846506;0.5351763594543373;0.7049116637335239;0.5257413020042007;0.014896107742492955;0.009765462463957248;0.006830718699436812;0.0075552964370343215;0.007702303781289213;0.0073894423265735585;0.8455714367771044;0.7956314450468053;0.1965793883726796;0.02694278477252796;0.013968536844142218;1.0;0.7311916224683636;0.652097225562556;0.6754818503773217;0.6319008182271809;0.03289846641726079;0.5800126306947087;0.640593632147726;0.7328591401856628;0.719948264816258;0.5240516559846;0.7457617386441067;0.7757076260566294;0.675848120932871;0.6416891018867037;0.6744802029764249;0.6871617846313315;0.6181481699492679;0.03864105676085778;0.021720539992629115;0.01315026074755831;0.07055758729012411;0.013283977694814713;0.009922611912867701;0.01042920884881192;0.01296466990060427;0.046588078316244896;0.046145596514119244;0.022944345264776504;0.02179805572492136;0.0359170228337307;0.028901764942841413;0.03437633547017601;0.03735908425364711;0.02169241555161899;0.043279932979825554;0.008465044968661387;0.0032181674754140563;0.004911256035452812;0.01484154983708663;0.016163331003552453;0.03769795315605344;0.028453976547340935;0.022069157647722163;0.010893117178435855;0.02548630679250619;0.03944453309775561;0.006953311362187146;0.011119666790819315;0.024082900445567736;0.01819407933671881;0.7846108802632134;0.5063368603590237;0.5987532109728378;0.5497155792551772;0.6453350374936271;0.7324680574538204;0.7766736602166411;0.5236794470698147;0.9023339425501194;0.6973034215246307;0.09202673698542958;0.09465844607761931;0.10432786292093095;0.4686566176388639;0.04224846985955159;0.04842968999241013;0.10849698800824346;0.48047290502814155;0.02370996900514459;0.014997059830351203;0.028798988642016198;0.02039300729193808;0.026841518984108116;0.023707933633298248;0.0217589982641416;0.05607505013293254;0.024599833089386274;0.06764336635652218;0.07735716973279186;0.27796425793055324;0.04053361115217578;0.03998550600655015;0.030133659510814485;0.3133974863680339;0.32615550558166795;0.19038538005099254;0.24210749582229948;0.058247205981757366;0.08354162837256188;0.2082563672964303;0.042047742692741856;0.029535960177515905;0.011028428975150363;0.07169591187442159;0.1482192490574381;0.12628542653936073;0.034130778862038365;0.01658382405211261;0.007577370372800255;0.234178266377878;0.1511248114584667;0.1122336004798284;0.04734122138390884;0.05112388071783165;0.009404652904094812;0.055938492567627104;0.12021873326290422;0.02503736315453755;0.050414924805691756;0.11747728961674772;0.07297194994648448;0.14717277280153937;0.10238804257883155;0.11658801684010722;0.045509092950876004;0.080299343587461;0.07999574426711337;0.01004819994440477;0.006236728337470219;0.016678117038490214;0.038975916395711234;0.01895164731957822;0.06434562247353447;0.11408122892688977;0.22485319660018158;0.22002917669772118;0.0013956511128279498;0.11486509849913573;0.2801323593288551;0.03159414710452076;0.02601129655662675;0.023034677451728106;0.01877477883477767;0.1612565049200366;0.20679960795344457;0.2418856133536861;0.21871906198355062;0.10980253054214685;0.20953076194789705;0.45681919555369155;0.18569811569230063;0.17934821850087798;0.18664177200508877;0.1694527909246161;0.10626744832583375;0.20338412601744063;0.117248058974839;0.16670805383822151;0.20737642496413636;0.06254897466832766;0.28322766354860535;0.27511712273439365;0.07351275335860927;0.017042252986517775;0.05275521927612308;0.06999167831238844;0.2905000542957277;0.16932405106541984;0.06930057861020016;0.019677556673841533;0.20629867844730923;0.18136723885031317;0.04125306126432568;0.041397875340583555;0.0708497392512102;0.0714938590070763;0.008042929013670177;0.03567392457936277;0.45387431222219377;0.5887076849600436;0.577916312377587;0.7492040994719918;0.6696401004093879;0.7912198463345806;0.583662118430703;0.5923978164680402;0.5719288047394909;0.6873280694647041;0.6872839636661742;0.49210586956510205;0.6095419279731615;0.5731614375988134;0.546552787870066;0.6355025629015167;0.6206368548300287;0.06815324657501329;0.04008521319247159;0.038445010368031135;0.08055604014330361;0.06216364852037646;0.016383230817431566;0.0051544684759285775;0.01359890064060774;0.023854951890885358;0.006840960658733735;0.0931649365182662;0.09512446161670544;0.012627680664113605;0.31889006143696547;0.06766427386793879;0.06484091549728614;0.09875546532375805;0.15514159821340082;0.013364353047885101;0.052842657814636;0.03183684793236704;0.09628526348491032;0.0007296980383794654;0.007174836013916216;0.06774452971915552;0.09613208158027112;0.3804341635929154;0.4459961338195583;0.31498222785927993;0.05893461149749481;0.004946846749626252;0.013337168050884852;0.08027953919119697;0.027867475443062808;0.017486092317409153;0.18733795688079588;0.004378797825582885;0.09742349770943343;0.07148263652297533;0.02884972169891081;0.007134532552732186;0.044570142571914426;0.03211438453213335;0.23930842636144517;0.12693174826368123;0.022467923809336553;0.013716415019589295;0.31278826240541563;0.0013750824892105557;0.01153631011398586;0.06789090916880912;0.1274343185688515;0.028670831450243812;0.06934235812252426;0.014036871445269593;0.058577738165180575;0.05041470629263616;0.05969676381328231;0.018155196981192785;0.016208790779615442;0.027130586156344744;0.004513148135954824;0.09220219958336105;0.042480803267736664;0.06954979700389724;0.025932338162743207;0.16144649059625024;0.01396338397322764;0.012738015903856257;0.0026305407448293247;0.023327180192859058;0.003234311335141919;0.0;0.0008122682113271795;0.07473139611350646;0.16558395897182576;0.24280463997747512;0.02972643099159835;0.0512879527718175;0.010418485842571278;0.010336878415079877;0.07475369121438617;0.043927124154991386;0.13839734414274962;0.08938492301608668;0.01330824309903853;0.030654393310914536;0.006652466846070882;0.019725767072127604;0.061421887054126253;0.016912742623703878;0.19030259077410663;0.031088853483756368;0.027636250693643016;0.02363110485401068;0.07066690593631668;0.05148058631608433;0.021455776848108763;0.21010830724360874;0.2748354412554342;0.29933095084463657;0.3944240722931626;0.04227469301638072;0.0025752811959521347;0.013049171333861355;0.006778597180516994;0.01425906701326048;0.005208865536572311;0.10736445508837043;0.0541440518921169;0.0007998196310349542;0.001699158077934627;0.006134230740040231;0.06680473685554712;0.09253511436889025;0.08566365355007641;0.001741689801599054;0.015092139418496795;0.002645545369413359;0.025108204835095477;0.09107610076021809;0.031786766979973215;0.08424137139564998;0.10027329627383963;0.10883947941437183;0.01343676042150983;0.003734933167768671;0.008604778019139073;0.015014834047185103;0.030270145513976388;0.026165484432258773;0.0121486188349884;0.03647887572430332;0.25284323586533275;0.003617962817016416;0.005953318223042929;0.059495247510094225;0.013538963691575088;0.10925318502657641;0.0770528503612092;0.04602031916638392;0.002209110550305595;0.2559726855026937;0.29584545494707765;0.09972114626604418;0.10000553772423125
+2,4,4'-Trichlorobiphenyl;0.5931171885581866;0.5945461032029332;0.6048885790495694;0.6068153265724525;0.6127932751238739;0.6323585696891144;0.33062071066187754;0.6050522970828118;0.603218885631901;0.6129977861366398;0.2330817409986578;0.6492499166783938;0.36063692812867465;0.6034107022973109;0.5982951884875584;0.568532021020942;0.6186359380024592;0.6113228533663051;0.5920794845641496;0.6050948336650305;0.6015174257076953;0.6084607637970894;0.6066384436768575;0.619889053306915;0.6235377962163431;0.009300716260351907;0.2808447932817331;0.2012804223020706;0.1482006440740087;0.1549142110297011;0.08701857034628882;0.6283452423664847;0.36486734487654887;0.46398258604190307;0.8787149443760996;0.6039518740937053;0.19816771020398827;0.1218457339060619;0.008586097393374636;0.8279229731473718;0.5716610661254199;0.9951902592723796;0.4945283904309191;0.006500342959948247;0.023528306369681305;0.0206570849514233;0.022591563794363098;0.02107633644667259;0.021550094532135924;0.843658300977175;0.7714835525843002;0.6024082584528908;0.004152384581444912;0.03025712093111816;0.7311916224683636;1.0;0.8559718839087836;0.9143762398845994;0.7821753035862551;0.019863487237866153;0.6633133766858577;0.8840183628676052;0.9678205079738225;0.9659580565475268;0.8321500969648936;0.899573586175335;0.9074825160526147;0.804934910931884;0.7965713512712267;0.8003426704265564;0.8062102408672631;0.6810502627603972;0.03625738032314942;0.02647428540752776;0.008030956157277115;0.00912735335391476;0.03623345732798134;0.03686331657076888;0.0013695668821701156;0.015578841545203462;0.02004397121152861;0.020224612260512843;0.01579332286435047;0.016157019885316322;0.01544062665477857;0.003573152561416993;0.02377539560806079;0.026458460544760795;0.010951830182135677;0.019706538280827232;0.0034619220141183385;0.0006613422502292045;0.005284574964005949;0.0024743509358329486;0.0034687415062328655;0.03670778078560853;0.015983677373332266;0.01126648208090607;0.0067013532495121325;0.01392614446033033;0.023883225689307588;0.008473752631385674;0.012541342084340426;0.02639813151054889;0.024301834870122854;0.7488861236081884;0.5501296021643156;0.6275426166611059;0.6357901237429072;0.758224915511902;0.7991852900355765;0.8009810826465104;0.6670973065209891;0.669016597285746;0.7218375705472734;0.096771593152303;0.09556619140576575;0.1253001986581744;0.5642216658684791;0.19435267737664227;0.041297760749965134;0.11677194930127525;0.5752944504492371;0.012608391526746742;0.002010525094945975;0.009184994894971772;0.0042973687290983;0.037570723702491836;0.04011575961392279;0.027990326131374473;0.040520273008916065;0.00100212246587229;0.1027972105581543;0.023297189253703873;0.6164171411509679;0.005529632093079835;0.021511756028440035;0.0020234753055176045;0.4434348993743604;0.5083633674169279;0.20075075849001217;0.4069736552492941;0.06263641023921791;0.15564439889181528;0.3208659335484515;0.03163169649715707;0.012118498230604737;0.016877388791469286;0.0555095727355122;0.07803707292278932;0.2798075619053385;0.037862698426994155;0.03214558235360686;0.004420403204619023;0.3856379385154958;0.21960709905299203;0.23790127872636255;0.07710553285734499;0.11401720481234304;0.006136276361638466;0.10497925226931859;0.1892836514502975;0.008097106030937912;0.03889993359644376;0.05259486904282189;0.04147257764037648;0.0240916487221649;0.038641378191230806;0.05519798313408915;0.09518567924864424;0.16475799621422513;0.11090252311956436;0.00492093392946906;0.010675471727310001;0.029062494484467846;0.07878660741918969;0.022127022536528953;0.025981081848562026;0.22304666470278198;0.47554089490408524;0.4647321255892495;0.0023116391941073572;0.2201918235737721;0.5609835393346716;0.018148746701887496;0.028916855195837757;0.03306954183848963;0.021141702794883588;0.3346869243496633;0.4289303148038795;0.4799305606929113;0.46597333709068633;0.2109739700012919;0.45551843051223884;0.5637494505094649;0.4027229143190301;0.39119544878593676;0.412103433467285;0.3104981026188483;0.23679490167616873;0.4493250924878277;0.2551634163943724;0.3705426689065445;0.4379287554898228;0.11525525227348452;0.6213120569692518;0.43664755127654803;0.10055860161706474;0.0018260226829660657;0.09372743502594091;0.2670988364176832;0.44863405469586093;0.22465919466267995;0.17657033395157323;0.04283369347624275;0.3108106118871126;0.31755026057022323;0.0212853105222064;0.023404015555559793;0.020883908391234746;0.09331368631681981;0.021337518027424573;0.03842406882770606;0.6889454557734991;0.9650088961051814;0.8949755677386353;0.9963292654514333;0.8800272055289117;0.9642800374885027;0.660238641402876;0.6779983390989578;0.640949273957159;0.8141801946180933;0.9074392748565718;0.46710474099785965;0.7226488418043404;0.5097937886427915;0.4996329242101854;0.5846725103434103;0.7468690615128998;0.1494553936316081;0.08983724878692602;0.13633236218502917;0.023802590401639172;0.07345461135636114;0.0;0.0016653137394596824;0.01968775115873717;0.02069577691776014;0.03283733496264133;0.15284783691551057;0.1552430398411666;0.013909337216763167;0.5733592523572087;0.03744763915832926;0.012796966837859577;0.013046233240253434;0.3310104857583112;0.009595185773464505;0.11611254303785759;0.008181966077713685;0.16814874000476324;0.031273624540384744;0.0014889032353843311;0.10934670677925733;0.021645744009503202;0.36357868924059067;0.45273814167006315;0.3592343502396999;0.10641783374577317;0.04661958545575298;0.07498085346144802;0.16579915432440978;0.02078698526555002;0.031677462262895285;0.25012634740322626;0.012136506894687888;0.02778969071562476;0.008448358732980788;0.059707548638411864;0.13566963869347243;0.10958588171384573;0.008218925122153036;0.4817459896408987;0.01431783282148718;0.00947561090850711;0.070136176338212;0.3789519174242983;0.0004728985238040924;0.024520515745423677;0.06461761623382266;0.13191501778896533;0.06262542829777787;0.02046358027999133;8.557261176572812e-05;0.12812095588236208;0.11234643486573075;0.015035593620997269;0.07504605369201957;0.03321936780050259;0.02012486528165899;0.006252362030231111;0.1942484040059217;0.04850791525021492;0.15477334329893394;0.02458014169049828;0.5209279889275525;0.010296874431148297;0.08290749792194696;0.2277135949456317;0.03784961628614637;0.030855662748261112;0.000472562983051594;0.0007840121749506851;0.0797834638605068;0.2414513375812445;0.5477845564298006;0.051571556430211725;0.09907352995277484;0.0036123584664106783;0.009549214615669823;0.11629191224551526;0.01854493029473045;0.2554315188674561;0.13394438395989552;0.007662710354028827;0.016375349746196182;0.051946506918920304;0.0045391950300716355;0.01422669582783105;0.007590759414992114;0.37305895750227736;0.05218729266198294;0.046692360378149;0.0032212829080775903;0.1470986946033047;0.04943901239571181;0.023534237018469687;0.43610667582763657;0.5434960013064649;0.5900636690333005;0.44953839209469587;0.1193261041767471;0.002394511108966919;0.02489148250444886;0.002300797758246982;0.009396991296720985;0.021063861965223727;0.022725769262944416;0.006647387942780911;0.0021478272517379293;0.0014923669141864316;0.014199046399074815;0.03206591592210221;0.09710893050168175;0.09090391285786348;0.008498257964715573;0.03703485202802708;0.017691722702505373;0.11168946186213262;0.1294718582859057;0.012133344778440063;0.04631745228381144;0.04230978091142501;0.05255963984722755;0.009955299343020379;0.028487092249430798;0.016196402943336033;0.015804604097298666;0.03524991058068079;0.10176368749279231;0.016231246932911298;0.03297615083205234;0.5695549255053928;0.007760356645846035;0.010113804621151763;0.08296396503029181;0.05001636062976924;0.15090353561568456;0.13963798709078573;0.051319518784314046;0.0;0.5305713571795823;0.5621723272474655;0.11751510586697847;0.12827101992989798
+2,2',4,5,5'-Pentachlorobiphenyl;0.288133423459747;0.28458269624575283;0.29011908954626187;0.2836044038721532;0.28731464574182347;0.287038452950047;0.1482857701021296;0.2878214539070866;0.28794149689581733;0.29412606129037155;0.13775948911278837;0.32457951026647414;0.17077299225460982;0.2886709044337848;0.28635924287500747;0.27175719118366076;0.29573878918541247;0.2932409904770465;0.28385710540569337;0.2900138123960287;0.28359416809521426;0.29492035073394596;0.2998920091664073;0.2975546430816556;0.30425831897310734;0.03665703121083287;0.1341580359509345;0.11168288851469087;0.07898064703763645;0.08318914735663947;0.05019978922432259;0.6046099141444329;0.23946610981027416;0.21645233287611;0.7859341372467717;0.29620532415304496;0.13082398860127886;0.06938083070806135;0.004149723718094134;0.6497973594298938;0.8860299821154373;0.8666786230410216;0.6891619961978475;0.01365581997717886;0.06511306470446475;0.0541568755765035;0.05881906579229678;0.058739595101261324;0.05566799215776301;0.7757762015813332;0.8374840548925266;0.7903786061258159;0.005752062616506403;0.01085102490285342;0.652097225562556;0.8559718839087836;1.0;0.9283133398469304;0.9724863717529096;0.13219702355679308;0.9231954513031342;0.966588206428138;0.9319317315016912;0.9437617366488769;0.9913635917494986;0.9500102175180664;0.9269959809441396;0.950911171968561;0.9610541298737542;0.9492671675288687;0.9345930939488588;0.8976442010267905;0.018366757325745404;0.032687952094613046;0.051608920116415095;0.05664762325310758;0.0069496117631974675;0.0074371247996995815;0.0006170420734972197;0.008506670934391608;0.06010846322718772;0.05783556338659591;0.012533571431209103;0.013082147537697925;0.030078997550805963;0.021212575959142593;0.02130118129337621;0.02150027507201053;0.014362341336069784;0.10525525451743364;0.0029958879980668154;0.010687949720746626;0.04025007742777267;0.05831962635197494;0.061995018795188;0.031043563291393187;0.023874303872326277;0.022962140142318514;0.045705036335560036;0.04890977249439734;0.054505370413807944;0.0472864758121847;0.05033267577967764;0.016641973198291162;0.041681318278850674;0.5839429237712149;0.3860608550359837;0.4537218616537222;0.4445668977348077;0.5181387420842742;0.5807718972953365;0.6137974658783373;0.4221533999642979;0.4251878220188929;0.558810857135359;0.06020557307255452;0.059928118871431256;0.07080484804716909;0.3714657306026396;0.3675624599214373;0.06731880332165058;0.07069500408362128;0.3961630351478442;0.019329724430575457;0.00795155111102464;0.017301563169662464;0.012972962889819629;0.013209498131744709;0.017794169289777652;0.009290900487375358;0.042883186457646244;0.010438733683747098;0.05484807978991227;0.05049665456939744;0.29326342386140836;0.030672457004615825;0.025862621584329976;0.01976851424252415;0.28869145427555404;0.33572822433351046;0.16712896335333477;0.2260093614659566;0.06162454621875093;0.1212385875430642;0.24590886039042895;0.015430791367956562;0.0075540157492461546;0.01051879131329567;0.025786323738965323;0.0473535698685578;0.13288904140302044;0.03169057754143114;0.009851040548459764;0.007507741521401749;0.2248069369560759;0.13562348598330382;0.1209786289616061;0.04391152221846135;0.05212966732291187;0.018049070107608672;0.05900660092713163;0.1418825827385518;0.00949067912176149;0.0725065059893777;0.16686783767355465;0.08965535497498929;0.07908335994165426;0.1563538005586432;0.16565938026305008;0.09358044028210355;0.19899344550702178;0.09339413734187337;0.013311214160349739;0.016684432731320097;0.012398725316014922;0.03747186835117619;0.016537721625413816;0.015160999618483752;0.10469343688381252;0.22939849474730595;0.22478602914080248;0.0;0.10825891212331759;0.273267677241703;0.020115988174615893;0.02321566224550872;0.019454640728903985;0.015212099081170188;0.15825602304500389;0.20455712251462768;0.23987964409415263;0.25075728664127206;0.13803042116452013;0.2156642301500409;0.35638280799186806;0.19105232693414936;0.1854136424930426;0.2018407543677525;0.16319795205896667;0.12262453287527958;0.21812064460365568;0.12568725886028947;0.18019001578819896;0.2145054013655985;0.0801297644056353;0.29711145696331165;0.27125555165360066;0.05429904550074771;0.005617075376155713;0.035517861262881256;0.07706843198877937;0.24789202389647294;0.14129078993560318;0.12195127861266637;0.0983439115212121;0.1833095671041038;0.20336506042909652;0.02740449296376249;0.0013226939570817101;0.014481981496127014;0.05331142863707581;0.015805304280815634;0.030108943672678648;0.4064008051659495;0.7104482324810765;0.8450526909856656;0.8506602430113652;0.955477271778348;0.8882645050695611;0.918707651795175;0.9173132415279888;0.9127428626324069;0.9908631754194188;0.9221975864746775;0.7496559539856111;0.9568860514495587;0.5084675935804399;0.476338807570941;0.5686453511911864;0.9663421347966987;0.07908866610231409;0.025093272196293252;0.016404810235595837;0.028600653572635748;0.07065769678183884;0.0005342398080299553;0.07091777864103352;0.07997751676975666;0.07333860659906719;0.04783470204391334;0.08134613338377102;0.08299418203532641;0.03461514928826989;0.3092650979460883;0.08253277546415401;0.008721834767899042;0.011269312731163921;0.19436702266419723;0.014667794847404235;0.05742030027368951;0.025117895582286373;0.07999822223148052;0.03761189616802079;0.007598969469346317;0.07259683180177125;0.03104604101281619;0.24329131980086802;0.3070793497542138;0.24027167162339502;0.04810014682333064;0.01682268489365394;0.008766805822164037;0.10774710433887824;0.024346508916534806;0.01735713584392084;0.10985775810150593;0.00884355083879326;0.013016495291185938;0.015472207804828627;0.002137207387957615;0.021793859365358506;0.053005605900451704;0.02485445705968908;0.2646087844310595;0.017253752352361217;0.028061053427118354;0.049424529495727045;0.26136689515118283;0.0012230725689139075;0.013711577029967295;0.07380709810800527;0.13904159134262742;0.03491854214986429;0.01258449763145368;0.00164072760934483;0.060585432499813116;0.05409317534740228;0.022835233373814417;0.026024681783914434;0.010292116487797511;0.02217259430184349;0.010089139383091954;0.09456315385364884;0.019954194937048263;0.07657146761996603;0.01652400144990149;0.5723942124855053;0.04275596321948756;0.01655700218040676;0.006902028563393191;0.035202599068607364;0.005059684735710708;0.0007189811061092413;0.0011405277705014384;0.05259315531657341;0.14550200460786097;0.31025558756743093;0.020721286161368768;0.050739987481180374;0.01039090462946715;0.01784177247035223;0.055135946139124675;0.009943073541496967;0.1332294473694335;0.06425048741732105;0.005874083630537165;0.024967744301681825;0.022588083484161078;0.007679968666291474;0.04603989019417991;0.011677195822607258;0.2760353622928033;0.022932843961806337;0.020350072461229527;0.003836811420663002;0.08723254594947248;0.049252874486726064;0.03648619266364532;0.21780346421294622;0.2871674840758112;0.30509773324980816;0.3945668922439945;0.07168053921636401;0.0;0.008516101975863936;0.02959754393093509;0.02581702635819575;0.012824635430860255;0.013495591873988329;0.009108035895618366;0.004203107041842701;0.0017855896993059237;0.004654557671012329;0.019232258523620552;0.045180135282552956;0.09952048191661668;0.005039947555565854;0.01949897652371229;0.028727785639781088;0.06464188310554081;0.09439906520300372;0.022361585718835533;0.15187340526374066;0.023454227246133965;0.013925438539719066;0.017119672908932508;0.03356921369089491;0.037603103793482674;0.03788663665608275;0.04055504144694338;0.08983426750050003;0.022320963178077014;0.03674439646921643;0.2834918018745931;0.004122388163829048;0.004927211330584985;0.024477483707750734;0.01612769454720984;0.08059010329280335;0.09256214658477743;0.035856508913389325;0.00026327594005429785;0.26843954246390694;0.2630388345052431;0.07959078886700167;0.0876720130188127
+2,3',4,4',5-Pentachlorobiphenyl;0.4032913627679612;0.40075146042577797;0.40715406697664436;0.3992605205778383;0.40429781203927534;0.4022948156150081;0.20863147524698447;0.40530882917530775;0.40531144993289375;0.41306242487812384;0.1539378327638139;0.4421140141705876;0.23942856078097355;0.4060632766238281;0.4030117657534651;0.38262247465485505;0.4166147285768075;0.4129788857988529;0.3994435853623431;0.4080997144633938;0.40059650263073354;0.4138608485546174;0.4177963467359279;0.41886791344117474;0.42482262649565183;0.02482189719832296;0.18600003852866617;0.13596859574934336;0.1024471666538033;0.10991214220658449;0.06121480594074364;0.7481352553938664;0.30139662243094006;0.3033708825012879;0.8082896213102256;0.40370604533050863;0.14738029528734375;0.09374082130466749;0.006376291982182329;0.8274046417940667;0.7946487281233777;0.9069507094172364;0.7037442490200073;0.011599049166413607;0.04838135978246286;0.04083833004994177;0.04448196766127644;0.04443405576728624;0.042467259773099786;0.9117629674366509;0.9025308661456913;0.6241731571605602;0.00663043109357317;0.011082172992244451;0.6754818503773217;0.9143762398845994;0.9283133398469304;1.0;0.9360042135754955;0.11065033867726898;0.8453508894929015;0.8916546045350798;0.9718837463884302;0.965627854130964;0.8798398312275464;0.9950811838720558;0.9991964984489495;0.9584655899430885;0.9499456786092342;0.9572669427867369;0.9607714289108199;0.8820663409649885;0.01458295523357366;0.02699424722706862;0.03647036967980106;0.04039146442625506;0.004110014026536321;0.0046450418606668155;0.0005269759501173053;0.00922093049388796;0.048010076599203436;0.04635174662735603;0.009217877236134746;0.009816794248085983;0.02817630477063786;0.017564548954825305;0.021256804576030672;0.02152783172212655;0.01200647257921336;0.06704035212287492;0.0024822457708139076;0.00913979408627711;0.03300562077560051;0.047408488313993934;0.050493430686297136;0.026915265773893034;0.01569764382470655;0.019236411127551516;0.0383394343941773;0.04401187288947569;0.05008405596471414;0.037635091597463574;0.04003994808681057;0.017264012000487026;0.037522648479346096;0.7262625546187097;0.4824781901919139;0.5754335520819797;0.5673684260527176;0.6658809013745786;0.7431301315092695;0.7792363602378124;0.5532921375349253;0.5432358752656475;0.6407964723574692;0.08065187398168944;0.08347404278512816;0.08767668947500563;0.48578387115001737;0.21130577232050063;0.04858347876682548;0.10324385303322375;0.5188552831764411;0.014258086613804823;0.005997417490959773;0.013327703308684723;0.010357510566209078;0.009944037902017576;0.016335783348284023;0.007439712283079185;0.038605814878284836;0.007201299676062284;0.06818170345687719;0.019403357724209997;0.4112447048929593;0.019790315914694042;0.02428334092982082;0.017061143323502333;0.30065827334765666;0.3586000522476537;0.15964034578285302;0.27643993118494137;0.0554670942278139;0.10471008175085326;0.22592556704080774;0.02133117644711296;0.007710006377464255;0.013136653233685904;0.03417771030053367;0.03836223307176427;0.18696644513311564;0.019478753271841467;0.010295131948223037;0.003835876790047965;0.2580019923449998;0.1482391630752426;0.16275475127902295;0.05554676111819898;0.0671667075932556;0.014093337215048086;0.07086312047199196;0.07650729017370589;0.007986280704612814;0.05092004310265651;0.057866370299635886;0.04828512014630633;0.056043693507339176;0.019044473135844297;0.03308487401215531;0.05789488629034812;0.1426206581045489;0.08941326011499495;0.006346844265675615;0.014422968468655128;0.012323497392416144;0.0527200033188929;0.013230245623660044;0.009959184143443251;0.14636226139456832;0.32156674833942844;0.3147270604211339;0.0;0.15079172408957886;0.3830524456297695;0.01619289075103478;0.006961830295039479;0.017206383621900093;0.012431979677723675;0.2216330389778851;0.2840742978431662;0.3248746338128515;0.3091398532229181;0.16035437605598865;0.30260952500448257;0.4713037093083508;0.2687456961415425;0.2609605651078627;0.27771621126825113;0.21003537264855668;0.1619454839190578;0.3018476120019922;0.17212563198614508;0.2479262008690015;0.2989217003610463;0.08073841581127968;0.41768678793781283;0.295548791542326;0.0636667257550845;0.004504599800805332;0.019170574861746635;0.04609612891972711;0.32228503234668426;0.1788502511124994;0.13463562330616557;0.06342425412798262;0.2446303069847418;0.25238141141762693;0.014743717813409494;0.0016626372133093515;0.007882611426386755;0.06700163270954167;0.004517225996041032;0.030832173286344813;0.5098678744701379;0.7838547226037884;0.8055037992572927;0.913510767187961;0.8884049963052527;0.9777457582688477;0.8331821331746253;0.8494501880300763;0.823348962964634;0.9332588069045277;0.9967062400321913;0.6914579659014737;0.8860452862041096;0.6121019499657364;0.5764024999566626;0.6780033203069947;0.9105417765215863;0.10046967603727326;0.030996929951787818;0.017936536834348763;0.02250377357768103;0.07343545849932334;0.0004721171208448906;0.05716709106132342;0.06826891042625081;0.06420319073311605;0.041628929599069456;0.11033203626496683;0.11251277529787977;0.02747753812316406;0.41437379579549;0.048892282541293686;0.010451816314585888;0.009792386865213148;0.2407754279345547;0.011815342401052689;0.07817250626590451;0.015661339280819645;0.10224027698838822;0.02980629028038087;0.0006412406815526325;0.07577939730081354;0.017878222170139315;0.29881377683202387;0.40009680764168115;0.2959587892052891;0.0651564366828853;0.01773665076668593;0.01095983567659062;0.1295114412916919;0.018652423899997557;0.018712871197015066;0.15330901110722045;0.008373255248864663;0.005487771117771439;0.008000072058438543;0.001590473040814347;0.01646195068213098;0.05329219269968818;0.015451419257567347;0.3454976356407904;0.01014386949514286;0.024331132588355703;0.04148006270291755;0.3200611256471606;0.0010332529756399904;0.014423462174665684;0.04619433617019073;0.10198959601037683;0.04577868916216992;0.011315090202150142;0.0010180748231885344;0.0854761211956493;0.075495809898946;0.01828409703073018;0.021773330786523114;0.008593336194298813;0.011087264024606244;0.0076929245748392295;0.12813923193229765;0.02646999145026487;0.10595807988173044;0.014190656130492377;0.4052367308128432;0.03073262151179125;0.012244990585815466;0.0020458008388919017;0.021376594469971737;0.003186927334342712;0.0006111420294587681;0.0008858430972636175;0.06153517071102767;0.18588762468834316;0.40227653051690043;0.025056881436660627;0.06744481301790933;0.0058368712619248425;0.016413369333701827;0.0714806286065652;0.011613654919950157;0.18214368073680545;0.08592039887553941;0.005656217763519063;0.02398786433376235;0.01647286422878768;0.004773144465667812;0.02771768522722886;0.008528423794979144;0.32542358399591514;0.03091690729557088;0.027276680325345467;0.00353832077776714;0.11019485978722089;0.04070975488237292;0.03618201362866228;0.30002700850620945;0.3823794160703598;0.40908414602991117;0.37745030357564796;0.0833065248622396;0.0;0.004308746817448559;0.00278269135549401;0.0034175304891121473;0.010735630824548755;0.01133765091004464;0.007171933449129223;0.00360817657712879;0.0011089973770675968;0.003714858298180849;0.013267530641296946;0.04930707127799342;0.08252908668232768;0.003581345639489655;0.02118385740831657;0.021496479046810017;0.043768384557225565;0.09911120480594014;0.019644488036892914;0.01172357125863544;0.01768009285824384;0.011457623659045808;0.014169513191536216;0.023757411952760946;0.025956455780492615;0.026156532944981267;0.03633238675105078;0.07809539333772227;0.018396211753349632;0.03230941483482189;0.3863452086786582;0.005529507314394485;0.006859824699673634;0.019566119208455916;0.015504988647966348;0.10509228405776416;0.10269423893764164;0.034498251656933765;0.000296623627469427;0.3509961392552961;0.35114358111769717;0.08734439784967887;0.09373104757834806
+2,2',3,4,4',5'-Hexachlorobiphenyl;0.2661299247011747;0.26683271757149785;0.26828528485826797;0.26348063859362547;0.267297704540851;0.2648799881154573;0.1379578906279715;0.26739839701221707;0.267615031373216;0.2730198683109978;0.12659082951215148;0.3001224517710676;0.15904632601335256;0.2696218725519532;0.2669268645444901;0.25334459591469766;0.27690539593618174;0.2750392543845862;0.26596433126290214;0.27202494737190885;0.26439717127154644;0.275262604052311;0.2808126037427517;0.27788514538578846;0.2815776211235803;0.02119010406585201;0.12486169093068053;0.10254336266641426;0.07068734809229102;0.07302322689917445;0.050129348916416794;0.6433638732306527;0.23195840329000544;0.2012022383916757;0.7109740101673035;0.2713190432831489;0.09561886234122828;0.06620326633049001;0.005372182252334789;0.6591285708613703;0.9226322910177399;0.7944977490590655;0.7707254962406586;0.011421737336018476;0.07484789142382031;0.06639301831796117;0.07227214243359793;0.07274479243079847;0.07108492203410222;0.7969240890822287;0.8654165989754548;0.7281383783250135;0.0007035630027838437;0.0017487167515047356;0.6319008182271809;0.7821753035862551;0.9724863717529096;0.9360042135754955;1.0;0.9928165519458829;0.9613581196404121;0.8115340440375968;0.8674825238288264;0.8575949195950189;0.9538036977387352;0.9530893968750946;0.9377299993674836;0.9885808009730557;0.9878305046532654;0.9874633076072687;0.9715710573249371;0.9539127835848634;0.01014791247559861;0.03557447581598865;0.006221478151224753;0.024007848666949303;0.004053006128979321;0.0036091627405172347;0.001827747032203772;0.01105434100757736;0.03634858574715631;0.03102352552667033;0.009352349937166063;0.00997980176812142;0.018035833190399683;0.011196789079226496;0.015767323235617563;0.016127264812177525;0.01654469876540396;0.14358068090976936;0.00676185333122023;0.005239681398337347;0.014675822061710562;0.036696777093171505;0.03615048698961164;0.01936526711067393;0.014856480227383347;0.010267196543580246;0.019742972090691764;0.020725113875001634;0.02978747329527391;0.0136136287330378;0.01629726449034867;0.0122122374788279;0.01653291041436279;0.5958019626864541;0.4107299785966515;0.45412145538855614;0.44607175247829134;0.5107408236098405;0.5816311549624957;0.6238672485886788;0.41092665463901;0.4022449458240214;0.5127744489204769;0.07838127947442387;0.06344960946566096;0.0654871239801699;0.3630432060051239;0.3043299376159752;0.17600849117639544;0.07924847752562086;0.39332865002895984;0.02254790300437842;0.01615184788525383;0.01852908403373974;0.016821455947332073;0.005798452272386845;0.014882464520674722;0.004747686221687097;0.03831336537924357;0.00513176690525772;0.052383669403535275;0.044324197919252316;0.27824285426814854;0.02969443534861326;0.01772664179347472;0.008995235411029989;0.24893640401111233;0.3000710036977334;0.15229673057571833;0.21011440411395763;0.04313513848820273;0.11729134181004235;0.21373810653431957;0.01609026605535167;0.008356729495594191;0.013011292243792966;0.02213473752063918;0.03363536348048438;0.122964678939586;0.01954432927948231;0.008613839330711024;0.005988284868606551;0.21054533751281582;0.11596213922654645;0.10259501324400767;0.03596122230517992;0.04303027272938159;0.004996142148441353;0.04706362911799036;0.07303271500574933;0.007892827232157833;0.07472806361180839;0.11736952900219304;0.05031633604309122;0.10713987409039898;0.10575707968288732;0.11575545374902108;0.06206952200168564;0.1855379821617603;0.08475163025333984;0.0022269092068025733;0.007858304118599797;0.0022103449154746912;0.035534094097449;0.000532712413754856;0.006464285881628214;0.0981525158943658;0.21550106765828125;0.21156866189295045;5.433303473182681e-05;0.10183180958314879;0.25564729221018884;0.010292502053325745;0.0258620787201082;0.007953504933071228;0.0;0.14750412943226135;0.1907711060297345;0.22211455748067205;0.23497334195996084;0.12102226808796664;0.20038021935351266;0.340815674961463;0.17749775806974774;0.17232158219321342;0.18067823592412438;0.14439579059632213;0.10621173975466186;0.19765325143134468;0.11191097925252327;0.16176738308245545;0.19956378159728935;0.06577910881323586;0.27553083584726584;0.22936733877893156;0.053994014333378054;0.004596810504252307;0.02943907620439814;0.08187664579483721;0.23917901411880185;0.13911659170279927;0.08704650738569898;0.10535428223955237;0.17242439451313676;0.17500774041374478;0.028322163520960206;0.007530249935834152;0.005902311436763687;0.05561978239318882;0.02201711839825369;0.028734104880050907;0.37126810727559056;0.6402477617035527;0.7728555253287053;0.7718349804303534;0.8189698128159982;0.8719596104760251;0.9516925859347917;0.9585746464025873;0.9458925428605985;0.9616190832129207;0.9280796433910017;0.8143835763380936;0.971925990444525;0.5613028613547577;0.5169211614527821;0.6105479636051095;0.9886643092443437;0.06429217441613856;0.022139995085848522;0.016224604706354513;0.02116534350516249;0.07157164304472302;0.0009390622895446447;0.03063760041416625;0.03838086926412479;0.032832892489238874;0.03909020414832118;0.07656524348842346;0.07795767046909026;0.03123796283978826;0.28525575184124025;0.061137390267633096;0.008005391995332857;0.007647722482331426;0.1841687138941347;0.015381619786396359;0.052613821113202376;0.02037753008431977;0.06367058352160818;0.04084465653463164;0.015187575569045935;0.061692888270051705;0.03186187865769075;0.2368072574225837;0.30678336415232815;0.22313242609929138;0.044813006294252396;0.005563482361848032;0.013153863554159699;0.07535513916588207;0.014063878220226592;0.013858468746717154;0.10477752521033247;0.008843856951677326;0.015064867274305851;0.01300672191606966;0.0029774292082330868;0.0028346365403617868;0.08584680849027793;0.020587264972142697;0.22144764662988634;0.01877952258099845;0.02178377121920139;0.005843496539092217;0.24595200991974134;0.010566443711523706;0.009029208487838402;0.0555046500401805;0.10958027615811443;0.05476596658733202;0.010347225525391314;0.0018931370170194581;0.05629528602813436;0.05174354512478457;0.01971371160449217;0.016735690896339528;0.01003468161554636;0.019748568901053063;0.0063560581427618236;0.08670696592333116;0.019244613045727985;0.06977904684471734;0.010658901034078561;0.4535996103242014;0.024783488783733775;0.021322413903839713;0.001362099336986079;0.0370822199267444;0.00530136866067545;0.00062957841353958;0.0011402740627357833;0.04678153058525391;0.13892595855818554;0.2846821012371893;0.018241914684599136;0.04551992921378374;0.011463608997377417;0.03843985108552905;0.05036099221118894;0.010666976524188576;0.1461926548596063;0.06289355614138488;0.0056583109217467386;0.009926447559016826;0.0389784761000563;0.008107425831946668;0.023690217438218468;0.015334522853745461;0.17372579222247614;0.02184163811874205;0.019415739844946683;0.003993804427006248;0.09680585931816195;0.054138587192003054;0.028584609038116885;0.20164100172544921;0.269384288070987;0.27820060001460406;0.34627571871899865;0.04469759546649793;0.0006615315323846755;0.013954451213857343;0.014126601836119685;0.015472737297636381;0.015719076749764586;0.017656593589313294;0.005493463238179519;0.0019613969451388537;0.0012460615768077688;0.001842399490265869;0.012398961028388302;0.04262461268040838;0.08377754476063608;0.005990320346949926;0.0191899492087403;0.023742899129852498;0.03757053621694364;0.07927595036757394;0.026727102544681365;0.10053666279403052;0.009471164671270044;0.00526133035396048;0.006433057558676912;0.011123244318203608;0.006769902947011774;0.008045221225792923;0.030164906927932042;0.13404359232140986;0.011542582994855015;0.024413950369887784;0.2604339542432226;0.0038546184571828846;0.00477368486500139;0.01589703681431655;0.006107798813005707;0.06913039889978875;0.0837565252030091;0.031153102001712427;0.0009105517470197657;0.2366803194320369;0.23708356292096422;0.06755561447404941;0.07523356870927506
+2,2',4,4',5,5'-Hexachlorobiphenyl;0.07708698750351145;0.027802156455451355;0.03064523170548068;0.01362469398597937;0.013014922953303166;0.010011200551174736;0.026726472543024262;0.014284512730163262;0.014933727875486923;0.025200448778604518;0.017932684047188598;0.024500604441470737;0.008685974081245388;0.017960299066821863;0.022308498177888436;0.032068360820912085;0.007662952808212329;0.018863556373654982;0.027422388078780356;0.02355770563071769;0.015702240869878623;0.023388856922805103;0.013851740384686749;0.014471977806466236;0.02885149097292234;0.023554355778271068;0.01763879279987966;0.1510827397656533;0.05868728418372831;0.08682353220248133;0.012074840403633828;0.10381467051711604;0.068427796663582;0.020156735153701942;0.6051248398068788;0.011850268558689595;0.051030624541728575;0.008130428032439192;0.0016264667809551576;0.008124136270310124;0.12627337039696288;0.024827537701321643;0.30609111059457944;0.0227717752935583;0.08540861689857684;0.0754544099302762;0.0824508512054655;0.08224055734112229;0.0806927068585518;0.04610813715835212;0.01657124994131812;0.005488490841080576;0.009427454194013682;0.058441097752361636;0.03289846641726079;0.019863487237866153;0.13219702355679308;0.11065033867726898;0.9928165519458829;1.0;0.14426090228247276;0.3843328477763783;0.44903691357168213;0.44447932238983373;0.1515889091904264;0.10641743096496474;0.1123032690548597;0.9703391564054669;0.9721349215993305;0.9682661148703354;0.9458301694484221;0.09273430617727399;0.02202215829924888;0.017386624820113477;0.0072153800581414825;0.04108104250414898;0.01549878637770508;0.01088679144147789;0.008594958013780088;0.009187831393603204;0.07240946591159182;0.07245781524713349;0.010429989851363808;0.010854914492122378;0.015179432164086704;0.013353725410368595;0.013083550634905752;0.012681848360090854;0.020316882813780086;0.12561976074513778;0.006662164280699553;0.00624034125496675;0.026012574764283952;0.040384563777814714;0.04045635927958397;0.026674789605416804;0.014004269896871663;0.014747338856594435;0.03077058355671864;0.022911797296775897;0.03385619768372789;0.019515007794794068;0.022237908679260714;0.011761049644192764;0.01639987543605373;0.09654554277234503;0.121695954229102;0.08612436603419633;0.07193098860880363;0.019567129928502732;0.01882784965797124;0.014973925414129653;0.024539019028493453;0.055018773013572074;0.22852065585818115;0.24426346652754014;0.2691433982755393;0.12786068425261554;0.11600692458298589;0.20368183047706429;0.17725719600149478;0.043965844334419975;0.17065161019986103;0.025090593506410918;0.015261156671514236;0.028232256139181764;0.01784181120444711;0.08535666071751769;0.009365741993389633;0.005775366450259118;0.03350427565798031;0.013037747463708605;0.004167991931172496;0.06530813935436015;0.03993429788024609;0.39141460965496433;0.020121727321595;0.009899185349000047;0.04802948595633258;0.053235308484289375;0.06905419440140455;0.037132590482896494;0.12463397907758444;0.0069887085471622215;0.07380677429555692;0.021056084675656637;0.039549066910246435;0.006308333660843742;0.03931772077870149;0.047353056669038156;0.03333030082820868;0.12859346149682896;0.013723716661169706;0.004422021180312101;0.009794206566120898;0.08409923886429321;0.004817508399586848;0.0014575212076753438;0.0019829550461378897;0.049011683742436384;0.03701134347799936;0.19900942846794434;0.01142848475951197;0.021800838074838895;0.07336079389149593;0.052199248232368795;0.054179799014910456;0.03128038708151597;0.03458474055974861;0.07285279614609465;0.13153077779660116;0.018571538286241782;0.009627267215166185;0.016208233213002958;0.06454479351552948;0.0014659204346341046;0.008255934865457133;0.06018850224470746;0.00247340986498387;0.0038665482922062384;0.005012308691694471;0.00039090558261041216;0.01866942691499998;0.0021577121609188434;0.014068395497605064;0.022136086402439536;0.046549562103332776;0.007426904449386752;0.00924786115747784;0.0045811183780562394;0.03546633292013858;0.002182560380542677;0.04041994330228335;0.002261877688669634;0.03242386169492089;0.0028132739467160656;0.002649781031713334;0.04810786202123583;0.053502242259344836;0.0441991790130057;0.057179340431888645;0.04851343751797271;0.0583193329970372;0.04828418276223919;0.04415818869430131;0.008667293008774616;0.07981625839132173;0.032324105054552965;0.05197798214559787;0.04957253777717457;0.22951467124164654;0.012566085222527557;0.0646874193030945;0.02870433487941397;0.0012809277475528886;0.21853381731862748;0.036379584125652016;0.008537952486902329;0.004004370783231675;0.009315019670531544;0.015947809485557077;0.021503435731099658;0.014311353714221386;0.005121439118428212;0.02030727638573879;0.025316043969682758;0.02152275830089437;0.39521878848671776;0.46525807719354095;0.12395239688594185;0.12348898502106596;0.14330208229809768;0.1460863868037238;0.1063375355574957;0.047318427146273774;0.9856465796434654;0.1513348734020396;0.16423115672273975;0.1615012170235894;0.9943530693133283;0.01240328988948579;0.009565191939240759;0.008227667386711799;0.017391649618841376;0.03249736657965708;0.0012096205096985388;0.034239678695172936;0.03764816764822157;0.04754737816406691;0.004066056510723956;0.00040087157435787904;0.00015040998470165052;0.04234615595585905;0.008303865270931516;0.018511729094190264;0.012103517021562638;0.010233463551943761;0.01019823258280492;0.017329741463360717;0.01324636621066034;0.0493484514206109;0.01616428984148061;0.04215882248731452;0.018110983911148088;0.00529684826260883;0.10783899443740752;0.03739497138884101;0.019944596187040007;0.0327451730969644;0.004231850876319787;0.0019238398551743845;0.008157958266598766;0.02704810655911015;0.016976713743750472;0.010562688917527515;0.02081341214122573;0.005283128323151667;0.01311328607833172;0.013550089457925907;0.058904643332225184;0.008385819643093165;0.0797375940532241;0.04976296735212957;0.041544665258408865;0.02681644094662107;0.018276545285055054;0.00824225016000691;0.002787134161037452;0.008671376615146048;0.0033449499601761233;0.035534664911092986;0.006033630059329438;0.038703753412213854;0.023982502146795395;0.0022023391284826015;0.006141376785881913;0.006479270201679575;0.03129174247761572;0.04080007974083013;0.023811266027708947;0.013316257137024745;0.008780892914686953;0.025421296066863976;0.0028668599658547805;0.005121746274021184;0.005958291886497194;0.009376580919848058;0.026616010738110426;0.022490824883419445;0.015987527714302962;0.006625382424457501;0.0067370551563677725;0.0005949391428006236;0.0011174518860103194;0.01990506701871434;0.01051612141773156;0.01993663179492698;0.005602035740869678;0.0038119196097227658;0.011634318384614891;0.04078780393090225;0.0886081698899416;0.0055386088852832065;0.03415584021613978;0.07552442092847271;0.1530464399069842;0.014800182342764262;0.019863367488144573;0.011895286153168828;0.023965274019837224;0.026821077359044123;0.03217995587282339;0.008756477305564178;0.008675426627755452;0.004196764059957205;0.043608091941651536;0.060473125728607025;0.02964072174235381;0.006687395975298852;0.014679592440878672;0.07247787304421012;0.10726668676147028;0.014359004034693286;0.001193333710461421;0.009282405436860475;0.014007829269197558;0.015630450396156965;0.01701493804507897;0.01812416257733841;0.009548385570868241;0.0802907667048619;0.0010684117393888683;0.24995795360290785;0.019439244538927952;0.014924483747240971;0.033817297985879916;0.0077593271703952985;0.0044119524035350945;0.026137180207408038;0.024699230191431675;0.021453091128148586;0.14075086211108429;0.006513342059251482;0.013141676676284646;0.006722226216550908;0.043305932206340346;0.013306346107623582;0.030981438125027985;0.009948899112537657;0.014222071098250397;0.10942007375130852;0.012657420014049675;0.013159561402057634;0.02558604177107126;0.00077318569754829;0.0004564514227562449;0.21356955485234627;0.0019515369563266284;0.016174589914289786;0.017579079318546905;0.002488571467905528;0.0077654445477911655;0.022769520223824665;0.015955107445805982;0.03997113383907275;0.037678890892377616
+2,2',3,4,4',5,5'-Heptachlorobiphenyl;0.20023568181652324;0.2021405875952549;0.20250238969600157;0.1971662084325332;0.20079130679403376;0.1986186853128098;0.10342318935854028;0.19978358272325847;0.20005209106997204;0.20513641450855813;0.11770206102026994;0.22924839030722977;0.12109317910368464;0.200644109334656;0.2001787760820998;0.18959270197321085;0.2091617872744705;0.20816831168433886;0.20132582317187414;0.20626319405547816;0.1963423385019241;0.20612913685770326;0.2120704597215522;0.20853139861639006;0.21072860102513133;0.03465955775085586;0.10326406824159824;0.07442598273935172;0.05556265533737944;0.06122794055246767;0.051355537948880134;0.5962775088034357;0.21181286263713903;0.15279052981413874;0.6604717554492648;0.2071345184933646;0.07728216728089529;0.05251487357754369;0.004511445849524258;0.5580863514308984;0.9783531001971096;0.676663402216587;0.7762321000436675;0.01334255501633954;0.04578023184001501;0.04093022594357637;0.04330197702582777;0.04359631917667149;0.042081895063822365;0.705644931714183;0.8102936122151231;0.6974453578270038;0.000474487144205493;0.0023698910552226032;0.5800126306947087;0.6633133766858577;0.9231954513031342;0.8453508894929015;0.9613581196404121;0.14426090228247276;1.0;0.8278224273595712;0.7981567032991044;0.8087296422872884;0.9137590666175386;0.8435877849422231;0.844590817137593;0.9437232074910286;0.9548239834316312;0.9442758171600996;0.9225287915253492;0.9681875410428952;0.006274152920670078;0.034577789251845924;0.004609009518850374;0.01703075826160939;0.004054156276008397;0.0018004030491434741;0.00047726986450198617;0.026993520456858683;0.04009685285038748;0.03476553865786025;0.013568529899954464;0.018014243495537378;0.023916742169834387;0.015238846793338553;0.027468623494151117;0.02636891991097487;0.03463135304933466;0.21820083922047426;0.022637083027036698;0.009734549245862053;0.07518652153082163;0.027830197656494297;0.032303111040697975;0.015294800089847295;0.00824664103869905;0.04057327764619123;0.06652102984991944;0.06440858013801355;0.06876348810520008;0.05176137359063125;0.05588912211166026;0.030719657695706948;0.038286513563812775;0.5030460658952044;0.3603743096491791;0.4129911165635509;0.3763512133822547;0.4225842240978242;0.48852084260820733;0.5331903363641695;0.3338058238142903;0.42494497140670356;0.41381172092227414;0.12835629207960386;0.14282912329735917;0.06667546191696919;0.297538702575097;0.3412626901455462;0.08726557585752061;0.0681319868607534;0.32491807190708427;0.04815968083776777;0.011183694499754633;0.02040231969175185;0.014988949154015635;0.012685433614910917;0.008067297708462057;0.0024331047993531737;0.05725115302566177;0.006514107080198067;0.04865366209719743;0.04760701674230751;0.20825388755595806;0.04339794960995375;0.015884027024685006;0.010158357291431948;0.20988858631189003;0.2593831154903851;0.13030250381070194;0.18128736104586204;0.04785447030211277;0.1328692544436458;0.19731521209559647;0.013667985815815938;0.008940590853889966;0.01315726063514832;0.020141117008940636;0.03379042630608716;0.09910611237109948;0.02524857415142503;0.005770958321391618;0.007631790602352135;0.18754599575598807;0.09569232623028469;0.07725452097784309;0.028289140960692762;0.033208168693734094;0.007099688683355833;0.03758096614481561;0.06414690602470763;0.011851503067462627;0.09669110091970355;0.12389609850422292;0.07252913405131486;0.1651051562651756;0.11147519801142249;0.11932445701898199;0.10078506374806499;0.18888948183899806;0.0638069904981863;0.004119452677416678;0.004173783269690543;0.003175485567807001;0.02666498177953699;0.0007817813207429615;0.008458486578475805;0.07566956968654506;0.16348971733123147;0.16077318328553855;0.00019996131222585765;0.07733025629125327;0.19217768255786954;0.015575317942275839;0.053760902513283707;0.006273183703208328;0.0;0.11187524439046238;0.14786498505528764;0.17277604906330593;0.20619668506833919;0.11837121836148803;0.15541427449451933;0.2764718796688995;0.13489533804345383;0.13119420813603377;0.13662510255662982;0.11290042402955619;0.08206649337519654;0.14946919813660087;0.08521455057311385;0.1225899243117793;0.15508637496399436;0.08208462482599876;0.20666546907664635;0.18174659074512545;0.040915425989748254;0.004820815852072956;0.03950824458641505;0.042368652519301754;0.19323851905646827;0.10760304037875032;0.08115050036867094;0.12323529759310575;0.13992221409172906;0.14896705609681668;0.045385535347763385;0.0027350297163316563;0.006491186027365078;0.04140755178658982;0.03043528809377346;0.04154093040363573;0.29499500476372614;0.5257933886371906;0.6755127630151262;0.6524695937910289;0.815317968279216;0.7581981051671702;0.988076890790572;0.9896820344978409;0.9891199429102382;0.9089880919158629;0.8449076800289359;0.8101815771939894;0.9439036946901227;0.5165038474117077;0.4546081218811863;0.5407975569988708;0.9569189911003152;0.05282552492901048;0.01930645601901462;0.015661066223716026;0.01684963679427153;0.0792499473753093;0.007351606249442033;0.06230890385704021;0.06464905929967353;0.06158713097281374;0.04393789810419506;0.059850522441612874;0.06065785456578417;0.04536362077247777;0.22200687359999607;0.06256480830956838;0.01746138371654975;0.00923251696958106;0.16153210017628952;0.014417967704192212;0.05024229947343572;0.03202296110197205;0.04874680185876308;0.015311716074039906;0.023416293522486514;0.05725684212725721;0.0286015854573819;0.2461205839136931;0.25018603678402257;0.2109642214317805;0.03182952222327873;0.004175057543946419;0.018738565599004445;0.05650557228163184;0.01000312185795405;0.013874842691826228;0.08403848328427448;0.008828654202248177;0.013268591733150087;0.010285717445810102;0.00277305968363042;0.001956522487628265;0.03798037890508246;0.03170709773184009;0.16606407663023232;0.017836172496505827;0.007210020098115469;0.005774858171741113;0.2018444139467664;0.014988501756911424;0.008774677618873595;0.053366269466426745;0.10370913138987739;0.025662232439748363;0.013584518435265524;0.00421946234298616;0.04220199860782199;0.040341923091921014;0.022077319500132652;0.0299624921928501;0.012237932558612729;0.027133903856016463;0.006782275449533627;0.06479363211137618;0.0173393058223514;0.05164019529192127;0.009842427898578802;0.39942577613607466;0.03214627887337515;0.011355612382389338;0.004505298898653116;0.05484905209741446;0.006410093570672929;0.0003643661057640728;0.0008292707934577571;0.04148167869692664;0.10731465240648194;0.25306825347904355;0.015488185563428885;0.03372593118998373;0.022996323009143196;0.04099496203972041;0.037198697772786435;0.008071415967787628;0.11961301468742494;0.046800605181559006;0.007606153593747367;0.01792368229317299;0.013834590254781447;0.016380337975747762;0.025960187388383692;0.010746694803277501;0.12408925702244629;0.018678245828896347;0.01665248522430531;0.0018568796369383372;0.0853100206615336;0.04664748760759507;0.028424794587553058;0.1581589100081432;0.27377524011506926;0.21371067121221507;0.2987865603090643;0.03215405682562694;0.0;0.012673656778619372;0.006185409825839208;0.013210322108032876;0.007085442260026331;0.006676025654791593;0.03139220028237776;0.006744271306464039;0.0022835712743741756;0.005703613459755303;0.021914817650910152;0.044299212757489166;0.07726110259199816;0.007245405664237775;0.02015855776810544;0.000589198047064896;0.05939186670252052;0.06469972487177766;0.02034113240781397;0.14832992085447713;0.008013319064928567;0.004421190627639909;0.015917383331179476;0.015112714938609158;0.010790202064930803;0.012297711351687892;0.03947182571740469;0.0904110921427823;0.005411852529640477;0.03290365886861277;0.2018883050889369;0.0036636198401744082;0.005486357555839318;0.017058348810966174;0.004567356698087139;0.0540664582438978;0.07338603234428015;0.027741761903229856;0.0016577867006034416;0.1847011162990994;0.1839317513360928;0.05209377875358885;0.05693471645432045
+2,2',5,5'-Tetrachlorobiphenyl;0.3599258901710048;0.36385148128457556;0.3657145202967621;0.3659583408831732;0.3699034408812562;0.3875425110066513;0.19782778878285445;0.36399115577969965;0.3632130202375615;0.3696643276600059;0.16685357508702836;0.40065165721193585;0.21688998883279073;0.39573505287268734;0.36467237579295275;0.3505801272036021;0.3786380274865971;0.3738856357401385;0.3639507735894537;0.37183171794102693;0.3601327773661851;0.36766847824970306;0.3764840133801192;0.37334112777495504;0.38373209769855077;0.010831386730750233;0.16926779321065533;0.13634360414184646;0.09484733135580192;0.1039383551057341;0.05760546901048521;0.5225775318273803;0.26533777114698287;0.27365957478255404;0.8288934978448628;0.3713680038059626;0.13787946782554786;0.07875013664319834;0.005135966662402031;0.628162179332778;0.7875764805630868;0.9125300425837051;0.5747544687390712;0.004024294157415276;0.05947532528747082;0.04648668940438411;0.05670707578403138;0.055436285294151746;0.052592016233311265;0.7318822170898893;0.771655170821017;0.8172459149659976;0.0038722590442379396;0.026255858428713096;0.640593632147726;0.8840183628676052;0.966588206428138;0.8916546045350798;0.8115340440375968;0.3843328477763783;0.8278224273595712;1.0;0.9276552233321784;0.950591177414714;0.9728338220584521;0.9062618966656099;0.8870096256145528;0.769544227560026;0.7787344261011097;0.7662057003360656;0.7608700183862659;0.7746321889347936;0.03988558804563785;0.035018704145171525;0.02506678895525828;0.03084572283952929;0.02777189361280105;0.030777276354390447;0.0005788434413111004;0.008048831954222227;0.05650996496868579;0.05561663705818386;0.01975734922123441;0.02010148063475825;0.019592508176546206;0.011145597881365508;0.016267779121179618;0.017760806615178527;0.030379532022312587;0.05384502800115582;0.0013709172320158156;0.0038801678049419025;0.01687553717256568;0.042054033448430395;0.043599082769646545;0.053685177261040815;0.027361234031874942;0.013167873832073155;0.019041477096901748;0.025081833310448474;0.03114504850519138;0.019955843053462288;0.019093803954612985;0.01688160150229915;0.026144080291532767;0.5745382130184559;0.40826213623905205;0.4610861796095314;0.45952433383823577;0.5429559316903954;0.5844648636635716;0.6038981209215674;0.45815435859851256;0.5150162543129618;0.5551921603388885;0.06998619430494771;0.06703071175952424;0.07164465430147349;0.3906196667815714;0.3097016272071773;0.10520075172285755;0.08317173364080917;0.40512723552077734;0.014432751551682848;0.004926886072539316;0.039279317935179095;0.029281856569968852;0.018899407901246924;0.01809829127842893;0.014111119144137017;0.06697923039950869;0.004834949742017776;0.06455205214574802;0.057629273509533965;0.3696856344414264;0.018571812775957725;0.02489515985045134;0.011316892509671375;0.35871187273452093;0.4014531960357601;0.1728322211993869;0.27453542601228864;0.07436969872910767;0.1265766778382539;0.28926926321768465;0.01955809460776292;0.00956034511241037;0.01353089681703301;0.033222108085275606;0.06485461493134387;0.16797225825968;0.036808770409518396;0.036931720499408696;0.008399360801065712;0.26891832717868996;0.17070123274061366;0.14486496973723875;0.048684126215840055;0.06390172327202817;0.011115398559307323;0.06637611224315425;0.24648804871036004;0.010418095670661735;0.07384907148181984;0.201722472574778;0.061129859014972976;0.06974871853732605;0.22793726671845202;0.23619635017741683;0.0723283820535715;0.22117761199615582;0.10668868110990172;0.013562110960804907;0.018396145334072966;0.028374786832876045;0.04706353642024206;0.024373174440382495;0.02818835978543635;0.13050029002261043;0.2850963275717242;0.27857192782470663;0.0;0.1342591363360045;0.3398350963783518;0.01771632387762215;0.04737530143284437;0.03319768315045991;0.023630095024300846;0.19823246032084135;0.25886785610665247;0.29957174262083924;0.29948652061004893;0.15249201724142109;0.272655471081281;0.38197964757827385;0.24123076288532289;0.23417294603353758;0.24930075683858305;0.19967307948388702;0.14784293850778024;0.270815094918058;0.15499115309609227;0.22393521917641712;0.2661667977947392;0.17639185310316075;0.3738308013959801;0.3477622889825526;0.07146175447291458;0.004219599596368203;0.03283431930550284;0.07331646066865921;0.28801409452941906;0.15923594225303123;0.12690797173726787;0.08728746620203802;0.20386640472088352;0.21101909349011094;0.01979599126858809;0.00656672627643389;0.014565081051495636;0.05875698098715055;0.008302536477252093;0.029399189737653316;0.4890364004751886;0.8057679531104308;0.9618099529886602;0.8676030250832956;0.9928175228609687;0.863440494239899;0.8256404032630488;0.8168659139369885;0.8189362798980362;0.9585680793376739;0.8726456579993297;0.6201392539287636;0.8201459592887146;0.44135233634799054;0.41685071639284077;0.5031300628796992;0.8151050311599852;0.09460275102799928;0.08031753874584034;0.09371160382544148;0.028155758705899744;0.07362856942516695;0.0008448856390691909;0.029335706001880422;0.043546270428481366;0.03954102722075387;0.04599527295174686;0.09867131071935545;0.10026454427227269;0.06726745062522636;0.3740409143619852;0.09227040674315723;0.00886648075501492;0.016395583775459438;0.2193580821302905;0.0076723008565621805;0.07124968634972076;0.0206790388632998;0.09820515133888309;0.0673867266795361;0.0013845930786063716;0.07744210513214644;0.02833269177809005;0.25373765667391907;0.3355181082850905;0.25236994042316147;0.0620389327490694;0.02359077894915059;0.02586208478004965;0.10657164278810434;0.03710923753410759;0.020472012616652692;0.15086195137251995;0.010661022845931414;0.028043989808377856;0.015035118371931904;0.06731018191543801;0.012501779533340033;0.14309733769223337;0.020692782682554787;0.31454028250899674;0.016893906091424566;0.02033329114640646;0.02841561831015399;0.2920223252430195;0.0006898188654807609;0.016572955761418325;0.09585202494681028;0.1847964104230662;0.039830597484037826;0.011695868104881994;0.00087272942053631;0.07671360664841778;0.06817811155780047;0.018989914058689602;0.06449618661991707;0.010294297773598287;0.02149693437231371;0.01352166957289148;0.12233285708948355;0.025013394381364962;0.0937907240286328;0.016912655250139765;0.7009281433816539;0.026822763897059294;0.03831768940515698;0.020544690166027595;0.02993449144583109;0.0019855162560173047;0.0007299446436641792;0.0011571395158123442;0.05583729446020855;0.16759800625063356;0.3478364470327707;0.027640170934812695;0.06325409346724827;0.01178691375027877;0.011088217649074979;0.08158364909307776;0.013763898141937948;0.1563664317642168;0.08015473107805055;0.005762166429631587;0.045186229722485864;0.03777004533724193;0.012739320387529481;0.03712434956849682;0.013481054999300926;0.26623742186723215;0.04106856921407015;0.03768486937123622;0.003670545726276377;0.09234035003039852;0.12645445181811632;0.03221369685571888;0.2678855392571735;0.34403407190854574;0.3768122986917751;0.46536215056531083;0.09121750447137865;0.0005287167299202517;0.0035012610982296678;0.036932979980382925;0.035293842929376845;0.27750112381032577;0.3068092024878917;0.017894114893673912;0.003147525463105251;0.0023726796421628255;0.009257691363822916;0.020902782843045073;0.05224022276773761;0.12567879378048344;0.0015798038155106788;0.07291286897834497;0.05022699254851766;0.04740204325718522;0.13141027360745297;0.02506365183695419;0.18310850937294754;0.04173052811110968;0.0364200443661246;0.009314531218895743;0.015286833065186248;0.02769871161759739;0.029235060741306666;0.033055962230381694;0.12816576310742117;0.06535162452758718;0.029481768851872488;0.34499537420663484;0.005034367784154937;0.00622718008494304;0.03353990443692036;0.014033951391223655;0.09241303867376635;0.0995187047811049;0.05735045814564792;0.005913129854948806;0.32391062457349556;0.3135212120342182;0.09266642537021204;0.10467498823619928
+2,3',4,6-Tetrachlorobiphenyl;0.4741137659623163;0.47703582139691714;0.48117723969525095;0.4802049864828942;0.4862583220675376;0.49948238020852775;0.25620817021983316;0.4803106056902432;0.4794348268826495;0.4877103751563921;0.18823391626564148;0.5165079499006411;0.28493833981684646;0.5028164002501597;0.47892468387363757;0.4578000496134839;0.4965311240130213;0.49067760037740854;0.4762798575829776;0.48661837949464104;0.4758074543198028;0.4858936318573649;0.49329909778931397;0.4935548853152343;0.513809103790064;0.009183626424434963;0.22127494807736472;0.16581695949473516;0.13268864449459147;0.131196737549993;0.07077714677034991;0.6650904442837594;0.325048418919184;0.3602592937794037;0.8605605918996285;0.48046703322545875;0.1702252718979838;0.10210044645911734;0.006781143781227811;0.8014666394367975;0.7182791801163002;0.9705652032610321;0.6107851274156045;0.00282876058774062;0.05807861690198719;0.046246159526355184;0.055662618815624246;0.05419414945867978;0.05122925317923677;0.8662475141413344;0.8416152378209502;0.6963171718428678;0.004405726399313631;0.021887484161312008;0.7328591401856628;0.9678205079738225;0.9319317315016912;0.9718837463884302;0.8674825238288264;0.44903691357168213;0.7981567032991044;0.9276552233321784;1.0;0.9932070860900958;0.9008212617248509;0.9699850673520021;0.9680243660098917;0.8587831321563055;0.8645155795322863;0.8585249877071163;0.8590711436839519;0.8105499967907791;0.033620443979819274;0.03320734464675167;0.02304421090857998;0.028163023784097335;0.02704208818883119;0.029488879954185348;0.0004547633002272681;0.009243640214714091;0.04963614170714103;0.049633244103503456;0.01896631505688339;0.019628639667386663;0.02115156374001699;0.009608191066412827;0.015349750331195365;0.018436182645208604;0.01401762725910453;0.041402556401631485;0.001071058855772664;0.009553921214633035;0.01666503018901372;0.03812445210364238;0.03971611560049675;0.049170767305886896;0.022754873273892556;0.011630506387152136;0.018287282745520547;0.02820831858300798;0.030029320358544817;0.019506285955462704;0.017663557359205356;0.018349878423106543;0.028729462592529276;0.701643152263136;0.5087152278191533;0.5778351757113258;0.5794560443035683;0.6871993251429949;0.7439298423640227;0.7647875218275139;0.5860279534864057;0.575792918165559;0.688035880560156;0.09008551148617987;0.09039957982938011;0.08626437808346217;0.5002799899985774;0.25469863597250614;0.1312004279168522;0.11403695700623923;0.5262340360781669;0.01602724869457093;0.00491721144531817;0.018607623811880938;0.015379726089143213;0.01678660193557199;0.01606687236382577;0.012447584994343728;0.045167663903237495;0.004263657237264129;0.08108456575121416;0.02776829195759093;0.4870093638730092;0.013248545223576753;0.024663360643049963;0.01084850479252653;0.3921592423196236;0.4456709894416743;0.1775983382941308;0.32864755918531274;0.07146700538220216;0.12863764172477538;0.2776969118151933;0.02541790098392387;0.009517512264423211;0.01643035434858887;0.04119163380935115;0.05576810171497893;0.22162475335734944;0.02887877349119184;0.031806912223340214;0.011209893437481916;0.3114583672461902;0.19369984770069257;0.1889241602838226;0.06275096365922861;0.08034190843176221;0.009666285448021786;0.08098626296329678;0.16641101335963096;0.007275175677873749;0.050566401636396315;0.0729737867790836;0.03882868733710647;0.05234810822751103;0.05655235211935229;0.07091305602643928;0.0682179225487062;0.1751903060590013;0.10743056995695044;0.011766077552135497;0.015153200556828629;0.023550670833954842;0.062395254780408894;0.01821668515765548;0.020711525720915763;0.17200008299124958;0.37706899359670715;0.368506657842711;0.0;0.1782260664655679;0.4492577722326045;0.01434424176765522;0.026763523593811834;0.04188514987003917;0.01740389559535248;0.26134446927677074;0.33793290706772583;0.39077663232479526;0.367834584456429;0.17808955948550437;0.3594038308979065;0.49674560951103225;0.3185737501682874;0.3093760214576159;0.3269929356604534;0.24926752688900033;0.19008875579867554;0.35595639923090494;0.2027290031655719;0.29329425029951095;0.34993833443297995;0.16168279975569683;0.49366784782252854;0.41020804597699634;0.08642223185651779;0.004000479013737535;0.022613511646429447;0.0590646457641955;0.36048592619620606;0.19436917623183558;0.1400961299594127;0.05847124872405542;0.2652305078387218;0.26527654362566333;0.017912003987049646;0.007037223747259322;0.01279593656929477;0.0735346872929735;0.0033837236326738473;0.038251836709981266;0.5808593801043571;0.8817683689729021;0.9013910218064431;0.9605285803053363;0.9180506471386431;0.978398488722574;0.7902055294141701;0.8062231914096023;0.7741749932817662;0.9325536077221455;0.9641891459635404;0.5929281504574996;0.8168131505981504;0.5418654293625339;0.5201497369268314;0.6166020456694892;0.8419803861367026;0.11804450119348786;0.08653180695606243;0.0868874604233307;0.029516155787732604;0.0673643937197543;0.0001832454517782422;0.023433604768596412;0.04158970636558094;0.04145164112354948;0.044289575050740694;0.12410777583348433;0.1263656845796643;0.05894048553606033;0.482077003815547;0.05487279787275355;0.01074205976073166;0.017039281955936347;0.27358394800418806;0.006741462218459802;0.09253847636529688;0.01730784068475615;0.12261913744795086;0.04835518062317278;0.001053501999725598;0.08164760377043674;0.03315360254358561;0.31221569137002136;0.4217808992644113;0.31473954678908167;0.07942814065760005;0.02215103320814295;0.026721239070555285;0.13467785158621853;0.07246487837561406;0.022692054542008892;0.19158126702797534;0.010406573940698714;0.03333078156362268;0.03215406330978402;0.05357994778371152;0.011789044922879972;0.1443675189425506;0.01733512910251933;0.39522119673512784;0.012408938143832756;0.0261507722245327;0.02770460784448742;0.3443567260247814;0.00047476975163719047;0.018385887145327157;0.06313662493540587;0.12972256310150496;0.04958389608332392;0.011831223410130062;0.001046741881143007;0.10134803000320079;0.08973259329289006;0.021835680008576032;0.05789975505571121;0.009126890656839274;0.011414760374825845;0.027515325801504276;0.15463678921084256;0.032248467733641;0.12376332315503617;0.01622712256166788;0.5251990776664656;0.020732798600430587;0.029061462979715527;0.010935224018076704;0.026560256763412424;0.0020502926760213123;0.000638148659311227;0.0009695505525032584;0.07088733123604278;0.2049901946396034;0.4496142735320591;0.03185859503777487;0.08356763011761095;0.007265956051601447;0.013182084190193821;0.09720036334365968;0.015426063207010584;0.20478856798729023;0.1041070691955264;0.00664481039211655;0.01636560210830706;0.03224670988639786;0.00937192323460322;0.02423267876444355;0.008982536831091384;0.3282966879283007;0.04414335381259241;0.0393610688414478;0.003467965675571139;0.11876019558348867;0.08746170522959004;0.030357307778090814;0.3509828914124772;0.44357911558424634;0.4793026385375819;0.4168786604458617;0.09869788204815376;0.00017690366131028576;0.0027579858605881755;0.050220569274643204;0.045520998286019444;0.2043673040724627;0.22628041007717326;0.01634898404637927;0.0033491226912636288;0.0029077433800020385;0.008175865387008915;0.019645146722204566;0.05939736039166085;0.10859151019791806;0.0010026695942059003;0.06516354869195816;0.043031696965267416;0.03608510148115402;0.12566513762463044;0.026021314695138586;0.03878957501938115;0.02090038867508171;0.00984470288533766;0.008609103787557445;0.014060522546465714;0.020417182412958878;0.020978193712196638;0.03272241610338315;0.1013935854530524;0.05643417279061241;0.030436054921538024;0.4536517971889399;0.00632877089085348;0.008036686899735884;0.025303741289394922;0.015147635095267772;0.11959782625987285;0.1142031711087577;0.054013450996340195;9.607181404285088e-05;0.4099484242013858;0.4056712394376771;0.10019373652160729;0.1155445150138865
+2,3',5',6-Tetrachlorobiphenyl;0.46451621645397667;0.4675436259330989;0.4715483947862617;0.4697404403677582;0.47501560739652626;0.4887313610649429;0.25110049779345833;0.4704952831921333;0.46968044571901213;0.4773171972412474;0.18529917120880732;0.5075195783192072;0.27704847019884005;0.4965577980345827;0.46936673186876043;0.44944614393919197;0.4866838330486878;0.48093192228308684;0.4670048383478881;0.47729872852161565;0.4657797834511578;0.4755731906836899;0.4805039498290358;0.482987992973392;0.4924588901284918;0.009002499307145483;0.21693018759620147;0.16108719868826268;0.11836316781508498;0.12724121388827833;0.06947104727240516;0.6306954436383954;0.3156558610841385;0.35308505473746565;0.8683384725534947;0.47119170249550646;0.16190874037249156;0.10073619825315713;0.006658268412458425;0.7766889703386501;0.7333590966303523;0.972653150824361;0.5981413561854799;0.002470266621303903;0.04841793994528344;0.03891832128117459;0.04703050723109816;0.04611731557657255;0.04398312482299586;0.8437762330883185;0.826520605749882;0.7318953355179015;0.0028533242182055803;0.013322219816528869;0.719948264816258;0.9659580565475268;0.9437617366488769;0.965627854130964;0.8575949195950189;0.44447932238983373;0.8087296422872884;0.950591177414714;0.9932070860900958;0.9999999999999996;0.9177222550531896;0.9660662561122971;0.9607810335253631;0.8414862441671673;0.8491255465601315;0.8403124617359582;0.8411389266011797;0.8056397911260913;0.03254623081349952;0.030743378511219444;0.023261713490344237;0.02768476251865481;0.02506046313781782;0.027686633240173123;0.0004119856841072475;0.008994579240098744;0.04813653421947829;0.04724395201602524;0.016371042764418618;0.016856533908917323;0.021042846266242494;0.010670342429711191;0.016866086947169966;0.018431916106099955;0.01643683560541794;0.04214785070127821;0.0009851366145308658;0.003332603572612995;0.013754625409337303;0.03772279981015098;0.038898450275043225;0.047668384406311666;0.021318073241350242;0.011365164646747904;0.014863147623347393;0.023410096460105688;0.02841020996194922;0.016439984364035026;0.015188113381743444;0.017203186359979045;0.023230880625178776;0.6877710257347353;0.4947050027308322;0.5651665251696166;0.5675783056530143;0.6733130175996899;0.7256914894916057;0.7421203505150669;0.5758418769212339;0.5731831981451596;0.6730916955025353;0.0824776791523016;0.0823589505102162;0.08020809855586292;0.4885734644671777;0.26805411424339515;0.13144683018517778;0.10389344306705216;0.512520118905899;0.01115142172572199;0.003595812185260815;0.019344647921874545;0.015586421527733669;0.018740570660227576;0.0180719710775272;0.0137446424406161;0.04623436633887541;0.005496789643424381;0.07953817958937082;0.03062667394442237;0.4776609684260449;0.014317399297719129;0.02538838683531398;0.010872626659096734;0.373771421208799;0.43302934819844985;0.17128269875790944;0.32350862985634243;0.07219006940898537;0.1288743285887272;0.2816591838386769;0.02498152015395465;0.009706026420879662;0.016014790981589182;0.04038658805637995;0.05595470727471358;0.21728267250725328;0.028047088493370457;0.029598401227283532;0.005947328499429111;0.30967998474456915;0.18352484718789233;0.18477298935617642;0.06125463597163775;0.07978019526366831;0.00901939323196506;0.0796330270102019;0.1757940867432804;0.006884162035082469;0.050824792633051084;0.09028878848547099;0.0390664671631453;0.04910830485954985;0.08070415920302221;0.09382731039444281;0.05994378837997779;0.17697830726357708;0.1035926083157979;0.005170371862879741;0.00920288483974256;0.01474357068721975;0.06073808715668796;0.022331083089769162;0.023755319057815222;0.16844957075990036;0.3690430017860949;0.3605797985465242;0.0;0.17290512312557046;0.43918350993018473;0.015714667798889113;0.031313228604196906;0.029875190563307664;0.02160255123463955;0.25619161252051414;0.32982500316981594;0.3761375188519076;0.3621758668421357;0.1750844422064003;0.35169362565975537;0.48929756661340207;0.3122104008008234;0.3031875603738226;0.32044986692071065;0.2455101556926111;0.18638738125794557;0.3486552563405974;0.19850175787748742;0.2871875574705565;0.3425225631396532;0.16409423539835327;0.4836623507484366;0.3713086614085336;0.07836516551754673;0.0034994800157823534;0.02202702248277563;0.05560723848281435;0.35333560155848187;0.19124850218164055;0.14077793424149415;0.0672944690765556;0.2606593352066364;0.25760053148862094;0.016090924052484797;0.0008623910374386534;0.006812758693570861;0.07188836964231932;0.0030909265071074558;0.03517074390127069;0.5755016202885197;0.884487631156837;0.9208096270649639;0.957206873260944;0.9401916142323223;0.9671618750997153;0.7998094108704544;0.8100993854536532;0.7849129070537872;0.9409565319884099;0.9552867853921165;0.5954281342721781;0.8157992886918927;0.5146963802339213;0.49663039213245336;0.5885844325790323;0.8362502876751005;0.1161037224276368;0.07905764518737812;0.08365532398736217;0.023496181538860048;0.06265391313623594;0.0006381026236626565;0.021032409724690462;0.0377528645199103;0.03565386169997447;0.041615333574083875;0.12249863767608987;0.12469615063472908;0.055772241263058846;0.4656482914063647;0.05877650070444521;0.010307719089163937;0.011719867755866921;0.27006280234345054;0.004498003344469328;0.0900829892413443;0.01721281630329049;0.12032091397069697;0.03866285891537449;0.000903771675345698;0.08213806003660652;0.02342556456579707;0.300648279679149;0.41920713830329415;0.3115441737642621;0.07666101145301231;0.022213967843418562;0.021743553707358632;0.1309311898466099;0.032430044809721975;0.023112936114532568;0.18464775509624984;0.010672286657656774;0.023821212339511136;0.011892197604407408;0.05354283448503584;0.011844113875948312;0.12576372504897848;0.017223124161592124;0.3902616046646813;0.013331826997346434;0.02042589561299973;0.02602297366519658;0.33837628481385895;0.0;0.017801640412168585;0.06695242391379348;0.13996419233026572;0.05014830090407093;0.011298892389464838;0.0007521355782579175;0.09929875082773428;0.08790065574132157;0.01743512625465933;0.05814217279305112;0.008963335061649492;0.015305502084599316;0.01234096965373295;0.15100775234319266;0.030645551730921726;0.1210973093526509;0.016494223745416786;0.5635780323912387;0.01942448668143598;0.03248301351517724;0.015627758390450074;0.02584648107880042;0.0015799237785532935;0.0006510275668588341;0.0010082162222659432;0.06814262379516957;0.2035444744701223;0.4414630412645554;0.031111556553474987;0.07864812604220407;0.005445894289731569;0.009979626129959802;0.09360260499306161;0.015151787614021472;0.19974597804834177;0.0982258184690084;0.006199531719893694;0.01744313685233254;0.025709141944203942;0.007363018645627912;0.025054238571899555;0.008692044027471089;0.32328456453657656;0.042116134400449715;0.03770659823714009;0.0030563284348939738;0.11499233246386302;0.08182076136791955;0.034110577864421635;0.34355107439667787;0.43606893770846256;0.4717090473774683;0.4244853964829007;0.10291441038077868;0.0001248351284412608;0.0025232796438944987;0.04259929086877084;0.03835751386914011;0.23260333939230154;0.25737664745216304;0.011077161892075851;0.001753446103942428;0.0018472924298481312;0.007200585186152699;0.015659061135090382;0.05922229762524699;0.10720479831225044;0.0006891512004025914;0.0668228173883616;0.04217236470356327;0.03581332485521907;0.12506396441359682;0.020522846989721674;0.058030462754852276;0.017868883591076443;0.01268465134969908;0.008268202307144706;0.012505474683347553;0.02084625467207687;0.020983285821114903;0.031454621122407864;0.10768005486492443;0.05444033904786784;0.02767111416198015;0.4429841709849881;0.00630013092673754;0.007915288772404449;0.020860288106484805;0.0148959092122541;0.1168076893924366;0.11305832995587531;0.0425865280369802;0.0;0.40349856773788545;0.3983162019904313;0.09742739506339196;0.10581668579665257
+2,2',3,4',5-Pentachlorobiphenyl;0.2818231226216113;0.2783538284136634;0.28458609425171066;0.2771997720387291;0.2807623513750715;0.28141552426792676;0.14510998446999357;0.28124148988647596;0.2811593915603332;0.28745275592045016;0.1507704019417294;0.31819332506096754;0.1669941074807942;0.28217366034999075;0.2797124190257776;0.2655722188452149;0.2894128643063106;0.28661635728960827;0.27765534483615856;0.28358677334995924;0.2782793759203581;0.2877412731467515;0.2928335772416254;0.29082647574673615;0.297425296809621;0.03810137027780654;0.13249014216576538;0.11366009801507634;0.07990312641871093;0.08462494615483894;0.0515309866519372;0.5371060635636428;0.2301130310450363;0.21172241044261925;0.7699320661691951;0.2916167950451527;0.1332560377624499;0.06588412669118682;0.004897458161733081;0.5875755374354968;0.8899261485179265;0.8506172857013987;0.6553281782862339;0.013493679827993923;0.07221534656671161;0.06054478706116911;0.06561947991617328;0.06558844057072133;0.062014546958869154;0.7189608351142529;0.7967737650598484;0.8104262452780544;0.006174713236597733;0.011673755166526927;0.5240516559846;0.8321500969648936;0.9913635917494986;0.8798398312275464;0.9538036977387352;0.1515889091904264;0.9137590666175386;0.9728338220584521;0.9008212617248509;0.9177222550531896;0.9999999999999976;0.9069252950726645;0.8779710058781798;0.9170747259503471;0.9335321334369966;0.9147958437778982;0.8899180921527884;0.8631001912091548;0.024344787530874983;0.034752990047218595;0.05320157455538627;0.05884059745897646;0.006642810342928415;0.007568704683629799;0.0037350497783505024;0.00891799361642567;0.07071853498610459;0.06816141225445747;0.015389307776176657;0.016225643394542556;0.0329437278544388;0.023819343846826;0.023219895933253246;0.023354250674055676;0.016543555129512177;0.1100832800559505;0.003310031060134685;0.012044481534870366;0.04309432402633191;0.06443115589962431;0.06839994421603006;0.03751837214644296;0.027241140873484795;0.025031963113991702;0.050055922385873086;0.0526821318561447;0.06041260442459281;0.052947658552003646;0.055394754261304066;0.017623732915726317;0.04554893811546854;0.5475669142485531;0.3674745927506827;0.4236918628646342;0.4144581581230586;0.4812991357042712;0.5337577365826567;0.5613994634272863;0.39539949612764763;0.405159799064038;0.5455751428329496;0.0606800439444546;0.059201982930190994;0.07168733207767872;0.3423488557082317;0.40487581266372075;0.07966323356767434;0.07212356946371425;0.3617277498226523;0.02160408179980525;0.008522094762322576;0.02032628553332348;0.015260203418086676;0.014227310452928877;0.02074184076376161;0.011121540144444867;0.046907072010187234;0.011044487451859741;0.05577046058832449;0.0643188908585132;0.28726210609570535;0.03328608223738841;0.02713905922776432;0.02343084448055712;0.3118295112915122;0.35498905130396896;0.17826911956555996;0.2364617527540967;0.07056255997794356;0.13704454972296595;0.2741861776261611;0.015156555288090338;0.00803921935627544;0.010684864244876172;0.025747943698388353;0.0511751999460478;0.1300115318526241;0.035483927122683986;0.01524404016798714;0.009268885286247277;0.2398988406274386;0.1424534675002754;0.11927306846770704;0.04367174373694116;0.051960284833859706;0.01977874993674844;0.05971685252729923;0.16657503361041476;0.009910009066752394;0.08329235572878331;0.21152629342674711;0.10391148311139158;0.09731919951439526;0.2118522182118238;0.2195478246034367;0.10468143774647136;0.2122908055344532;0.09712762316455249;0.013974464581104207;0.017651394804744196;0.013443661276783947;0.03696455721423662;0.01630670133229691;0.01636942012179188;0.10226137781856263;0.22393129259743613;0.21944697853829442;0.0013792546424876801;0.1057434713113836;0.26640734946192335;0.021240376756340322;0.034678949627203574;0.020406404105698783;0.014842072066360179;0.15460825306783518;0.19933413714399073;0.2360417447870569;0.2566979203850685;0.14241632547784752;0.21137939402362663;0.32935697136625197;0.18696955675717405;0.1814477137544296;0.19782598638471124;0.16178970663519723;0.12070765475014866;0.21390624438399589;0.12327562965943865;0.1767149803994061;0.21110538613975743;0.08305135456173023;0.2905111596616898;0.2877115999273095;0.05650389175293762;0.011842108769741002;0.04369854072973539;0.08450719855461404;0.2362867936652857;0.1351329179055468;0.12465311988337287;0.10503755629596853;0.17437455439528543;0.20390062055554575;0.03258427901154438;0.0027432386190513734;0.015122964220566061;0.05107769492209238;0.01966457052947966;0.03331511064968774;0.39666097491902896;0.6843034173849888;0.8600051089290747;0.8241775896268901;0.9637888566791682;0.8440353640469049;0.9104857173253088;0.899821316238179;0.9077368641903395;0.9833310080579012;0.8735028379233281;0.7417356741724914;0.9589262590999185;0.46062762568455834;0.43388528297715945;0.5214064936395407;0.9585898117784768;0.08049950495091494;0.028979862864521665;0.017549996199675982;0.02964937558085378;0.07075998215039396;0.0006062594941547904;0.08083748347498314;0.08797215035079256;0.08166365138783532;0.05082136416542081;0.07703807577036834;0.07852199679466802;0.0375491887358437;0.30167552795760205;0.09967067462978656;0.009171653530540197;0.015487333442053764;0.19288006950028383;0.014825353849638321;0.05638135899860634;0.026785922399479887;0.07748880525811301;0.03606665519462858;0.008196157505799826;0.07494284563109092;0.03373269465314427;0.23263554193734692;0.28160856836396725;0.23054210049866783;0.04740583169287519;0.016563870982169576;0.00893659696656123;0.11019227371071574;0.027801204155880933;0.01773826009814603;0.11002564539540455;0.009069540874160857;0.014380129166716972;0.017374501232175564;0.007331985208520921;0.02301142291223118;0.05532615799715511;0.026519630477437852;0.26286921203226754;0.021493411493991543;0.029712688854421517;0.055252425321910284;0.25137238760132863;0.00164018805612361;0.014005732002673611;0.08526877996499702;0.15703142970119324;0.03522084465148897;0.014410685917672873;0.0018944920361422197;0.05929415965098321;0.053159997265157515;0.0243704879183322;0.026888697543659593;0.011456584036310972;0.03016187459010991;0.011749586328909607;0.09319587729175366;0.019481545767490813;0.07536972228591352;0.017262680070994407;0.6103194261220507;0.045008700293366906;0.018341325404749215;0.008280691181396892;0.040199435910585925;0.0056902982586556974;0.0006994929405771371;0.0012081628570185616;0.04980340043930549;0.1410959411898695;0.3082946699090763;0.021146613380547137;0.050488644548915294;0.012832752777152854;0.020442322624247344;0.054112103873733414;0.010817983171599568;0.13019789112226354;0.06582872822977674;0.006254714355155854;0.0268967841282603;0.02671257836813551;0.009056679415608138;0.05530793183689423;0.013958856517398534;0.2832924488157092;0.02809668601025302;0.025439980333586885;0.004623327632441743;0.08599953822263331;0.0555091348721472;0.03769549059625643;0.21180450790080596;0.27946389082952;0.2991824278100302;0.41421048461334525;0.07574809768001635;0.0;0.008441331351146211;0.0393915986409124;0.034673095883239885;0.01419209877205175;0.0149086188248231;0.012151301447544503;0.004469832613518978;0.002022023059830851;0.005525091865448117;0.022053962651926474;0.048507943203324;0.10894266758038074;0.005468501062461056;0.020099542000685568;0.03601852341866816;0.06864875285206838;0.10009732074901759;0.025421070211006033;0.2037568420267796;0.02714191927186385;0.017345759605952724;0.01826047453401619;0.0356623840464037;0.037536327419034274;0.03802679094419478;0.044617877654732685;0.0994712759177624;0.0242537591344392;0.039475583862477674;0.27960224996077937;0.004092717181823538;0.004847775929310739;0.02779207400812184;0.016776654275206776;0.07983293477758936;0.0970833673419493;0.039444914120289755;0.005922687943252539;0.2696504879688826;0.26193880432873395;0.08299738765688675;0.09267361787273115
+2,3,3',4,5-Pentachlorobiphenyl;0.378966319029704;0.376767103735165;0.38345874728812146;0.3764071138283262;0.38135604794066935;0.3804212709517531;0.1971958700620456;0.38198036100496136;0.38192402866340147;0.3887004422661363;0.14253302752990826;0.41615256374240495;0.22560001777288188;0.38163154299069824;0.3785859809455601;0.35991864140034274;0.3914377194614275;0.38797573418998127;0.3753300117737504;0.3836914127707266;0.37605778203594736;0.38865356554954555;0.393139823476575;0.3932781897929639;0.3997156946624073;0.02819663380002888;0.17563863359758758;0.1303699066388714;0.09753760842277148;0.1021264258123642;0.057306997995200844;0.7242920369254534;0.28701749751610595;0.28616509430418463;0.8049066170702833;0.3821240616511901;0.14315725055900091;0.08817480800593218;0.0061593238887984025;0.7892872750495243;0.7962116953841595;0.8964714967222931;0.7128900433245818;0.013053280320824475;0.05432929174034387;0.04628574581385795;0.050302752298126564;0.05031510892081496;0.047936220115189276;0.8864947076117698;0.8917016285068682;0.6744246589515479;0.005180725210630658;0.008123179446480434;0.7457617386441067;0.899573586175335;0.9500102175180664;0.9950811838720558;0.9530893968750946;0.10641743096496474;0.8435877849422231;0.9062618966656099;0.9699850673520021;0.9660662561122971;0.9069252950726645;0.9999999999999983;0.995485213992648;0.9708775713216333;0.9667059794545937;0.9701786208549342;0.9734304638791357;0.8760803309821928;0.018232138316294375;0.028609887947605578;0.04003538371567142;0.044735767079527616;0.005431141752508827;0.006576690173044259;0.0006479861296076297;0.008317750622588278;0.05739766099453456;0.05542242282093168;0.010960407253625362;0.011782660838596169;0.030215341621756608;0.020109632503045035;0.020890058471133077;0.02136870892961091;0.01199004491328762;0.0771189250237859;0.001868586910034113;0.009383640080632109;0.02734211375613284;0.05312891709348627;0.05592014771331268;0.029136987365589284;0.021106035198030722;0.018302203141180296;0.03718237152979404;0.04299550185056578;0.0485265812676722;0.04089235249295346;0.04198737653181468;0.01480857560595425;0.03766036333945981;0.6879612773538808;0.4609596774343669;0.5497598569839351;0.5409619583955817;0.6342612022711672;0.7092327852132645;0.7451039275517992;0.5246619572467212;0.5155229034211413;0.6117328530449229;0.06372141916994889;0.06397727874681877;0.0722098771140764;0.46146339779391277;0.2374030933263107;0.037987456726051604;0.07883636259871386;0.49421843072931404;0.014775237284894601;0.006556215877233919;0.013808234300838261;0.010360281201065857;0.009044844405309773;0.013384226431747867;0.006996703451221757;0.03937331703420011;0.008048498241153997;0.06467481099798641;0.021274860605102985;0.3893638072426864;0.02191327621897482;0.023384325104857252;0.018283616224990307;0.2902360604743276;0.3500755881702252;0.15437217274605505;0.2620633440697435;0.05469939104586884;0.09873995745346988;0.21528046432486145;0.020372635966190766;0.008028227011045698;0.012823602959636507;0.03247351178552942;0.03661473248624826;0.17682236130720738;0.019156345074853025;0.01075840136297118;0.0043315941803174374;0.24677536462273347;0.14230262760339468;0.15460628322805356;0.0532054377062556;0.06395987257347654;0.01339647915976905;0.06797627076460375;0.08337275683709638;0.004804102651699155;0.04950580222109535;0.06731080818214023;0.052767917451096845;0.05742987529559614;0.028833009064571258;0.042449258257867946;0.0648434563713296;0.15679377542174067;0.08742413620001065;0.007021346988388956;0.01136009304166518;0.009220145606104504;0.049358204344583566;0.011822084075157453;0.010907413691403746;0.13772527477409163;0.3026052795645394;0.2962598917183278;0.0;0.1414613466209216;0.35947382336367983;0.01633565086272264;0.0073366962491743515;0.016953755722605907;0.011005968521556041;0.20919085151472155;0.26760271569605854;0.3066490981926142;0.2912126361729581;0.15652199826298285;0.2853874532563186;0.44511627633752965;0.25398776947906526;0.24664713794676704;0.26357843239472173;0.2003196622784706;0.15515369568343715;0.28564496259874433;0.1633039838280144;0.23546034609283767;0.2810061220705261;0.07349121973794552;0.39385466015844584;0.2884242640608317;0.06125331824330898;0.004557645512828162;0.01968431928775858;0.05069593647179441;0.3070126417577946;0.17201350804994647;0.13242546938953303;0.07428372653094645;0.23142474767977567;0.2420607450938009;0.014877817836286826;0.001616985471401996;0.008689502638229464;0.06541123816890483;0.0055588193449518895;0.02555289635726635;0.48632648866797706;0.7690194730951412;0.8118994177647874;0.8952662650173038;0.8990111428315692;0.9638288463193229;0.8306039841012971;0.845586192422299;0.8217639510084805;0.9486585349003075;0.9905097145292661;0.7118092931579144;0.8973851909112357;0.5942245012744284;0.5562416788192154;0.6567678305168851;0.9248930161900027;0.09644479559716333;0.030427688466363734;0.017443018135314764;0.023035274331457734;0.07141052273664746;0.00048138497648214136;0.05635189691864126;0.0704156309053163;0.06498188015860862;0.03869946646272808;0.10349422773796597;0.10558041981826412;0.030078772557490942;0.3903935802144918;0.04311224596589452;0.009883545807844452;0.012731793593963538;0.23098528702567606;0.011918607322342635;0.07437271963003748;0.016558660612057043;0.09644193903109753;0.031066826671094876;0.01061040275592906;0.07334599348350579;0.020104116063055715;0.28821447718350757;0.37985059143125893;0.28416356503016893;0.06192608013892754;0.016476486313455378;0.010822799769533981;0.1278044098974659;0.023008274442022032;0.01755354303512706;0.14478091520095185;0.00862853682386409;0.00582826337299427;0.009657406391780721;0.0017403391500942901;0.01805066073213527;0.053108819912465355;0.016333778838621176;0.33046945410599726;0.010678594076026554;0.021862339125820703;0.0475488249899229;0.30348089935373046;0.0002166405388969052;0.01394535017223379;0.04943603060924944;0.10093475654988789;0.04672162998869449;0.010898967862133355;0.00148379777422054;0.0806684564185218;0.07120235628245547;0.019181530836598515;0.021669202274972765;0.008533646456059025;0.008622424238921147;0.00954348968561684;0.12120828202805624;0.024981841701550878;0.1006673921006857;0.014822488293128317;0.43574011696448295;0.03264524681227828;0.016469451545395055;0.00231097308755738;0.02043460152095698;0.004468682949813728;0.0005075794566271067;0.000836029049880982;0.05767096649463082;0.1759346849780517;0.3853195530390255;0.02365147818125819;0.06419662697725287;0.006392019089621425;0.014548594703087983;0.0685535992926502;0.011326607967888196;0.17367471503469017;0.08199130776220707;0.00550009309164845;0.024463258290074563;0.019226427490654452;0.007546801062361487;0.030312488533787367;0.008391482400442454;0.32488416873874576;0.029349016072919055;0.025984599133467123;0.0033112430989449466;0.10873988591042792;0.04325809912762347;0.033366127792707846;0.28442228526533603;0.36406301481733205;0.38813225373227095;0.3667446066160918;0.0796234135210334;0.0;0.004883607223846061;0.0031661827245835356;0.004722834553389234;0.005333930450375276;0.005437297538003221;0.007010833757706259;0.0035109458493446954;0.0014814481986943162;0.0039991196623447405;0.017014419296314167;0.04700029370379834;0.08544173590408981;0.004112444031846133;0.02130278960877131;0.027428320816232758;0.050234909894330645;0.09665592035114574;0.021884329678491785;0.01726151181759576;0.021034987649459255;0.013354988284874698;0.013486903053663997;0.026427990371301228;0.028047391897663;0.028392184029764837;0.036836380122916394;0.0745973539560649;0.019488133242658856;0.032796449376570135;0.36683859563594534;0.005196446439658861;0.006449178364688492;0.019958936997653724;0.01575639453475377;0.10028575642256815;0.10186157442008081;0.033041158862184845;0.0003714262892159143;0.3336699221031994;0.334867596540955;0.08431576956435442;0.09080873196562896
+3,3',4,5,5'-Pentachlorobiphenyl;0.3990278870085506;0.39642188175058746;0.40276498999796095;0.39499015376100527;0.40001752594668966;0.3980772048490719;0.20642330968682904;0.40101285483943344;0.40101811451302494;0.4086655045278798;0.15184174658089383;0.43666898528962;0.23686669034029642;0.4018628900947513;0.3986366899620759;0.37850162398417864;0.4120971543802046;0.4084871406408452;0.3951135072363979;0.40369222350174416;0.39623944711861375;0.4093163756817648;0.4134141741112129;0.4142808607778395;0.42053571900340947;0.024255757753945863;0.1840529395522722;0.13489841669423333;0.10170732008060113;0.10883722989488018;0.0607128193914552;0.754471029463678;0.2990118296001453;0.30015305973280537;0.8029407719539181;0.3990101854611847;0.14727424163544597;0.09279299459039575;0.006387165377879075;0.8250138329234121;0.7947476345259116;0.8996348248993016;0.7116859617087505;0.013109647550058369;0.056647048301041274;0.04721640619723676;0.05124912111686391;0.05143373817939281;0.0483632942101148;0.912850680523035;0.9049876555251883;0.6185798067593342;0.005004283116663831;0.007992978084273603;0.7757076260566294;0.9074825160526147;0.9269959809441396;0.9991964984489495;0.9377299993674836;0.1123032690548597;0.844590817137593;0.8870096256145528;0.9680243660098917;0.9607810335253631;0.8779710058781798;0.995485213992648;0.9999999999999986;0.9607304782702775;0.9512853726115377;0.9599685137304669;0.9636819295227387;0.8848337248441895;0.016681780075276573;0.027162113762309367;0.039655599889679816;0.043962377045446865;0.00447472227493737;0.004916203992165741;0.0005747704918940153;0.009414417642679898;0.05230550471389955;0.050383791793540904;0.010345760042726616;0.010975511867254172;0.02771000881234891;0.017221599478037468;0.02127045318994195;0.021855798046086825;0.012259380426018728;0.0720744441360541;0.0025930196648095037;0.009238906668831507;0.03319943517698799;0.05129250249658856;0.05435866874515287;0.02830682124224871;0.017452860054263487;0.0194018219849129;0.03932381324703105;0.04487662083317383;0.05044321064693678;0.04086574060533641;0.04279845780821347;0.017255149405337674;0.038770015124287543;0.7234844458311906;0.4800543147058885;0.5730561910544335;0.5639313468282776;0.6614254760530696;0.7400134621064363;0.777060832076105;0.5482328623185018;0.538817519178843;0.636930791824445;0.07936578797915202;0.08239388549291674;0.0875559711991621;0.48262239115223343;0.2086320744690409;0.037444315004860305;0.10213720153421482;0.5162107631050228;0.01493809290251966;0.00592316863524611;0.013140075237617335;0.010113130892340656;0.009227204576676619;0.01479724900750193;0.007002512648310169;0.03830423859101322;0.007585626275922678;0.06748954981020089;0.021508514940832314;0.40732856873638457;0.020489463675018808;0.024053002021057243;0.018060174294363254;0.2957071398035024;0.354125770397734;0.1601327702565729;0.27331023151944467;0.05506440619967463;0.10363888089497829;0.22116001599282217;0.021125126513786435;0.007631657059553895;0.013034271518868434;0.03355021515160241;0.03909275304639817;0.18501510133363555;0.01870834808133067;0.010623594447638003;0.004104579174789321;0.25524023257896516;0.14591157109073283;0.1617608371487838;0.055562635166445905;0.06678084800987592;0.014995796565267836;0.07082429616010605;0.07742593285321879;0.005761645681693483;0.05196484689150793;0.05666591240856835;0.04841474524212237;0.05763646706340888;0.01729269659153678;0.03129491786455256;0.05948741122059649;0.14231406897113413;0.08866778639081146;0.006422994117995883;0.011671017782319796;0.009374222764710003;0.05223212302237115;0.015546752218613505;0.011672803474683703;0.14479453346785356;0.3182819471552748;0.311550645516666;0.0;0.14922114860820251;0.3788080718119736;0.017890230113848903;0.013353806862989648;0.018069628784834285;0.01459574131791271;0.21948345614078565;0.28110638135950594;0.32132941212042454;0.3055281245184741;0.1596573645114334;0.2995289753633454;0.4658138666676946;0.26591382557259513;0.25822740580027953;0.27573472992178605;0.2091824338443826;0.16152248691856874;0.29957748439759296;0.17077723726560348;0.24633822349496248;0.2956168003523851;0.08067482635445355;0.4132505130669867;0.29146830437381316;0.06390259921424969;0.004506912421933961;0.01917366584646463;0.04764720694851693;0.3191236394964365;0.1773493033887011;0.13465619904020507;0.06513373851481946;0.24160945760711616;0.2506837025445998;0.014686697276151869;0.0024026363330178057;0.008695605984798455;0.06645831557389871;0.004815435486507428;0.03066759643943648;0.506077550445649;0.7724861566629094;0.7982472164037435;0.9072688526657958;0.8842806233835442;0.9748045957530271;0.8328079762816063;0.8504630511092152;0.8233156765258782;0.932570644020827;0.9969301249932111;0.6976197637938027;0.888345268136972;0.6166083758506469;0.5778290195882025;0.6807673382330001;0.9130281090343808;0.09875877902516113;0.03085150316578303;0.017822242544066804;0.022390785317123352;0.07421510872441942;0.0004731924240496227;0.05770843453376918;0.06899443338830215;0.06510555808380465;0.04256886713780737;0.10904356593051459;0.1112034805219706;0.027668094128300475;0.40982422545238695;0.047383156239818314;0.010376346216791978;0.009854392890268734;0.23891134376956896;0.012603376169710263;0.07790930778443865;0.014693066868023033;0.10033501728235304;0.030201840646107266;0.0008849595994313887;0.07483180039052059;0.01731357680638106;0.2988573587520584;0.3960736933211429;0.29599279471821355;0.06470520506012227;0.016792614707914672;0.010946775257918168;0.1286161704867926;0.018536533606591087;0.01908320684286857;0.15169650406915022;0.008215763157328642;0.005120946911396811;0.008543908461785736;0.0014951506437005805;0.016204282030825527;0.05421919997602262;0.014543036515554688;0.3414963288436672;0.010489905828626328;0.022598241935749767;0.040271168149315084;0.3168420581794915;0.0010376769926476314;0.014028873401073946;0.04496926684518224;0.10026960100380197;0.046656262589943466;0.011067266598041112;0.0010049308752703265;0.08457661099144761;0.07469969119845349;0.01801847224424424;0.021982655460944134;0.00845152655554565;0.010957893146506402;0.007907893173690252;0.12783320564545222;0.025997866787659803;0.10500749348709383;0.01392214855830348;0.3934316498025699;0.03322640465907297;0.012784073661989106;0.0022145550814246786;0.021482805271184804;0.0034207841080220285;0.0005581752212415017;0.000921747334240887;0.06057143635071493;0.18385400821304188;0.399635419297624;0.025815620419089066;0.06705070540387148;0.006480268331274353;0.01664500357955075;0.0711610035684508;0.012101285558659185;0.18086211104744665;0.0855285593817842;0.005681147274094578;0.0239022793900095;0.01793795391924392;0.006657743653817358;0.027109745298448725;0.009091257127351217;0.3209136089046314;0.030704446357452096;0.026996604654128644;0.003543264491211541;0.10965188873587355;0.04067497861884924;0.03535857134480592;0.2972509816979428;0.3788864833189708;0.40532754676575644;0.37326381635036787;0.08165559313074976;0.0;0.0050591101747761305;0.0031133541595471294;0.0043899492003381365;0.011858365798541106;0.012519326401825655;0.007408378422316001;0.003156264918363229;0.0012278409434683926;0.0037708827372816283;0.013944826049212296;0.048948489875539056;0.0854594259937147;0.0038308855412516308;0.021809396527119832;0.02644995395139024;0.04552343775133655;0.09893094029904902;0.020595094973422358;0.006605216192413035;0.019877051730476387;0.012111870140892237;0.014312152646045417;0.023601506186121602;0.028707880927070793;0.028601945576623575;0.03640329999178795;0.07398505062791269;0.01963430472838832;0.03282768619805908;0.38378552768514074;0.005440625988902643;0.006748783383193544;0.02020249249477484;0.015464225311243108;0.10441410653040369;0.10220411467507026;0.03392647495473433;0.00031196643463068897;0.3465934282655499;0.3475354608388483;0.08724043301836594;0.09348930064918054
+2,3',4,4',5',6-Hexachlorobiphenyl;0.28697605542809895;0.2876567772901101;0.28913559065671757;0.284126462569389;0.28811005387521216;0.2852980139115879;0.14864215023021204;0.28850913431900377;0.2887735832202012;0.2941421074006742;0.11793368555093828;0.3206739673782881;0.17110498040406918;0.29017791203441445;0.287701141899546;0.27287019522528044;0.2982795803551898;0.2964523187526438;0.28652033086694545;0.29294040710818814;0.28413323158257225;0.2964388595492124;0.30125149788151173;0.29939206126756723;0.30313712902754125;0.023525469335763743;0.13643682899284407;0.101742477731469;0.07384892432856881;0.08066376785315671;0.054034510634596716;0.7012926658816834;0.24628968713359917;0.2163811854254034;0.6947423185637697;0.2884526101601021;0.09506759282413123;0.07170852448909142;0.005490872696299108;0.7133491853963896;0.8967396838543339;0.8070262464768496;0.7871829411648865;0.010384039675435558;0.07886211435233695;0.0700261483363006;0.07591643825349619;0.07595602122917873;0.07434244393277332;0.8412338386354872;0.887663120745669;0.674215032805446;0.0006898443109038156;0.0018656289869292395;0.675848120932871;0.804934910931884;0.950911171968561;0.9584655899430885;0.9885808009730557;0.9703391564054669;0.9437232074910286;0.769544227560026;0.8587831321563055;0.8414862441671673;0.9170747259503471;0.9708775713216333;0.9607304782702775;0.9999999999999971;0.9936797461684467;0.9995496801853593;0.9896952409956317;0.9662368051102372;0.010471669185114062;0.031181648361618793;0.005583147246282551;0.027227863233435512;0.005700458054137526;0.004773278099702004;0.0013032086147645036;0.017841097517963412;0.03839976674249815;0.03338427836897898;0.012883137415155194;0.017087074966126298;0.015470476892344815;0.0075279986946699745;0.017883401796155714;0.01873020554205325;0.024944792304597938;0.14253619259973913;0.013399281532343658;0.005563426629925502;0.021144109668279464;0.04064953636187981;0.04069223899696146;0.019556072285443572;0.011099744294083743;0.01969105622608044;0.029384056010068545;0.03139866026353637;0.03558355943731874;0.019560290870046612;0.022168314619431098;0.015317829442338553;0.020037616257373044;0.6112165033061077;0.4364711259977523;0.48381049472484267;0.4767338987972914;0.5472700026560671;0.6259431353042468;0.6714792396679651;0.44082458543061975;0.4271199540665296;0.5427746682926113;0.08333026518740383;0.07074102228982185;0.06904284813733387;0.3927587577889871;0.27361604372363385;0.1477923714184353;0.0856766913162256;0.4273552887542626;0.020501811676557433;0.01776278811622909;0.015704785109416666;0.013862959115693258;0.00670136289909994;0.014733697806914454;0.005306911607037843;0.038932914764520814;0.004187025826715698;0.05115272190696207;0.027232190183913395;0.29876883368396445;0.028367967827439614;0.0223538329780828;0.00885845794576666;0.23069119420267511;0.2865433000193373;0.14053293410622555;0.20748354710604952;0.03614838833169727;0.09374803672959416;0.19666858708062432;0.01723754182527688;0.009217758863198868;0.014051199403877083;0.02340597429984873;0.02996238387271228;0.13257583001915216;0.013569112468943932;0.014117633730412391;0.004180698883192862;0.20296230531656928;0.11313016208682243;0.11064509355278192;0.0379580678659295;0.045882092180385685;0.0053492934209526544;0.048156368502075754;0.07078721797816608;0.008517714541962618;0.0781588229233315;0.08077786365205046;0.045581396341970414;0.10216178259495226;0.05170941997396672;0.06372912150274607;0.061461148697924385;0.17307064370684777;0.08177029077347725;0.0023685689047348844;0.00713221189461285;0.0023663152987906675;0.03858239726616432;0.006721595521938521;0.007935751745536493;0.10626070275667761;0.23266415403322374;0.22812951820765576;0.0;0.10977620565511584;0.2755884985870041;0.01181806470227623;0.0170201950079674;0.011703491397090593;0.006176467356286833;0.1586613181897473;0.20492245079936428;0.23638097494678306;0.23224983452949258;0.12263276108503163;0.21586418556536913;0.36874004966209434;0.19107651079374138;0.18554938066593474;0.19463665483399475;0.15125226049460908;0.11354033940113793;0.2129318280218108;0.12044069706340878;0.17420660560754953;0.21433566541720053;0.07075019450601286;0.2969129000312292;0.2197538774111694;0.05389494859520825;0.004513241134113467;0.02537116657074702;0.07519949613204786;0.2545597477647404;0.14730796293445803;0.09420378971066376;0.09593195696756181;0.18728991683230203;0.1853015454887166;0.019694542518674408;0.007669028001433242;0.00822009262789384;0.059167684387489324;0.014302060129066391;0.029396423915680706;0.3904321336755705;0.6555061032805315;0.7449788048975867;0.799363771026272;0.7758415152785859;0.8761250708075365;0.9338580619191905;0.9497474417707235;0.9262077495178895;0.9438235558238817;0.9531113033893228;0.7984250411360794;0.9410337267717113;0.6012713542120292;0.5538644385564372;0.6496200663662886;0.9682736857574528;0.0707342992891397;0.026395736928747828;0.01791123571565797;0.01956641550471633;0.07595019773998433;0.0005381464370559987;0.03360877740854583;0.04203021498664124;0.03843438589064035;0.041861053544330666;0.08280371721233797;0.08443053920790944;0.030548329506890997;0.3047361788542497;0.04601622480358037;0.009021537858613341;0.011812476128808331;0.18831950106826012;0.014819744725095231;0.05608472663512561;0.016207195312336123;0.06753628657483368;0.037482787893304385;0.015371315376757492;0.06062595078210053;0.027844363327966422;0.253919061977479;0.3304968512673515;0.2409182987002649;0.04754328607719936;0.005808106143692396;0.014071248917171176;0.08047640683405997;0.010981978944166932;0.01425654092467687;0.11121114137014998;0.007624837158204686;0.013125751587768993;0.010926870663633716;0.008221701186972467;0.0027152616290483426;0.0811552413992982;0.0164103687711441;0.2374070767581538;0.0136446315750901;0.01965917087481359;0.005759824557002991;0.25799751612936916;0.007589120598192773;0.009252788186852054;0.04523340818940126;0.09413866967349671;0.05405001001565318;0.010382041729709236;0.002151157401911848;0.06082215683308153;0.05571997931534795;0.02107345028577555;0.01719382778418212;0.010173436531955859;0.014430311551471163;0.0071171470707591;0.093247064810547;0.021374721261952095;0.0750445316669927;0.009872893636096645;0.39714224950297156;0.024657662224677846;0.019833267051322184;0.0015424224506769386;0.02496440279147303;0.006261111198445266;0.0005581340322864857;0.0009497480638633887;0.058145269204339975;0.14391370332480088;0.306022465560945;0.019703598040171067;0.04849274638390076;0.010725290336722003;0.03679962940858757;0.05377270360297316;0.009229188262869512;0.15274022245209973;0.06565520065236581;0.006675416848223224;0.010974356920456962;0.05075876424059425;0.007351522582904789;0.014416659465122102;0.012793575927639318;0.18595744599780392;0.029960523723982436;0.027360487597672987;0.002595582046055544;0.10564592474734742;0.052416752499603904;0.04576292193007214;0.21768438214722752;0.2880637607434275;0.2968855604084971;0.3349488446548228;0.04936248987286929;0.0;0.01294558368506109;0.010939678910695706;0.012096926895399245;0.014835155045912408;0.017075469822671833;0.005991135804837462;0.0021109763409373323;0.0012905542328378635;0.0017905509734105725;0.01209955296082499;0.04110956849494979;0.07977476769576451;0.0066715352677582645;0.019308003246346406;0.023255535031575975;0.03759516726652331;0.07914432074943287;0.025696609671350956;0.03857154962075626;0.01111003907311779;0.005617214187463505;0.007306663511054827;0.010558474409790313;0.007505167777391194;0.009054329808896516;0.030341605642451103;0.12858367496617149;0.010277733631901468;0.024945903599034563;0.27683126087270715;0.004399478325749198;0.005100458469593331;0.01481508862017422;0.006598854152921551;0.07431556972877763;0.08292211063256423;0.027866127954964355;0.007289340518588854;0.25122712423741916;0.2516999733914164;0.07092485418748379;0.07813961749036481
+2,3,3',4,5,6-Hexachlorobiphenyl;0.28500877326346213;0.2858264321461404;0.2876956221076037;0.28193907827018094;0.2859604525637648;0.28228864260199243;0.14755682120473942;0.2864275786133602;0.2864906252223581;0.29197811206068974;0.12014726741013397;0.3186515361055342;0.1695594968521867;0.288175150527853;0.28544752530136047;0.27100925283907956;0.29640375627597965;0.29451622276647593;0.2845872462589715;0.29101832061901156;0.2830354597257869;0.2945097120603027;0.2987118123637067;0.29750348733149184;0.3012119631764048;0.023438213708327833;0.1322981622234008;0.10543720670588232;0.07184750493616508;0.07806735819775021;0.0482081967106729;0.6657340147020905;0.24569568885411372;0.21462784787960734;0.7090997425163068;0.2873910902837001;0.09594601227743323;0.06943185779116096;0.0047713564711928304;0.6816660908270994;0.9097067059289992;0.8019661212596865;0.7757277070050831;0.01476928963295216;0.07156531094183352;0.062239407696432984;0.06882014254388058;0.06937360540613188;0.06685157637897983;0.8085470051386036;0.8585155779236823;0.7142233817386692;0.0007335539025682667;0.002804239771171764;0.6416891018867037;0.7965713512712267;0.9610541298737542;0.9499456786092342;0.9878305046532654;0.9721349215993305;0.9548239834316312;0.7787344261011097;0.8645155795322863;0.8491255465601315;0.9335321334369966;0.9667059794545937;0.9512853726115377;0.9936797461684467;1.0;0.9938122253124307;0.9816583046550987;0.9646975206641449;0.006577883430600114;0.02197884939525794;0.002155252072661202;0.021201753022943748;0.0048253637024914505;0.0028914593915425045;0.0007098885822121153;0.011209055604783727;0.03345591501019758;0.027793375680055073;0.0027197867463918;0.0030990616519474216;0.014530400652094565;0.008120845563235841;0.014741228939504854;0.014926054010514157;0.014406626925426049;0.15097112615653616;0.0036688330561000047;0.005866204430555075;0.024875902976122997;0.03935639374968912;0.03891998606652411;0.014179658163923395;0.009530308203835358;0.011460786044450564;0.02257632223964962;0.025882378060411517;0.03099520412501533;0.021060617074204067;0.02344833242737695;0.015318182291703357;0.021114932708125422;0.5847684725744143;0.4259819627388649;0.47242055676430783;0.46615593749018125;0.5290840153852419;0.6039388581811443;0.6455788434695163;0.42746128494433777;0.4162427136108975;0.5251130524719124;0.08542027062368637;0.0725268010295557;0.0682249670115491;0.3765983573912382;0.29997866493212716;0.16049800500019948;0.08704887072478533;0.41001744234172866;0.015541331577181931;0.016449188162401075;0.019837961883586424;0.018321753052441738;0.0069737194482822895;0.02081113563809026;0.005141750454747395;0.03678829614187506;0.004012798409051969;0.050574204588183486;0.024418369858541164;0.29734719556414824;0.02728684099233985;0.02030418723542157;0.003953194118069539;0.2257554565893645;0.2826569473367132;0.1384493800028673;0.2018184470026981;0.031138633941034475;0.08876658843995681;0.18518544042181906;0.01920143141270013;0.00934753823705331;0.007707010173003753;0.023327615240481114;0.02565497521086735;0.13133989970553522;0.009710069392717806;0.006104627925475919;0.0031830476032795115;0.20201321097443675;0.1072164325790989;0.1100444558464931;0.036881232472009584;0.044551444252943696;0.00540887189810055;0.047757655896553286;0.07886443890638305;0.009100024705463403;0.08458742770989154;0.07776973300438567;0.05873459333154921;0.11111330095351694;0.04572030369239312;0.05840942741563099;0.06283768684395007;0.18745746227675897;0.08974628093643458;0.003303866971599073;0.008488519570963037;0.0036666133327266587;0.03772399760400082;0.007570378121230907;0.010995863898390905;0.10418026388015098;0.22949344292497148;0.22498466805528664;0.0;0.1071827754764728;0.27256126529101643;0.012299987326715075;0.020475388874571666;0.011821682179959282;0.0069063474907782585;0.15828576001523922;0.20279881957583543;0.23302080605251344;0.22763274674466524;0.12664869402376122;0.2135256778462159;0.35798197179471397;0.18945805222966766;0.18412733182192617;0.19251301079862937;0.1518803139622393;0.11242637147983689;0.21095746844302696;0.11888018322878655;0.17234833737582986;0.214271135899595;0.07784918729207356;0.29459805673176237;0.21203920531086376;0.05669990720723567;0.0075077939470746995;0.02458500361925774;0.08291824906762214;0.25121573152265936;0.14293715739638324;0.0954060868931679;0.10271894993986533;0.18233588443619173;0.18685505182501938;0.019559570394812247;0.00663118471741239;0.011329126905524357;0.057685157091523866;0.013116255716759935;0.03144954324235896;0.3839299919980526;0.6534618961605135;0.7457404903469005;0.7878474582027433;0.7823524978103259;0.8743998319273125;0.9398431538854952;0.9522755198674099;0.9332327604347151;0.9500991041241317;0.9419767855509813;0.8051994740151062;0.9362336321383173;0.5757199250960923;0.5300668781709895;0.6213187270751767;0.964667867102543;0.06762263685270993;0.025984673528419176;0.01909266121615371;0.019886354074466425;0.07558637659261713;0.0007549459192072994;0.036421621345189115;0.043848179049066155;0.039317203712735053;0.040144667840207766;0.08252063731516054;0.08397093959588499;0.03803127581930738;0.3013483057411036;0.04478329071685155;0.008700882817481343;0.010040789267662732;0.18711346703772216;0.014446709265078453;0.07049749551374551;0.016621399072869265;0.06827791203700581;0.0330399632058554;0.03241219623767622;0.06021362086001278;0.029897125575900477;0.25134334082583243;0.3153967650765595;0.23900054707918722;0.04775569836932274;0.005835287085407634;0.014681180444059862;0.07825223560458314;0.008396194803643406;0.013491959648648928;0.1089816519756868;0.010019045133030289;0.012525691511743155;0.00975212150275776;0.001619117724352933;0.002341379258380033;0.09673547536544937;0.016673650027770215;0.2335861725335096;0.012847518697435181;0.030924021184696854;0.00741989964729255;0.2524188585409158;0.005689928279368492;0.010338182249720365;0.04944073671356585;0.09712589538651858;0.04911307357736556;0.009276177319499231;0.0010814980921977939;0.06022045686574356;0.05364277872273862;0.02057741635261245;0.017362558420293592;0.008919227883678747;0.015221129637900644;0.005162685744652296;0.09177166157287285;0.021830424308345236;0.07452046062405283;0.010989502872973662;0.418130467664282;0.020837277140215122;0.016219722539314405;0.0015284091126648183;0.022035983612563044;0.00399919967634386;0.00014877322612221738;0.0005572491861170993;0.05426776055860932;0.13978462155443824;0.30774730978579506;0.018988659179104125;0.047651344307803566;0.012574646269373007;0.021272260200434157;0.05329394808798217;0.008776523253356908;0.16512410617056714;0.06587469284038452;0.006118587288570885;0.011284440731634048;0.036743908189918115;0.007598064311670729;0.012677173784246529;0.013103651380425657;0.18119322202912572;0.02451534494321373;0.02152323000430016;0.003291057114266746;0.10331184992052592;0.05385033109688309;0.04174901805350263;0.21563491597268858;0.2942540708876046;0.29339742519576534;0.3189427666263518;0.049641673982954375;0.0;0.01181051020751157;0.013925890736174517;0.014698624107141135;0.019662071077754688;0.021600433009802945;0.009912229670374799;0.0031348289876841997;0.0013444997129134573;0.002297952290960781;0.015053425254975982;0.040163510983150935;0.08096290010060303;0.006196507453754841;0.02018285349529809;0.019325342472653054;0.03996045477459391;0.0768500356291831;0.03246014197294467;0.03333179136737271;0.009974201910158098;0.0050742307201253984;0.007944135556679041;0.013300111691490417;0.007411425375245634;0.008591469681328082;0.030918580734242508;0.15029375413446433;0.01256149266017797;0.02589138681828509;0.2784777844900893;0.004026400035541379;0.004631165579038183;0.01732244123661381;0.005903923348797047;0.07223258295561891;0.08160928512366138;0.026472323371390948;0.0006629337398772724;0.24650104439472265;0.24694932466204056;0.06711480656771668;0.07369984355120429
+2,3,3',4',5',6-Hexachlorobiphenyl;0.2832933201964729;0.2842677147559127;0.28525371558578216;0.2805054464938663;0.2844533705377118;0.28164424401026733;0.1468273216402987;0.28481770288808067;0.2850967955485198;0.29038249943936956;0.11424441122829052;0.3162864198391261;0.16888251839006727;0.2865132805524331;0.2840353555596262;0.2694055618587692;0.294640662948364;0.29294755469765543;0.28306307694214555;0.2894541436352662;0.28041593232373446;0.29276026680835265;0.29776528181617845;0.2956653180547096;0.2996087907058831;0.023265795194881048;0.1310285512826417;0.10062398988605355;0.0726505675719184;0.0792705262251003;0.04896364655410109;0.7027861588281681;0.24623298179374922;0.21355404457172456;0.6918879636762512;0.28440329337364667;0.09451466160377603;0.07109061595100372;0.005506027022181897;0.7119084401327146;0.8970839111725176;0.8017627561077005;0.790418102020181;0.01116675414893375;0.08421619226469353;0.07516711261613472;0.08114909642931317;0.08122463546829584;0.07970860498960303;0.8400326134433338;0.8864355489676798;0.6706505834944351;0.0006720208903792928;0.0018488266362267551;0.6744802029764249;0.8003426704265564;0.9492671675288687;0.9572669427867369;0.9874633076072687;0.9682661148703354;0.9442758171600996;0.7662057003360656;0.8585249877071163;0.8403124617359582;0.9147958437778982;0.9701786208549342;0.9599685137304669;0.9995496801853593;0.9938122253124307;0.9999999999999983;0.9908634722521045;0.9687427055087998;0.010628814183009525;0.03219378717596487;0.005724426677322558;0.02741115858224091;0.006064440484605242;0.004897340032938757;0.005685162081913659;0.01202414613478217;0.04046028895182517;0.03495747266049514;0.009072652883628731;0.013127485150746883;0.016888005946468707;0.010095015213971431;0.015475178869142285;0.016422761037649825;0.01860319190650924;0.14270772705034443;0.005896256776972512;0.005808202157391048;0.022267110631919065;0.04288382906034273;0.04283296113492989;0.020147219234943725;0.01597650401073942;0.012323608165596805;0.024749033972346155;0.025943073034821938;0.0329363408130599;0.020818533266393557;0.02311663258041225;0.01545595642211557;0.02063386814469229;0.6059970588189894;0.43291669527913085;0.48115248603157257;0.47403935656661617;0.544723998590674;0.6234720194343571;0.6694629369314596;0.437475378046297;0.42428500487697285;0.5394679516949457;0.08223442429023915;0.06830777174026621;0.06922487081674004;0.3916439247279485;0.27221031386368877;0.14603745633288828;0.08433865746927326;0.425796304302807;0.020962956439831582;0.01753273680045974;0.015972446964841562;0.014062597081917691;0.006875958420755957;0.01525359266471095;0.005668888137008934;0.03930764460681841;0.004021243480825296;0.0499100417235352;0.026319171507041328;0.29531674216205556;0.02776909054212732;0.021051233553230114;0.008852206602040497;0.22500582121020787;0.2809863623606223;0.14073098828546549;0.2036065770398191;0.03431611759705637;0.08910934458749217;0.18871432975996225;0.01677064405105136;0.00870067314087381;0.013262490211152637;0.02303793791156074;0.02874252401317816;0.1308571103007899;0.012447899319084917;0.014600000031800212;0.003928825325189159;0.1983449121287134;0.11038823533728191;0.10939135860106419;0.037546713617653306;0.045211383798997806;0.005023869763211876;0.0474963681850979;0.07124455852428932;0.008183762325729232;0.07780334502641637;0.07815234819977689;0.046107598259959824;0.10186712748830877;0.04624480401150882;0.05846495186658269;0.06213620640519405;0.1738299795030774;0.0813817895718375;0.0023218758657755877;0.0073566890961600405;0.002385564605355302;0.038178060107426436;0.006412534349294448;0.009281081932826455;0.10490476781635459;0.22953842644554687;0.2254964891820297;0.0;0.10833654283738277;0.27222374074413064;0.012458008358442787;0.019056226281964066;0.011192689952415956;0.00585853042339648;0.15686154881980569;0.20245903013565103;0.23424274890781513;0.2271997427310109;0.12287975648067001;0.21255918381974429;0.3662446042215494;0.1886136906843775;0.1831586837643726;0.19235275189737028;0.15143749031891404;0.1123469922505019;0.21035733163758863;0.1190027334057701;0.1721793884803924;0.21193837775868565;0.07311181973484378;0.29308096517642;0.2152626556997084;0.053583167166508884;0.0047413455157858525;0.02373705507001989;0.0748970540076955;0.25239857638701496;0.14598512342864522;0.09352634227844414;0.09638174921774698;0.1853021439591629;0.18537002605950662;0.017856636968672575;0.007650682049144205;0.008889653438024699;0.05853583822963282;0.013335147021834609;0.02885643444627599;0.38589556409067516;0.6493013244642821;0.7372321964005178;0.7950831594000397;0.7728116783582313;0.8771398878474128;0.9338920864255594;0.9503756192978846;0.9261436820380908;0.942130032982109;0.9522414451074448;0.8000556080126406;0.9380620588829646;0.6026118947762178;0.5551846416091679;0.6504138265220312;0.9661051588858992;0.06979434823680357;0.026298422863131617;0.018181949395383715;0.019965339332718764;0.07630473282380613;0.0005888391699161682;0.03418987692590836;0.04260661427512337;0.03931151803595381;0.04229846046305401;0.08204494329724803;0.08354939057519248;0.03218879361338935;0.3013919586698743;0.04298229581905885;0.009055927491399432;0.012309457928764998;0.18644148708358543;0.015866156848285587;0.061613876494989915;0.019151814296929803;0.06495236961685381;0.03728892066669239;0.015738849438545997;0.059868622320988385;0.027588622843250355;0.2587268814939351;0.3286136144821824;0.24195890053730182;0.047084906811383595;0.005948726857343728;0.014903453294913946;0.0797457514977252;0.010883874351901315;0.013834016288132385;0.10988799935461857;0.008346322271459218;0.01310494967814336;0.011334724456000823;0.008916513633881467;0.0031614573039156013;0.0817791855332595;0.019311098280055315;0.23471718420028193;0.013015319298133184;0.02074737661944068;0.006259981457553195;0.2561686559452993;0.010216474363236331;0.009181563568108212;0.04389517208561408;0.09805856125805473;0.0535679238260117;0.009722047365622365;0.0020418328718154505;0.059909810871077926;0.054812168261242744;0.020459554831035957;0.017791867542779727;0.009924372156106073;0.012779989707987783;0.006660655923683135;0.0921138364568224;0.02141506489213672;0.07434817506224979;0.009674530688624587;0.38880336089606304;0.026670762290596083;0.019705216712546016;0.0019922839236817314;0.02295443469474315;0.006009477252618582;0.0005804785567700257;0.0010412145983369617;0.05482029810030962;0.14220135657345773;0.3028889286635491;0.0195723816779196;0.048053650786121914;0.011991189999832928;0.04006546061799055;0.05373161758048788;0.009721977493833238;0.1513198080285546;0.06521484175677479;0.006624293373028442;0.010925567944324942;0.050185989430089555;0.009041858442993895;0.013557923265716742;0.012682201955195361;0.18320168889703697;0.030294234388057797;0.0277051000280354;0.002446807422001638;0.1061027390501017;0.05336746132555836;0.042616494653462046;0.21500083650185792;0.2891803547442661;0.29383736484738227;0.32962463170600853;0.04942084553672851;0.0;0.013139610514068988;0.010868300248882742;0.0127955330997569;0.015072864229051224;0.01722368961750236;0.00836186968016919;0.002363293236867465;0.0013890554596480878;0.0020522008277072496;0.013953290428967082;0.03993686654229414;0.07905578348817321;0.006978211515048734;0.019288045720355335;0.022989647334836702;0.039200296600172074;0.07803423468895737;0.026974660387602246;0.035436232766911185;0.011205266953977009;0.005847248448008677;0.007749464515335028;0.011092766601581212;0.008188582932765238;0.009452110348487558;0.030561697713491598;0.12990903387079117;0.011372844166388514;0.0254311009358242;0.2749011959645269;0.0042860611578788566;0.005021836697616067;0.018028719517690705;0.006460699652624177;0.07349611366589699;0.08291074841137647;0.02703741415179769;0.007947839740225959;0.24874983468110687;0.24919428963850954;0.06979103649031068;0.07713032480407146
+2,3,3',4',5,6-Hexachlorobiphenyl;0.26685050741648736;0.26817538437375926;0.269242537881171;0.26477960787739635;0.2686290262530587;0.2650037759811608;0.13878265084889968;0.2688371506721001;0.2693393307168757;0.27378553314258847;0.10103840096704494;0.3002949227475043;0.15920046996179496;0.27008989506311354;0.26732517168788245;0.25408989922112735;0.2773372760628979;0.2761284331484649;0.2668371980975014;0.273033615680226;0.2625169376826615;0.2762112823247727;0.28138639234787033;0.2782340289164144;0.28173686278260535;0.014098585876999557;0.12844058005692538;0.09364187265322424;0.0669017565850082;0.06844704958439617;0.04734563070971873;0.7212820322095563;0.24433944571282035;0.20168067510125368;0.6907599920679315;0.26765943869237935;0.08454080346401152;0.06902665533212453;0.004957223881449686;0.7237277563518543;0.8692029169890682;0.804521702433178;0.7875092797123807;0.006582734354826275;0.06676159459143094;0.060302063174622486;0.06589491414502989;0.06513180056494251;0.06576853378489841;0.8503351915142058;0.8906217315178534;0.654313615261941;0.000402604149966226;0.0012057167197464028;0.6871617846313315;0.8062102408672631;0.9345930939488588;0.9607714289108199;0.9715710573249371;0.9458301694484221;0.9225287915253492;0.7608700183862659;0.8590711436839519;0.8411389266011797;0.8899180921527884;0.9734304638791357;0.9636819295227387;0.9896952409956317;0.9816583046550987;0.9908634722521045;1.0;0.9647109029466876;0.0030291007492570373;0.02237442788292542;0.001898775954386236;0.020545440742916844;0.004678701222949998;0.00274644494357825;0.0012433511250963124;0.015016878755441629;0.03193220104499688;0.02654986869295433;0.005061042072798156;0.009201604321679272;0.01610129099718293;0.010276654134469624;0.014798099302904285;0.015483920091434667;0.018534051495100054;0.12671696305095037;0.011597289862753523;0.0037543127752326004;0.009555985270731489;0.037829939837927824;0.03694503716517266;0.011991028089792716;0.010830505026864905;0.014902238773068746;0.01900269834117927;0.02353392192993648;0.024468252097496174;0.008642476902895196;0.011483069586228772;0.010332824670049638;0.014204162838204156;0.5964495919548869;0.4049157758678829;0.47085271938071416;0.4675569665751588;0.5426683883526461;0.6261499954603695;0.6749779018461752;0.4318044397248874;0.4146030539296998;0.5235491991301935;0.05940840218808955;0.04378826223652721;0.046073489060299885;0.3918103904305528;0.23813945777265302;0.1267948330593756;0.05299898936273879;0.4294927346687541;0.011777021189728903;0.01548745766839234;0.011734372422238341;0.010054424288436793;0.0033978888171172436;0.004357101549120219;0.0028909000419894363;0.029261210913662475;0.0011659285740875471;0.045368110951161514;0.017975848682064404;0.28060713605281484;0.02052305961724349;0.019316080906430885;0.005318056123285166;0.19701922706853905;0.25238754677589764;0.12954560036812607;0.19062211260108156;0.025950222373466822;0.07182597638807584;0.16431580801307252;0.01388602877673989;0.005151089863657199;0.007161728184033351;0.02008939872395989;0.023520462071165114;0.12480777362389436;0.0054824347879395795;0.010841358577169242;0.001966627018936052;0.17600508049674787;0.09650597854313707;0.10238300099913639;0.03502921237330513;0.04135094783769917;0.0036730732167925646;0.04385594395557393;0.05188624980253479;0.004872556937424874;0.05241119557349218;0.04373649884178533;0.029373392354332065;0.055643250735537185;0.017396291893065522;0.029634379210910104;0.04497590041561229;0.15790407828630565;0.06999643148736966;0.0016219058341640205;0.006619252989356672;0.0014705406684557122;0.03510289910317897;0.00037601301409843164;0.002012231523367427;0.09757704457880303;0.21622185885931045;0.21196708963970554;0.0;0.10031230231228333;0.2555498484297889;0.009260124776760564;0.011187832209844715;0.008054547695263356;0.0;0.14876195133119566;0.19139493350540204;0.21822872779856528;0.20625392045601013;0.11351750502119871;0.20024907771375416;0.3646687182392776;0.1783820083294079;0.17326627320822904;0.18152879194739233;0.14192908580296604;0.10626818703183215;0.19749375011959855;0.11219953930636431;0.1624632812239321;0.19880189450070898;0.060546385553865996;0.2767859676638414;0.18964336112194455;0.05034746078915782;0.003306215104129547;0.01427496011969418;0.06816740999415899;0.24478171270053506;0.13985330139722216;0.08263914654533398;0.08496794371896686;0.18007486428603697;0.17444913070180654;0.011887076965666462;0.00645495619663065;0.005295495244001979;0.05441249611615171;0.007670661456435926;0.020488784931581103;0.3743777661085901;0.6550603750690751;0.7286718643157214;0.8009506629176575;0.7646388524405613;0.8806007333485562;0.9106835966102811;0.9329064013302639;0.9009576218989308;0.9237668809130815;0.9554265535477202;0.7794471565889333;0.912582750513033;0.6106319921739044;0.5582662069452632;0.6538332796525627;0.9442985655749442;0.0624240025739921;0.023202434881464506;0.014124951347794455;0.013267514362071211;0.05459612587212548;0.0004906369735894672;0.023606394742297396;0.033219254452171124;0.026267512611114187;0.02756074979552447;0.07982431355555049;0.08144065944143056;0.026616322276410604;0.2873895133799958;0.01880067381712553;0.007875900885591045;0.010294193545435022;0.17710886625330494;0.015901241374803383;0.05964240529018266;0.017538616872030538;0.06111318558692082;0.03938663427497385;0.001538958478165945;0.05483073128422658;0.013622425670101353;0.2529614812883914;0.32746319509522653;0.23159354338039015;0.04459380622218399;0.0057643886500807935;0.013758846503816613;0.07195325300272938;0.006357449699713959;0.01108880912576529;0.10154568056050203;0.008357354719778474;0.0009537833286738827;0.003032904675808491;0.006112787094833328;0.0020575407793110142;0.07040485379708014;0.017703414211454237;0.21845266216823306;0.010446822986951619;0.015137851517581277;0.0012568344114630668;0.2515147233914021;0.007301434455810891;0.006172944341258944;0.03831846194942963;0.08160275121249266;0.04785112870427877;0.008089104561554651;0.0013842426007620544;0.05662255993335335;0.04927621973189468;0.016816673707947215;0.013153602380980756;0.005117271194014579;0.007790035352051706;0.005949209150444155;0.08674330350959465;0.01963173362981976;0.07006776077598303;0.008841874190644253;0.383117761550743;0.021702583680884884;0.016151819279045392;0.0006655309479518313;0.01516462670677518;0.004997244424350371;0.0003939647572110129;0.0009638870446114182;0.050298445323158726;0.13745578299452899;0.27926994589261017;0.018090262244111564;0.043861371773762405;0.007621402565830768;0.031941787849482844;0.05101261274930076;0.008434411490832747;0.14215177383265384;0.06144259680432795;0.004592941546660258;0.009398852178519332;0.03866339884095773;0.007101555156108027;0.00697974012020999;0.01066155475543132;0.16465832616242623;0.026066455808015306;0.023900044439404574;0.0012355719951447238;0.09544877243578963;0.04473684534014963;0.04448501294893955;0.20533892400956744;0.27306907008222303;0.27866460496061357;0.30631238342925865;0.039750852605441825;0.0;0.010385256206185845;0.007024682386106729;0.008768208154929935;0.015151999279615351;0.017220911455365348;0.004423323265065196;0.0016038578258961754;0.0006283221236236492;0.0006055667298460385;0.01040526700108;0.0335980030386891;0.06099771742316502;0.006366005199696507;0.016295638532981122;0.006903451502152972;0.03515912576796644;0.06855509163217141;0.021528023340433144;0.008577477123887397;0.010931283542548922;0.005323070543213012;0.00558026936939658;0.008548881319619438;0.0063295856977565014;0.006850234203780414;0.0199809157457139;0.0877863978487873;0.01101511117833887;0.017019521613707463;0.25887769381571474;0.004050732108509866;0.004607936540313645;0.01411992492448612;0.0048218705611468935;0.06834358752850751;0.07488376184907061;0.02329633355388799;0.006305044133324724;0.22819750098203154;0.23306598532336134;0.06293854307239473;0.06907477237408323
+2,3,3',4',5,5',6-Heptachlorobiphenyl;0.19112486889069016;0.1927285528812797;0.1905763217972942;0.1872278242925472;0.1904352529300724;0.1874584752030713;0.09757796144067109;0.19041647328922648;0.190978582715062;0.19535414997598197;0.08272750622061414;0.21769175698478577;0.11401159417205904;0.19197888923365022;0.19140329538642972;0.18100412817440673;0.1989270817101067;0.19872910371567684;0.19192201413278162;0.19620204827370252;0.1863501499288622;0.19878208196774716;0.20620942997928962;0.19975972836742917;0.20413225762229598;0.036641694058754073;0.09191561950473558;0.0665459630706445;0.0500340515212007;0.05756979362709402;0.0405004405174189;0.7020464420404884;0.21537253781361543;0.14334314937723597;0.6441829777631108;0.1915090093895812;0.0662619520062679;0.053718423948780424;0.003981591042769399;0.6321174553774597;0.9330748303281996;0.6794678243446282;0.8232183147075363;0.009382490199587184;0.03976873144043793;0.034155711355063276;0.036528188646328175;0.0369557331520452;0.03503553755629502;0.7805928458073392;0.861452755556623;0.6139186381298694;0.00041250837895510505;0.002524876298405312;0.6181481699492679;0.6810502627603972;0.8976442010267905;0.8820663409649885;0.9539127835848634;0.09273430617727399;0.9681875410428952;0.7746321889347936;0.8105499967907791;0.8056397911260913;0.8631001912091548;0.8760803309821928;0.8848337248441895;0.9662368051102372;0.9646975206641449;0.9687427055087998;0.9647109029466876;1.0;0.005898021330697602;0.03456632126878929;0.004485072517089576;0.015088815378713389;0.003707052859076907;0.0015761533863692587;0.00042608586641743534;0.01866234120365662;0.034449806826826634;0.029764143203075126;0.00948921711119271;0.013034126338532109;0.020568070894791544;0.01277775365271543;0.021745009123435678;0.02138524428442791;0.02452193295067739;0.20279959727068317;0.014521897880733138;0.008798289540745694;0.07525543334500677;0.02705581869232784;0.03153579423638977;0.014662153713817494;0.00787892029720792;0.030656302498469536;0.05836220969746386;0.05620772088761068;0.060784653264920954;0.048567491078857085;0.052833735252295025;0.030764122884031634;0.03533019672062365;0.5261745253505847;0.3423766379894344;0.4255430752441638;0.397993664094398;0.4534118339638487;0.5371333846070452;0.5930582591050917;0.3496496851369606;0.38047871269961536;0.4395820579693442;0.07528220697614407;0.12399456039703025;0.05809323998305933;0.32304581946236344;0.2856095193058794;0.07714279802505974;0.05593382538151833;0.3618270917035009;0.03673160160065266;0.005826098845412586;0.015576352679225766;0.011487360281479859;0.011788769521217482;0.007791466275850445;0.0023402352095475976;0.04846009024867353;0.007259335775216802;0.03611253219142488;0.024941985541963647;0.1961928737185184;0.040507575765742765;0.013061374540690025;0.008934545504017148;0.15795117690620208;0.20810733544252596;0.08730364418230846;0.14209723859886533;0.02845165853114621;0.0718608651388455;0.1317580251882023;0.013004605830488524;0.008228766589111444;0.012646783780539511;0.019080651432439522;0.02064861907396296;0.08929176605633819;0.012816067961594225;0.005790753853945992;0.0036400439597787998;0.14089721815805054;0.0765585645297964;0.0735408257036883;0.0267602646919947;0.031685678607212574;0.004311283197641253;0.03320983363192036;0.05744976841955751;0.00846659188779768;0.0740261644812885;0.06748880126115595;0.06065744406435701;0.1197094694657254;0.03601209553770991;0.04581224798387412;0.08724284160887591;0.15675329210075373;0.05536300904322709;0.0036148410485958623;0.0035454786110041153;0.0029782383649297503;0.025259394857338687;0.0006806229000946808;0.00570626563863829;0.07301055136994432;0.15671945599079493;0.15439268236376333;0.00014320902167267428;0.07491927213072577;0.18579416239836016;0.014573474336928259;0.03581630409944856;0.004971381442903488;0.0;0.10714377665100577;0.13880233005189654;0.1603205247290326;0.16193243794647696;0.1009908922536632;0.14461511349324163;0.29162322517738304;0.12520845128954075;0.1216196575301446;0.12903484414949534;0.10445636145230543;0.07674670196756747;0.1401439994185771;0.08023196141912636;0.11575244918462016;0.14636426518771475;0.06816070761316129;0.19627405668146153;0.14644617917534947;0.039183255892262375;0.0025544933098835105;0.021194157988840993;0.039241293932141146;0.19357565473619218;0.10901546491546779;0.07334444355294074;0.10511609274920872;0.1431762954863316;0.14066301956088986;0.0207144870237119;0.0021731487747135335;0.006135242318496805;0.04253504568848834;0.013033462457160227;0.03745247249515906;0.29061626881504754;0.523664427874756;0.6256950315538347;0.6764776123823881;0.7628495345142008;0.7991823944942702;0.9578513180121317;0.9775595824668982;0.9542137048547095;0.8873849628387455;0.8824189432822966;0.8027040887316462;0.9060340707755309;0.5932387375238855;0.5179386501539406;0.6093489408703933;0.9340067631911441;0.05088470279713218;0.018743781174713238;0.01526519436015184;0.01508053413325213;0.07039991797367477;0.011926560696818678;0.050494526192896294;0.05604157597381421;0.052414059405238064;0.039541030022822755;0.06136778343485876;0.06231455722822715;0.034550063332129864;0.21626021275512325;0.024574853701578022;0.023090065647435484;0.006773680919190078;0.1381142248686385;0.013226539761949877;0.04577573584378196;0.021299477544002174;0.04322996343149167;0.005711756670961781;0.026675746966176427;0.05013573519716099;0.0233903152996961;0.24301073104183232;0.27287148278813705;0.20364576631050232;0.029990077157277722;0.004126115150825196;0.015054949104424705;0.0544588617771534;0.008927581272038193;0.009554677351180731;0.07819748162657604;0.007105778562512223;0.011607966346893664;0.009642296722596207;0.002368920338440634;0.0016003922059212574;0.02924263089398421;0.021230600927397408;0.15914638474118134;0.009021521217494608;0.0058723854382931795;0.007587869640284142;0.2059859976057915;0.012526602374828848;0.008301406672457727;0.04140124111055385;0.08111134288939385;0.027298956024543453;0.009415706596484268;0.0039054609779426218;0.039875552584154816;0.03832707161530716;0.01945868101827877;0.024984485069367703;0.011902105349177065;0.018510484076431813;0.006361657864293211;0.05995380386196357;0.015624172353078346;0.048985252507454;0.008218177179672145;0.3119659620569615;0.024800349868078095;0.012417164762465585;0.003939892735816223;0.023564790319299134;0.013621554484499;0.0003812591661790771;0.0008743692364730621;0.0354498145830163;0.1083538362960742;0.23664268034034214;0.01338668964987988;0.03169000293015366;0.018654777268668103;0.031004437520494664;0.036371770873690104;0.007474287742086933;0.11567778667604402;0.044786693541189276;0.0067533077336432434;0.016342781587209584;0.012237157782432156;0.00944761009265583;0.011916766546986871;0.00783741697719082;0.1242657524627038;0.01758256512155883;0.015448100123298206;0.001040469259335438;0.07903738526015845;0.04219423017654045;0.024423844792008258;0.1471664657608915;0.24793428113556942;0.20364833033813784;0.2661096805904229;0.02935679356952614;0.0;0.01158424976012761;0.006723356409990387;0.01188411130657676;0.005868645248657211;0.005563329547392079;0.02643028195491585;0.005737637294264865;0.0018194890687157697;0.004823842039784034;0.016217653019258878;0.03094221697402698;0.06523257821106568;0.006773469706106726;0.018034649287466554;0.0007180007048055835;0.05394426834936087;0.05564236410666644;0.01720274528448337;0.05759322915394766;0.0075721674361432095;0.0041141188493553724;0.013063620655434267;0.012907521115673067;0.01022251786518448;0.01151496930048001;0.03131126635714467;0.06028658349588189;0.004234950393210481;0.027443235045673434;0.18380549665790621;0.0028362819262018313;0.0036992047169384455;0.01528681884420495;0.0044006405935097075;0.05258389633670184;0.06667792232648252;0.0196491511408399;0.0016403764284013728;0.17327280423692154;0.17454627593460656;0.04707631154681097;0.04939328557602865
+cis-Prallethrin;0.002423235175910709;0.004226114976573273;0.0029970662761893857;0.003942405967879938;0.004646664170376391;0.04482834331346764;0.04569273675924365;0.0;0.0;0.0031458578466426537;0.0024463609440952714;0.0017074320067664067;0.002124323336805254;0.0;8.285861812178218e-05;7.592372012942952e-05;0.0023558268961279523;0.002509813384514865;0.003907990468107791;0.003061713367994701;0.00492744146589963;0.0017915086914868149;0.013454668377955916;0.0017131575028286128;0.007964378622733847;0.03404352849645208;0.20390027125711127;0.08723622913942225;0.04086333060264824;0.15365396048976096;0.09507119780462853;0.06822758055367575;0.07378251285473846;0.005005799054795949;0.06339939899031392;0.0307407811272658;0.11964853464461964;0.02493855358066253;0.02958495913414893;0.016341125537342082;0.009524935270780403;0.03416049994886291;0.014681131994665376;0.0032367407975814207;0.007453023856924849;0.015961971551486927;0.01806344874174805;0.014278902355462765;0.029188643291081697;0.0020403475924715996;0.0027585168921061423;0.02239784287413009;0.00947801970779773;0.008019707477406633;0.03864105676085778;0.03625738032314942;0.018366757325745404;0.01458295523357366;0.01014791247559861;0.02202215829924888;0.006274152920670078;0.03988558804563785;0.033620443979819274;0.03254623081349952;0.024344787530874983;0.018232138316294375;0.016681780075276573;0.010471669185114062;0.006577883430600114;0.010628814183009525;0.0030291007492570373;0.005898021330697602;1.0;0.9936253388941699;0.4889952770102534;0.5609208292575857;0.6922384392108213;0.8119334387132809;0.01043796560893705;0.0906536477774627;0.7388473687413161;0.7874176670196389;0.8575517340830657;0.860172265628332;0.05270273678062136;0.025250761758145827;0.03610463984828932;0.050814011943431096;0.08280641191339645;0.06305237095480487;0.03054893881996756;0.012898295933888804;0.09274000779613717;0.11066951299222434;0.12054893620068294;0.9557055487317155;0.9498202226275584;0.15239853279563978;0.10140914232864806;0.09362495162047983;0.14683552943240658;0.08827407458578343;0.1106811470917633;0.07727384289468407;0.06556449741964429;0.02763237613130032;0.020508665880313432;0.022325502368741083;0.011914586052300915;0.009551406559745483;0.010425510199168412;0.03168341627552039;0.01379964038024534;0.025973214561687757;0.018527502047302326;0.060876789991858055;0.04852806534556007;0.041773263322586164;0.05768600043632284;0.031315922068458915;0.08158740167450992;0.04914335312053673;0.013154827526334092;0.01936161195516636;0.1810660111915835;0.055787072564957726;0.05177637415006679;0.3058132900411515;0.2704981808894667;0.2974556501671305;0.14915115894978254;0.10452637453615918;0.09821826256394628;0.49941073370988714;0.0019360061712560836;0.08748783652507994;0.08206312049220489;0.16626059948705366;0.19907721078886073;0.18782340579306167;0.1750467940294763;0.16891256796802664;0.22544812194047695;0.34165490163931467;0.14921219646895073;0.2425640696478925;0.1564894305208844;0.12324396489727076;0.4224862756484036;0.36230196674334325;0.004064485680179482;0.330265232470571;0.216549416331026;0.07333149870760772;0.12120014316114078;0.1746347108420062;0.0138501454463496;0.010479297509362022;0.025568208904986237;0.008932107476994326;0.015524350766112789;0.06979134809440875;0.036741953444662905;0.048610044158009666;0.16535317716668219;0.0767906186084143;0.11128872043469189;0.0411459640518522;0.03951153406281962;0.07679380243228204;0.17762616472920686;0.023140805034158766;0.0048549835610551696;0.014605955972014518;0.00788905527411323;0.015148067529055412;0.008551832316055932;0.06871234215302724;0.05807577632582908;0.033706087280328735;0.04830018899489267;0.010306149460012355;0.07359072456064299;0.07460022529993407;0.03112734122485384;0.03128226386926983;0.04636192265828591;0.0008295915355589299;0.021274059917273946;0.0050259369299835285;0.08141240728678463;0.0045485786275902594;0.04005341970402659;0.01235388245458228;0.06724766015755575;0.020478319061510576;0.01641032947638078;0.031679197073082414;0.03654023698444443;0.027231382344102436;0.04412321498920323;0.029059560884074517;0.034006083163186124;0.0021259237129724806;0.005600789803424988;0.0017097866445460624;0.22429091899312814;0.057057427700385736;0.0729893673896078;0.04081247763513203;0.05114147174087699;0.04232722864498013;0.06685405531340258;0.07005917976390669;0.26947306079020034;0.022076461436468;0.1550743903291162;0.1637488079838579;0.02887849670152558;0.03191968232696506;0.022321748402664685;0.009223253313118043;0.21505585508934943;0.02304065853820798;0.024989533642620482;0.09294221334622288;0.06464303363026411;0.05931862116918415;0.04482239050046253;0.007448312547194031;0.008338559616486703;0.006760339540235931;0.024504467817432384;0.018368105152861518;0.004512266781813484;0.0109984580965677;0.05334392645406735;0.045922107714944475;0.038253958706597625;0.009939328987808655;0.052966266373752534;0.0648897465830191;0.05255121470808138;0.06380788629833763;0.02476020573659533;0.009937621634199366;0.019493846068293873;0.012984634200189108;0.03750832943874836;0.07756391385431352;0.005830267988604994;0.005370645303456934;0.05831848393084201;0.06119573071855222;0.10128182918885865;0.09030687478616692;0.06175302970822949;0.02553690009026801;0.08240125915042536;0.0008327524059944288;0.4566862734874153;0.07239614517043273;0.03485519255598335;0.028377032529801654;0.009003651109928066;0.09063836486209743;0.22507295652934997;0.05340135363992821;0.03650927731297927;0.02813782855106558;0.07271216290194701;0.04856052105326541;0.03819930472453061;0.12704290428712575;0.007624130866749253;0.0697671126600612;0.013995617687590778;0.08951566996479325;0.07157991877789847;0.05306422155777231;0.023918663132338685;0.026443716900378725;0.46398739955729795;0.017977748180941857;0.011159799241421343;0.04345067853975451;0.012259503478167016;0.0046877255685295145;0.0007570977896203704;0.061639411946240806;0.00813304766820429;0.049818809644152834;0.003827395729022112;0.15004265542044934;0.050702109648836;0.004767097943900256;0.058211211859308824;0.10119894755635403;0.02033410061552952;0.15539650097417684;0.05429349969259654;0.02872106580480887;0.0273895254876846;0.029371426608717357;0.004547852826765479;0.010550652837502606;0.015866108312526578;0.01921242410139012;0.02751830371579321;0.006008005900082406;0.0034715844065955686;0.013886189101983765;0.0;0.0006866512065225833;0.08827088545354204;0.02595177024490842;0.012388744359816378;0.007263805254121303;0.09135388423153536;0.042778858936087585;0.070257158262536;0.04614261499885118;0.15252639607925195;0.00796178540205103;0.1315722782521643;0.06774019875138783;0.04291786293582676;0.2032755071633869;0.09336609068227607;0.011470831884745054;0.017068694510820572;0.00587927996951833;0.10649704502755955;0.1465652496960348;0.2049304523874103;0.04641936569063717;0.08629653415577347;0.05236663971665657;0.005450613567797108;0.012073724557913591;0.03193898741030172;0.03361630395663136;0.003190942887063362;0.0071538456797667835;0.04165132024981109;0.005353218452099607;0.008089653152841419;0.02037540233238191;0.023378291429033072;0.01761382589309971;0.03579429166655962;0.027657068031692475;0.0055017349577669685;0.12144101021782203;0.052889448593622705;0.04780803464249544;0.007350100807705047;0.008850675858835528;0.5642336396975179;0.020958852065745954;0.2951164400079927;0.03817893875249154;0.006496099348686901;0.02067523498277243;0.0035969095557888413;0.04013315507704824;0.002540028548687129;0.06490582024146146;0.05414397860649502;0.05891985652821996;0.03215632471339881;0.05415304472729827;0.09704433771322732;0.01304530688073265;0.018085534686943978;0.021442736022191003;0.04261035625469642;0.024898286212222447;0.035035417420401206;0.08268090783343153;0.020809389384305287;0.05019401705004634;0.0686064625909449;0.046286930497154814;0.3117854662443953;0.39680780646026054
+trans-Prallethrin;0.019721226966843742;0.019932582233959883;0.016890679035032923;0.016417390829682004;0.017954010696152652;0.04534638146221582;0.04019308149524692;0.015101187047597685;0.015015806930441787;0.01910941872393282;0.008193235633075285;0.01676526990211415;0.011384864040972744;0.017888850907035694;0.01765886221839198;0.01849100912228601;0.017604326519315816;0.01804625777941136;0.01942595660764699;0.01886216881455474;0.020812256875079205;0.0168771932439013;0.031199810633864546;0.018569424754498624;0.022260112452359003;0.037396558271292436;0.19870965567163437;0.09638430895988724;0.044572846573290845;0.2350528205229301;0.09243259303785721;0.07094870636606566;0.0763016144133621;0.01573566608629927;0.053459081049366065;0.04494239619328865;0.12438736249606254;0.026817485734540725;0.03171500916770431;0.011572276593811107;0.029553348239379287;0.02906147833645642;0.0296747525567299;0.0005007292710852849;0.025601529303956344;0.0284170738019661;0.031572121249031325;0.03039163876280564;0.049654975210015745;0.007835576677267947;0.026684335598730926;0.034017573764412674;0.003170903072660802;0.007466517126876357;0.021720539992629115;0.02647428540752776;0.032687952094613046;0.02699424722706862;0.03557447581598865;0.017386624820113477;0.034577789251845924;0.035018704145171525;0.03320734464675167;0.030743378511219444;0.034752990047218595;0.028609887947605578;0.027162113762309367;0.031181648361618793;0.02197884939525794;0.03219378717596487;0.02237442788292542;0.03456632126878929;0.9936253388941699;1.0;0.4830620763623732;0.5399458073598432;0.0963724368569271;0.3069986561861612;0.08454439366465218;0.10594228296263189;0.6940124096479134;0.7478992829330753;0.8485780828865056;0.8518083721519376;0.05019514213994998;0.02399266212950225;0.09173397523657718;0.11183184557811737;0.08736260694051647;0.0406378531316879;0.02116594447797785;0.09111418123200636;0.15144343918625053;0.12781663672530746;0.13625498444932418;0.9525067949404622;0.9638486883596731;0.14993257197596543;0.15730667895540135;0.12192483899460337;0.17734013390273715;0.09892635716669192;0.1274242866374902;0.10279937166245735;0.09051443859481528;0.01857255991496794;0.01124859397363519;0.011381945233340043;0.012744507014200936;0.013574494626510116;0.01269866252826267;0.02495544334503564;0.016362551986033494;0.013974700375376937;0.021210681610092416;0.0032842124353529064;0.00476433562722498;0.06711762715244585;0.020134440743230016;0.04833596109417436;0.015650939208715534;0.018246183746061094;0.012041809806502412;0.024518027372892905;0.1986818050885022;0.05891170869701419;0.05345462729605272;0.2599514250313665;0.2617445242993018;0.30013629627446353;0.12289942938137714;0.11086042033882051;0.09697357581844665;0.5241515521619785;0.01713129314773795;0.08068477141022126;0.07646678571635805;0.16071673770133546;0.2169656407265394;0.20908777468667716;0.19873356270137077;0.17594252944426791;0.2240340086944857;0.37658787410913336;0.15078007942599794;0.2367666497953298;0.15225657933969647;0.12691163353542903;0.44481025715137;0.3677634317137864;0.019597052704855192;0.33534736590605546;0.21842563223884714;0.0751504390188736;0.13002627596719074;0.18288577854011848;0.01711705172724528;0.011381431742519594;0.026829896939958357;0.007108298547794501;0.015427526965663301;0.08568706276569905;0.05683722747304522;0.017456259684720244;0.12857892295656814;0.12431405442259585;0.07928497969143508;0.026162206029397124;0.030825071469553243;0.054402185576596325;0.24945207488105944;0.03620500169144481;0.02130382984621869;0.00736643224373271;0.008749249965265441;0.015980751754293997;0.00909246757504709;0.12889757002308455;0.07984075212655464;0.05128419848707501;0.06412055222803055;0.00877904162560045;0.08191333188890233;0.1455232776260374;0.03494901276663891;0.03204007041252122;0.13714596302337756;0.001019296573981597;0.026745863106507922;0.012197692002159513;0.12183988562338498;0.0169973829675477;0.04050895370212794;0.026689790089310713;0.06781411773556738;0.017815352288217172;0.013312482786359624;0.029202822671644403;0.036732674000969585;0.016966707976225834;0.04706841540760264;0.01965129346450922;0.02906968240163803;0.026559846739165983;0.020716654507658156;0.022101496132726182;0.24343152972521748;0.09568322679871816;0.07864984391076577;0.0415197183259102;0.05350021558800396;0.04280790143476858;0.07242289958056812;0.08406957665733905;0.2757644802585822;0.029817711720014295;0.18414812003104875;0.16441943242063542;0.02899685907782341;0.03044877366900237;0.027991735690043908;0.011913972580980144;0.03630520177579289;0.026234066404586538;0.028770206037589265;0.042520843983652634;0.03212699841793447;0.04224193898048553;0.03428426273862525;0.030687596487694712;0.02948309997503902;0.027376193571119218;0.03744033800449506;0.030020814206290415;0.014695562196481195;0.02649949491060192;0.014270384912137588;0.013716072122438304;0.01303170149973893;0.024793792125811627;0.06830063481503681;0.0766191689042265;0.05995931391078088;0.05766908686409919;0.02919019170293576;0.004575806009722438;0.025380409240512908;0.01498450104918654;0.03714974705065741;0.09102967282641798;0.07585854420279657;0.07181692889064599;0.13349206472225342;0.09007937457149512;0.092016793387576;0.09508508039756201;0.12277313282800477;0.032321854961211906;0.08305462988253962;0.0050329938771074365;0.09156528853022632;0.06522782056453943;0.0329674814915469;0.03496479617849439;0.01426015004988872;0.09770399774417846;0.0788271314553463;0.06643513397169502;0.0512825548173073;0.049351395966206565;0.0594683863708455;0.04595497788123353;0.0403989496255706;0.13589474304003066;0.013850890411808085;0.08475696080908433;0.0042883833818669025;0.09836120998866218;0.07889186248609939;0.057879642824366126;0.02474231332445008;0.031098141918985325;0.09297144030382924;0.030077369597802137;0.01621575107417016;0.048324963538237314;0.08464875846297995;0.07964164535550337;0.000723571968360019;0.05452300173333522;0.010594536388103893;0.152813193382403;0.024792313126244827;0.1759171384889932;0.09060213746441567;0.011803868323971295;0.06108461157481492;0.10732396912034604;0.021729102914777917;0.17311173575704358;0.21156692241257447;0.031110894630130267;0.02890162101255394;0.03778188699661498;0.009784231367252967;0.012978324617526705;0.011614767417256488;0.046647534354054304;0.03716537826058229;0.0037029863136668908;0.006476732142996802;0.058665822611848883;0.0;0.0005597382887032936;0.09647536281916191;0.04042133293614551;0.027082872857993726;0.012119056326765397;0.1020210338542311;0.0372296294007929;0.06817868914631167;0.06806893707921845;0.16201592716277444;0.016220195164128922;0.14342173954097837;0.09035860717676995;0.019700011037841515;0.20621911487602104;0.08296117859342711;0.013046392893829653;0.05752201931432536;0.015341578416209612;0.10664185213211552;0.14710544838740958;0.2133768533148786;0.10817717074551603;0.06551647566102453;0.08018561990510413;0.022680207142750975;0.025147697666175108;0.045682152515022105;0.04225007328351802;0.005781844050027599;0.004173799677526639;0.06204779925183702;0.021705830222556025;0.022786272157741844;0.027590169706488216;0.026451108655608683;0.051227169376345194;0.02664468912851346;0.023581739620211897;0.013277331241306015;0.13735582889006262;0.04694877294012051;0.0913521084726814;0.01154675421642161;0.01143308151393301;0.5616594988990737;0.032162516133454826;0.23671352911357577;0.043650759545586226;0.005434689810174186;0.0481068648160006;0.011030339753964774;0.04857633996482537;0.0024948587129994056;0.040645651657141776;0.0534919960073073;0.09830019870192094;0.05212368268867865;0.055271629651004905;0.11952738621418983;0.02606360631889929;0.014233078739996975;0.01756213019034317;0.0529226159107176;0.024584140941729272;0.03922053294880387;0.0895174248871708;0.020882073013586928;0.05028617264745056;0.08176486906565585;0.0597991143808578;0.3301970464108451;0.41632385593139004
+cis-Resmethrin;0.030655472499634222;0.002758195129349946;0.002626457319489543;0.002386215202071332;0.0035356639705345213;0.03239725012754899;0.018935187130901896;0.0005488894466742347;0.000521283388203399;0.017372316693199618;0.003682310340197296;0.0028274856691845;0.0013281592144652424;0.0019392091046316199;0.0009101052804912156;0.0012359456395745843;0.0018140453771650431;0.0019290079453565944;0.002959206001188726;0.0026649009871352785;0.0027883498244003313;0.0010542849543958498;0.017651574879994733;0.005458233092034849;0.0026066406455277566;0.04934047320183947;0.04736470336757223;0.055649600172604605;0.08104009829409281;0.18992541708032223;0.04879250399440979;0.04706712125020695;0.04609317214994722;0.01572566182867871;0.07653782249609445;0.030306321488433645;0.5264952848746707;0.029224453353713657;0.008842641751308077;0.02436127707483733;0.005493208947647047;0.009518237010240396;0.027372328356491456;0.00016124644052779313;0.012504679159580938;0.022288552822119508;0.024120433345493356;0.021705289681513393;0.028585978057454522;0.00028068721164169777;0.0012928061401700575;0.004491136991097437;0.0072647030610953345;0.006995819134297914;0.01315026074755831;0.008030956157277115;0.051608920116415095;0.03647036967980106;0.006221478151224753;0.0072153800581414825;0.004609009518850374;0.02506678895525828;0.02304421090857998;0.023261713490344237;0.05320157455538627;0.04003538371567142;0.039655599889679816;0.005583147246282551;0.002155252072661202;0.005724426677322558;0.001898775954386236;0.004485072517089576;0.4889952770102534;0.4830620763623732;1.0;0.9843385504817003;0.04296543257309321;0.14712605054575714;0.022109488206396195;0.1511219376993229;0.4081648038571274;0.43042568633464084;0.5356429387030244;0.4507337442344558;0.0865362061500457;0.07256970584548138;0.1350837601023093;0.10173410306157929;0.1284612255466542;0.02292145183925219;0.09667570289169668;0.06445405993531261;0.1916341993993065;0.09283381205113807;0.11854094956983809;0.47964629716750273;0.4698887901540141;0.12776767649244186;0.1624568446491485;0.1250552986269853;0.21848695235801158;0.09138007360783383;0.1459900339496842;0.08667950128436645;0.1256972157828621;0.0016899470342006482;0.001187268279074175;0.0004765138518169387;0.0018001803859655958;0.002159021306184369;0.0013195821868742202;0.0020208164568876166;0.01722155602142472;0.007398467395906264;0.0056670121981491645;0.007869640157221625;0.00854340164501321;0.01052092030167777;0.01605324135764048;0.03914995182129524;0.009609135555971184;0.010933900785130643;0.0037876428725713736;0.04811790863214654;0.10214996101044271;0.029123532742834413;0.026733007199595392;0.06956979574913218;0.08166488603815945;0.07456610373592275;0.10809111293217959;0.3330759454769236;0.01788577040082744;0.29270330545169315;0.01267958664760501;0.32078762422154444;0.1382507093841318;0.3789750540040996;0.08194625341284799;0.08739053491086704;0.08632365913732351;0.10655078169397846;0.17042806756602694;0.11266871101379677;0.12361311367891122;0.08406591930965311;0.11270219215876992;0.13284920738330627;0.2476986293204004;0.21111897822178338;0.015543622203724574;0.1588725859960341;0.11057265965030971;0.04530526357437084;0.03120923416855369;0.12027451029242155;0.12368429185139088;0.11731938461481645;0.1290944896159198;0.19742142047664687;0.19533063300402165;0.03365697514926741;0.19427065272513594;0.02094150496279171;0.08896762719872854;0.018249470802161633;0.03984515218236933;0.012014604390907513;0.007875271573501808;0.05317448836555582;0.0962415361676513;0.011509900131408183;0.014925984955287503;0.01513368377061926;0.01010016746891732;0.0171918218673574;0.007989534057238413;0.03532593177106292;0.04988801510718476;0.02833057702854775;0.030143965175144418;0.0328435539824792;0.08982230953836258;0.04776066185909932;0.2518078019184052;0.022723772514160172;0.0640339822256617;0.016073682556301604;0.02986924501891234;0.005279119163173629;0.07249311484588922;0.003203742212128391;0.30589191570098767;0.012819988868269754;0.05545927835337745;0.21123568675779883;0.21096405204735266;0.21234025059807476;0.25787489442854905;0.24248735020370887;0.21176942444930189;0.22228180960647548;0.20830255365368638;0.01922968793358046;0.04869459873256101;0.002588464984388153;0.11535324990371151;0.14258967005851592;0.014042405211248188;0.08467779787104358;0.023606464979847988;0.04097476321264371;0.06187865102230615;0.14036897954069116;0.15515704688325746;0.028198601176712773;0.11410007842466091;0.10894208613800344;0.006408698964978014;0.06691050055230904;0.032854407571422294;0.03768351632633492;0.01995091185938104;0.012089699020630748;0.015580849640397292;0.027723935677640373;0.019716311388064935;0.038025870877326826;0.027292437869852224;0.006004301908692886;0.005624693769998202;0.0059040709759748495;0.0772796773084383;0.05564217325679473;0.00456607854907149;0.006241517358016742;0.0047946664861373426;0.016262806502033662;0.008966272597859126;0.005643382996853767;0.15922444737050284;0.030685177744299387;0.023037010356500395;0.12776690472406765;0.045085498480920944;0.13596256977286653;0.04019758075092877;0.05330111274867979;0.04835693458756905;0.10615887277171306;0.033180332423339266;0.033965840094711444;0.08527024307238078;0.0525959143742852;0.12224908624948597;0.04094130669885749;0.13493374420034468;0.014071809973389292;0.03964237652645115;0.04745341039493683;0.06201699348458457;0.03419106874610354;0.04687163319902082;0.003686239926617137;0.022636120019575424;0.05778003042228502;0.0881687037610019;0.058746325108610005;0.16963662248895986;0.03767826649068062;0.04673746387746027;0.0279732575903341;0.11208597957372375;0.0682696872551463;0.027901948760880032;0.03859255239006192;0.13966962045924786;0.055399407440295034;0.04501536078733904;0.03662800070422073;0.10042704055152157;0.048692367301682936;0.06215456158376517;0.05825131944668125;0.04151730457193037;0.036400620129439024;0.034012293310354415;0.036601877393602884;0.0004527699011678674;0.027617393588346414;0.03088952375510901;0.03597516406219913;0.013120552743519337;0.10901856376435527;0.16869029318850132;0.005617619184793366;0.048114226452448706;0.11881797801445418;0.13643328897376567;0.08625397531128103;0.16822324819250767;0.02257124600169508;0.03894242350512885;0.02010546481240196;0.002953231761246854;0.03516606678622972;0.004120197786938322;0.22895456612151593;0.12683249513481526;0.016946103619446387;0.029946939929530448;0.07260546060357927;0.07274732052088044;0.06309137241477042;0.0476972623693004;0.15860457300809347;0.04598972733359988;0.050365462136248935;0.07293483701901764;0.029955031334248015;0.0461904341746835;0.05131607829006174;0.14763331564443946;0.4335056667223604;0.1087684502860537;0.03317485352118229;0.021670560400067297;0.12461172493383339;0.03777010714415112;0.03728512976664179;0.06241906509565335;0.033894507206324934;0.34917760203551756;0.3738226012807297;0.05712917980678079;0.01406489714638546;0.09191745040543765;0.065849321481108;0.01734480470580304;0.006442799079438576;0.06341342965863783;0.033142870898198624;0.043052485087139235;0.060881849890553424;0.07962160000397409;0.09400087816036469;0.08365146085144239;0.07193899633220079;0.06776164227677171;0.01144976630683079;0.016299631020384293;0.017729922351196414;0.005654913912414706;0.0831694309414954;0.1694250345849218;0.0813934625269378;0.003824949461287;0.03633225923672107;0.271373531462958;0.05293650829830187;0.14620453794131838;0.031055923024212864;0.01881277557023831;0.11319911332215692;0.04226589338945265;0.11029111888043495;0.007175034746091954;0.34211264152311305;0.39580614596462577;0.21995082096895163;0.09382483937925665;0.17028451906712397;0.2586501213906509;0.06532534760904739;0.6426162179029696;0.6468816103416141;0.10806110075737324;0.10630001517746555;0.20447573917076337;0.142820596608872;0.030501563940943815;0.026590641378702713;0.1578764070449628;0.13746237113259907;0.33730522003569635;0.3465932657194196
+trans-Resmethrin;0.027348057943597025;0.0021683414384814272;0.002168177670081263;0.003626683119891013;0.005042387856903;0.037823246866284764;0.014405204174207709;0.0018802383603928564;0.0018448692241546474;0.017660800078649674;0.005017816132821014;0.0032257947589937447;0.0010145518001391668;0.0;0.0;0.0;0.0015562484537110868;0.0014802000747325204;0.001884752381767094;0.0017408367573017755;0.002331928452847099;0.0006984831546518698;0.015061502316457493;0.005043698761354272;0.002303571592186311;0.04788734177161287;0.03398687974062069;0.05069083500793231;0.08260133820353681;0.14344638358159922;0.0574509261532619;0.07169982962914206;0.04781674571249455;0.0037277828009001385;0.0861301077202233;0.030006120584312648;0.5106243103823218;0.02752027533553882;0.0077886830630599195;0.022139889179594027;0.014112829910132234;0.0102716128565898;0.08365424765114526;0.008327744432042726;0.010902306738863568;0.013086909223892874;0.013998539084091459;0.011538033865029173;0.019591200022898787;0.0003489116408593805;0.0019182491547059231;0.004710811705872806;0.002640157435232874;0.04057956169211516;0.07055758729012411;0.00912735335391476;0.05664762325310758;0.04039146442625506;0.024007848666949303;0.04108104250414898;0.01703075826160939;0.03084572283952929;0.028163023784097335;0.02768476251865481;0.05884059745897646;0.044735767079527616;0.043962377045446865;0.027227863233435512;0.021201753022943748;0.02741115858224091;0.020545440742916844;0.015088815378713389;0.5609208292575857;0.5399458073598432;0.9843385504817003;1.0;0.04111281340275296;0.16246390010656958;0.026362268907970568;0.07085349706194086;0.45373095842349787;0.4844803628093622;0.5054916743869285;0.5071737409449403;0.06925938796030891;0.05430098804521769;0.0686278098200152;0.07015608318952185;0.07524220861936824;0.17451090165295047;0.07358263800608217;0.06033344714704159;0.18433062470596714;0.09312853215247688;0.11277845182570842;0.535939973831807;0.5264324036380424;0.15920334746425369;0.1543450808124975;0.13970255258791414;0.2609978656675853;0.08788378381717146;0.136854649355538;0.059143153568995556;0.1083890329782783;0.016552114236254155;0.014924599234126461;0.017007329107391233;0.004450140057493537;0.003085792370980793;0.010466203712454181;0.02813799487012976;0.017220861870113374;0.009823309769773275;0.011719510131924148;0.006649232658093135;0.004504456565583217;0.009687107244862709;0.015932613765155028;0.03566243738686325;0.020672897967260753;0.006201595738786273;0.005206214255677529;0.029771185278717905;0.0858522781476627;0.02893159674164956;0.02639872107648529;0.07092886843101887;0.08395255556214239;0.06398171233098443;0.10560912655349267;0.33812268870598894;0.014699648152741048;0.2849027743764243;0.012933973486813938;0.32545784191945254;0.14588498185385387;0.38309585355328135;0.08591862804639087;0.08672632177351175;0.0744782536204754;0.11401960768367589;0.17444583805790992;0.1121103413969666;0.1353810810669393;0.08190335006625629;0.11393806658570584;0.14154358389993157;0.24189540778084168;0.20335029114316977;0.013819555935719513;0.1644284479554014;0.11921379346833336;0.049001114003794186;0.031031430147908594;0.12506083458666664;0.12107025960014249;0.11320189461010072;0.12595423665358024;0.1947856798267368;0.18413515918503295;0.05559712860650629;0.025048233394334603;0.018419158163567238;0.14141104818356057;0.16770689617125029;0.12394371271244133;0.018184717007304663;0.022667958619802694;0.05601028221310818;0.17059690859864557;0.015482660696234427;0.012275457098856406;0.059121612255087184;0.043961221527392146;0.01730377434875374;0.0074354218396645196;0.06155746699759225;0.04299259872766632;0.021718068979435092;0.02327699251953282;0.008194630168279891;0.08477079527308037;0.026216442118230824;0.050808309891363194;0.020383633819146353;0.021490770862580923;0.0005029203328325145;0.019007671132416887;0.005101984632038897;0.06971592774906944;0.002843071525013834;0.2999398057505015;0.009143730875471741;0.05401717744359719;0.20789007859788983;0.20756271423146141;0.20719857149554627;0.2038500107838239;0.23826748616423865;0.1967313480765073;0.22039546744978983;0.20396650928253113;0.017603749680768974;0.029488323046972492;0.002858938159685741;0.13357543172272515;0.020936475338205238;0.012579339494322323;0.08306656313529273;0.03363597667149505;0.014917940172904785;0.05347057684881896;0.13337834485045544;0.14442191051083034;0.027912177547411016;0.11621218015447056;0.10958784409458397;0.08396821668587086;0.024572785261959076;0.02715458675800069;0.017678248579316356;0.03715967248739776;0.013645950102374984;0.015625937505828354;0.02665384257888433;0.02096024555900634;0.04914119343840982;0.036767045311507186;0.012131290556290452;0.01671547929981935;0.014868717358078851;0.08577558420419167;0.06041201526142298;0.016984215340532377;0.03208485320282904;0.016823542086385965;0.02554084374480901;0.021738760661114555;0.03160252555606614;0.08029954141082637;0.027349554055272857;0.01978694268890205;0.03390475344547436;0.04248534194181171;0.1419346439551953;0.049501903041197594;0.04012258047666103;0.04545891005111708;0.09865717749810847;0.004908018265000904;0.00492675264224857;0.2135917515800815;0.05131005248569183;0.11525210382450925;0.03678404957963014;0.04278471142630576;0.012156552855079895;0.03160886804407712;0.03373335967747585;0.12912358573374436;0.033268385149858;0.038455463242284;0.003253265130784381;0.0264892960647315;0.06134232851928898;0.041181886615866574;0.0598144762203406;0.16713889303779986;0.032226474359834285;0.027094635389765368;0.030609215873025383;0.10581619109992303;0.078364874187799;0.026083888617847894;0.03236889414198877;0.13804259502638505;0.05880697758890078;0.043083637532141894;0.03627104007204134;0.08407878312443237;0.04990341301440016;0.1282004777609979;0.050863510031528274;0.025257504159579416;0.03596204563149843;0.030824412654860002;0.03384693056052189;0.0005926956737990614;0.03842720052930928;0.015183160950496655;0.022319631362561716;0.013612036597589994;0.08522768276775951;0.06054497389749165;0.0025362506029265753;0.06117334267424859;0.0630573012882628;0.13367482281620388;0.08111864016299264;0.11910824206628862;0.027963268346603974;0.02450928189910194;0.008467200313165408;0.0026447580275667797;0.032682581475003754;0.004940890863152254;0.193738206321832;0.05290819864562939;0.002697721200195934;0.020756331860189665;0.08329968679843285;0.002895966627662495;0.004808381903614732;0.04243081095585221;0.13638556667364474;0.045459926866258604;0.03719357157627966;0.05657593909145049;0.02740477314126832;0.04243081714299387;0.029219018095732494;0.11271690979409343;0.38839728207286917;0.08810562000696559;0.026559641093951425;0.043776990409422775;0.20772908410671434;0.030305343963768386;0.02731513560709623;0.06057681654688423;0.019365890559564423;0.06144912137900783;0.08666958979180313;0.0485670381756188;0.014728548979394839;0.10875901961638387;0.055250745248725405;0.015473833664599559;0.007256355864075259;0.05762410305294974;0.08523525584278674;0.03396458956298497;0.05018693534606985;0.06425605812041811;0.014191657849981769;0.0022703086789635793;0.05822992994718694;0.05240799585209145;0.01323584835612975;0.015802157529546147;0.014743776317858039;0.006142155373797217;0.06818144596833485;0.13629506724451715;0.06933256900869193;0.0075975444865893;0.03460918386617769;0.31352131772168346;0.03423412766420183;0.1584943116682152;0.031378866933286266;0.021388041840325563;0.08176416295780436;0.013347345124582707;0.061701099295581055;0.00690653733866216;0.3343332878432501;0.3396735002353816;0.14205665125347172;0.057711310121144097;0.1544831554004109;0.17343567686998482;0.05564920315913743;0.6470967143498239;0.6494920407469945;0.02373936712060497;0.08667644777710412;0.1619164030473762;0.14302438097922876;0.03269338290996971;0.025442060701887634;0.15622769358891506;0.11917512475556007;0.2645034826540396;0.292352520507449
+cis-Tetramethrin;0.0031636530580891544;0.00027238589829862064;0.002512617013249827;0.002188971523383198;0.0033852935442100674;0.013431411840611546;0.009943064151970734;0.0028001185456601324;0.0037528442293425003;0.00498722584787145;0.014542088593604565;0.014447988432038542;0.0025708068061170994;0.023496085429241056;0.011433379697883342;0.015131842001781737;0.001393229454370279;0.0011726115371520273;0.0012826345212173596;0.002222619448887786;0.005713656365165101;0.001240013027982887;0.02502076359378392;0.0;0.005036263123657608;0.0729580362929823;0.06137227486697454;0.072149753826334;0.017161508579541185;0.04432744675803568;0.04245621778029799;0.028219926790390478;0.014388228080888327;0.04529739436888183;0.009656896889680033;0.05937265444384533;0.0740472518919396;0.005519198847550713;0.005571700603474692;0.005105305905956051;0.004557285313306411;0.03138638948000682;0.022950896435504166;0.0005453806118292746;0.008736336041625397;0.01533846653094411;0.01586476707196691;0.014215737923694783;0.016846063892501643;0.0037773204364939706;0.002515675542554945;0.005856517481725519;0.10165744213042485;0.10162687944386105;0.013283977694814713;0.03623345732798134;0.0069496117631974675;0.004110014026536321;0.004053006128979321;0.01549878637770508;0.004054156276008397;0.02777189361280105;0.02704208818883119;0.02506046313781782;0.006642810342928415;0.005431141752508827;0.00447472227493737;0.005700458054137526;0.0048253637024914505;0.006064440484605242;0.004678701222949998;0.003707052859076907;0.6922384392108213;0.0963724368569271;0.04296543257309321;0.04111281340275296;1.0;0.953152945680509;0.06937207392031926;0.020195410584121175;0.168098571302312;0.1486101950224101;0.05159100770705923;0.05107240397283435;0.0419093856499256;0.034050348498705946;0.036150290188855565;0.04012190222042406;0.0403348992403734;0.012712832289172735;0.010085183201723353;0.036038672867582944;0.10161941476808849;0.1477947199955575;0.14975328403304988;0.15349613557076477;0.12001314865597423;0.08488683650010094;0.09033271347218215;0.1021953186969801;0.11106622309600324;0.057574529871090505;0.06874609761819692;0.037349490756392136;0.05579128491927852;0.01987876429305927;0.023790222193459915;0.02734759657300902;0.005240563607461118;0.005541139503624971;0.001082565857616121;0.0035060549690671215;0.003907090226773279;0.020971066072691957;0.021036479703884704;0.0020182990752302442;0.000996887664553282;0.002188702212302996;0.0040876520440636865;0.0179626993380507;0.006747826956252291;0.003951920468995811;0.001147570154088443;0.008728069908652039;0.021776490705275126;0.010853804913895487;0.010757629241771887;0.06040581041785427;0.06086433402742997;0.05858167890477388;0.11012205428442766;0.03127119608483039;0.010561818270164856;0.06446455943341424;0.0006437359274355433;0.028520334910600506;0.02118199479545522;0.04511533171045619;0.718475209747498;0.8027506631814554;0.06783287855161015;0.09859820978500716;0.05461320416328627;0.06654179506098147;0.040246380694445125;0.07899185933584711;0.051158690871789474;0.05603688118038892;0.06878061871805444;0.06519052459014568;0.0012851453746853011;0.09240549192522626;0.15356525315660252;0.022680230769320374;0.04281606554619903;0.16316985954926125;0.0066851520878773545;0.005340920703995519;0.013537769901365758;0.005514276862551701;0.019527553323103655;0.020212846592958876;0.009268780070454298;0.0522164510415694;0.0330791493538203;0.040842216650374005;0.09904414715474885;0.01109897187215985;0.013870010423873983;0.09305833880081092;0.0344784714346139;0.012628167674501412;0.026221893572785166;0.08712499284942117;0.08045340650074263;0.010763629424689131;0.0019210911159404185;0.03432256748731499;0.09877150353544618;0.037496207744293124;0.038386300292849236;0.004549765079554795;0.026720574668568475;0.021162457195808462;0.011047962841902207;0.014191993804061505;0.012163891237609104;0.0005158780013638975;0.009115074044037998;0.00161000431230098;0.023040808544075763;0.005327097531966509;0.014708424873204225;0.0008070629091325355;0.008271047211024637;0.0;0.0;0.009904541344450455;0.012269652428737308;0.00426838228004099;0.01554158232258238;0.005983365812195881;0.00864641477833631;0.006155826806277351;0.034437694761498;0.0035608004850471507;0.6824232692829468;0.06959248718468339;0.015862704142257412;0.020338754825492657;0.01853445557585448;0.048550355943117816;0.04384409802260773;0.03071622459778884;0.048560840311821576;0.005262231569168428;0.024779966595561597;0.04384635763508803;0.00967942123720529;0.13362360623059805;0.006767634597082317;0.0037157642254257513;0.010217261104732247;0.006164970508976807;0.009599282221497467;0.10938695526541514;0.0763829023986451;0.046935285587685845;0.03573988743177597;0.003026310333122077;0.003941995576000118;0.004098070945255045;0.009266161731320114;0.005340281244855195;0.006640452355450029;0.005964347543466898;0.0043942461538654665;0.014316336174515195;0.007991580076686686;0.005616789158892286;0.006383098094076065;0.5183483309996576;0.02398313042619673;0.023738652449021392;0.05423416383117684;0.00012602427257383525;0.2575987689184099;0.04369354897876243;0.14828265713189986;0.02059641400353483;0.06656635717599405;0.06824434420645943;0.08416829912103421;0.01854655613821386;0.06622425784310207;0.07720740956348782;0.2010839326402829;0.5416651649491255;0.023424583491346126;0.0021052850904672835;0.025008309066113205;0.04465373786244912;0.001393817412226665;0.22744552709234875;0.0027866799434676545;0.04375044392633385;0.27807810680951867;0.02736655734017388;0.020698222345563205;0.007164200955412436;0.05139416660775791;0.005259618277641915;0.033402494161233226;0.7908721928475326;0.0016126361075377593;0.03343343267916889;0.0013481202631719885;0.04529403908973049;0.09552237776436208;0.12411272411455218;0.011858961074470554;0.09922294632850026;0.024553898912874426;0.02019461522894079;0.007618808845819985;0.03756388922571903;0.02202560647274478;0.014299391239341545;0.000946566175112572;0.029519651177188366;0.01326096032723811;0.034086658565495274;0.0038626377730151796;0.037384120386870986;0.016044257850693085;0.001177621683245523;0.02198639302668331;0.01960133943725427;0.11395780605210293;0.10517648855540648;0.18272139763747422;0.023381830669040555;0.0322240424672679;0.009454804070307864;0.0037605574980456627;0.005772775717783199;0.004951088567450764;0.01246375096063883;0.049460434406067684;0.0008489239562616313;0.003294805035385172;0.004530227471831406;0.0004701395765590261;0.0001254241301021291;0.020838125378255263;0.007980638918636273;0.005007214540205896;0.00563800262444358;0.0199363208834353;0.004175229496494024;0.06162677419246721;0.10824681239487358;0.044359345311198596;0.0033480373032439303;0.05340484769709777;0.023275015243482466;0.006426462093406334;0.030923838995323753;0.10001462115175479;0.00795442152742051;0.004981293337091178;0.01001809478700587;0.1296290672001476;0.13360330199911202;0.05557139664635302;0.14090679552679042;0.04729580135572237;0.027815215695079908;0.0013808169149717247;0.04126278687291077;0.009674532924397189;0.010749163154875974;0.012548135831492422;0.019294694236581828;0.0034191857628303674;0.002036978702380454;0.00554902145351694;0.011174723822783304;0.01638966324331481;0.006878780119563334;0.017629051037645276;0.021589381049580976;0.022315978554124115;0.37633030709969134;0.019198750498991963;0.04204044517104744;0.0052039466186838464;0.0795065477798885;0.4412865984661562;0.02050195268434618;0.04230075779374078;0.044745097131448364;0.014448076960246789;0.015426456493673022;0.006960675327444094;0.05072971589043875;0.0018831691737812653;0.013435668590839217;0.023498053428778573;0.059040261659030015;0.054836761120041606;0.03471295621394112;0.11246188522960598;0.013948513532442018;0.013996771831454249;0.015332692580054909;0.006091631210126555;0.035875422487554307;0.020980075965500552;0.025680533069189534;0.015893198002621227;0.13566165854957513;0.026033623284675036;0.018361287656122056;0.08251668260712956;0.12277949244266034
+trans-Tetramethrin;0.0;0.0006606734076613895;0.002262688861871316;0.0;0.0006079161355244787;0.011211736638950852;0.0012395661142570536;0.0;0.0;0.0;0.01243642434655117;0.011773880833716015;0.003503403919552053;0.00018513679695685524;0.0;0.0;0.00047336000705391727;0.0003947410739204956;0.0006064923451197462;0.0004997112219207108;0.0021160955708640445;0.0026112640539797914;0.01690322450990969;0.00022152950227742485;0.004192340434981041;0.07415565728568531;0.05479438276428226;0.09927583528371536;0.01885259851482287;0.06592541815185553;0.04203961057018535;0.048152278821000316;0.02880686888849475;0.047189573803009206;0.01654932591731468;0.013476155987478167;0.05249991337596423;0.006097400161760006;0.007621247231137437;0.0038859105012206017;0.0022052748511706935;0.03261341461881854;0.010806083142702648;0.0006408905616045388;0.0047607010702920135;0.00855691540388556;0.010118908905169291;0.006927063051459267;0.01194992176792772;0.0033082506980594215;0.0024546911076430335;0.002823437607342764;0.0942336518284733;0.10892895319417778;0.009922611912867701;0.03686331657076888;0.0074371247996995815;0.0046450418606668155;0.0036091627405172347;0.01088679144147789;0.0018004030491434741;0.030777276354390447;0.029488879954185348;0.027686633240173123;0.007568704683629799;0.006576690173044259;0.004916203992165741;0.004773278099702004;0.0028914593915425045;0.004897340032938757;0.00274644494357825;0.0015761533863692587;0.8119334387132809;0.3069986561861612;0.14712605054575714;0.16246390010656958;0.953152945680509;1.0;0.07256558462870097;0.027296816965806287;0.3442988818229002;0.33721457148716655;0.2608931704699113;0.2593280308539407;0.050067429114459286;0.03942381839687146;0.012728500226178288;0.019354340953709297;0.04171586298287088;0.01211071584116168;0.010569264824873453;0.011711664950870834;0.10917424995082597;0.199756814094483;0.21124863779723843;0.33417379785994206;0.3237717395851271;0.13899224644224242;0.09664150263460736;0.1233703460738852;0.15003944201358133;0.05924181788881087;0.07409945297288775;0.03616114276754682;0.06500292196339992;0.022137542681132934;0.021107510623554277;0.0254230467683739;0.0015663671955062732;0.007293543637130414;0.00020977529626368656;0.012100090100995716;0.0031985329175378673;0.020633008269922818;0.01988352133857698;0.0;0.0003286701506988314;0.0012545648336408;0.0038887104314092842;0.012114850487800564;0.004433621145352103;0.006454453341730708;0.0003571043133160069;0.008301984713432728;0.07976300970618937;0.02610624309068611;0.027541251054426605;0.10061303371171977;0.10016870682135973;0.10849047503431132;0.15525071406480004;0.03366638863867482;0.01408163455807248;0.18562194174286478;0.001383590944771852;0.02340266908005168;0.02214525464798669;0.04405396639879094;0.6999466062125537;0.7834294058954994;0.0911354256671156;0.14334599718120633;0.07520623401216037;0.20544674197707155;0.04474694276267033;0.07184976125176491;0.04496488056166533;0.05684087503790095;0.1728653556648599;0.1723739351233464;0.0010187912149118167;0.18786625865585377;0.2289763960037879;0.034861984662480285;0.042663800752467326;0.20297221295896514;0.004223520423154259;0.002345804244871698;0.009643699216952581;0.0;0.006918091458552162;0.03759829742776848;0.01736119976579157;0.010729776844182439;0.06392110578204366;0.043002662161425606;0.09247602986710089;0.007300076065500094;0.009338883947766856;0.09522039335919952;0.07732944263465787;0.010172370235556909;0.0049728191810352795;0.08917653936510286;0.08436238297036858;0.01245360379037584;0.0023170999588555986;0.07700448470636795;0.1284199575189616;0.04611732935111314;0.05569624373153461;0.006942909414853386;0.03152349113743412;0.030469693251839625;0.004762345429884965;0.011383773811696396;0.008706397947049081;0.00029363929783211254;0.008314928176595411;0.0;0.037019663115056105;0.008258420669603679;0.006043687660272778;0.00032660055383296936;0.008456212365046876;0.0014126649508999804;0.0;0.004056829102786846;0.006184227762492434;0.0008404197157000553;0.007079646943551778;0.0013308682691838335;0.0031620164179830294;0.001047297059157363;0.014397930275630275;0.0008354295912905415;0.6862554888006003;0.07384938208285376;0.02139582827469749;0.020206433305302765;0.012267186133163509;0.04394065535927617;0.05264882122525192;0.04457222122780192;0.0878337431270621;0.005672654332641321;0.0739339725397413;0.07408643054375168;0.011832121692448159;0.1366064270856798;0.007704298995469984;0.0008033241521728361;0.019770833946484146;0.0028551140701224818;0.007984792324262543;0.1062684130588561;0.07554008062618013;0.0500872848169613;0.03791825073260809;0.0021400517297659846;0.0019241648525300861;0.0019685391636113997;0.010222018077281913;0.0063721218929817195;0.006486108837661884;0.005276314834112563;0.003932667298121622;0.007112499872332072;0.005280338532296175;0.00518788405562651;0.009196738591145026;0.5164775010918635;0.04025640431263947;0.04502279034263284;0.05935805208214249;0.0;0.24751698028008265;0.04168718477647079;0.13716880830799555;0.04504890640508463;0.07324034973624031;0.07364697933938025;0.09637001645321983;0.04076437835235048;0.062258442573508994;0.187919468263516;0.2324064206735222;0.531269734925714;0.01999901652535164;0.0002038218308711918;0.04521516008957542;0.05927584782145224;0.010371938528145096;0.21601937899847723;0.0012422341725676243;0.055903910661908404;0.26223402348791575;0.021545808936752925;0.00603379926437846;0.009413182951868585;0.06615353188501927;0.011046566103400917;0.007187873846919174;0.7735421487106502;0.0027349500335465053;0.015340029417913114;0.0011320286706443296;0.05812113009214505;0.12262237884382078;0.1364037232537389;0.00885236550594506;0.0996962441014431;0.04528819855613108;0.00545708788011647;0.002979017715199424;0.038925715779761665;0.01982781837391771;0.02177551040661317;0.0002400531029428964;0.03262181742391205;0.007379361301958855;0.12636635649769373;0.0006539128455358492;0.055487645530157774;0.0216688132748788;0.001249676468678033;0.01964461267028104;0.02537113540617627;0.10428887241059077;0.10032600361739354;0.16423091067351983;0.026962291591070775;0.0023603416227685027;0.02503092008515668;0.0018638017807974313;0.023529034269240325;0.0034682880692224072;0.0028321687156201143;0.09338530888022374;0.0003177443005625392;0.0010322376842744365;0.003471774589833997;0.0;0.0;0.03230307417365729;0.008426091070185866;0.0038284095298609933;0.001125728197080871;0.03694586809016144;0.012058345598366268;0.09678615797612813;0.11135132847964158;0.03411877592444247;0.0035270567353554495;0.0658078579276243;0.030397959311646662;0.014811857877699211;0.05959325038707917;0.11324480793518368;0.00296720923681206;0.004540103625340685;0.0028514843444402177;0.16910387587552878;0.18544962486196206;0.07602458138578845;0.1333218300830778;0.04609202699894709;0.02874357437614925;0.0007579130719141593;0.04013636178165922;0.007025827476985349;0.012306532501214613;0.0014462117585973596;0.0;0.007547813478498029;0.0022324972267590013;0.004077008786694477;0.004648488125765323;0.011591052413962116;0.011870993352618188;0.007741211548779328;0.006985017926906508;0.022414301196517585;0.3723320550285671;0.022814940350050012;0.0920967794993783;0.006330987592478015;0.07322627733389389;0.5210685612978484;0.009176760824638216;0.11820723921647108;0.034067952897579745;0.011787703518075556;0.049315009184269544;0.004857162516201723;0.046495193465015267;0.0019358473456564046;0.005858811201670336;0.017040309748477596;0.06271084393025048;0.06247892739574568;0.038242183158770614;0.11164861516227785;0.0016083208160141507;0.0010054522277465365;0.0018321333986215363;0.026881831789082683;0.009289526262928465;0.013409168468491663;0.03374383140565049;0.01860402718433767;0.17625200339864774;0.029390479792633636;0.019267525081700865;0.13226233753576289;0.19331225800577734
+Bifenthrin;0.0;0.0;0.00018917508279028938;0.07895437115908391;0.07796865476341007;0.04818121157227262;0.0668654461500738;0.00016074435972212534;0.0;0.0038753871317682926;0.016068431057801206;0.00033561713645455476;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.001115406550565238;0.0004391359509656959;0.004923649871857453;0.013106107305329009;0.33516808492439215;0.2804713307972058;0.011355431625455138;0.05798843307020276;0.37728084243454096;0.0013424891998514575;0.007750238113528411;0.0717459821326248;0.10598713785471842;0.022888958307363164;0.1378010915729027;0.0014197053545504143;0.002165875167315002;0.000465573912285976;0.0005540931847646157;0.0012853359809652642;0.08301343603799081;0.0;0.00877227616182548;0.004812108737330963;0.0023319086108741405;0.0007744259039158112;0.006891365258489527;0.0;0.014637976416126904;0.0032650118693676416;0.21851204451666392;0.20670276023812448;0.01042920884881192;0.0013695668821701156;0.0006170420734972197;0.0005269759501173053;0.001827747032203772;0.008594958013780088;0.00047726986450198617;0.0005788434413111004;0.0004547633002272681;0.0004119856841072475;0.0037350497783505024;0.0006479861296076297;0.0005747704918940153;0.0013032086147645036;0.0007098885822121153;0.005685162081913659;0.0012433511250963124;0.00042608586641743534;0.01043796560893705;0.08454439366465218;0.022109488206396195;0.026362268907970568;0.06937207392031926;0.07256558462870097;1.0;0.6305354444951998;0.15415858209929084;0.15451104391611217;0.3100619573218185;0.3032907231752431;0.2612882323613262;0.1998107191316008;0.2464335492438435;0.23913340273350123;0.5250124826937915;0.022155733792802397;0.6332169569552394;0.02677193871476511;0.1543347236438344;0.1483529524900353;0.1565012122367242;0.10448108205782838;0.016721980283940653;0.6588248524814266;0.5290115934104153;0.6001869804016623;0.446126698060967;0.17990121275437537;0.1774625864733742;0.04737390183763532;0.09073470941693045;0.0;0.0;0.0;0.00011919388443596047;0.0;0.002422793308255649;0.0;0.0006615187247757674;0.0003939911624613745;0.0033560434962907125;0.0;3.7974643104507127e-05;0.0004644001124789116;0.000967037468333477;0.04195943494433301;0.00011205839543001148;8.565578694400239e-05;4.125993437621796e-05;0.021895455761298425;0.0009887439728774067;0.010162240204278377;0.008190363542853617;0.0006126624715782165;0.005271020815409362;0.0024312801443361434;0.030550408952516376;0.018083393504359568;0.0012417940183045385;0.00433218413929787;0.0;0.018531067927643505;0.006547329888605077;0.0168780770325702;0.04245525703456547;0.04722236462974686;0.003557234137193933;0.053950249536949185;0.013503192094508893;0.0038775641485335466;0.00968955249296145;0.0508582670654937;0.02861747048284311;0.013466228803578803;0.004672912459353479;0.006417649828259109;0.0002533511544781355;0.007357909072618387;0.004314035296306281;0.0027918347479001337;0.002821481060061956;0.01004613882987389;0.014062413535584142;0.01298394929043746;0.01573210264462061;0.00959020383949165;0.05058528655020622;0.02345258940913083;0.011966750520117905;0.0014580087614677276;0.04233450270691878;0.031048826356733478;0.081282157695192;0.03301423765840208;0.029199544275593244;0.06547457701658786;0.02776470739913837;0.005897899251204349;0.04719500603552263;0.15944077625145267;0.1527534945236353;0.017506525405481966;0.00011491518757405177;0.021409885423357932;0.7099571949240252;0.1714769726230572;0.13294423417679735;0.007536217393980655;0.028976719024004147;0.028983136146372893;0.02449038321124835;0.003335122327874168;0.01712836232196295;0.0;0.026801996708939395;0.0007814724680734444;0.03465161193929782;0.0;0.013952437624343792;0.010515743281453086;0.005724024381368417;0.035618402168629035;0.03631502575732585;0.0436813080380102;0.04129116097043652;0.05065456798904371;0.04193726475522959;0.04954242097628955;0.05054002783409148;0.0003600517024758841;0.01567397550550507;0.019400422447130004;0.044552254187704726;0.08082710713062156;0.0005579207962319394;0.015170720408032213;0.013406846230220534;0.04526877629128792;0.0024459054931198322;0.002820512516805542;0.029716955344686706;0.0009478245580419215;0.015270610050210789;0.01621185288835298;0.0012114242129349384;0.014491585625412093;0.002517065444423166;0.03794244980952109;0.00011791332390326691;0.03140046868336029;0.023945624335695852;0.011027054707461615;0.007570328595454379;0.0008792992370258667;0.0006765181979499894;0.0006223828484348265;0.0006119266658295004;0.0005721601734717275;0.004929251764770254;0.0009429705682634047;0.0001637281189861275;0.003645580795514361;8.663598791134656e-05;0.001649539240666947;0.00028684426654137054;0.005486465011347908;0.009630672728634907;0.3362262162055245;0.0034836561793713853;0.03198884435123277;0.07308643848779799;0.006704217859359147;0.019389012334680773;0.019814685029220118;0.05189418883397953;0.0010597887763249716;0.19975050660385169;0.20345197040843818;0.03436568949498898;0.001357054382745761;0.13610024816572774;0.008298955382298284;0.024678108556261402;0.03392266968720063;0.03457113360423093;0.0;0.008642416920962953;0.018482442897300857;0.004507503625585867;0.015007385113210895;0.0008559476013054677;0.0027915830785282406;0.040809528687365426;0.012171699265429579;0.020708631761850456;0.5349681008330379;0.0;0.1980445199112376;0.09553738866051319;0.05079936359133026;0.005603225344774517;0.024329241943623615;0.042186724179471155;0.002317932026083222;0.39198662310059806;0.002752325705177283;0.005327297401947831;0.08877841182947988;0.008467889440337488;0.020330224529175146;0.03012762771936523;0.06766777965391492;0.036952288783125224;0.12011728230774456;0.0;0.011979444481739092;0.006772381967203877;0.01969119765987225;0.001280017379617821;0.009861942071512376;0.00433866030709074;0.009261476546904457;0.006433237037915263;0.006565406005424202;0.28152467110764545;0.09030177584141048;0.012884203403925038;0.01658660054533858;0.030205238655677636;0.0001383788037077827;0.0016331567263819238;0.0014161806554399863;0.0377525710637103;0.25395331552531314;0.023434369078436598;0.002811148149201031;0.019640632136892766;0.0015441617936032763;0.0;0.00024330626633638314;0.0010706356320646935;0.013523169758363107;0.040685317908092995;0.013481728914544806;0.07733008289761872;0.0078834927876791;0.014597856812458789;0.1918534239441624;0.007582825330365713;0.0005349010844185472;0.0237167904217398;0.020386018142265136;0.010114185022261923;0.014577109789090017;0.030806241915139813;0.007087644337749379;0.011897287535977769;0.021578778776565676;0.03924616217058472;0.03325633567443972;0.006177375043084328;0.06133506435280325;0.04626126550085639;0.002721924870181585;0.0005025216008070122;0.0048544581844331535;0.01648254593824168;0.028673081392531663;0.003394878143166008;0.008568116425124096;0.024588198072579996;0.0026534110314771747;0.0021577556981216004;0.01823910594232634;0.020599972816323853;0.062434032796846985;0.015956686871241268;0.0013435983624430377;0.09310165643581468;0.2307932618963421;0.030944311960829307;0.17107958681230173;0.0;0.05015594465148007;0.03249001100161959;0.005965879776815057;0.0796923800648134;0.03400047261845776;0.0015890278784034151;0.02543693765594498;0.0005058559396225453;0.05695241832905277;0.0009527195636698301;0.019696582558849245;0.023381114481933387;0.15467153792131516;0.06617575404047343;0.21261492390517792;0.10015939117928764;0.0014847650296536431;0.00025003403930436044;0.0007425089928560808;0.010512060355353868;0.029801965964047127;0.03950449076622676;0.046975488520387576;0.03938375148248886;0.0013532756639773643;0.04797497275618898;0.025777736521936885;0.020291836833380136;0.025282253120450203
+Fenpropathrin;0.06118714439881976;0.03321451607651984;0.014006527748116218;0.05419627323412866;0.04873116354880155;0.17254230113825303;0.1453146045415129;0.014525584134420686;0.014446256221566502;0.029280626993873758;0.04157662101248834;0.016560689313202568;0.008831447831181803;0.020143200842007918;0.01914867505280329;0.01960842765580437;0.023094440843989164;0.02994861067133183;0.035359833711352644;0.03399281264425836;0.037213918631051675;0.03734354061009101;0.07003370788773405;0.034176663655393784;0.03397629452695591;0.04081868686826032;0.4294727631567551;0.1070030663222506;0.05322087362004479;0.2513005735659409;0.4321462828757692;0.023493468202895936;0.04253522809230802;0.01958741532524637;0.07654727050286596;0.06328284701053573;0.22782511754341772;0.0645463453861509;0.004356708182593865;0.013172396186252364;0.017196772006229672;0.015963617894733946;0.08664795854058437;0.0;0.026974646991933506;0.03754319165344298;0.04876987370933116;0.043744212697414374;0.0392390211547876;0.006249897727109249;0.005130699611181532;0.017896177852716865;0.015373550522561204;0.011664215783091354;0.01296466990060427;0.015578841545203462;0.008506670934391608;0.00922093049388796;0.01105434100757736;0.009187831393603204;0.026993520456858683;0.008048831954222227;0.009243640214714091;0.008994579240098744;0.00891799361642567;0.008317750622588278;0.009414417642679898;0.017841097517963412;0.011209055604783727;0.01202414613478217;0.015016878755441629;0.01866234120365662;0.0906536477774627;0.10594228296263189;0.1511219376993229;0.07085349706194086;0.020195410584121175;0.027296816965806287;0.6305354444951998;1.0;0.16965324021999745;0.17296009163860607;0.6158168311753339;0.4686220942756864;0.45583170293370256;0.374522779577499;0.4966680673476842;0.47753832386841677;0.6689297055161875;0.017127821875719533;0.897587155814543;0.047341636231765155;0.035853546317152624;0.12158848712192837;0.1304460717708747;0.09095448323644158;0.09164636028259872;0.87111088058882;0.6198685525076023;0.7547612431226052;0.6087538172425476;0.07195277959799982;0.07762863227697811;0.14661791582774628;0.10493339585659667;0.009672577537395711;0.008731864247980892;0.010043610399465561;0.009220881740691038;0.012494257411494923;0.0109779508932047;0.00997684552924154;0.01293840066706835;0.014905086952446151;0.012321518292543921;0.0028621102036156935;0.0024890834106451993;0.006253055273571972;0.01032177373774013;0.018393929245713887;0.005251061255829427;0.0025279981534280824;0.0081814215301228;0.040026578322620944;0.050422268470356565;0.009471901703353179;0.010354903539081306;0.01607973099416377;0.022015640162151903;0.02176528989834941;0.03460027399691443;0.14389811140713002;0.017800900266971228;0.11991976905646487;0.025210355768741057;0.06272588080486677;0.051699519229838814;0.06003896553208201;0.05157815407021746;0.051151042744790556;0.03855669665074181;0.06107967137048545;0.05548523802394524;0.07494770326672986;0.04875854973609749;0.03169161383027284;0.04731340796603114;0.02338439653352127;0.10251919778874904;0.1016368612321052;0.011455325488126005;0.06852815437129313;0.02574646401800238;0.018562415585771274;0.06430766210232176;0.055528246747721506;0.05895893660980365;0.062236778544365136;0.07459963816943531;0.02596552071325844;0.09446887482362437;0.02586410079752487;0.24123125120998018;0.012464739846279048;0.011391100345631964;0.010318477138311674;0.05443247460287172;0.0026263359196024663;0.0048061401612335694;0.15113125597165578;0.07485018120080059;0.018099697494115215;0.07348509694141182;0.010924786744867259;0.010842824109734419;0.0598613225421118;0.011560431272090827;0.014833174259372698;0.3523262792905519;0.07222777077171608;0.07864125819899748;0.015435892815942506;0.042615458428843275;0.05332735718536321;0.15440770335336937;0.06324855365990407;0.5586827602146578;0.018405697228553872;0.03905064225017613;0.023855191976616938;0.07059726198530422;0.012298602750583863;0.09234074730416673;0.04724243762246006;0.04144959399353921;0.0996473801996046;0.1013392092976677;0.12588759059068436;0.19750068483624;0.1318588239267507;0.133715246179533;0.13422521476455454;0.1401818651133997;0.0516774260593255;0.1283085061229357;0.13777062069854162;0.05463969565405943;0.1853036688979388;0.017462783572798957;0.05274166027692108;0.02256984446124259;0.06613917768740897;0.06436833825945738;0.02212745568029668;0.0842993720454306;0.015904946150514944;0.07791531396648159;0.04965521597203075;0.013051134642149353;0.030575724517487027;0.054464756272043224;0.035365182913089266;0.009721570364164532;0.1160411283314629;0.10470583872009517;0.018143279764658286;0.01622912072291293;0.009310285878534781;0.010981941528908822;0.018393537104135087;0.02050193743076329;0.021265492441745873;0.009885599924188838;0.009955457472769163;0.008186182458243792;0.017555093829240743;0.007630600063347746;0.018152069374324394;0.009980708547785804;0.011334192156699511;0.17184972211341984;0.014088515150900831;0.03265043557501116;0.423414957316138;0.12612854656680336;0.04813572930082163;0.01776936182966037;0.04815594340546347;0.09112558726481856;0.017857073897283467;0.08848915685447424;0.09449618277103083;0.021141388733436055;0.024987291890855984;0.060436764482386;0.017322609951009975;0.021737745027957573;0.01143235892570709;0.08002540897025177;0.059854548971302844;0.03990021405919011;0.020473279163154088;0.028430941554508763;0.004470498957684612;0.16811557940122576;0.008317605470246832;0.12473663321650164;0.02656761354864724;0.07828761623440494;0.01939859050608;0.11195869866938633;0.04699426573686298;0.16818821074019366;0.01472518487963365;0.02883065471601348;0.14273005301091804;0.09924302060636643;0.01331168170005884;0.0183407958672398;0.01846440674671494;0.059380301863680714;0.09034719521986961;0.04043285824617647;0.07134626140825275;0.030789823740311195;0.038185982907966244;0.014348688106643984;0.04555931277040917;0.15203855955226134;0.01936639759141434;0.019390959092763935;0.2861801817801796;0.0074221362408468244;0.1308272117555056;0.15641266305141524;0.018744992919439502;0.03761487277424025;0.08105316717178132;0.34214716635028064;0.06024417402842375;0.08019654027492555;0.010178493180153044;0.14472127324493617;0.19722314267676702;0.016534075485759313;0.009162188474950277;0.030328385130459004;0.4110265852335248;0.05805255531090151;0.021772624765704848;0.08139426971749554;0.005295840633162191;0.09438986053172364;0.019214758312007488;0.014486836334227135;0.03793230906669037;0.06718664909992567;0.16392540600328712;0.04171617432787367;0.018212768686879526;0.710937045867686;0.0888127137755258;0.06995729129300671;0.009714742838299073;0.06048021310757863;0.05336186216280011;0.01053860334620315;0.0966405639373705;0.01522775925813869;0.07127279695884658;0.0404223857886854;0.059732570570740794;0.016177884021029692;0.019270950238153593;0.10976412571722202;0.042715690532833556;0.0860374169879397;0.008364616201826328;0.009955491611825237;0.02719964111163883;0.05252891245470928;0.038216874697350536;0.056758257827807364;0.03692525625061091;0.05514468547008324;0.2171466954300675;0.22623533878287383;0.09923112317061998;0.10509957096946841;0.030403784089419624;0.15087948442224514;0.14950436254117772;0.016934694534199976;0.08274988463692622;0.12528584092223824;0.07500039096102494;0.001543645698825102;0.04604582243824845;0.05561306799320756;0.0564939788125274;0.08051759199808653;0.13629963607302117;0.019816438289265628;0.05638535132387085;0.03405685120744805;0.17823812055009067;0.009495536504879918;0.04701963756135319;0.0743214401313205;0.30723900149088207;0.20234032121781448;0.2538090331807483;0.30364539896895526;0.02058435552309767;0.000880808435857882;0.005019878043294347;0.15414851553313524;0.07775525604453176;0.07300147559982859;0.15406230964649742;0.06247460546390008;0.008403900673428168;0.12083519424863633;0.10494001745981113;0.21311809236340332;0.2536544428162365
+cis-Phenothrin;0.0031758127227500535;0.009900426106478536;0.031090685530952736;0.012637681856114873;0.012026346465982288;0.07572005055808477;0.17241488824549922;0.0;0.0;0.011296980981484205;0.006858419094929022;0.0032893230038431;0.001205925900518705;0.02483979629088812;0.007918310962587232;0.009568563456711726;0.00956952616964844;0.008836203137401445;0.009808027501416886;0.009570474239277215;0.0031423042888492226;0.0013757229579237373;0.011898768681486807;0.0023703477643801517;0.006111264285016366;0.03781400712570064;0.15356061955134584;0.11440302437498408;0.02972929520931786;0.1152768813676322;0.08529153473867081;0.04071750336112255;0.07107682787967505;0.02612252189713526;0.05837946616805577;0.05862888218323543;0.3306303702322951;0.011711235359823376;0.014483233043424077;0.00442727302024312;0.046401787981727706;0.021735518468368922;0.15168264054773595;0.011350904599086706;0.005663392828892039;0.005576828246271068;0.007049018755156488;0.004811681030687037;0.012623293717237003;0.0024996727132602413;0.017411107483633937;0.009529858591923825;0.05612072672163681;0.05630465307265046;0.046588078316244896;0.02004397121152861;0.06010846322718772;0.048010076599203436;0.03634858574715631;0.07240946591159182;0.04009685285038748;0.05650996496868579;0.04963614170714103;0.04813653421947829;0.07071853498610459;0.05739766099453456;0.05230550471389955;0.03839976674249815;0.03345591501019758;0.04046028895182517;0.03193220104499688;0.034449806826826634;0.7388473687413161;0.6940124096479134;0.4081648038571274;0.45373095842349787;0.168098571302312;0.3442988818229002;0.15415858209929084;0.16965324021999745;1.0;0.9929110632036607;0.6877123194972566;0.6935723611527459;0.1131187548770144;0.08744706845775622;0.08046615592017192;0.09222611108530704;0.1125773272727046;0.028035256540472054;0.12866871479484915;0.021366450883972144;0.07171178802439222;0.6839648503433432;0.6786282928068106;0.7662444835725605;0.6788984822205907;0.17923459863872784;0.1653685431409429;0.1619855971245575;0.2027048760919109;0.07464570380703692;0.08904718138340419;0.07183098451861943;0.07731192587372865;0.012369490542895784;0.0067101721331453935;0.021876583852859278;0.03963184919325894;0.0034649697296159133;0.003462384429276729;0.01109925732879789;0.005290170243843415;0.04068783959476223;0.012189280897348862;0.13279095973576754;0.1298282524080058;0.04724268686088041;0.0838507875640059;0.16966542291098952;0.10364563197365752;0.030440481774252962;0.08349896283527501;0.027349893004651172;0.10328076972827323;0.03405844187043404;0.029504534837699433;0.32575026533683116;0.18697351030381015;0.09223527562557929;0.13535157103938938;0.1273140007474314;0.025129549635851612;0.32430318588753626;0.0018589419287632315;0.11602422760370094;0.05252322403138387;0.12930742597086395;0.09055448418811485;0.09502948744579592;0.09722430722629749;0.07824382550826044;0.1078924499623021;0.14388390212216812;0.08567155746674113;0.09009892601436455;0.07927836468639327;0.07123588328883741;0.2856177620358514;0.24579241178538147;0.028660521163765315;0.16204145238670262;0.1246828591744144;0.04358329732186753;0.030404196979803556;0.09735231207570448;0.03975515352132397;0.03953393673884462;0.0502903852010014;0.03137854482456194;0.10146837325857276;0.05186901449369689;0.02241706320087236;0.03089352966820364;0.11631778877925378;0.13025597567652883;0.050428245976567025;0.023119886929353687;0.021024633574609684;0.03864821694974464;0.14971035013285452;0.008936927941151186;0.036285314793860664;0.0573249731669352;0.043630781753912155;0.027021713491970287;0.011612351420719485;0.05756347000207605;0.15311770425827198;0.08081584497477601;0.0826761539972783;0.015191258339507428;0.05439071706223164;0.03691764457880959;0.06335490521192523;0.023666291689423913;0.02080047221506711;0.0011538116010865061;0.03165500689086617;0.0018537131215261519;0.07275051505183656;0.0035383109047707256;0.10231921209964268;0.08761928197729078;0.030628174207938744;0.06660743725972593;0.06450104868082733;0.11790799875704379;0.10959127181134289;0.10079848952831993;0.13232684868422567;0.1004178163837605;0.123490048843832;0.0038426663723804474;0.02372145213983399;0.009209885853854889;0.15637518027622582;0.08287586284737082;0.013153124917956154;0.023441220367059083;0.060459416524286526;0.051037564293508295;0.03906256850430932;0.038177098606915746;0.16391849142820009;0.010213611460346413;0.0963302874958683;0.09310621294411778;0.009069300195635172;0.03137633871755981;0.008778088807480001;0.006191009470775002;0.13953588297996025;0.05760499650827077;0.042507089270145806;0.04369991458879299;0.032726897722421176;0.08026591564681791;0.059403915193945195;0.03712539308889832;0.04074836552733378;0.04196948564303314;0.06393547286858166;0.047659799892771845;0.09167759465165282;0.038001490254063866;0.013898840165804035;0.020379148071473674;0.01626631447176959;0.031434821922302195;0.03822196800067619;0.1158154726667249;0.018551246916611197;0.039648152419454144;0.036962566881976945;0.040115937412690754;0.022298882003006233;0.01885256939258427;0.05251373460432336;0.037465828385980775;0.05631328395437523;0.0568227195479249;0.040137729498356846;0.05113030163489158;0.11661310297725207;0.08252308508263406;0.0400607942322429;0.02122081790514729;0.22679512273186894;0.031355328715924155;0.04920025317702403;0.03834423988250788;0.030918891865530165;0.00814734409644691;0.012315635238812126;0.07001694389886627;0.09868971788807294;0.03242785850382719;0.06411350363638121;0.04710334790316389;0.04238978196128834;0.03326618064579502;0.26699896451200456;0.10166618340712899;0.05216816750069687;0.12136637669268528;0.04401714807190933;0.07063657495334985;0.14082472440722138;0.024055111271317327;0.04378980566899983;0.04620138026192835;0.04898930172848492;0.06396326069720491;0.008196850233402503;0.02156380928645104;0.059655523446942374;0.02409390025546903;0.01389757387658638;0.02554134183862904;0.016633818336820372;0.05289572734495478;0.005886414098994529;0.09734381900730069;0.04171153149273951;0.003427378038927925;0.024695015617226607;0.054840451376742254;0.07558041623053129;0.062457831734992766;0.037901653243250184;0.017405804606923682;0.36762878299781865;0.011034070795306185;0.02912019426682589;0.012454956024755486;0.01194045560836301;0.11881865563680302;0.031155738135846687;0.004660969027525006;0.03783139715618334;0.021775181925513212;0.0;0.001638866222033643;0.04101687274739831;0.019473578176340718;0.06508027585302073;0.08090627786514355;0.06967750513293738;0.030197173554355517;0.16210571259595435;0.05578643189757821;0.05177248312037085;0.008433698458652933;0.07030933774381407;0.018724366773580196;0.014525856150426293;0.22094866911032368;0.02919158394791111;0.04436453265900539;0.03494711436211609;0.14156873477041876;0.06236342330235658;0.08851445434796645;0.08055962939078717;0.023132850996049427;0.08601370358546624;0.025435234978869164;0.0034965763871481347;0.006852830939458964;0.05273186648880205;0.010218756600098518;0.05373927794723131;0.03237717506274458;0.07212589208309572;0.006852783854904522;0.006062533017665395;0.04268988113903908;0.038164895455718176;0.04360455300677481;0.025348630188914322;0.021015716166792483;0.015056773769090037;0.20966056940552016;0.05214490501556944;0.075808941521814;0.014478539442200712;0.047575142052225385;0.4483012693071572;0.025463564769894174;0.21466510659785418;0.02590510317212303;0.006081301426176949;0.0331381834418686;0.005650894041659041;0.05758588709041099;0.012774515864681146;0.12328957542230172;0.1351158135777903;0.10646586569429638;0.05753126145454769;0.15811806138198686;0.12277096942276047;0.27808153496319055;0.04830415354735266;0.05106789438311097;0.04074316313412611;0.06272302894493052;0.07101641642866698;0.09854044749084877;0.03138890692022779;0.023601827228368528;0.09376213274218714;0.07223102463335554;0.22215039933690442;0.2477073008469054
+trans-Phenothrin;0.002941936247653361;0.01049812654709375;0.029006399527090165;0.01095411581102129;0.010742405074525486;0.066155217907531;0.16095520847287467;0.00016984192965640625;0.00018485415418100282;0.008491690645657758;0.005262941364829514;0.0011736408431091278;0.0012777028023347311;0.0022252349285764323;0.0007802994343764079;0.0017085836074479468;0.010093792960289632;0.0095817390249266;0.010297812862933254;0.010189857273916787;0.003928911512092086;0.001265738212131037;0.014076432491562926;0.002366905116633812;0.007152895827169435;0.03825625552187227;0.13996384593145145;0.11163740124981772;0.028734639553665387;0.11722706217599316;0.08617664144236557;0.03629434213608625;0.07013034093043342;0.021209180883340808;0.05265045132483648;0.0580411011242034;0.3136173602492355;0.011157571367013414;0.015919481068194855;0.003066998551067882;0.04034038052941404;0.02193925466606322;0.13945808832221032;0.009710261274754139;0.004864349970088685;0.00463668332848406;0.006024204249734001;0.004056680582806219;0.011849644104929316;0.002161162990823688;0.01522736140388189;0.008934187353566396;0.052697743143154605;0.05312410151025947;0.046145596514119244;0.020224612260512843;0.05783556338659591;0.04635174662735603;0.03102352552667033;0.07245781524713349;0.03476553865786025;0.05561663705818386;0.049633244103503456;0.04724395201602524;0.06816141225445747;0.05542242282093168;0.050383791793540904;0.03338427836897898;0.027793375680055073;0.03495747266049514;0.02654986869295433;0.029764143203075126;0.7874176670196389;0.7478992829330753;0.43042568633464084;0.4844803628093622;0.1486101950224101;0.33721457148716655;0.15451104391611217;0.17296009163860607;0.9929110632036607;1.0;0.7353336455288455;0.7415824562923682;0.11808885575946261;0.09223161637517302;0.07977584565757934;0.09127242570799687;0.10558995696445322;0.02399850795105714;0.13327256086777947;0.021325499027690726;0.07107718215778136;0.6200718037849755;0.6160074905657987;0.7576676688611086;0.7262525722898387;0.1829845631957674;0.16660245330957388;0.16226065906487977;0.2015270255945118;0.07099945367089054;0.08434693993443497;0.06284691791809739;0.07212612161360428;0.01075442705731375;0.004888213813430056;0.01940607434746056;0.04415466776842463;0.0025049460961025704;0.0033865325217124357;0.010279987667520089;0.0043405217094796625;0.036482382680946134;0.011118309234328645;0.11684298782491126;0.11479176177925134;0.042283146365012014;0.07481373199489931;0.15493992212984556;0.09527587437597548;0.027615080324197665;0.07342770888669674;0.023681663930256214;0.10650179381107908;0.03328991296555712;0.02942265327628755;0.3089961250743348;0.1854347562877038;0.09647885097900964;0.13260285612401562;0.11769177175388239;0.016288425542191072;0.33844185163344565;0.0002788820389464855;0.10486902831598442;0.04293270493822037;0.12148004789511879;0.09152790721873855;0.09627834146226692;0.09018831758409589;0.07416976025747343;0.10582291879409166;0.15163246888681717;0.07214340957141246;0.08562254809054694;0.06755103170054327;0.07175572559528502;0.28782500403103006;0.23743546400930376;0.02566461886786633;0.15404288187609913;0.13438846987632608;0.04590254990925749;0.02389745058366375;0.098024850014379;0.036712662012472266;0.03656143838214111;0.04810873488186649;0.028897125492895494;0.09509512967909964;0.05144483811765918;0.020655154107419877;0.027243755751597612;0.11284532024284527;0.12907494102356262;0.04801065533789458;0.021510627577757194;0.01826352573889605;0.030604350481448665;0.15006688663416043;0.008524830630136333;0.04084493201315206;0.05495977743185906;0.04076962063471204;0.024852002413185633;0.011334127620002916;0.056297878597499164;0.14933179236061087;0.07606779601308133;0.07821253551364919;0.013796109026568724;0.04845147937511472;0.03522913352562249;0.056463853332027907;0.023609324414198385;0.022882566922920868;0.000707496891909106;0.028042262622475465;0.0018023602246911529;0.069438866717532;0.0036629396326690166;0.08791300659588941;0.08594222108051441;0.026106106235184303;0.06016065132165561;0.05783639130082243;0.10927315371499473;0.09501555218043878;0.09345562402339062;0.12086930792894106;0.09282224539959161;0.11405656301702354;0.0019989921091331585;0.01774883492320427;0.008824199128168592;0.17104062741387388;0.07800895888942182;0.01352695135391988;0.018399316308174683;0.06062069879412445;0.04777390803661614;0.03901235405485796;0.029817026961184018;0.1649191471763321;0.007020615264993785;0.09295811098403628;0.09143794524804942;0.006196316824177189;0.02830702848443072;0.007017286620294898;0.005706898989245377;0.12894813895448246;0.05067744881988098;0.03546109589993257;0.043100583584421925;0.031847176970308276;0.07723663684614596;0.05715347438771481;0.03488896746730035;0.03736555499664255;0.03823895903310861;0.0621739881630196;0.04637412639635778;0.08736909933132739;0.033917705953084715;0.013854624106064053;0.019103401082762393;0.015926212292881162;0.028019729138394386;0.032372959712439905;0.11537882411892315;0.0174501005187373;0.03795032512988325;0.029535497345325804;0.0324465512042829;0.023246215675095855;0.01752041025616137;0.04922541067258378;0.03476658441106201;0.05316313582244586;0.05375976450522464;0.034941703736343664;0.04676462357171814;0.11104237427603637;0.08351278374773127;0.04074875734752242;0.022590479697952685;0.22065028467000755;0.026963848574672506;0.05028790019734729;0.022201883065607643;0.030252019125405743;0.008077252954015148;0.010375851018543148;0.06328166130473839;0.0903085372068823;0.03190914290322954;0.06254423706464349;0.04669420767434562;0.020721046057019958;0.03447701833945307;0.24719969803101555;0.11580583090369774;0.049066869464293984;0.12478105690682087;0.04284417828675107;0.06414014152861379;0.13650526973321156;0.02334662295082459;0.039963495854702685;0.04391596283019403;0.05014310940973797;0.06404189706606205;0.007133408481833626;0.021735341336302425;0.05619449236630971;0.023888366718526323;0.012280841365744213;0.019653395829017067;0.014378351919504602;0.051616510648504636;0.003984563739485396;0.09923480927394848;0.03475627102241791;0.002156186527291649;0.025637726461827857;0.036984563850568045;0.07337748462914317;0.059196368641505605;0.0331009608738677;0.016903904193456814;0.33871394067672156;0.010033418304531626;0.032108790563475355;0.009397886600673092;0.011480702707570924;0.11631031920788909;0.024624055181954107;0.0036291127396477023;0.03750876088185342;0.020101523106361326;0.0001722812611563051;0.0008651413692959305;0.03342060398042009;0.016151845832007784;0.059868809714946895;0.07998076919172784;0.06785722069255569;0.029792064051539984;0.1633773422287129;0.05654968331155212;0.04219902186099127;0.0041071744601158785;0.063263481398715;0.016595252772073396;0.013679734505821314;0.23294202025285118;0.027446584045332848;0.0396241759688199;0.0373079576019168;0.12313392606149161;0.06110832813933538;0.08740045220080137;0.0683442582473863;0.02365148220327872;0.08216535338408543;0.015063094845457451;0.003762736152533682;0.0059864617319094334;0.05256462952665367;0.00911802396721422;0.0327431635674376;0.030499648260053556;0.06853347240854825;0.0064150542950377545;0.005036803956843514;0.0391544743185925;0.03530129749034713;0.04125806601344125;0.022009195717445303;0.017986287828542426;0.011960345065210574;0.21052358185031522;0.047814926761293834;0.07187827761683432;0.01468927932063545;0.04331958838717526;0.5048103778494202;0.019643461307225243;0.22459469369402912;0.026348715092973804;0.005798322513312542;0.029211476233035792;0.002186939336014672;0.05386708424874265;0.011244597634597637;0.1238705437681563;0.13522794368437352;0.09759254018250126;0.056609185695333325;0.13903968085026;0.11528927679213932;0.2577761447262327;0.05554830106011864;0.0576896641557656;0.03472099659693113;0.05397236757478386;0.06239245335178578;0.09220883295630013;0.02987035140839154;0.0238651338514288;0.0868293485708536;0.06669454113041091;0.21909917464751008;0.2483680801707965
+cis-Cyphenothrin;0.002102252236436942;0.01891576054949354;0.0020917084299955785;0.04094361640903756;0.036940700677878475;0.1558583101273453;0.12005368120906887;0.00048807514157790324;0.0004649367403993863;0.011115922491307538;0.00447160692628268;0.0014373746707806011;0.0019503377797472183;0.006488913710301763;0.002151866933169866;0.0031965391658468753;0.018729424141431486;0.01810989586295873;0.01850954726954203;0.018539937524453882;0.0038434547415961296;0.0013105691437749606;0.018349905036004203;0.004487626699720405;0.006702832007894231;0.03923412964206175;0.26418881633880403;0.09675187252773405;0.033683940723352256;0.15320173477107574;0.2466022722800428;0.052598177682144795;0.09911993785374207;0.008358680769981884;0.044321978115345495;0.033684921223903104;0.14432534930690538;0.04130662680632251;0.027111909601638225;0.004811533435525316;0.01005840737367984;0.017292029532484193;0.04904326436266951;0.0;0.005883714714000871;0.02852524543790551;0.03268058819769893;0.030428429248489302;0.03769396169990092;9.023749548029989e-05;0.00047545278003543117;0.00428375166236433;0.007612646697951022;0.006559020648782592;0.022944345264776504;0.01579332286435047;0.012533571431209103;0.009217877236134746;0.009352349937166063;0.010429989851363808;0.013568529899954464;0.01975734922123441;0.01896631505688339;0.016371042764418618;0.015389307776176657;0.010960407253625362;0.010345760042726616;0.012883137415155194;0.0027197867463918;0.009072652883628731;0.005061042072798156;0.00948921711119271;0.8575517340830657;0.8485780828865056;0.5356429387030244;0.5054916743869285;0.05159100770705923;0.2608931704699113;0.3100619573218185;0.6158168311753339;0.6877123194972566;0.7353336455288455;1.0;0.9986150817674336;0.8300553882639417;0.818718711674404;0.7069901383016474;0.7554028432367781;0.38232243005197736;0.030860535063992063;0.5641270939998345;0.070666311171824;0.0689495849239249;0.07280119525349119;0.08275119748437554;0.8358263817179825;0.8220565332871631;0.5457071921337923;0.34707431798673166;0.530540792939123;0.49643623004393905;0.12621296116026964;0.12341499192981899;0.12515248449104563;0.1782539786015836;0.0008367298499855898;0.0009504519527048506;0.000364337588481263;0.0009879409891713979;0.0031349591607598274;0.0013121988413759345;0.0012665965099327786;0.006464081181747466;0.004087341339935893;0.0018245418133954318;0.00044713679667401576;0.0007281642099322472;0.0021182348932322053;0.005435548078484714;0.015284030756866195;0.008365728625637855;0.006699730931927866;0.0005065970343326487;0.020819715175292887;0.13097629701916605;0.039111807966815744;0.03565652994863964;0.11498926077537003;0.12195947983080267;0.14031277398989223;0.07907767004565712;0.08337016840139135;0.02172094183230356;0.4116164716771393;0.0010567733551530485;0.06701120711938938;0.04007412886176653;0.09928283591468548;0.11043956234034595;0.10238274966174074;0.1421552683182378;0.09545458085301642;0.11404449868306195;0.18649786516096278;0.09764097062583255;0.0948385778465626;0.06827114713660355;0.07787560658136179;0.39488575632411166;0.3372984001504968;0.005252864096006668;0.22974735400100368;0.14962575817994972;0.0549124543091217;0.02951263371320945;0.13580161837729568;0.016535626486326817;0.016329062953910796;0.02723983780996673;0.014368741961126039;0.03458928564477884;0.03883292047300069;0.09687222125183906;0.012763130268826082;0.1213491851975496;0.008296331760893247;0.04347180045716436;0.006282937279068556;0.002341686393293259;0.0792302976607114;0.1598684639633495;0.006158210652958342;0.03391857304681309;0.006825762090461936;0.005404775122036878;0.019865830304338597;0.008283525671614167;0.0330312493510629;0.20066649181354126;0.048426483018843273;0.05947862055740116;0.03577583593221787;0.04801324134082281;0.04352715133059204;0.04148356830245653;0.0347768907724489;0.2750403346654898;0.06096832109636573;0.026282290111151838;0.002957115302617157;0.09385712105382202;0.007281874094945605;0.047415677346178416;0.03987784738216351;0.02602585558894184;0.06127733613821511;0.057789096330197576;0.07523640840460799;0.08071837240701771;0.07402692680882554;0.08673041960090654;0.07520656424573488;0.08469611063789123;0.0035855839539800155;0.0225478582688188;0.02644285583689669;0.19085054861814277;0.09273384409556105;0.02135163308768686;0.028606884668768907;0.02605780116501817;0.050931572901541766;0.044507743859840056;0.047787808838686816;0.22964597798760553;0.008172809077612383;0.10612725728411991;0.13392496782080163;0.01140452657840884;0.03246399843913549;0.014128162980950909;0.019075301719208293;0.029876011187360555;0.08716427920765367;0.08610307127525454;0.028433309559807638;0.0199733556746045;0.025290123567643995;0.016542459970721315;0.007975631839658603;0.01008081301248769;0.010538036243436397;0.014535356216128694;0.010862363368968888;0.004412633630795077;0.01114639176157981;0.006907112228934931;0.010231254998625245;0.006976594255866568;0.007415879831018637;0.054934097125599705;0.043632951890462714;0.05200960534739697;0.10602888016355798;0.06121927487903795;0.025816811613763535;0.012527220136769057;0.009357671402974506;0.04106762655723098;0.050094594744396016;0.044965221214168856;0.046911619903993854;0.035900765321547796;0.05045191652011341;0.058810708411826396;0.06579926210454279;0.04826298908567628;0.016130115143153347;0.09991633518007782;0.00250426693182885;0.02872560421376945;0.06425042764498075;0.04896398661664175;0.0045196292906816305;0.01255008695194609;0.17264064578229427;0.047965924029599045;0.03150440389847781;0.03389137576983847;0.04022782725265681;0.06378179160617806;0.057706115640748026;0.12335191747159137;0.11640660547711315;0.019340264283924345;0.09722303189540256;0.04858737326378462;0.1761624211679312;0.14125572124419522;0.030095097594000864;0.036338234063584225;0.08228594801981191;0.02936455769623231;0.03754144889888877;0.00740755370759402;0.0533432891547732;0.008657061876282837;0.026917817467864737;0.21035041817426936;0.04099454185734837;0.009113213703762413;0.06553704789558233;0.007476513032040713;0.1568180264242131;0.11709140580892206;0.009955794637500582;0.03605855480189468;0.1302871283315156;0.17099932999243803;0.07307777801491476;0.27214332495787524;0.02887554554711545;0.05157438976612623;0.015566437854108588;0.010645590712543432;0.00980577995781718;0.012152214089248764;0.18333278254347615;0.04242494942712524;0.0034175116881009528;0.029390754088343702;0.00728558888933406;0.017591010081457897;0.0020273551333667077;0.07473919911844903;0.014251500570494523;0.03097538168657148;0.05578724261028741;0.08853086000232836;0.04576566433438399;0.4084370574972698;0.08182983422081283;0.07715994050406658;0.005002371859995095;0.09785451636904284;0.04485435932708576;0.006867969474619872;0.24055827293063842;0.05393524517155491;0.020826023209116876;0.029681213972163018;0.02059018687572664;0.0818462509414647;0.11522185230808378;0.10761784480117817;0.018952448510968264;0.07180994248705604;0.016621434410537192;0.001369465043452342;0.016810273763269167;0.04411635843610174;0.02220923714973113;0.01832998881369013;0.028077689266843172;0.05032677427228718;0.04466868448624392;0.03705530310693949;0.04503151998113518;0.033456079268113885;0.015681861786602795;0.02566375811054282;0.022161265570044608;0.005761727035821452;0.12982417473819938;0.0788027980706199;0.06283950255753117;0.005924994752727844;0.029164380185229797;0.5068498092589455;0.02554459373438928;0.2212883510163494;0.028210799126939412;0.005013545608053507;0.030160155470995764;0.00555788231821184;0.07024153791767516;0.005208268838772511;0.04304843809139766;0.11439559894317464;0.3858032127436661;0.12202307793752232;0.18056698367208723;0.2081551842309873;0.00530668827121895;0.0038555639868543073;0.011049565652886718;0.07465639336454664;0.050724449974717964;0.06307971342718403;0.08049425447176269;0.025047559017652855;0.029241826903285858;0.06658441893829718;0.03990019158864276;0.2915748110389822;0.3195803749701757
+trans-Cyphenothrin;0.0020051434867278412;0.017498717790959763;0.001370417901002478;0.03961928906957553;0.0354677965981967;0.15575750995995283;0.10985350184149902;0.0008657239987328149;0.0006747401313307459;0.011515434752584382;0.004152761329653383;0.00143881593586984;0.0016957373061593838;0.0004748272551449861;0.006708241447369964;0.0071447353278426785;0.01738000398478448;0.016690370770950355;0.01721663041716716;0.017113707242749424;0.003809343853326319;0.0012356162167389498;0.017791552340014217;0.004424485083739223;0.006651166219174707;0.03851203230923302;0.2600098302841887;0.09153587460207063;0.03159005638098387;0.12846774659641524;0.24393043597215763;0.05116315035130736;0.09228862776696026;0.007331844066775235;0.043943637210155616;0.030870800265737852;0.1402669521799172;0.026580034079105513;0.026379200623146998;0.004507794292720239;0.010835353790928261;0.0176028656534921;0.04928404203789343;0.0;0.004259930630759479;0.00469634124233105;0.00638792959516305;0.003609637093626246;0.013535912814800608;0.0;0.0006608739091710105;0.0040640846739569796;0.0040840994046271685;0.0035235314656594523;0.02179805572492136;0.016157019885316322;0.013082147537697925;0.009816794248085983;0.00997980176812142;0.010854914492122378;0.018014243495537378;0.02010148063475825;0.019628639667386663;0.016856533908917323;0.016225643394542556;0.011782660838596169;0.010975511867254172;0.017087074966126298;0.0030990616519474216;0.013127485150746883;0.009201604321679272;0.013034126338532109;0.860172265628332;0.8518083721519376;0.4507337442344558;0.5071737409449403;0.05107240397283435;0.2593280308539407;0.3032907231752431;0.4686220942756864;0.6935723611527459;0.7415824562923682;0.9986150817674336;1.0;0.24561405751715346;0.15003249209502964;0.18893736567581695;0.1767925480722947;0.3505582510342005;0.02977248247258313;0.41153752519558195;0.022396030360964467;0.05507571506190083;0.08020217252332232;0.08994677241567052;0.8358295966297848;0.8224122060406832;0.4807036572352336;0.3425200917057577;0.3551258245456222;0.3366187311611215;0.07092964224429717;0.0945698474824969;0.10236807842185942;0.09074178769689384;0.0003778423923757579;0.000667529061023473;0.000978818712722588;0.004018092897913015;0.0027863042335795588;0.0022106491768478366;0.0018222897621751532;0.006198402389028056;0.002950799415062301;0.0023215141654180284;0.002817228970211387;0.04057946867334915;0.0022519965036344783;0.007507046858414392;0.014751248540607172;0.008158693556753673;0.006418380813563241;0.0005007483256693379;0.019470628614303948;0.12847858401596204;0.03806520627784888;0.03470250342244882;0.11132423465054557;0.11253502327192606;0.1091188523628134;0.07618720726239528;0.08362659582026932;0.021892470412383;0.4096382535607454;0.000674817809240216;0.06722346542297217;0.039852786660223495;0.09712263810435767;0.11063458133629944;0.10196826175833563;0.13799186083683834;0.09355938249924109;0.10793513082579127;0.1790167078218583;0.09731145482579619;0.09253140720250162;0.06908920861862901;0.07831217572245507;0.38847151275612357;0.3310332916417467;0.00199787716259473;0.2222462008085582;0.14932793612957243;0.05526098931503478;0.029548885784164133;0.1352176101031814;0.01578856273649822;0.015478144897062314;0.023806857452220404;0.014627885251531452;0.03229300043084326;0.0378016444812918;0.031513980415837015;0.012605514833180936;0.11996490621682225;0.008323362037116174;0.04257979460896511;0.006069567281214161;0.0020850569525996255;0.04094028761581491;0.1566820441491103;0.006156565363124193;0.03415799287607463;0.0046276258536533795;0.0031623467348905845;0.01981818832953874;0.008142506186819741;0.032959323547130014;0.18979425519651533;0.04295981726249406;0.052268967548208284;0.014824111426291154;0.04767255799450761;0.04266084200724987;0.051490467679430926;0.03229227750619774;0.03103037055011327;0.05086100623063488;0.025863476746001517;0.003388721634135269;0.09075654638396598;0.006786584847942268;0.04819869600691886;0.040110501963659284;0.02540004848186019;0.05647958659889356;0.053296764881010636;0.07392260418371;0.07900689650782361;0.0732376671215892;0.08570621254644156;0.07438091684841551;0.08295017598646046;0.0030616762569385934;0.007060712332487241;0.022608097285949005;0.19419176508310593;0.08350762465568377;0.019939430877733137;0.021813911842423796;0.0188490678211465;0.041077053722276526;0.04407724802917604;0.04832629185280022;0.22435114798530933;0.007983692482704535;0.1037537753873387;0.1276784343383993;0.01094317058857021;0.028696031894235956;0.012952582018916053;0.009874059927541127;0.02953396308438593;0.08525615003563476;0.08616921524110592;0.029370123097142584;0.019776031543388452;0.02525050494891897;0.01589120523843196;0.013299805439659225;0.015584494935851099;0.01622676625615314;0.015192122343938269;0.011453018660654209;0.004617899526719679;0.015615341182143807;0.006506873123731501;0.009818055818796734;0.006616302830918219;0.011250919076379318;0.028909241936437294;0.03868554848987552;0.04886739653365751;0.0859094640526439;0.05767622937610574;0.026771802108935355;0.018359889272381382;0.014670253140760814;0.04734457377872811;0.05243363721347443;0.01397802008613878;0.01623700969747088;0.04014290989289724;0.03976957721518124;0.057873476314373604;0.06143626661820423;0.04305420689244487;0.015338808871873154;0.09047576684831095;0.0024367005620196374;0.031283664386037614;0.06344283536692435;0.048680140647471726;0.004394025169445311;0.004638229949607722;0.17087289419341814;0.0405819702119512;0.0316935142974068;0.02877312851230656;0.032852137314103864;0.06122015003218326;0.054030111222674995;0.11943380311524009;0.11883391521990615;0.01588950356073474;0.09265670658348056;0.049409197135397855;0.17420797888883527;0.13517455899661124;0.029596891686926505;0.03811840034908519;0.054804829593972336;0.03191809661382263;0.03429670187017774;0.005510597946428144;0.03628438842116541;0.008518001433556587;0.025652997095274778;0.03982948284988185;0.04094510858011634;0.007230422456603253;0.056225991653325494;0.0015429835939294648;0.15224443254942122;0.042252840994113465;0.011009262890579548;0.03668948157050076;0.06854609152263913;0.17384981554354875;0.07129516964743457;0.01984232524662921;0.015176879395585327;0.05030883049997777;0.01388380438148885;0.009331078348562276;0.007463567648565777;0.012282465989696803;0.1706730984787064;0.025468673595223913;0.0020605080854025383;0.028634587899584785;0.007485683415597632;0.011735655607016917;0.00982815927854763;0.07368549989713849;0.0567444878947593;0.031235082645160155;0.05201152607941144;0.08351544498328807;0.032485661160585065;0.3996496140603145;0.05284614325542274;0.05416895197438424;0.006070590375444821;0.09249755306335405;0.03667882727171171;0.006621607840681095;0.21092824912078154;0.03145629710716113;0.018068839537606022;0.027817960494938093;0.018671182537123025;0.07775759935951963;0.11088140879480689;0.10845871871633841;0.018516915253560785;0.07391508514199913;0.01598431441390935;0.0011611206625914872;0.01657150063080638;0.041700493728056016;0.014270645211605237;0.01097975119659521;0.021372137441779734;0.043213698608181736;0.0020396749163283804;0.0009093358606782019;0.04023662169431341;0.033484544310258296;0.016536683552675856;0.025281319526238497;0.023080893831049002;0.004621290848971744;0.1156173394126997;0.050374808936665655;0.05796693202740155;0.0055574319615976815;0.0271704439791214;0.5185342265734891;0.026901366053077802;0.22057964593772966;0.030377409823460006;0.004804870432743428;0.08137821231833638;0.0020696252432993484;0.03646284416169554;0.00543195553751607;0.04048178313411957;0.05694530388908726;0.10999304589570698;0.10344320661702014;0.14968623343430223;0.15541393264237102;0.0070035485811958155;0.0024221346154063455;0.004923191684051353;0.041744851134309736;0.0765019571980422;0.04207829418677539;0.0734709156614664;0.02529308330789498;0.028248637223551535;0.06381546514183911;0.03901693496796849;0.2355827792562736;0.285498394242353
+Flucythrinate_isomer1;0.023990749334194074;0.017642352174603405;0.04687246086599114;0.033396284714839665;0.03127639059205167;0.09735657052002714;0.08248201234821519;0.03977335208748474;0.0407147015090415;0.030378140595079685;0.013065336340197712;0.022508758937347828;0.014247454411893441;0.07206968230875865;0.04202594330998082;0.0469915763018132;0.025521840138303893;0.02458314816208026;0.024249686282687945;0.028181898472237305;0.03785794290929775;0.016972404675938614;0.05854651568396993;0.019252775920864787;0.024461389737161894;0.06922100691168369;0.2023685748730312;0.059518840586682026;0.03673291809859419;0.07888815080714377;0.20191510251463135;0.03506576966004273;0.025194868634799767;0.019439910996468843;0.042515334571412905;0.25136770884525195;0.27197581168787;0.03246300473741043;0.00718821754032081;0.025330447442302135;0.015966518692556383;0.017229369413671758;0.10729666819640198;0.0009139532060045703;0.012334914213649984;0.012414123418260587;0.013775059796011766;0.01249405038701919;0.01465865134436839;0.010986547338427058;0.007073777515589716;0.008496836639284222;0.09283405823961464;0.054435463321187004;0.0359170228337307;0.01544062665477857;0.030078997550805963;0.02817630477063786;0.018035833190399683;0.015179432164086704;0.023916742169834387;0.019592508176546206;0.02115156374001699;0.021042846266242494;0.0329437278544388;0.030215341621756608;0.02771000881234891;0.015470476892344815;0.014530400652094565;0.016888005946468707;0.01610129099718293;0.020568070894791544;0.05270273678062136;0.05019514213994998;0.0865362061500457;0.06925938796030891;0.0419093856499256;0.050067429114459286;0.2612882323613262;0.45583170293370256;0.1131187548770144;0.11808885575946261;0.8300553882639417;0.24561405751715346;1.0;0.9808870289173818;0.9154510227859887;0.9184387335633978;0.3106418333127473;0.006919602162261893;0.4466385712604743;0.07004605038843174;0.06088856262911746;0.10216926796349773;0.10756148417642031;0.05112261985508774;0.06073977594240903;0.41137118828780067;0.3008095309017343;0.41078225941801816;0.58047895745395;0.17462085502033184;0.20746844748978552;0.10981680126015123;0.17440138734947996;0.012162506091619835;0.011981226187122896;0.0121253726557688;0.011663398543609154;0.015903992796516934;0.013573581069223187;0.012699866216982419;0.022131942191219913;0.015967300955751232;0.018842348575947486;0.0029177640966618346;0.002438313731835043;0.004539136215971488;0.016155701018685183;0.027528699857414254;0.01281448591212656;0.004189447371405922;0.010816791084425716;0.014996987765673412;0.013183828479731714;0.023117095864114756;0.027361968065534432;0.06338399108501723;0.06325610167425567;0.08996840539489995;0.17620644743607503;0.08634466495818857;0.02931637656695098;0.04707836831408235;0.01989433234338483;0.08365309667363838;0.044837882260255826;0.08208239990977466;0.07195972200895466;0.07283942606532111;0.06382570445365372;0.13083084823320085;0.07055955264696023;0.09760819535922519;0.06916787974010552;0.05653717222718324;0.05509460945681076;0.046508766920813044;0.04412848071766722;0.04287440524561447;0.02356399291222232;0.07805966362946762;0.11152435611506187;0.020294609758129127;0.04390059684693086;0.09976624723750284;0.055254565743877854;0.05713638981067776;0.09371317597665077;0.04502236179598021;0.14723781554930152;0.022447912504620082;0.04812226124090932;0.005170303479670207;0.021140885087823743;0.021250919884473793;0.04548823500743261;0.006552766423976845;0.009312060563934679;0.08700872630472915;0.04484089831578155;0.0059514317437117685;0.03639346458504086;0.04615715883820306;0.044892706984637695;0.024541086656198533;0.0012599595638151636;0.05893691064801578;0.19064300783147214;0.05752235021562886;0.07734857865078919;0.013285439259029886;0.0613933949930657;0.04968684175281459;0.1462268568154002;0.05440864570452536;0.08981088365408552;0.020541604156019688;0.031682231045745295;0.04479021201758728;0.057841800040893794;0.022172506077637207;0.0865592184493523;0.037529159555743714;0.08393772242127899;0.05905483109407325;0.06003566818470279;0.13750207874599732;0.1177518203671243;0.11016222439035273;0.14535647213624225;0.11786402214000861;0.13887297146706348;0.019243559926285476;0.025618885356912435;0.03040181174776498;0.070205470998555;0.13985481313738032;0.060169332416346574;0.03456448681477067;0.00736784205345262;0.061541801932363964;0.07583787562577389;0.0650983582006674;0.053553372976826955;0.018468722819877943;0.0445039947890503;0.06680590629290958;0.0061246959564022485;0.037010147893164806;0.028454275034459336;0.016944055243359298;0.005656525704119414;0.0720562183377862;0.07468960212251345;0.0212961404662661;0.015517047492909329;0.02113661962115008;0.019804749122622523;0.023669326991865854;0.021268204489193407;0.01724890405759346;0.032453020377565034;0.02702500677813432;0.013228966124760145;0.017428574036641813;0.007269457558750345;0.016056437709500108;0.011781860049438873;0.014826370806136798;0.06671372860525962;0.021207805996441245;0.03665809026394311;0.018226436001680564;0.08158561764233856;0.030885218567241163;0.03321963065149303;0.034620834502014315;0.059600770876618005;0.03162053586586524;0.02680535054785283;0.029182054086206458;0.010982691341443676;0.03694400271254078;0.061902639260654084;0.2155156664713151;0.09598062208121527;0.019909571245451257;0.0611222672455277;0.08719118607279262;0.03844211393982141;0.01049123206897194;0.009726657182141673;0.014783078329556621;0.023617086590967222;0.03343880445102092;0.025482963730531234;0.05782022042879928;0.03787531939570358;0.006292445800433371;0.001432645683931885;0.023324593230991935;0.2286675421696379;0.03627488648786936;0.02382681160561256;0.17466159821081198;0.15016723644834637;0.040552276537226505;0.03858534502254163;0.04385351689831293;0.07006553948954153;0.10402079591772882;0.03847615115324453;0.0938988555258604;0.018467705709028157;0.022326681527599847;0.3454046337218564;0.018734295715781554;0.25681688913117523;0.018092022407830987;0.025409718312932063;0.023837005875695993;0.04210413811480085;0.06754725950420395;0.053339760976630034;0.011432570686112736;0.03153390767136935;0.04219970019605048;0.13870167086934804;0.06658926493605681;0.12165754255997441;0.019228126728432434;0.12138145961583077;0.025861815660018245;0.10601081518971829;0.023461524716536786;0.014923830172278633;0.1635898758088278;0.04743444642576007;0.0030817694558294183;0.03377784436180477;0.01769908791763495;0.0003655106825013779;0.00098403592322775;0.03437049307289245;0.0818805331072986;0.052403701909902164;0.052754500404924735;0.039155726009566766;0.041049415219656965;0.34589098062999485;0.031394652367768186;0.12633866120445295;0.010385958367836744;0.046764030035106034;0.03471431664491707;0.019072648321691334;0.11337879354391842;0.022325663462725177;0.089507325814551;0.07210037147949565;0.23571067045793068;0.06848174710751717;0.07493027541258794;0.050145271086027274;0.08854490444301488;0.10490529866567655;0.023208653284060812;0.0177399641788174;0.02727806690254673;0.057426027273980565;0.04138337582697856;0.09908093102483642;0.023883588475750294;0.027886526102031475;0.033555612742241434;0.03270367497489139;0.032579679532945445;0.029293655636934812;0.01742526392522996;0.0042939136124108;0.005873357309436421;0.01670420765450927;0.21740724819810475;0.07970138305995086;0.10424940735876632;0.004181118955112312;0.0245752823318133;0.014231336348475728;0.01350447564748941;0.1155349707345314;0.023513405977801674;0.017952411622826504;0.037721402540710484;0.029894367927664176;0.028056977649397585;0.014373908861529129;0.031097299517809037;0.04489674286001297;0.10034443956292576;0.15151414182290654;0.19911156148026213;0.09387428112970853;0.16126526394689078;0.010156364140336013;0.014102969133688385;0.2859054759943857;0.08627699646983136;0.09742757465085133;0.19634131274652672;0.03398519089455174;0.07794154691134313;0.24377886573230179;0.21145521439509798;0.16058359042203307;0.10265496004045387
+Flucythrinate_isomer2;0.006891657259492042;0.0009446033937638271;0.028284800204274416;0.015942620626324167;0.015319397012646445;0.027027142826545388;0.05493333027870516;0.022594881594295704;0.02390187486246061;0.011649370186901164;0.002058221519224756;0.00256742745034149;0.0039682481740312145;0.07994463402111489;0.028796772102755955;0.03699361316832702;0.0069525001068473724;0.006266466154455579;0.0065611668177975955;0.010036061309173927;0.019195649017027333;0.00016400275493904856;0.041956529215637195;0.0010712802115476518;0.004411452724924259;0.06083381485453507;0.13719149992724958;0.03705346095615985;0.026579690177868924;0.06381491330982773;0.14395747781640675;0.024889612474081318;0.02101449244171826;0.0015264048932762868;0.030138043775844284;0.21447306656317494;0.25375461691704415;0.026510795515487382;0.00479935562627695;0.014062318580840106;0.007792072538444721;0.005499910935816471;0.09585855829485292;0.0004926150039467432;0.00821977881983005;0.009596896143058878;0.01087163217584836;0.009710811843504655;0.010895563747989036;0.0028379932502845748;0.0012218412583209941;0.005901251623915228;0.08396915096025225;0.048524445178509956;0.028901764942841413;0.003573152561416993;0.021212575959142593;0.017564548954825305;0.011196789079226496;0.013353725410368595;0.015238846793338553;0.011145597881365508;0.009608191066412827;0.010670342429711191;0.023819343846826;0.020109632503045035;0.017221599478037468;0.0075279986946699745;0.008120845563235841;0.010095015213971431;0.010276654134469624;0.01277775365271543;0.025250761758145827;0.02399266212950225;0.07256970584548138;0.05430098804521769;0.034050348498705946;0.03942381839687146;0.1998107191316008;0.374522779577499;0.08744706845775622;0.09223161637517302;0.818718711674404;0.15003249209502964;0.9808870289173818;1.0;0.8859990676900756;0.9101233364621929;0.23919856298876366;0.0034758700429839352;0.3696619024724157;0.05899755389789572;0.007759500619005517;0.07497945135725007;0.076071757549928;0.025204121036478976;0.030578748352288545;0.31762683376547696;0.19780057761386882;0.3287788063050662;0.5020795303600593;0.15139383136030354;0.1777251750852737;0.09084953181834023;0.14748510702475484;0.0007311762585110396;0.00216203301680017;0.0008668015476040146;0.0008142208568386361;0.002701560915749519;0.0015044151335767127;0.0012853742882411871;0.007859101089613234;0.0033100555470857106;0.006004194966203826;0.0009326277929667577;0.0003268774855413323;0.0012658201477066964;0.0030108999092062225;0.01871689082072848;0.002331570119950017;0.001998634013350242;0.000803966010924252;0.01285809673834077;0.004642827734379716;0.019118130988073;0.022022054908264845;0.052564819027797235;0.05309267055713141;0.07360970341375632;0.15094799687253366;0.05613472114033497;0.008267783367723183;0.02045859371768649;0.0013310445678262508;0.056911836182533246;0.022734243334476344;0.0520772686262342;0.027354507477710056;0.030013354712790832;0.03388580922791006;0.09598232000168382;0.03960566317991341;0.06287305508829416;0.03436620892161537;0.0141249968005205;0.019579829367297526;0.0016055499577961358;0.035581091395104826;0.024284333295422657;0.005407770420462123;0.04071554905959242;0.09522196304571096;0.012760228145861861;0.011731368856349947;0.07422366872514508;0.039293666898010386;0.05283958688871415;0.08980987645807398;0.03674199165751578;0.14314803240897875;0.015699614909975526;0.04594143203061028;0.004611822515793711;0.020462156158925493;0.021096821871858077;0.03551812455506707;0.006924833413397666;0.00938551452626003;0.07846275024297288;0.0341639232930981;0.004305911310838741;0.057277004906467255;0.04063870061594094;0.04006910145339464;0.018105553972516734;0.0010996161086917343;0.04467830377971306;0.13110275581858039;0.026548433479781544;0.04673237018524437;0.007901143821766158;0.03276340631187579;0.021544399862744163;0.13080243038920164;0.04136838266525212;0.10445895327700053;0.02062917026577424;0.016771132976481876;0.030110093450916003;0.038468525199972195;0.009713436155298034;0.06617765254975114;0.013664387798632539;0.0786596201685183;0.04227410632163626;0.04338644361234956;0.13346741135326232;0.11344814928830187;0.1038473583801741;0.1408571153248741;0.1120396823680588;0.1315396561817764;0.006787265956616346;0.017537681630923497;0.02043609800748464;0.033519249669126706;0.1293688447906224;0.050575565538868744;0.023152589707900392;0.0057133723372963015;0.04324058834075831;0.0505948942142202;0.04995247619930727;0.04349045776053972;0.007901137923972018;0.013769479951976193;0.05051659499258408;0.003922411168574757;0.03861001107876109;0.018102486898813046;0.014214666308924463;0.0042639439670154955;0.021350546998367363;0.027184237711996472;0.010845928284189937;0.003646104784404274;0.012741295017351833;0.009120077861767939;0.01491519849774413;0.011765660977316796;0.008047786179388108;0.02103644654942824;0.015472798855597365;0.00980945902675082;0.01053732958216847;0.0033318923638842373;0.009399168296803878;0.005355276125125493;0.008350536700282128;0.06220804386186405;0.013052353644421106;0.024380012228408708;0.01550078277148619;0.06852434459236564;0.023622755173974483;0.0013314328069281977;0.0010465081015538801;0.016368207960241875;0.027563523877305807;0.01376780383621895;0.01586011276522547;0.004854527326040304;0.016757689781631765;0.044352057856518134;0.2137761487614043;0.07861104999260664;0.004740999805354774;0.05145196428239154;0.09662888698365557;0.02017270323136268;0.0026232951314745898;0.0019952822792249666;0.0038782254850740806;0.014849600778913988;0.025142344627738688;0.012075712894129897;0.036303337886699025;0.02154228387394956;0.0019101990490684368;0.0004825171823045729;0.012681303464269383;0.1881548316312221;0.01772685502256065;0.010637455459385686;0.1378027625116148;0.15453531726863518;0.033789822690671885;0.025712601720500324;0.03745032271274238;0.05955127080572607;0.06423606115719002;0.019912605054545212;0.09805819672567344;0.013579516139163443;0.009210149115939939;0.34876941666267575;0.006867644482083105;0.27405373661531834;0.011541456644179294;0.022881194415018916;0.017369669711348654;0.03032944798919695;0.05288208716339634;0.021207389872996207;0.0058591253576488625;0.01648801413184915;0.023544279544476233;0.089099025393261;0.02692641474211108;0.1214151058769913;0.009011026704926633;0.10686177034972567;0.023543091615892523;0.09281442713184586;0.02273638433814856;0.009556925895844635;0.11524288461668918;0.017743243520012098;0.00015778917168494087;0.02925814589471136;0.01850595261986174;0.00748324378469219;0.0006678435807556686;0.017973198512140735;0.06913478272324262;0.01877422108020007;0.0525163162478716;0.023253899923204396;0.02676188788343529;0.2830682246333605;0.014179375558694043;0.11130422281067387;0.0015386737244646562;0.035369803849902584;0.02202154129185878;0.018981511452905872;0.09662677545069628;0.010074040899361134;0.08456107223341118;0.05561693889533105;0.2214653113216268;0.056138464528978416;0.06049820209170052;0.01204489955040586;0.08707911911275945;0.08986130306187791;0.016303544244024668;0.03187154996158548;0.008124927829125267;0.03583647337002205;0.03392115147477677;0.09824900573875447;0.019512025410883985;0.02287131302601418;0.02206467841939657;0.020049588371055426;0.01864771626901353;0.01736218183693788;0.01305156574161034;0.006354378961573679;0.007917914986699874;0.014194287177881884;0.21359773093283016;0.0675986553701719;0.08792312184286663;0.0038627694955303275;0.017179228318294167;0.0057481490527092885;0.008459364030825407;0.10172417380135018;0.008077462960615798;0.01572007149906305;0.021400791212901116;0.01902671710397918;0.016488754365297013;0.010754439305219651;0.02499264855344259;0.03836452957215259;0.0731355872895422;0.1398199492898822;0.16978344449778499;0.07036550012791536;0.1562134766812826;0.009571281770207087;0.012424218602435663;0.3080481393655175;0.06943418037780356;0.08316255754187013;0.18890835742036596;0.024051720409887286;0.07571511920116568;0.2292337764791549;0.19783325164992493;0.13070102157167632;0.06644688925273487
+cis-Fenvalerate;0.02849615727088484;0.08277075475800937;0.018241366783545033;0.053715112623145385;0.048903113485022964;0.194766066630782;0.13126805136150396;0.018689539110644738;0.018488478239535963;0.03734009625466064;0.011926076193489855;0.020520729220007056;0.01058328830403439;0.095332943608921;0.043523524981502415;0.05595039117723038;0.03469444044337753;0.06796593495534473;0.08865328563904759;0.07587633269706218;0.05937211776157213;0.035973709337402425;0.08384315187299296;0.043555231293530484;0.023018929739761305;0.06187922232261423;0.17311464135228338;0.061042834009247336;0.02288082806560528;0.12950495222433644;0.17173790261530034;0.025368455439921576;0.08364309642400199;0.02020706315418688;0.04439020064408373;0.3886491922611567;0.1801514639908603;0.02681842666713;0.004844770839154759;0.02273635692643094;0.025833744060372844;0.024353048044470624;0.10647584007126472;0.00042025233836469924;0.019636608060912514;0.033333449860193;0.037103650906968696;0.03651899001657198;0.03449975726459517;0.02117698541380267;0.007433535593176051;0.011326766619056594;0.014525253767759384;0.005884401133035125;0.03437633547017601;0.02377539560806079;0.02130118129337621;0.021256804576030672;0.015767323235617563;0.013083550634905752;0.027468623494151117;0.016267779121179618;0.015349750331195365;0.016866086947169966;0.023219895933253246;0.020890058471133077;0.02127045318994195;0.017883401796155714;0.014741228939504854;0.015475178869142285;0.014798099302904285;0.021745009123435678;0.03610463984828932;0.09173397523657718;0.1350837601023093;0.0686278098200152;0.036150290188855565;0.012728500226178288;0.2464335492438435;0.4966680673476842;0.08046615592017192;0.07977584565757934;0.7069901383016474;0.18893736567581695;0.9154510227859887;0.8859990676900756;1.0;0.9690127123994975;0.2818675104491419;0.00862604649846833;0.3938924691259299;0.07945277054840247;0.13729629435391077;0.12415191997193467;0.14027029683356051;0.08365578866399351;0.09098383911199566;0.41044133443340464;0.4133170696387308;0.42683145654123;0.47527809441482394;0.2740791655135083;0.30510871330627637;0.09131343972265714;0.18620723923804047;0.012167248351648077;0.011210029449277145;0.011086317373953651;0.013135718965930174;0.017056304173856042;0.015745949792869644;0.013936533739035405;0.02537350836724984;0.021465806030673645;0.020535833809710514;0.0023931084744292963;0.002036048137114308;0.010564739452864238;0.014039217099978293;0.034735972986952086;0.00932574426884614;0.03278901947347194;0.017515148995579037;0.01870836489324554;0.027503002905980598;0.0069667813001592785;0.008100064554584965;0.01208763650204085;0.01570640904021928;0.043784397826290476;0.048109164688235645;0.0985666060978073;0.0242093293541214;0.01832503486719505;0.06701667157629122;0.10043793081487844;0.04583849185137931;0.09422194181435767;0.044175681008705656;0.048971235980367685;0.024434097973445385;0.06220317092676122;0.06670506820093511;0.03269158991297842;0.0803962570815917;0.057063331962785895;0.05318898771491722;0.02569528881282624;0.018912303366777038;0.17295593476486237;0.03810380549324063;0.02432956830823453;0.013906043413197643;0.007260166844800916;0.03731425989350043;0.026397198416031407;0.03556754338264188;0.028485118644833295;0.03039521573992544;0.03184169866256935;0.0623813280817022;0.030918247285621273;0.07124082944337916;0.011403659890191743;0.028445124660934233;0.0046753360456699275;0.04709323219911225;0.0020662785372814914;0.008636265799435132;0.07330542845694696;0.03791014502321058;0.01356784217102252;0.04534795260520023;0.006120345800693638;0.004725762041529725;0.018336021446576038;0.04816744912891869;0.011308736472389821;0.161061281213074;0.0516452458639353;0.05135851196358031;0.03013549393876919;0.04967982388081805;0.0451209916112129;0.5348625891580441;0.23811161736285064;0.6680331058886644;0.01015256357838848;0.05021633615394483;0.017575105830496294;0.05129055533088267;0.013859924669736259;0.20360792925876092;0.07540871180242181;0.03440848119783374;0.10490492042132128;0.10709360480639012;0.1268833236770265;0.11351860117168479;0.13068292069406978;0.12439231410640718;0.13459660313382477;0.13930289002929713;0.053884877062731935;0.02137729605275763;0.0356217224373723;0.04013267490610273;0.09610663657417738;0.020369929754320015;0.031882951863416845;0.026029594959726485;0.0730982164055294;0.015469560164086198;0.5082728586218499;0.028538665039248227;0.05541481179174633;0.47310821168520184;0.03186141111235497;0.015226998200091572;0.10648861034618742;0.0047470243393481736;0.03454850246358216;0.021176163943409564;0.13288376570251895;0.14368694775079713;0.039804644070222495;0.02546799005341468;0.02030998025602736;0.01892015548297693;0.0281964438652693;0.026517285822812264;0.027234033561726028;0.0345035365470671;0.02786226176557438;0.021198061905302344;0.019911046091608833;0.009667684699723733;0.016012263993921427;0.015315327129555719;0.017811453994309594;0.03421807419465993;0.012404991573567696;0.02393801081812007;0.01142844471761993;0.05489377716844422;0.05934035413432284;0.2096542449607139;0.2364716277894427;0.2513879933952427;0.4436664436183822;0.05389404443594252;0.054250433734564785;0.1461511768863535;0.22213571080139397;0.06121068706584169;0.01750604209498211;0.04558306245231003;0.011602014795806718;0.07686534730243948;0.009811666548149696;0.03747572083056936;0.007815177344276798;0.02115878243111539;0.004730008336917505;0.2692727006945148;0.00842747279293474;0.2685582836171003;0.026626894882443894;0.21209964578757273;0.028173172036484652;0.0002794613991641491;0.07014126412392727;0.16993873928207984;0.014019850586859483;0.08029062853073567;0.37490563830325924;0.0862225306505982;0.007867769170523434;0.010822950056334397;0.012664776418510246;0.06283830006481131;0.14758881891805775;0.0376868420250823;0.0527692844940707;0.008369929689166724;0.018474734827678602;0.01876931708119244;0.04541763059698846;0.2608515090547428;0.00496177048093963;0.014182226904612875;0.026613660436208244;0.01949329381807443;0.08661095514760062;0.11430917594290345;0.01072254197349064;0.016856564411895855;0.079494474140608;0.3111333207182518;0.0422017196125991;0.1848645246591784;0.01624175305796718;0.1873406744444515;0.6763178473594528;0.024480434745243404;0.013075512665629901;0.01395843608005338;0.25170077899016247;0.0810806080043487;0.024180094661446733;0.07171265224144592;0.01329978237500591;0.008330076879000241;0.005342198158472357;0.0234803892306916;0.025713519721940636;0.12139787218659756;0.1435223858360612;0.019849948259782247;0.03488637737485656;0.2582109319984943;0.04436915836650311;0.07588876081572433;0.017985050555506213;0.038032565868635064;0.021798831964896483;0.015589833651062071;0.09449933338545001;0.030604095913971827;0.048912274301074775;0.035421461371681194;0.06899141422978759;0.01043994703047852;0.012164354786624419;0.035718840826350975;0.02593523978365636;0.08537236671956494;0.03451428273568715;0.01441301938568276;0.026779838878461665;0.050564267319653376;0.05973682811461915;0.06038987097790701;0.05563125125997;0.06135632355983352;0.004805419082614338;0.00029827189447905687;0.23030848683885868;0.22664436252040746;0.04917232788037051;0.007420076244146672;0.008295088121563243;0.01956927598962563;0.14822597910652696;0.08529243678616799;0.08585773652565819;0.0024426542864344632;0.031086565137680416;0.009995645326960696;0.04687432030856417;0.06906293848936179;0.48707797950521947;0.021332976738249406;0.023959332937320308;0.015821799969844574;0.4842692086068548;0.024180961390889728;0.06234411103018462;0.1051472715499775;0.7523621088080131;0.11708491604366948;0.203619337784633;0.740364546675906;0.0238113994793514;0.030597689071075157;0.037060779169942736;0.039631000656514724;0.07158055941992134;0.09370041415701051;0.06607234192663318;0.02695903862282097;0.004626281548554138;0.07329791528019344;0.0657810973859897;0.13700972271500306;0.11752858793952685
+trans-Fenvalerate;0.0327683690861957;0.09255553608844738;0.022427297467622332;0.04034423144690678;0.03990589749592608;0.09633411941759766;0.09385249943481512;0.0216321098860244;0.021485094657511094;0.04160393649304889;0.012414098762217274;0.024329522233984813;0.012266090644350348;0.12118649417727688;0.059707702876935234;0.07582494483200414;0.035827159315715326;0.07302116010767669;0.09656689135911434;0.08162090348531895;0.06549474975020061;0.04082700918456548;0.0966649872784181;0.04840758424093859;0.028776425752586314;0.07628822440759496;0.16342729142790285;0.06531674234007268;0.02659188719747623;0.12683619280621353;0.16820158564056567;0.0315401035771388;0.08651859269096544;0.028272051624993712;0.04353272466979094;0.4017450747686597;0.17345572059804387;0.0245420326088943;0.008212950864303951;0.02071374556199505;0.0247826989228478;0.026946937149130434;0.08782378042016939;0.0005446430435903071;0.022567015846603936;0.03243662762464862;0.03643512065656743;0.03559344421869265;0.034305107696244806;0.023386384652388077;0.008435507237681059;0.01487255437187676;0.01673714034494698;0.01000653024127052;0.03735908425364711;0.026458460544760795;0.02150027507201053;0.02152783172212655;0.016127264812177525;0.012681848360090854;0.02636891991097487;0.017760806615178527;0.018436182645208604;0.018431916106099955;0.023354250674055676;0.02136870892961091;0.021855798046086825;0.01873020554205325;0.014926054010514157;0.016422761037649825;0.015483920091434667;0.02138524428442791;0.050814011943431096;0.11183184557811737;0.10173410306157929;0.07015608318952185;0.04012190222042406;0.019354340953709297;0.23913340273350123;0.47753832386841677;0.09222611108530704;0.09127242570799687;0.7554028432367781;0.1767925480722947;0.9184387335633978;0.9101233364621929;0.9690127123994975;1.0;0.28134952064017615;0.014841907115584443;0.3679827898762618;0.07885497908922176;0.133902308419981;0.12231936146380289;0.13773743821444923;0.08072814133334434;0.07881221565472336;0.38552305664262304;0.37654478100500277;0.40615795365310714;0.44309837473036473;0.2585451105308324;0.28703699104480085;0.09400704198149802;0.17186895009235656;0.014630689341858526;0.012385878581423797;0.01328382257891979;0.015057997453875918;0.0170214930366549;0.017614645288383638;0.015724390211784373;0.020668734768551866;0.02368227013229106;0.023759388432078518;0.004152057421051753;0.0044398139747030664;0.005930475491876269;0.017250444158067858;0.041398877189956725;0.009049787064161853;0.010306064988971783;0.014474937880375977;0.016766339931462232;0.022668951016536806;0.010191031006936472;0.010074647526890758;0.02675724387297595;0.03010203105824564;0.06642180817845461;0.05890626787792136;0.09421208434003742;0.03317604700892924;0.04518940453346187;0.07508408485020578;0.09293303946100935;0.05143253342587841;0.0887697368430042;0.06506116091490687;0.0662572045117095;0.05254612054192721;0.06741193772009281;0.06729749687582827;0.04903678972237041;0.08432719464473212;0.07450649715801709;0.05893349228607063;0.04704093880040306;0.03064410143803925;0.215880664687835;0.03832540164876636;0.05902800347789268;0.02248784665360574;0.011528828505457566;0.04483795487449146;0.04236153430529959;0.03462276115152961;0.025805785782509815;0.029897073388258536;0.03204731373955113;0.05582379205958382;0.0318958397253644;0.06608033734174679;0.01416650841613989;0.032927156990902554;0.004913689007221242;0.042541649425404233;0.0030305457560404845;0.011458121394681043;0.07563494680331792;0.036159992204592595;0.017788552920552564;0.07836391310481891;0.009700151299155288;0.008734682580934015;0.017414713413007415;0.05292593239799274;0.01659155231931587;0.16394105056767902;0.05582282158611031;0.05555857206336475;0.04240266320383319;0.05630461968599395;0.04840937439272187;0.5896939145719013;0.26367494961154453;0.7339502093500028;0.00949851133917052;0.05721091244041199;0.019818210703055006;0.05613390799305122;0.01770650108347027;0.16799439301353966;0.08060392673892817;0.04442047207741479;0.10321574230474294;0.10492016971861517;0.12000060232623738;0.11310378769371542;0.12694446233307335;0.11624305669890127;0.12952058652590018;0.1286911246796151;0.06087430825190358;0.025316857791194174;0.035679269190109;0.06044690713550995;0.09129958073147626;0.018384813085797473;0.03395299382739162;0.0331728063746924;0.05577377660162991;0.01871187218842747;0.5565083334852973;0.03598103141288459;0.060365155539676814;0.5120199605058353;0.03822986996945004;0.018680417077687715;0.12151031550034362;0.010070022365445536;0.03706535843893392;0.011200396138210012;0.08888803049716223;0.09797924667364541;0.04484279024628397;0.02938303779469379;0.020922536272906706;0.01965682630014669;0.026638034740277663;0.02571849578382864;0.02620207651512301;0.03346012610612444;0.027483541140400906;0.026441541644974424;0.019717748555751525;0.009849660999670544;0.013625099522498912;0.014690639863935722;0.01780979730704471;0.032229871018725584;0.02095605818887735;0.03124859341458101;0.02055442746102894;0.06781445972517997;0.0448423443092556;0.18031709190438677;0.2073935486971328;0.22423895031693541;0.5053827574977028;0.04471953348253026;0.04497819707953665;0.16903300001282076;0.24814903159550253;0.06453922979598312;0.019883111039143444;0.04483182522800638;0.015209879344119624;0.08343557252132743;0.012819847528481863;0.04543139368170852;0.01920547830533772;0.009493355430723228;0.006942101454603055;0.2954243456808787;0.027035237523444684;0.29660795233799475;0.03797920767082848;0.2229086889803268;0.0373056852446432;0.014105195082258;0.07172349388595677;0.12663507314876193;0.028428785637530003;0.07793868520709496;0.3808954516502871;0.09833301887013852;0.02633110502386011;0.03455978908904654;0.014028641649749346;0.059169483350506716;0.1283871389888751;0.04600414117017941;0.05752880221702014;0.010588526993633302;0.024712724829489847;0.017779069775152367;0.043590408606187396;0.28402898098226464;0.011312588812504772;0.013776168321789937;0.0224415632917707;0.021851067817334847;0.06748729253945064;0.1308435337653206;0.01059332934476572;0.02730910930214221;0.08226848817664599;0.28636250251374734;0.05093193491440228;0.17078423300767187;0.027411933531388353;0.15470705082471958;0.7584460139207988;0.025874116326932626;0.014571484835337328;0.014880180602341236;0.24831258227716116;0.10111273614325116;0.02681711639856513;0.06159301782902755;0.014371826197423415;0.00910175304879843;0.005742782319964263;0.03375253070475441;0.025017720100554506;0.10984445149214885;0.1323859210118094;0.030406705672670956;0.03527409591605515;0.24667351935269513;0.04645834730114242;0.07876218508356056;0.013387831810888458;0.03725833925578561;0.02980424886399108;0.011868796446884449;0.08142812845570677;0.04105788088779208;0.048545209064799075;0.03112709154232914;0.07481004382123493;0.01390882961014427;0.01686146678381402;0.039995555718007926;0.028574164167085938;0.08084149719506123;0.036308795734212494;0.01642737864949772;0.02906638728816993;0.043383377735018235;0.053396777375372885;0.058670518295280916;0.026679599466313556;0.03379837915516312;0.003924213988577713;0.001165884535616701;0.25034973070686356;0.2484412624021964;0.04990679206869784;0.02198788205227464;0.02090466382820556;0.02982134606228802;0.18217674706475134;0.09128419645573772;0.09837523304400395;0.003942441268479573;0.025160560864914014;0.008099570150613319;0.05235511637134849;0.08064685285243668;0.530171867947335;0.022596658129006224;0.03159659337983208;0.019063183576867558;0.5278824769098275;0.024876609249723212;0.063177478514399;0.11109587837859124;0.807177911442592;0.11050980143968296;0.19500045576611563;0.7816064518427578;0.03032447922096746;0.03883526267983857;0.04667163497410605;0.0533625029919181;0.06516018218220136;0.08819535925522924;0.07228775014936493;0.025835067571534094;0.005821105790099501;0.0714690736731239;0.06526645449836385;0.15630857105680038;0.14942361394976816
+Deltamethrin;0.02360065221755977;0.0023939336038122233;0.006444970274226426;0.015220903184006884;0.018016026577524914;0.08527984657594065;0.0384593943837456;0.003025949753039353;0.003213276869652551;0.017326825612550667;0.0198574017454044;0.0072855386312938065;0.016001451998777293;0.06569806704831345;0.0368819434927013;0.04020355361959889;0.003015074535319687;0.0024267012492847607;0.003235904321973406;0.003548982160873054;0.002481682370109895;0.0010371378695699161;0.030023407510581992;0.00684408819760575;0.05157641835850914;0.16084686109362448;0.3811021425336959;0.10548656924847898;0.036280474255818373;0.15482491547917618;0.4188160509597289;0.09338437346501535;0.053838054948717455;0.06485447638611444;0.07403765817302684;0.059213893473826405;0.16898261536924242;0.03243065065230542;0.01559099800197939;0.0280980885414319;0.019392875650564124;0.012828706163953188;0.07276056381217508;0.003695713660671128;0.03749118998546851;0.036857185937698475;0.03915492896170399;0.03467540888760675;0.03994145340669891;0.010580734401760668;0.015319117814068256;0.011185075420997432;0.0194035574935236;0.020946441696070562;0.02169241555161899;0.010951830182135677;0.014362341336069784;0.01200647257921336;0.01654469876540396;0.020316882813780086;0.03463135304933466;0.030379532022312587;0.01401762725910453;0.01643683560541794;0.016543555129512177;0.01199004491328762;0.012259380426018728;0.024944792304597938;0.014406626925426049;0.01860319190650924;0.018534051495100054;0.02452193295067739;0.08280641191339645;0.08736260694051647;0.1284612255466542;0.07524220861936824;0.0403348992403734;0.04171586298287088;0.5250124826937915;0.6689297055161875;0.1125773272727046;0.10558995696445322;0.38232243005197736;0.3505582510342005;0.3106418333127473;0.23919856298876366;0.2818675104491419;0.28134952064017615;1.0;0.04093308392226652;0.6603217428346125;0.035776314024773485;0.13092849597275105;0.1102662238982154;0.12588573280304036;0.09680891937438037;0.11930314753090053;0.7185271306259632;0.5864113356362115;0.6612809396924726;0.5256338253164684;0.20064801160160564;0.20811951250612754;0.25498362209959613;0.15749370145255034;0.011087400416029205;0.010987908624785414;0.006648748700943157;0.0206748733824078;0.0327924271496856;0.005293574401345651;0.008003603819707524;0.01941248269949493;0.009428422558389988;0.004509278869256409;0.00894218079329897;0.012688978955089612;0.030721849447642766;0.027800260467159676;0.03893183711649717;0.016585678149566505;0.00822238122653188;0.016036578757084717;0.054980781907146004;0.03443277398674802;0.07134138732908253;0.0687715568058564;0.10375245434903882;0.10518729010372711;0.11325272462640322;0.2398442444524567;0.12654353212036265;0.026993905259441286;0.09641725528144737;0.010405862829791364;0.11727393918604534;0.11454806730567134;0.18120311094580419;0.1212139716429554;0.11524513275227413;0.10018389261688859;0.15888391763900483;0.2258295136055203;0.09907990623184193;0.15409200550258703;0.16163611913060866;0.1771745713763069;0.24279606398549508;0.07660351003431962;0.1556749210205976;0.025984225230302558;0.25362674499546867;0.10773832822948519;0.06431858871007463;0.06402371703680192;0.13098826682097867;0.024410225551330565;0.020855421097101215;0.052572430596649955;0.023607418828922595;0.041200434973593464;0.060127203314476504;0.13389979534613883;0.02963332686332132;0.056187999354067035;0.07598976233008327;0.09670494237785808;0.022411706145647785;0.02609142502866998;0.1329170726306026;0.10494969000788684;0.02792600067273183;0.03977970990295173;0.01910206917888656;0.01897254589334325;0.04010763440019676;0.002170658826157627;0.08390325626473093;0.35448915057550934;0.08320290133303278;0.09063476967665504;0.01603664667243466;0.11496654228440306;0.09366693345657538;0.04122523095466506;0.09205875114636897;0.037731182210208505;0.0008198747899255696;0.057142831032614506;0.021167898629457577;0.0610259186815722;0.020424953105909638;0.06169583660860998;0.02399382829479441;0.04476132503864148;0.017814023054992943;0.015088709969667807;0.030152636533444015;0.04509962009045621;0.01921615220934676;0.03734014750581503;0.019081328551138647;0.029444873378283932;0.022314034049335203;0.0340224492055929;0.021069807696364195;0.07782795181160544;0.072720082068259;0.03393484091683936;0.04294106357332904;0.046083355389018546;0.054714720268933224;0.0999506918780361;0.08635209951440077;0.050712466850192234;0.023509147136884876;0.05746316529829513;0.08226994626090373;0.022507116477422304;0.028883257331588332;0.09857131948345928;0.03266122804144046;0.011518433811646965;0.03564518618405798;0.05968276353903219;0.03657546464892751;0.017866010495874125;0.041018158050122336;0.020373611246575444;0.028627623914591213;0.027570555727318105;0.031506310865044906;0.02249332165881746;0.012428533584864343;0.022396099521856137;0.026662514335446894;0.012667780554270444;0.04756837431457246;0.02963998728755725;0.018046496456058127;0.0392738519698418;0.058125233991818195;0.049611438737179464;0.046218863536356035;0.1531410168786374;0.020718463904036137;0.01709651190022674;0.009814993797111227;0.08264950607305264;0.06662931632787207;0.05657867830116129;0.06089872340565455;0.03198341361990484;0.0934463354058006;0.0843546616228651;0.04326895241722919;0.061893420510729685;0.01813582690785862;0.06172456138344357;0.023669913874235858;0.06518838195340924;0.1471237038634258;0.004078070570255381;0.011395193239388;0.021538793417775936;0.06328224190087403;0.04629848743203346;0.3038457141939961;0.05115044383516482;0.019769987062769476;0.14796328887895283;0.00906085658557683;0.10189057181031783;0.05439168534219167;0.025986496142976663;0.06690541300812847;0.004193296240644742;0.05369123745871063;0.02876851216610325;0.06222632665022576;0.03382426772878446;0.25754941579334706;0.06448430913113555;0.059162485565970604;0.09085176513402857;0.10216937360128275;0.014036645015389478;0.04370942762819753;0.0909792490968769;0.08179238721101993;0.014647497719762358;0.08969643410712211;0.02472833324684856;0.03505554857151095;0.07588196688072901;0.06559904637861856;0.11357535240314952;0.0887893131227146;0.2283743204072409;0.16102856354504147;0.16059243356023817;0.05181809312788403;0.02676840390000622;0.008427527419909495;0.0076307691896528845;0.015075341164437362;0.025265621155573702;0.3321891152720473;0.06088640161917656;0.010859426163952728;0.029283853520766918;0.024293106163416144;0.008766322852850242;0.001786158536278544;0.08266105790073493;0.08667534408916502;0.041707281709794264;0.0469818336940271;0.09806790427116635;0.053596062762116245;0.5663683933761587;0.042315352908386554;0.12488727306039477;0.024050612674989074;0.23672470844353663;0.10791552950415094;0.03308093556078234;0.03135981674978464;0.09315041057890369;0.051409254453543794;0.03803455493407914;0.04956735307501962;0.04955646743495906;0.05974603116928909;0.10462280805878894;0.03461789524072521;0.09679587158846521;0.09589011956239954;0.007886542853283132;0.023802462283202916;0.05141653702872367;0.03476609571759227;0.05584749637164145;0.01059774872660016;0.013894571428353228;0.006797948005372873;0.00911983804671074;0.04630554068804715;0.04335397312391333;0.0552759958531715;0.10538875383049282;0.1076515705470696;0.045894844611584225;0.09640684791166813;0.08784901305899859;0.12218761063384377;0.016944825109526128;0.040032776414783214;0.01795998664768106;0.027571479409996984;0.09249567781253713;0.03178391623374407;0.02056136795551466;0.06416509079146573;0.03372223157739903;0.05516125388064289;0.025977669502106296;0.04176289934320469;0.07248854919424647;0.14514292329489348;0.16274840037583052;0.15618883029503725;0.12655885935379102;0.024368027778599994;0.031082402118764025;0.03376758965939041;0.029091564213842597;0.06795109995127056;0.1134762149814568;0.09343385347443164;0.06725801903947995;0.04320642096102901;0.07226501846253311;0.08816065960800909;0.18822616661975913;0.21675363988073737
+Chlorpyrifos oxon;0.004162554252129082;0.012477331458086119;0.016596589753539108;0.009158788736478704;0.0076571320882247475;0.015942679869924814;0.0037558137072075744;0.0073946003033688685;0.007466235850551738;0.007577855577808738;0.03264665503736851;0.0057774957780990475;0.006388719434916559;0.004755413932236578;0.00804615891869335;0.007526369082895944;0.012127450671898549;0.013083307801802937;0.015512709136275102;0.0174018990932117;0.017734335745695468;0.02682107351996818;0.0424610817841718;0.013970039205605283;0.07177122784788421;0.006849206300710817;0.023690715380686806;0.030913590377045847;0.004335634800919783;0.031580887692623155;0.03164911783783144;0.02862980694407133;0.17347241029841648;0.011692058383626873;0.08699821434688246;0.012687993226584116;0.12056433544188053;0.004078664900829338;0.0013402654722252704;0.06924646042163192;0.23589629952939448;0.028213236656434118;0.1492587640163946;0.014451671785506647;0.07258692373443679;0.05021710219693404;0.0573450567547245;0.054999556708636876;0.05131182162049846;0.026277990054470072;0.058838332294591525;0.10525495321578811;0.5905397871796036;0.03172533822502711;0.043279932979825554;0.019706538280827232;0.10525525451743364;0.06704035212287492;0.14358068090976936;0.12561976074513778;0.21820083922047426;0.05384502800115582;0.041402556401631485;0.04214785070127821;0.1100832800559505;0.0771189250237859;0.0720744441360541;0.14253619259973913;0.15097112615653616;0.14270772705034443;0.12671696305095037;0.20279959727068317;0.06305237095480487;0.0406378531316879;0.02292145183925219;0.17451090165295047;0.012712832289172735;0.01211071584116168;0.022155733792802397;0.017127821875719533;0.028035256540472054;0.02399850795105714;0.030860535063992063;0.02977248247258313;0.006919602162261893;0.0034758700429839352;0.00862604649846833;0.014841907115584443;0.04093308392226652;1.0;0.004343504459497381;0.003570278653503769;0.055118897575800935;0.017703329102368465;0.023043101403860622;0.0468155035809758;0.059394948969013824;0.025097145030735124;0.02647855850413591;0.029695590982218717;0.06438681104527896;0.023010273104353524;0.033493503093686865;0.0346153031923549;0.02472407523866302;0.04002347338677198;0.05575463759878719;0.05006327956697367;0.03895793533674911;0.05632815750724481;0.027753557882031554;0.02336181294791214;0.045745515094495655;0.04327746590186219;0.03071930918126619;0.07896969485803879;0.021260111332434314;0.043150005238613634;0.0160126346916725;0.12665497975364712;0.04128169834865435;0.004132471289777134;0.02844980184610994;0.03633265872288781;0.01787068439832933;0.050522243679055716;0.050603972561302515;0.034774630880571436;0.03389944379000365;0.017610253916531485;0.0925634228580102;0.03599656092710485;0.019144793326926864;0.07841558156909038;0.010402309544841837;0.09328040110670345;0.01832313297487046;0.02872982916040688;0.015333176019876259;0.027632116501071644;0.18031955638659125;0.02365106476286499;0.019909485517428722;0.030902033850010453;0.012190741455348183;0.08214607610183758;0.06760670156060565;0.14243416867783001;0.05803527979828064;0.029488686363555765;0.05918239335763337;0.019700906341054387;0.03743035653445193;0.014960078993656117;0.030808658753054573;0.03604537235435135;0.01260794285002458;0.013641123443945257;0.007904840414809254;0.005959628063799677;0.005725058967797787;0.1901722065413042;0.12382859028222595;0.14461486211832145;0.1612324868719853;0.15731990557618025;0.2327872579399232;0.13792030799030833;0.15400866941864197;0.16109907631059472;0.1648297921310504;0.11177329772696956;0.033720931957743894;0.036042611744748335;0.03763800624823808;0.002493028071100524;0.13609280451674796;0.11525054091488587;0.024992061939226953;0.020660891058466038;0.02163487341701544;0.0002455620732250904;0.005814119452257888;0.021598198559782802;0.05251488692427263;0.10336865935375678;0.11017652668979888;0.13569811881455515;0.05421198243557824;0.04053582792578455;0.05292837681127035;0.029242445422537088;0.048027712846591006;0.05238000609397599;0.03889558091398479;0.001593632293707441;0.0011760400996169804;0.010732151252666425;0.015303617335583842;0.009895109216181724;0.009392164893418363;0.0172216403762648;0.008539373683561217;0.013241708228893907;0.08771262918917229;0.0031016862154111913;0.01030544824300218;0.04198208396268939;0.015257247092721127;0.2786781790980546;0.3602834099562682;0.04225599708439425;0.0669976584003114;0.0935360675145021;0.08668746821087041;0.027554260961514646;0.15357603512201146;0.05193269260010706;0.00434134472202665;0.03082346186082704;0.011888907870950073;0.011970107478669636;0.05308366062189206;0.16736208699170874;0.04961626437391758;0.03289968377043499;0.02159567261970315;0.059572347196938755;0.0360976278814227;0.20960899255862617;0.21940940804694722;0.23004768058022423;0.10405862307126214;0.07321706319091703;0.3319880114853566;0.1607381022177303;0.21151571384835696;0.254438716772887;0.18160087113466408;0.16233584723782393;0.13594523119075946;0.008562934570618876;0.01046678059929107;0.0420838820578998;0.08262173754542498;0.0014454513022218488;0.05542210517818702;0.0525394540747557;0.0799673943166789;0.02017181426397159;0.022698437192458468;0.022055545118785377;0.04735231622342061;0.05012064258858854;0.042741164275631106;0.06056894426047685;0.007170980733742266;0.08250955670563866;0.0665724638679297;0.003870132901341024;0.04025752299097232;0.0011677199821756644;0.014461451907900531;0.0019340245119716531;0.03169451170702251;0.007798598983780362;0.08794405255543368;0.17497895682782208;0.10031336923377149;0.010858421341281406;0.006170987939380452;0.0024524919012074782;0.024496347461478173;0.01659735993626531;0.13089372384777204;0.006969563041216263;0.004388589686627128;0.00719414845143473;0.005365434976844304;0.01059151710820476;0.01702456792340423;0.03058456550973854;0.03998631998821248;0.011733662294745017;0.008399733192567984;0.0038268229856865945;0.2650019835575585;0.023107354010565552;0.013206114317332165;0.010631673237543509;0.08784003010931181;0.024343901369237395;0.0027557621144327768;0.0020206294406754973;0.01446730956938129;0.0002629504230381392;0.011994758779446753;0.03295052983504541;0.24257019673025043;0.030076958600744354;0.12390442078873161;0.004276616728339142;0.007379511695306646;0.00792774350903306;0.0013115274660523402;0.006430986602294247;0.1218429554510745;0.07702763531034319;0.014629533362218894;0.03492205348272468;0.01577480960318118;0.009272429053717385;0.0;0.001299183375849572;0.004399376878135551;0.010911156706122983;0.1128525108905255;0.00933820563308776;0.02649380664624081;0.0626556111827539;0.049907097154315044;0.047404151762542666;0.025029695742566287;0.001416261308670859;0.04243089164102407;0.011425629596301326;0.031195888678042752;0.03729056011109454;0.0348695637936081;0.006874786293180372;0.015749465480474647;0.0030237993395965308;0.019739700431763242;0.017141763197825035;0.12085857045199898;0.027807696458348564;0.028211849731056608;0.01871788249667259;0.013971542249725744;0.053104826162489294;0.03320994092944798;0.11006488855185073;0.0073733461759259164;0.01990600438946969;0.020059267082364583;0.042656635200060515;0.04305397910834497;0.010359918408065712;0.067131651087981;0.3937247256975932;0.16358213174866795;0.00880832911761799;0.23255263352828529;0.04276735288379723;0.035664682433161454;0.1659880834619101;0.07312462531726721;0.13298166983456075;0.006865343158035891;0.18255877454891203;0.17061690862796391;0.049571487695407375;0.041692530379584376;0.045728467010055826;0.03776446536251617;0.013285119890925179;0.024295773274260492;0.029543709966407757;0.03146289133329756;0.023027633217452985;0.2233110119093224;0.006276367992510022;0.02139755515925527;0.022560323699487267;0.0004092670549587741;0.0009270047288088485;0.056330393900252754;0.01836171907330836;0.0196803043181602;0.05497500846042675;0.060793703971363015;0.008855240191557728;0.0637578597453073;0.011768659083999482;0.07047734843710313;0.08799514426703682
+lambda-Cyhalothrin;0.0022183136609299605;0.0;0.002364154462196286;0.03616379510854445;0.032889673259479175;0.11704832077201159;0.09846481001124655;0.0031661217156565783;0.003229414960431794;0.008465486053031995;0.002766134595440198;0.0009096624910272043;0.00011119403183343413;0.003343552053895983;0.0013089062149419445;0.0017593011731312086;0.00040578547627885216;0.00035572953447507547;0.0003588098431842244;0.0006612775086202884;0.0022760614145788892;0.0;0.018090017371384774;0.0025443376935769353;0.014385393107959533;0.09263398687413184;0.40821870563495355;0.07740126920957278;0.03095177662008495;0.05591440954025419;0.433073924533277;0.010041345557820784;0.019033212870631915;0.0022774605891635524;0.0321000031009545;0.05113469040369821;0.2025827760697538;0.021212302252226894;0.003251500806254782;0.002440554426783274;0.013780455477212232;0.003537672755113885;0.09457841209886896;0.0002387552180500156;0.007323182482879339;0.007599500301856319;0.009757485453750048;0.007155423251964395;0.008579276821595351;0.0007081753992782668;0.002866774579389302;0.0075530961330935575;0.017341807002552657;0.009979912299663453;0.008465044968661387;0.0034619220141183385;0.0029958879980668154;0.0024822457708139076;0.00676185333122023;0.006662164280699553;0.022637083027036698;0.0013709172320158156;0.001071058855772664;0.0009851366145308658;0.003310031060134685;0.001868586910034113;0.0025930196648095037;0.013399281532343658;0.0036688330561000047;0.005896256776972512;0.011597289862753523;0.014521897880733138;0.03054893881996756;0.02116594447797785;0.09667570289169668;0.07358263800608217;0.010085183201723353;0.010569264824873453;0.6332169569552394;0.897587155814543;0.12866871479484915;0.13327256086777947;0.5641270939998345;0.41153752519558195;0.4466385712604743;0.3696619024724157;0.3938924691259299;0.3679827898762618;0.6603217428346125;0.004343504459497381;1.0;0.17796274920963806;0.033169034728080804;0.11460971135167945;0.1259530942737561;0.022232577054307492;0.027639595734161457;0.8807155993053462;0.6225145242748086;0.7769925118357707;0.6658954042388296;0.08020940642794466;0.11853188318930316;0.34147312776594985;0.07321125820889161;0.0005397006437264193;0.0010732701112973148;0.0006623592800150342;0.00048634232761656166;0.0007240807415306122;0.001317041106528488;0.0011513478226821204;0.0014707630899447597;0.002864892140979864;0.001484383640433308;0.0002149778411071883;0.0003508068464440344;0.0015702582558837818;0.003364183864778801;0.0086286253771976;0.0006012981110835204;0.000734775839536866;0.00032250970513123813;0.010021773150355965;0.007858043488721447;0.01352223066508139;0.0104053702846498;0.006747714632446532;0.01008533926091291;0.07664508083994316;0.057922260427369934;0.0835503307716688;0.005965346424491641;0.02316467629165244;0.0003900599017790701;0.08309455973601163;0.028958836670816807;0.056846744247976914;0.02156053825026914;0.02151960520973156;0.02233566551186429;0.040587224087970275;0.04619535355332016;0.026015582120411794;0.032069065366876495;0.02886556153815939;0.041200857921752605;0.04303518458082258;0.027177660748420013;0.025114807939974153;0.004312086130419905;0.03593162721979569;0.01639061725146632;0.012754858349074645;0.03718497712648766;0.02384063392170261;0.03666661439638465;0.046488463000137904;0.04370116720810447;0.074830501089154;0.08055710943437605;0.010156508323270586;0.03398136655027845;0.007434669698983319;0.0035891339834339055;0.0013829965419376476;0.03967762844646606;0.0015106421023446772;0.00216178021427796;0.06299878525754221;0.05209303986572579;0.010968602267416222;0.06592572131489664;0.009240952080375791;0.00822018450466516;0.029331792725136623;0.000778071048671805;0.030242736187888773;0.3444907103244251;0.06705310393091993;0.07730969887518514;0.028547210861291007;0.05389229243542229;0.026560806329031187;0.06737836608984743;0.02804183286526476;0.002411800171798913;0.015262501749749779;0.04234796479444881;0.004628956680425726;0.03372867286654747;0.0006910181412059424;0.04398070911377567;0.055035830052724485;0.041644836751036064;0.28755663593543257;0.2923860757035603;0.2877835655771232;0.28739175855659155;0.3681170396463537;0.24736036643377304;0.3623164451302125;0.3168555169289146;0.001311699183578417;0.020700276657324948;0.04951681815316766;0.013922373060050055;0.08198737803094802;0.07853892082471;0.025722950380360696;0.006992603471333513;0.048622195003224865;0.008218494309851212;0.012361568322342333;0.02801036626272126;0.003822306031363677;0.020115711851806047;0.04467431371978158;0.020762180624079838;0.013343312737488887;0.005820710660044812;0.015555199374338332;0.0013176147997032734;0.0654904707438646;0.05937766063625594;0.0054077609088668014;0.0033472799316378176;0.0021168306178778805;0.0013571346702488777;0.014251580353937457;0.01569488188711872;0.01647306629555256;0.004463168274442911;0.003636679606437861;0.006959037064378026;0.012090923120642935;0.0028859270487707053;0.005883514020485638;0.0035131184325869523;0.005589069004812929;0.019050481065427144;0.005330674459299227;0.02157440188608958;0.0053775811331451765;0.10856326322514231;0.025235025269678763;0.02128955827720705;0.016096403085313547;0.05415796852887529;0.01147096242943135;0.019209761032977096;0.025214525041541508;0.008032488601544195;0.025533139333365564;0.036906518662362615;0.012942455170983386;0.018798839918078264;0.002614123082573841;0.06817008870720215;0.000751734933710042;0.020716821807146645;0.016408132931884395;0.011980022666608222;0.006332511720913887;0.003480430857551091;0.010142658311471908;0.03363451175537974;0.07395219861538256;0.02596411661476996;0.002822793255506744;0.008695693602569566;0.019454281268062548;0.19269946581754904;0.007047511278278391;0.03841835872981584;0.12099476392706933;0.37897207789935006;0.008892788885140645;0.002341016274489747;0.009319799481439798;0.03360746032418292;0.09936860034807914;0.02078770269447222;0.027871505319630983;0.00962635755559629;0.016601069630739557;0.11189481964262787;0.026243442168909913;0.08208392101262048;0.008753912994843701;0.03595347650473881;0.061818806885370475;0.002974220642113975;0.03854213366232942;0.028607153766022273;0.015608678062327422;0.02186709226636364;0.028967020110994574;0.26973514804387116;0.05764306182286777;0.07632901465637865;0.023205189959740788;0.09934760609419759;0.0010575499489512662;0.054470433334209485;0.012555473588301254;0.03163372937352656;0.3726450630871711;0.029418160916451955;0.00882072354625624;0.07258838376043651;0.017342053966380527;0.0;0.0005812735097817139;0.025010169986323248;0.009724511064359741;0.04864039201125072;0.0951929526801558;0.031309786281324054;0.018256377904729983;0.6892882400738104;0.05235980100401946;0.017117597933298326;0.0025207878954009886;0.1069376527056925;0.0214268720049721;0.009267924552680797;0.1619458956113383;0.009967666136969451;0.024663776705516664;0.054211266637416655;0.031699865288974435;0.024608780196455196;0.031244990430057122;0.0784251062279248;0.03409023459604895;0.06489930932856303;0.006077039117055449;0.0005063560647515814;0.06357882421711794;0.019436794204871696;0.047160636422856;0.010557038425310047;0.04580404290015397;0.0548686022745963;0.004630313957744525;0.004116177307112025;0.08950850786002451;0.07028728602320448;0.06015283382714724;0.004075756679328915;0.003862933819083184;0.014106647866411767;0.05119301014666111;0.3079576905271009;0.11849497160074411;0.00044494478190199623;0.01909669170110458;0.0030447132487010174;0.02444364290071936;0.10235803161183547;0.019566468406914273;0.05578472681023803;0.012188124298494661;0.00828214127710592;0.03686633024905109;0.012472745307812675;0.053663927339777116;0.0741011628578652;0.1819640641849331;0.13783083980094682;0.1991196023989557;0.13517556819650595;0.005684051009967559;0.0007807104706506512;0.0024354789872993166;0.044029660353827944;0.06395937401409153;0.06355211650189134;0.07910364701460634;0.035788219011076136;0.005302004432735557;0.06904903085765075;0.062301880872914044;0.06669739324800661;0.04819237322431948
+Tefluthrin;0.0004873401872240839;0.0011496259347559053;0.002229393938843278;0.18854167466607244;0.17288892178590573;0.00505010024899848;0.0002936305720411719;0.003563211792241548;0.0034931145663151587;0.0007848676946163957;0.01342923990358676;0.0006898180289269347;0.00041330154266007533;0.0002579529396857799;0.0007316301598693901;0.0006577242453971704;0.0;0.0006682315800318147;0.0010902180725633672;0.000704363426423843;0.0025663076792160153;0.0033723179739695575;0.006166050338457093;0.0014397029021682322;0.007625475807678241;0.06137612597704866;0.006400515353664735;0.037925910794668144;0.3071024011265498;0.035209707841949114;0.01381970888255332;0.010142575851250526;0.059272428452320815;0.009357627824622678;0.020111000876873453;0.01100541045248212;0.088365962510069;0.011623320181922246;0.002728388955535258;0.0;0.010979758637282304;0.0005345098382082093;0.02081002645439561;0.0;0.03142768080238831;0.04532598142829221;0.056797906419662585;0.044746056923475844;0.05151611135327291;0.0018475430141041596;0.002519304446789896;0.035000451490084884;0.06051353385302249;0.04590610903563103;0.0032181674754140563;0.0006613422502292045;0.010687949720746626;0.00913979408627711;0.005239681398337347;0.00624034125496675;0.009734549245862053;0.0038801678049419025;0.009553921214633035;0.003332603572612995;0.012044481534870366;0.009383640080632109;0.009238906668831507;0.005563426629925502;0.005866204430555075;0.005808202157391048;0.0037543127752326004;0.008798289540745694;0.012898295933888804;0.09111418123200636;0.06445405993531261;0.06033344714704159;0.036038672867582944;0.011711664950870834;0.02677193871476511;0.047341636231765155;0.021366450883972144;0.021325499027690726;0.070666311171824;0.022396030360964467;0.07004605038843174;0.05899755389789572;0.07945277054840247;0.07885497908922176;0.035776314024773485;0.003570278653503769;0.17796274920963806;1.0;0.10493911412655661;0.08068857859442619;0.10620739918511012;0.010656214078593983;0.19407465223194023;0.10324369376837467;0.1279155122064372;0.14204794812340718;0.17234554635898763;0.11792616600552401;0.1571481580948502;0.0771799853887201;0.13324932034948858;0.00011841104420944627;0.0004510614820512942;0.00026945123822741564;0.0019927262549365794;0.0;0.0006174357162689744;0.00047016771216682146;0.0001140021402825411;0.0008404748585508062;7.185525010564898e-05;0.0018986859001037426;0.0028682565788413655;0.010797595158413217;0.003135202738075656;0.005116445461790076;0.0018846638972858096;0.0002676456274027626;7.90318735505107e-05;0.004802289120991642;0.0007829985942663138;0.0054034642541074705;0.005395978736956031;0.004173355507829753;0.008379945870831736;0.012904421119937639;0.046567191681407966;0.045601845088239515;0.0024318583474145683;0.019523871368777583;0.0014332045871716236;0.04481615103058144;0.01664022456196413;0.026874378933551372;0.016874790379208415;0.014459296916505628;0.018194358599166773;0.08828620339219517;0.01961992742159033;0.012145059647776891;0.011454541805931112;0.016963016509227314;0.027227308959283623;0.030747554561805317;0.00707969618386527;0.015567170953576483;0.0005790102794589999;0.025890049577184583;0.01675679208593289;0.02625680524651537;0.025564594910136247;0.07567748965442465;0.024342340559912055;0.03080199058845315;0.029861716307508734;0.051557243607038644;0.04540441456665673;0.007280344728944371;0.023454289930943683;0.003944026993533665;0.0023999236076711;0.0652598708761929;0.030979881108929744;0.0015279154135908152;0.002055871907551652;0.03794632874168296;0.03479056401148742;0.033294049586685075;0.014431856705849896;0.04512637854487304;0.037093298511716874;0.008294357832534679;0.0044453987913146515;0.4664602430955907;0.06023677187705171;0.021922903523504626;0.020437698450683193;0.0057511957121689035;0.014752685002136678;0.017942671389673037;0.056963812711368;0.026747013315816897;0.02461964480277686;0.0;0.02224349645687016;0.0051000731344853015;0.02212466795132637;0.000800790484259665;0.056395372030781536;0.02271418973831548;0.027595760601732203;0.20767484945766918;0.21017044959109185;0.1859263241188354;0.1884824438234886;0.24714742705051082;0.15403873604044827;0.2402859261485283;0.2014192918204082;0.007089048190425915;0.1695153282386492;0.0;0.0102095590732166;0.04668543908614693;0.05425863601876074;0.013542580103313174;0.04016865122351176;0.03450442912605753;0.003590299557612731;0.07593262773569841;0.0036770581866530103;0.006880941466069407;0.10174645041924359;0.03803970685416435;0.018462674147904472;0.008386001452104982;0.007723740275095483;0.011992921130570395;0.001457386565653435;0.003650638397118958;0.001538060152409257;0.0019064943420285534;0.001397018014639635;0.0067163084518718765;0.005168987362716094;0.01271757608877025;0.011385281591730259;0.011700960186100097;0.024003842946518705;0.01788558130009784;0.002709084536183356;0.008318667991949748;0.0023760181658241185;0.0032259108109555647;0.0036616424437965487;0.008219422795319705;0.010914544836437187;0.0160789320824255;0.003433626018287073;0.00802847201709377;0.019457045361472528;0.002653428638318126;0.14944835808525272;0.15371093130745858;0.16131646008872297;0.03165664229136146;0.05803567848477028;0.05824810423174529;0.1925905839143152;0.019144261137155318;0.015490230959583311;0.01945963785725377;0.028241258180495114;0.006350488933801225;0.004140026999171394;0.0019866904152954553;0.005149025537028937;0.026653034076024283;0.0003848625976023455;0.0037643389175492635;0.029911023146040248;0.008130294039145567;0.04147108139192381;0.05670759149719581;0.035304666423456636;0.002110988980723641;0.013013341540801446;0.0026251749152014343;0.068746344835231;0.006530300207673207;0.03733846339622754;0.04697508826574063;0.26951760472518277;0.006883855019114951;0.014026754382114367;0.00631126276671323;0.038951645029390566;0.09933595973506984;0.0050284099635189376;0.00864879543118134;0.0034184821781701605;0.039024746935179315;0.07912785831997587;0.02054035299066042;0.00531076401752785;0.00841406765080219;0.012287628384527627;0.48560899968467863;0.004310723084045832;0.7947704019538381;0.05250312616576313;0.000479449687127545;0.010676933948861085;0.014310694064490509;0.11154141438202071;0.02599794032282609;0.12119572134713721;0.2715160317508624;0.031859968716013785;0.01544087479725287;0.0322018964768787;0.01091309357563408;0.006273857131526213;0.04080550044207242;0.04532766192571741;0.007583151669154923;0.03394763946266354;0.020589399782001992;0.0010459964018765732;0.002735164992526136;0.02154760383479203;0.041991060905331244;0.054123866065963366;0.03156210484878242;0.16893653393722308;0.08776125071071099;0.008885306101701435;0.03328052642211168;0.07128184628874114;0.014732675338083395;0.08140391716792338;0.051656185548071186;0.022404718857888955;0.0190589118944819;0.02347294284036743;0.01162357288454335;0.021261178779798592;0.020910524351197397;0.015640193636373045;0.015677457464577275;0.050507998945207314;0.01406684533431551;0.02883290890664458;0.003562133871859837;0.001681252173100931;0.04076492981898732;0.02015119977949717;0.07125488666137977;0.004716925695786749;0.02174799652954405;0.025401039871021498;0.07867670705147319;0.07592802187705829;0.06313369367229701;0.06682946673545598;0.04169349974414018;0.0012953897954706857;0.001523114190161089;0.019338010330305792;0.053006960701091226;0.2066478127819532;0.08038098074543255;0.00020773800926641287;0.01580211952444518;0.011795320660583588;0.12654609476441586;0.08061145286248717;0.04274983392928318;0.05435790765174224;0.07557108212748617;0.07317666552314309;0.05829746151281191;0.009889684449290906;0.038233968265499;0.04877563176447507;0.1452108737279285;0.018004617489834684;0.10067912086840355;0.2674425483386916;0.001647035931465674;0.01242931463729022;0.01306361536731653;0.03158863097147433;0.024129313506773175;0.08312203014592279;0.043143090471970756;0.026534709340255213;0.008385488092040351;0.03596560147489163;0.03319400868094822;0.06688652531726226;0.050883537194934735
+Transfluthrin;0.008342060425440877;0.010713538401953214;0.0038037757185789803;0.007695610642841517;0.011729215384390156;0.06419292383891456;0.027835173683467884;0.00878134911776099;0.00914084840103358;0.010352578234821377;0.026635047846274885;0.03422618160953889;0.041658630849270996;0.010709801003273709;0.008246537905692674;0.013427743014449538;0.0038551182620321276;0.007816335047081758;0.011213372836738518;0.008874951486105094;0.006421218312715676;0.00828640597045182;0.01856393712397026;0.005379606817685173;0.023474505697602708;0.09641440970794349;0.027243742211939644;0.11635928516592933;0.05738376470944728;0.14606726696960687;0.13922413884375504;0.07774604403407451;0.009948519152303747;0.08241747728325494;0.04659582532810626;0.035525346050983814;0.18681814880399958;0.021896537212477838;0.011488094422502718;0.002110839104653001;0.08265295089549234;0.005715674781368661;0.01967909610356221;0.006599644744645947;0.0480412019166211;0.03130550899425621;0.0326532589285564;0.030948432845601566;0.035004441047240514;0.014923172780364431;0.006988123498348229;0.03587679780206635;0.09475684787489462;0.10838050032501274;0.004911256035452812;0.005284574964005949;0.04025007742777267;0.03300562077560051;0.014675822061710562;0.026012574764283952;0.07518652153082163;0.01687553717256568;0.01666503018901372;0.013754625409337303;0.04309432402633191;0.02734211375613284;0.03319943517698799;0.021144109668279464;0.024875902976122997;0.022267110631919065;0.009555985270731489;0.07525543334500677;0.09274000779613717;0.15144343918625053;0.1916341993993065;0.18433062470596714;0.10161941476808849;0.10917424995082597;0.1543347236438344;0.035853546317152624;0.07171178802439222;0.07107718215778136;0.0689495849239249;0.05507571506190083;0.06088856262911746;0.007759500619005517;0.13729629435391077;0.133902308419981;0.13092849597275105;0.055118897575800935;0.033169034728080804;0.10493911412655661;1.0;0.2290424012275404;0.2903458734982601;0.10245533807607105;0.1442460284694904;0.23089511998003903;0.6219940339847367;0.5213629933024965;0.58258940294171;0.6249539675536748;0.6452877003390397;0.4068466019029593;0.3571821443944648;0.008806138354691104;0.015802733356745206;0.019435692135604508;0.009605969410779092;0.006649455377169874;0.005025806939312935;0.004590829841835039;0.008836140046484697;0.014341345711601889;0.007420238514749825;0.05097318408422839;0.05823193352474484;0.052027639725836815;0.03999039409559953;0.046576245162216943;0.029825270784831732;0.033998232008592956;0.007044016224951397;0.028132061541118483;0.014435925837586622;0.02270312517265032;0.0240765675555751;0.013625433687326775;0.014311428091304925;0.018933462292202337;0.22343346541690082;0.22326294086166373;0.02888781304249486;0.12005136214184933;0.013637010884118665;0.22111987264620347;0.13100776591383761;0.26644664569927917;0.18574434711583063;0.20870930890840456;0.0979750088017435;0.36642443284542614;0.24943066006503123;0.07764479086180327;0.14479381201954286;0.17332331535397866;0.19853309701783137;0.38595662453932644;0.06765488976619788;0.08633008025190596;0.01512538764663055;0.21409957149022357;0.111292441918809;0.059739452187712136;0.09377180451812021;0.4750327032001004;0.030258403120985367;0.01942193802671268;0.08507112928184084;0.03775595117627063;0.05997485717528086;0.02435076926610911;0.03716948039141868;0.006981907139651596;0.0319678318054782;0.025953417343025167;0.03865830243716342;0.10829169769612715;0.1082299282096001;0.053836577669165414;0.030275927790146883;0.04531624433934565;0.0062220517682301;0.08094666887231754;0.08758959530890112;0.018719047603087773;0.03438440126098627;0.03365114359562395;0.16391704055102413;0.08697594759272191;0.07528200726483021;0.015085353507648553;0.12642281032933592;0.055853212011611295;0.12878544397374803;0.12350203087700297;0.04782149639787128;0.02566186941894711;0.035785222356361925;0.015883716326479596;0.09424262630425294;0.014947599496709634;0.18298504048704267;0.003324735685237616;0.019025100420973357;0.03461640159508296;0.034557647595382476;0.042213371272247495;0.035547321979201726;0.041557111632395186;0.04314444748562794;0.033060432185513175;0.04415261175585012;0.023071716396671594;0.09637100809790612;0.002385917981035608;0.13490676199880816;0.04490607186518107;0.003981733982433507;0.0488598506316624;0.05398295973042652;0.027867078456812848;0.012290030131447058;0.21023621782581986;0.017272981094513865;0.020058051400750353;0.2271524477482966;0.0702662691352308;0.00778107920602903;0.05781428839981243;0.01856915646950932;0.06091548039164577;0.025105759828422156;0.018565306532908714;0.008679424498767236;0.014542197668662816;0.010670411016768836;0.026617728819522693;0.02076158907596245;0.108032772119044;0.10426703347841841;0.10454760214143524;0.07375226951921168;0.049243600204160166;0.033207075886565886;0.033521312487619095;0.010060241889295333;0.013862636806527844;0.013992950274246402;0.031202711352065714;0.03704600663500748;0.06654853486777475;0.018075644968045434;0.07241548471844442;0.044454234589207636;0.017929596355536242;0.3584189552920307;0.3606799138769837;0.4000897621320606;0.09725907283096527;0.07999958177982522;0.08105770329829202;0.09490398891008289;0.06042465035969562;0.08520972529285895;0.01853980508639236;0.7056922006826403;0.19098587826634755;0.061407845858599326;0.009055923405840325;0.07239745959382571;0.05764254988774343;0.0034815565951996853;0.018905670479357883;0.06607293940238107;0.06736260572329932;0.12101427588563274;0.16190798316558136;0.11549771307012346;0.015255880944611925;0.040061602986453636;0.01091954719583679;0.04383665863833935;0.11319382880825751;0.058704294807212946;0.010493554351268643;0.01685288340085933;0.05285564584835542;0.10145880096995524;0.052435063201106455;0.06750711929404316;0.07736575155012565;0.07108754017278851;0.012967321264744168;0.017966847634322575;0.09172985077757281;0.04484910709132881;0.10590029528773887;0.0;0.09103088218305018;0.007389514462436994;0.012801577967438811;0.0029785752649695587;0.027231831262813207;0.04207318464444811;0.028385396754037544;0.16336902668182898;0.10002348489626435;0.14534519857102807;0.35261491040059273;0.08631289404796397;0.06671410246031001;0.015344228508196361;0.040150306352597004;0.026702802707315867;0.016716663268148257;0.031023697318360705;0.10259203370680509;0.20227289179919772;0.022162456217074987;0.005811056987846207;0.05687057583737464;0.0007323617232243512;0.009060281063446142;0.1728461190634623;0.04304365830626954;0.1336295919133655;0.011663470482116437;0.03543393795664829;0.03311392446846489;0.013450993184542724;0.03059050715108065;0.06229988153088958;0.13546211419914758;0.14167032653965456;0.05753546818278487;0.1083791564976051;0.08153259372971598;0.07272691719764404;0.009949348131066191;0.004702615834483944;0.023743086301606337;0.09431145692888865;0.09670790797384712;0.05893654133316241;0.0113511571318791;0.04084141587548914;0.08912367447555754;0.015721132732358464;0.05574325058656066;0.008869612598731452;0.060433498297339544;0.012641918327923751;0.002593813894292609;0.015684758736514603;0.01885774534996654;0.019291012273194446;0.04981980398132739;0.04859336989571243;0.05656367065666081;0.008296287615757226;0.005598499070416257;0.04399716113821322;0.10054291250185339;0.10793258445373416;0.03287224331599962;0.014815073979918644;0.03710205923399235;0.12853580719772306;0.03701360142982178;0.47023792716980156;0.11779666910178545;0.06568684562695268;0.0777985443948659;0.020991026681534818;0.22893485461553612;0.03228405885344665;0.06633636058848284;0.06952983626380338;0.22578828334915418;0.10762556145014435;0.08797148465885787;0.24996375206293056;0.02717102102031265;0.058630804701335214;0.0628247365444435;0.017792549381286896;0.08311097090575251;0.1363912775693867;0.08635713646969889;0.050393067927754165;0.028723330069765317;0.0645861267721461;0.04606145372901059;0.20411279567038593;0.22558773493052792
+cis-Permethrin;0.0033164402229548216;0.0;0.025794441590817473;0.010935494955917162;0.011218161866238596;0.07514255570519435;0.15386732744123702;0.00025329822899377647;0.00025118023531135546;0.007457395536898246;0.016490395994466688;0.004324790712509655;0.0015309176831483893;0.0011330609345327996;0.0002383482683985886;0.00046310153072276353;0.00016481252692515682;0.00014448196622606022;0.00014573305452700162;0.0002685823509355646;0.0008328675880130969;0.0;0.007597982157440925;0.0005311343605649728;0.008858147877444609;0.024490119201030888;0.12712168017081235;0.08701134957938102;0.024284122762046004;0.09840798329709881;0.09047139247630813;0.01567592572268009;0.014231007568676086;0.02483649736892722;0.050625476823852114;0.061321402907909286;0.37401225651518866;0.01366540072486956;0.004730685629355717;0.00274178852424163;0.033827515434587285;0.0028108121051221924;0.18113854167891089;0.00318607511518002;0.008039366195839127;0.020272844916270648;0.022791304086180082;0.022759583483141194;0.023556654829600454;0.0007768820883938758;0.0010920005509825088;0.017380021272597152;0.06292317879885338;0.06330852406647046;0.01484154983708663;0.0024743509358329486;0.05831962635197494;0.047408488313993934;0.036696777093171505;0.040384563777814714;0.027830197656494297;0.042054033448430395;0.03812445210364238;0.03772279981015098;0.06443115589962431;0.05312891709348627;0.05129250249658856;0.04064953636187981;0.03935639374968912;0.04288382906034273;0.037829939837927824;0.02705581869232784;0.11066951299222434;0.12781663672530746;0.09283381205113807;0.09312853215247688;0.1477947199955575;0.199756814094483;0.1483529524900353;0.12158848712192837;0.6839648503433432;0.6200718037849755;0.07280119525349119;0.08020217252332232;0.10216926796349773;0.07497945135725007;0.12415191997193467;0.12231936146380289;0.1102662238982154;0.017703329102368465;0.11460971135167945;0.08068857859442619;0.2290424012275404;1.0;0.9954614581922383;0.18749135661633998;0.20171255447593564;0.1887935052060065;0.3151450264972722;0.28003883595471873;0.28652613808836963;0.19750984755513523;0.21448005617006105;0.1154456933616816;0.1939875065243161;0.006903586612132524;0.0012129209915455613;0.004489366657151589;0.0018948057535900591;0.003041903011209463;0.0015917142283683107;0.0041879027931576275;0.0031513824647216894;0.004967464915087495;0.0019886011138769786;0.0038304548681127623;0.007722873562902865;0.012772574215743055;0.013234546778936051;0.008921980826277874;0.012449217788278464;0.0011855105939532337;0.0007059391109103665;0.024439724419784647;0.012797098413925732;0.011056418174765662;0.011541815745149555;0.015251665365075268;0.017855353029286564;0.009102393977780556;0.08269471114935939;0.1358832737687732;0.009059748890023141;0.03720295771380228;0.0010787060290559922;0.1364419879408763;0.05083425018005442;0.14046130058318737;0.05739158250948153;0.06747508689451615;0.028946055274144983;0.0902575570545838;0.09999277803089968;0.03983436058073096;0.0626110088702624;0.08347246645100646;0.08725799162365165;0.13821680757257085;0.01797726489301262;0.028657778201422415;0.025624045792510625;0.07162071324667318;0.040398146222361014;0.014538535926011635;0.026561288153997498;0.048407573920851404;0.041274516789317844;0.03640990966089965;0.05730655250622217;0.025705980758052187;0.11274498566959637;0.03452740217534264;0.017052565082832587;0.004879102619202338;0.009970048191770444;0.1563082495995495;0.012367791546607191;0.012562240410242087;0.013821949399361632;0.05617892881433699;0.04211350359285664;0.011840053616795545;0.034980002226185934;0.04897290941113264;0.04765543052920473;0.031981107128813274;0.009591061870198583;0.04243241607309402;0.1654570349650807;0.098555461545995;0.09641123785451126;0.010079267444042273;0.06252406462055206;0.03408982478163514;0.07070042480031459;0.03352729225053194;0.04547100148199824;0.0010788810952372144;0.023202647524727206;0.004443594090410507;0.018403659651347288;0.0014208485635740376;0.13664308386919413;0.07933485639335983;0.01904397548356502;0.022839899950722005;0.023578601760177953;0.08839281083880556;0.06538511900238494;0.06599446069422764;0.09574799334422415;0.06310754363886925;0.09097936792017594;0.009964989764404663;0.036607412525708746;0.008877025263367887;0.03839804689469239;0.07373365080912027;0.003253249066699044;0.015393327004363876;0.04181704351255533;0.04703770156338198;0.00587776320921556;0.06640459073684153;0.013653073458407678;0.009896651867643802;0.09530943392294558;0.018592523376145084;0.029246623064175147;0.02426725087035564;0.0056561324357249235;0.009739374587469296;0.0013971923226774093;0.05333003395796395;0.02861696690192743;0.005013193709206309;0.004137681310579818;0.059255705535174355;0.044050017731485196;0.030027378621562816;0.031218368502277265;0.03125374099642553;0.06897871584887295;0.0516430385476929;0.005327615147149531;0.041099611464432514;0.005459673920290812;0.009350064869411543;0.019017146872253313;0.034811841261331626;0.020397358450489695;0.10543421068151777;0.009754872471533017;0.0072163119911774;0.022153680953661107;0.021879269582304087;0.1659329415825235;0.17606528041425604;0.21200567436229786;0.01362164613596163;0.07971836273768285;0.07926204517775234;0.02734991362959949;0.01700113958359545;0.10767569017648643;0.04205730190707388;0.11067676437668694;0.027341495517814358;0.2045712740637782;0.020486486478673356;0.035352712396857854;0.006836605539962857;0.004659193118075363;0.005016837100902328;0.034698826650786864;0.02418529485793948;0.03751771644132919;0.05286709454845806;0.08770132187186455;0.023721663962089225;0.0;0.01353629829767365;0.29890410476683726;0.02657300469136258;0.061961855122492665;0.07615801288611372;0.011424731840856649;0.019457834253478724;0.09424842612678078;0.019364604766809228;0.04217269767143705;0.04726092879201936;0.035017635617605486;0.045384060358105084;0.012628967542403747;0.030707252713655847;0.05190538610535267;0.023425666849262252;0.015358419340994122;0.0209022142877634;0.011270873064826029;0.011193080238471969;0.009203917143982346;0.016847221635659493;0.09237178954334013;0.002779362502131934;0.057742281863536186;0.0576630570417587;0.09283685450687829;0.08664746394114664;0.1646258194727189;0.018969467737549452;0.47560999872550974;0.004511069317024869;0.040857611031076976;0.00992466230971933;0.005676224229259317;0.17937404005686325;0.25709133511775356;0.0033333645711763667;0.030025183008560847;0.014626776350527105;0.0;0.00044709347821676493;0.00995874712741308;0.01732613649267219;0.12376506944717384;0.06965415537325458;0.012550106719826818;0.014480029066744808;0.10879903347148966;0.043018834818735335;0.029562883104534275;0.004741835575133324;0.05124141438848305;0.040049687488328135;0.018921245158956903;0.14873903185095222;0.1229310590618793;0.029276202458787873;0.02713021608873853;0.11772878677803714;0.015376288699487232;0.020716498258347104;0.0344283900922316;0.04347137992813186;0.07618328324484398;0.028156723387352586;0.007504580644506211;0.005623487270963106;0.0345277286939205;0.028199683615245115;0.030191650428572588;0.025983216913004193;0.05335008620894672;0.011161829700764011;0.009114409014498722;0.03551705594009713;0.07599337331408526;0.02115301776976156;0.0030068639638731946;0.003952360408996962;0.014843631125983907;0.21118993843593525;0.04547828287425619;0.16488970819160226;0.0016412816143889914;0.05948413606288406;0.020976659779682178;0.03379665891589643;0.14074605315788954;0.12352978110682122;0.0364992992131997;0.04504854468766077;0.006982143737893835;0.10438099524806752;0.01557209909632089;0.13257483033923165;0.13659854887012954;0.13788340931863066;0.05242340025608017;0.15071777464182323;0.13901830986545388;0.31257401401529256;0.06455488942705503;0.06647912522073739;0.09057173191947221;0.0740737507356621;0.07013764374917028;0.08464314227490574;0.03903019606950294;0.011078872417487924;0.07715029303704145;0.0754569548065799;0.11057527729054747;0.0886110067800826
+trans-Permethrin;0.0035876623490744782;0.0;0.026278562034353827;0.01181056936120484;0.012404128513037791;0.08533964151800837;0.16606949616947833;0.00019948051270880898;0.00019781252447469567;0.008580622778518;0.015566549871051764;0.005861940051738684;0.002057553153599617;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0002448050524079054;0.0;0.0075855093311633865;0.0010291453034990685;0.009809676887855645;0.03432197149908928;0.12899270343422733;0.09698007069225649;0.03025682449804769;0.12038521269193565;0.11204802838657357;0.024711617804300052;0.016877092668726237;0.028197959772483034;0.05103100012685184;0.061728018470149644;0.3941743975778581;0.016877097435096692;0.005491193657184579;0.0031368091186431478;0.038630936487268765;0.003904264450748226;0.1815506621732431;0.004462263036886911;0.010917745679843532;0.023715986749101265;0.02679217286227124;0.02592147440054577;0.02738453642038064;0.0011542228592193672;0.0015527260623221747;0.0182043138821608;0.06850205895721291;0.06979064289981013;0.016163331003552453;0.0034687415062328655;0.061995018795188;0.050493430686297136;0.03615048698961164;0.04045635927958397;0.032303111040697975;0.043599082769646545;0.03971611560049675;0.038898450275043225;0.06839994421603006;0.05592014771331268;0.05435866874515287;0.04069223899696146;0.03891998606652411;0.04283296113492989;0.03694503716517266;0.03153579423638977;0.12054893620068294;0.13625498444932418;0.11854094956983809;0.11277845182570842;0.14975328403304988;0.21124863779723843;0.1565012122367242;0.1304460717708747;0.6786282928068106;0.6160074905657987;0.08275119748437554;0.08994677241567052;0.10756148417642031;0.076071757549928;0.14027029683356051;0.13773743821444923;0.12588573280304036;0.023043101403860622;0.1259530942737561;0.10620739918511012;0.2903458734982601;0.9954614581922383;1.0;0.19592539323578664;0.21709253179398286;0.2151542982622091;0.3713739806408557;0.32708433368986356;0.345677982337876;0.24109759252041493;0.26307701341807377;0.13744254316215468;0.2282035640127057;0.0076825467670982575;0.0017117668007485638;0.006090878790467013;0.0019081225511087066;0.003215742343299552;0.001954252021845474;0.004621600811165665;0.003382194589255978;0.005980989642013695;0.0024373651965790533;0.005085269236086142;0.010048349320673427;0.015670073622581146;0.016295300849517587;0.010067735099906808;0.010846241093857692;0.001290693668247303;0.0008424385244970007;0.027810155705646367;0.012765355176136322;0.012966595999335586;0.014043993766750888;0.01765455253239124;0.021373914911185836;0.01161222035497544;0.10794102035577027;0.1728596834477456;0.0076311040724855944;0.05158090310668029;0.0014402166288175894;0.173405186225332;0.06639060383868339;0.17882396275000478;0.06886611666405919;0.08003595506183066;0.04311596924376153;0.11465855223105939;0.13369488000912;0.04149369933426514;0.07847558024070367;0.09843539347091296;0.10812875552386476;0.17290604164633644;0.03718259669438212;0.04932120072237723;0.02914465913034754;0.10070269107219586;0.05158557892849377;0.019399938261374858;0.029644956642929585;0.06412135539810396;0.04832302678130299;0.041617331108605445;0.06663979869198242;0.03569832675007851;0.12026790147282997;0.036480713566111676;0.022614818082249594;0.006470509820525823;0.012079808114214595;0.15484595890226419;0.015191341886523721;0.013850534362566967;0.015152821309552712;0.06165187250511056;0.044043657956540784;0.012511875667902803;0.037211298313260276;0.05395810642130195;0.05320344730286317;0.03394260787975169;0.010059198470719635;0.046376066998454604;0.1816916417159187;0.10451852299847683;0.1011156847277108;0.011721100553443898;0.0742944938554671;0.03757847525451437;0.07872523207107816;0.032738842492694716;0.046859630117343384;0.001360130594457884;0.027810541478413393;0.00410565240538005;0.021653610779622818;0.001963711843897219;0.16632574283768364;0.09207361125342417;0.02192301889140044;0.040577282458509806;0.04180505126546398;0.10930870466992282;0.08570983084249935;0.09017905029591447;0.1148709380260771;0.08539341116153683;0.11361151737960301;0.011558082100002627;0.049844803112281656;0.010500722390119873;0.047532118418665045;0.07731005054925207;0.003482998447898057;0.017670032752034003;0.046622906426440035;0.05203977632908558;0.007664681714723076;0.0909707540745768;0.013867405664072628;0.012643392761703877;0.12205208508684501;0.02139854411815976;0.021485750144448083;0.029837726089216803;0.008208857388116752;0.011320742529345425;0.0026664958891208707;0.05789362620853631;0.03156363958391223;0.007414695201557606;0.0062641611055454845;0.0623988757558532;0.04677913623302114;0.03631182808070794;0.03726818868805243;0.03736823133310365;0.07658701573819307;0.05658532111314023;0.007202667274162724;0.04225626273193163;0.006828699928649129;0.010441031560981966;0.020160958633559174;0.03600950593190409;0.026980063669765;0.11525489022962761;0.011604376595271203;0.012339743239199789;0.0251007107130584;0.03292312388081124;0.20849989566469582;0.21960897558636736;0.2595778280258198;0.021900160145918397;0.08453480865973016;0.08368162601443895;0.034549015516754523;0.0257047595983893;0.11929341521933641;0.04622981490802955;0.1383415785403485;0.03549435322735233;0.23096278858242525;0.026583003158808027;0.05193314043144106;0.02430938653725296;0.005215327272441453;0.005407731752183917;0.03205620665522402;0.032193405852733746;0.04638920969179509;0.06688486462958967;0.10169687641449701;0.026613361059620474;0.018542954488026106;0.015154781909879804;0.3092290776384286;0.031831873157593754;0.07227416996826223;0.07996968991244187;0.027802376018432474;0.02586769272650129;0.10203575314505667;0.024396155581392513;0.05254681220629575;0.050759649541461005;0.05135429018821497;0.04998414014253502;0.015524735240875567;0.03829400300392865;0.05357181088710266;0.029080318275247444;0.015669219882319067;0.043090790715671304;0.012852885039173659;0.012275904664983725;0.0001498174687591316;0.02870609119606548;0.09762087185440983;0.00311477617383627;0.07224981439286393;0.06600488248297856;0.10541685037081976;0.10741796552122992;0.1839924438072151;0.02479124389744355;0.4777007048739079;0.0038288200247425406;0.04031686178177246;0.011492691868051047;0.007226987287940628;0.18902622116779688;0.2742127203394934;0.0038112494428148226;0.03608259992753819;0.018420535723072083;0.0;0.0006354499485745749;0.0114971214311306;0.022339360541856593;0.14148924554757483;0.08337234282247818;0.01682158270542705;0.01660258313017047;0.11702216483948714;0.048483200259290635;0.037950512975911004;0.004796598632689212;0.06052074440477289;0.04578391474463358;0.020525087581946194;0.16583380975380974;0.1257085531077107;0.03043685720178846;0.029116525368000662;0.12012808515137736;0.019721951246725555;0.026124433332503725;0.04067124254585401;0.044034089372460415;0.08010173867790356;0.03586090607284007;0.009235430602522316;0.007620161712893431;0.03605289362702449;0.033301676276640775;0.038011256410390215;0.031246869167231295;0.05991189852373017;0.012528513833160159;0.009615796945593428;0.047281334539986904;0.08496434746621033;0.025118231936805534;0.004127461462293642;0.005100479047804198;0.016468923034368994;0.22237918556070066;0.0625454028920743;0.16872667338667052;0.002503100859128665;0.06123750532951036;0.021679993270935054;0.035175995224752746;0.152543086079531;0.13080154090770588;0.03777978099318218;0.05675608911998813;0.008332631359670765;0.12181285055575942;0.016617351798295828;0.1472827114109861;0.15389586921321624;0.16343829675315427;0.05105379321024835;0.16551402272344265;0.17363878974954924;0.3100831475085543;0.07311166603981462;0.07573773848804699;0.11273628481368675;0.08219378626614039;0.07859994288438618;0.09282887632371886;0.045898713844842606;0.014510350759785979;0.08823115323995723;0.08182842391181053;0.13281433925054453;0.11695154731152532
+cis-Allethrin;0.02753682099712156;0.02975427657059359;0.030276205788998117;0.027840958722542015;0.029750868419014077;0.0662873991766023;0.05010297683709871;0.026390039441458263;0.026260620157343206;0.02756852743912919;0.013508218454295088;0.03021880567330965;0.01903717799344123;0.02685875223743887;0.02570751569800618;0.02465965526376223;0.028760655001913507;0.028644848695175487;0.029443818386245477;0.02913072389865965;0.03653849967166981;0.036011654277266616;0.048141926764451705;0.02870085337272375;0.031124841802578317;0.03656857183906921;0.13565453377048578;0.11861978680373789;0.0454130332154713;0.1743749594751096;0.09961331310915783;0.10534550804097371;0.08304797151375058;0.024578001957063833;0.06755274982684056;0.06209612068446578;0.11637118450556809;0.02378746414955224;0.024077614641902154;0.028285645206856943;0.017410119735650063;0.038609027112476116;0.013851070238757182;0.0014385251928269176;0.0073272405718686736;0.04776415545017588;0.05664723830465792;0.04736650218625277;0.053597033750087925;0.020299397254269366;0.024784767476895966;0.024085660807697258;0.0051160172702211185;0.015298648680944707;0.03769795315605344;0.03670778078560853;0.031043563291393187;0.026915265773893034;0.01936526711067393;0.026674789605416804;0.015294800089847295;0.053685177261040815;0.049170767305886896;0.047668384406311666;0.03751837214644296;0.029136987365589284;0.02830682124224871;0.019556072285443572;0.014179658163923395;0.020147219234943725;0.011991028089792716;0.014662153713817494;0.9557055487317155;0.9525067949404622;0.47964629716750273;0.535939973831807;0.15349613557076477;0.33417379785994206;0.10448108205782838;0.09095448323644158;0.7662444835725605;0.7576676688611086;0.8358263817179825;0.8358295966297848;0.05112261985508774;0.025204121036478976;0.08365578866399351;0.08072814133334434;0.09680891937438037;0.0468155035809758;0.022232577054307492;0.010656214078593983;0.10245533807607105;0.18749135661633998;0.19592539323578664;1.0;0.9899774750550503;0.172432697366654;0.1076498224049379;0.13274993766920914;0.24740529519224394;0.08277900090246616;0.11436482319329096;0.08351762453635206;0.058079759527707456;0.033402740397214144;0.020411864311291994;0.022476526196582212;0.02192330630998898;0.02357931827342687;0.02276596440780376;0.06663417001924167;0.026450511967798625;0.052224781596068484;0.026611983162017874;0.10342762152576689;0.10046585371853892;0.032831539630086226;0.08267859001817046;0.09036483694871617;0.09820934427274103;0.025735565676563023;0.08692119719379704;0.02696935048162626;0.23839150667918652;0.06500583045790378;0.06408909284802283;0.4544616618148119;0.24516082488890925;0.285443095866581;0.1513871614672621;0.10050310761270946;0.03536577619399399;0.5682211584584778;0.029037135271123716;0.08005159813068964;0.07483409675795709;0.15354173412081626;0.18323183253423797;0.18523586994368285;0.20812043587843043;0.17858064949954675;0.22342841667915667;0.4492992859775107;0.1348289997518524;0.19139857487979647;0.12332938471009881;0.1692966277884437;0.4937493323937909;0.477672478398965;0.0174823554245098;0.44866416014465543;0.2525981768193448;0.07950115724899218;0.06817530598650978;0.21004146115967323;0.01978632818549782;0.0085694119243511;0.030247036630420148;0.0035642334086847544;0.012807180467779847;0.08205242928593631;0.03636626544756426;0.029481871390649103;0.14775179313474499;0.20588691271522386;0.0688497205891382;0.04566758200385447;0.047096630116765854;0.050454849692496154;0.19454553834590996;0.019154971607681412;0.006250567614352466;0.010260902031360207;0.014367907080362341;0.017181819340591657;0.009942248823569956;0.3617287776487466;0.07786017978404629;0.058215672626722365;0.07700108776889504;0.009559266991924189;0.07393941443380536;0.08899176833620649;0.03622949258871635;0.04299242346339272;0.13618305942698328;0.0011365173385835107;0.029316026796512754;0.019747782842340106;0.10854625509610175;0.030093959289915213;0.022876818803320705;0.031053020179341934;0.042661817670647285;0.022678021575562285;0.01757858138919537;0.0313474222062823;0.0474709446556568;0.018181853168313472;0.050000363407116694;0.019822441373419736;0.02977817112578445;0.022670008134526833;0.01729041401314489;0.030482664853099146;0.21694280928736254;0.07305823649244225;0.04150611092166805;0.026350162773584325;0.04816207623444513;0.041614895611356166;0.0744957952033168;0.1306585246056384;0.26079752269794254;0.03143159307751859;0.23719161358532323;0.13810812841616865;0.04212624019875329;0.032911232748849266;0.034067424918142936;0.005340905617265158;0.08236227725890749;0.03883505893050915;0.04631351349818193;0.06299069940524417;0.04899357979220359;0.07206492045083548;0.06250357542346399;0.01787404849937714;0.017206404650220025;0.015781549749035596;0.03895244859507124;0.03000912125584268;0.017925490710022998;0.02121906383657357;0.028238295291788357;0.028618810382265672;0.03049322242656555;0.018987440689292215;0.03870106012099826;0.06785374967308139;0.09016037007678344;0.15971148798847745;0.10085386165575362;0.0029896971614352514;0.027400544695745935;0.018471156460602833;0.045442723417773404;0.13115096426050254;0.007546532544240187;0.006672516930977548;0.08281899065926998;0.13297075168330685;0.06502343556545842;0.12588295923699794;0.08175667951680195;0.14469999727778737;0.08579073060899647;0.007181361160503022;0.18281362685381583;0.15340768305761107;0.036649550706918825;0.006754017060138496;0.02348495770057747;0.1409706817166587;0.10443441106864997;0.07637259655765372;0.04515463984343451;0.03151801408337059;0.15368426453198697;0.03351849508796821;0.028435816867158174;0.11945985476632812;0.009079784116536383;0.0786378796874177;0.0029150248976151983;0.11466846619704829;0.08406375077831602;0.0830989974947978;0.02480157132044995;0.05650586808606623;0.1796462155111415;0.041573233635906884;0.009375860106172211;0.050719757419598464;0.0666115137423389;0.030086014938590446;0.0009291144464981004;0.09465461846114355;0.009567573351579171;0.4309814592309102;0.004879629791462662;0.14636551912355664;0.05180990548284061;0.010642532739103549;0.08852197465190006;0.08904724055571904;0.024478445725156936;0.12173085485198162;0.06330592536098255;0.03090471607202139;0.035997608933892374;0.049885775214120166;0.010901918064704703;0.12899566452193795;0.01454628408904562;0.014705293191776792;0.016147535927204255;0.0009256840499206914;0.00838268306192604;0.011439368079489337;0.0;0.0001310164806059139;0.07366701474507406;0.03304685807946648;0.03902040177397054;0.013136422820123932;0.0978904012660154;0.039783485713647815;0.10165293836592403;0.05760209146909903;0.10132193175666875;0.02835595935211118;0.13086046054211964;0.051811449954346944;0.016523081994728222;0.22111437437510034;0.12737300184955433;0.012731021520025351;0.015203235945675932;0.02546576935339545;0.14039756681645926;0.1829001359682211;0.15681004346662092;0.07888023586377244;0.06746105068087876;0.03325389363796326;0.021361078695986864;0.039208182019086914;0.05255328626251117;0.04957890762031536;0.014307249966100992;0.003266532070750569;0.02874257376368538;0.01168059325432035;0.023647205244052522;0.024223052285363245;0.0452852090199615;0.0711686613685796;0.02870730256469917;0.02145503961037262;0.010633683768462307;0.10952047464328286;0.045242458971584076;0.07945947432946866;0.012548853713807213;0.014125391151776323;0.49604993135700637;0.04161941465168046;0.2215358968946631;0.070148097883917;0.013805270054739414;0.02866776706693764;0.0041081012185908835;0.03932557982969133;0.012430912319901649;0.038799814768384906;0.052662516175056746;0.08595708230590063;0.03075123325056043;0.051678339254136424;0.11736710618795057;0.030409896810615587;0.017997233770962996;0.0207381007242484;0.04764233267237951;0.02237234885082278;0.03765321418365349;0.08100228176594633;0.026839034882351804;0.07968781834524463;0.08101583298768891;0.0626758109627341;0.34274887034659274;0.434973456009296
+trans-Allethrin;0.0020326651119653176;0.004193927700958614;0.00392331064918712;0.0009649006419822113;0.003682080726586408;0.05051856761607294;0.04094771142068571;0.0;0.0;0.0018300505732059683;0.0033549673749871645;0.002811881526671141;0.0038804534103689626;0.0016109958202112154;0.0006937669144017462;0.0014915564677465925;0.0020193235721943916;0.0024834849392158707;0.003891712739146388;0.0030888518960390365;0.010336404368851524;0.009914569525311582;0.025379275164743042;0.0026169871329192714;0.007341961092425051;0.03393386073241343;0.11333059438276509;0.11690732821840037;0.043429690048909134;0.2253094137812911;0.11441832929575774;0.10682970825992086;0.06888500659451052;0.004716334661230143;0.0502283424577588;0.04361568181610059;0.11085449954893535;0.026346119215832246;0.025480554620123518;0.009541360005380077;0.010725950233242668;0.01736112585864472;0.010636692832891786;0.0017430642480621627;0.009710583875960164;0.02554518893138464;0.0271059529028161;0.02472785676839132;0.03315603544594716;0.006766841968661199;0.0008159548672962272;0.015657616614196516;0.005691162648240336;0.011105685424025274;0.028453976547340935;0.015983677373332266;0.023874303872326277;0.01569764382470655;0.014856480227383347;0.014004269896871663;0.00824664103869905;0.027361234031874942;0.022754873273892556;0.021318073241350242;0.027241140873484795;0.021106035198030722;0.017452860054263487;0.011099744294083743;0.009530308203835358;0.01597650401073942;0.010830505026864905;0.00787892029720792;0.9498202226275584;0.9638486883596731;0.4698887901540141;0.5264324036380424;0.12001314865597423;0.3237717395851271;0.016721980283940653;0.09164636028259872;0.6788984822205907;0.7262525722898387;0.8220565332871631;0.8224122060406832;0.06073977594240903;0.030578748352288545;0.09098383911199566;0.07881221565472336;0.11930314753090053;0.059394948969013824;0.027639595734161457;0.19407465223194023;0.1442460284694904;0.20171255447593564;0.21709253179398286;0.9899774750550503;1.0;0.19021862496949493;0.2497780473371194;0.1465458786264695;0.22267583688259038;0.156730934388857;0.15953402981945797;0.1393022280028085;0.13542729917136243;0.0099024874589387;0.005363276163478478;0.0026910596516693977;0.0026771283358659552;0.015094517306074215;0.002707644167185796;0.0038529771669761717;0.0036149243305242944;0.0073920347774915855;0.03173856970680504;0.004781555570739467;0.004405537484111822;0.02462684700955039;0.019687199365222733;0.0164358592557695;0.013489684387234907;0.0165787940711204;0.0015435806909529684;0.0156866525690896;0.2338063266359618;0.06936615259439406;0.06829337771955092;0.2385799283664771;0.24078774099143246;0.27891864961855584;0.20770170155788784;0.1345024279417885;0.036447829486840604;0.5724284577573521;0.0024442732117729666;0.10615371645922911;0.0965551788668589;0.1949741833925863;0.18814309538979887;0.1872165571683507;0.20997237629938886;0.20457771145442727;0.2797816492553715;0.46901593458345336;0.15390368918538086;0.21977743384179177;0.16815843861209662;0.27272431404579206;0.47652793694911744;0.47147686321875565;0.006506242994820225;0.4932290431002189;0.27438226110309555;0.0869408208582158;0.05652564985700321;0.22893088101334705;0.008600539052446201;0.004727513225597683;0.03868954737825513;0.0009862663418233424;0.00788830628865971;0.07664001606298487;0.06811690922364733;0.026800231959541117;0.11771134740168944;0.11088243730912613;0.06598410952946833;0.026383377845255847;0.03290205461518476;0.055638873289734464;0.23471764231450992;0.036546675938957524;0.011696667589569394;0.009309588702143575;0.011178961082615227;0.019163026096477444;0.00879124620900448;0.10505179922892767;0.09797223714951635;0.05276032503175974;0.0712727816750908;0.026626372426497107;0.09381471139643882;0.07634691217399937;0.03491136618734758;0.04061289758533538;0.08536540988976343;0.005180471954298761;0.0132415872710061;0.0003072692173148703;0.09036583747650533;0.00952941663998352;0.01980490649942441;0.014287986106468661;0.022822961656254245;0.00725164041197661;0.0030965036523372957;0.014063373421508363;0.025071097820555284;0.00861354843880675;0.02838711244622691;0.009493490462206128;0.015160212744004954;0.004636465891304;0.02772228303777517;0.0026237795013811793;0.2131842571286818;0.1042539986010159;0.02848661855395932;0.02743871956150752;0.06957129912512126;0.04343391399428652;0.06269844027057975;0.12636807595524577;0.23519344747079404;0.016178989769432908;0.22851007402810128;0.13781005788302783;0.025790145069354186;0.034332394615956496;0.03237302585363472;0.014571256544901226;0.03907874814837593;0.016256892293648625;0.023052416254527194;0.036975472030957406;0.025246442497309167;0.041150535440261926;0.03014930707635741;0.01058238822622871;0.010412233868011583;0.009542134096940892;0.027651627444266535;0.02087407533074042;0.006566682906967795;0.027909719841648153;0.012356841712760847;0.007917064867800779;0.006780266948478551;0.02214028677154043;0.03161994611412971;0.06579057597215705;0.08571293225426016;0.17017846525510563;0.10107560588605446;0.003200269198287789;0.024388617667990758;0.014938102299657615;0.04725277639722359;0.13164193311787245;0.17703263949910183;0.17081418759049782;0.09287577922595257;0.10390514659390901;0.06379965855761241;0.1491870948317405;0.10922841589818154;0.13239008244096812;0.09699982472221379;0.0009505203235487797;0.09015388937213988;0.14589358533696029;0.03245363548997253;0.006087953286605921;0.009979273613991313;0.1637158616045526;0.11112935167176145;0.10560226360828008;0.0361895220637477;0.02754307734762002;0.15046052220437783;0.03308427424731337;0.028166745860612345;0.12445932560615951;0.00945603106366787;0.06653689444690673;0.0035488024422840017;0.1306608545423262;0.0911530195197931;0.07852204313128378;0.018616836589950888;0.02439716878848112;0.08836574189430915;0.02556354773996036;0.008758006947829586;0.07720040815539864;0.0053081750156477965;0.012847818941918453;0.0006252297210046091;0.0994384546080025;0.009858208250384977;0.02206929082962824;0.0047070930937456595;0.14251494646152157;0.05955948955685798;0.0061412212239585744;0.11071886906559533;0.10843908975124149;0.017672505197647508;0.1557273676787137;0.37756373251668857;0.03520157445644615;0.025602717701253698;0.04400345194393477;0.0062202274194831705;0.13532249445872455;0.013486259165955718;0.013411518797558676;0.009653455482679258;0.0008810318606567179;0.0066433845784243314;0.01802386679302092;0.0;7.93417670226914e-05;0.07658521475017223;0.031780262084558385;0.01180767977303258;0.01211072495720618;0.08884510297030603;0.03768699232069778;0.1021464675173545;0.050563638433189464;0.1987222783111482;0.016933701109032428;0.13238656120477088;0.10112020368861067;0.03395889235588862;0.2346388488961675;0.24928859061955616;0.010466751029740484;0.025579020013185114;0.010168233602063285;0.1351491283297354;0.17971508142600223;0.1580031395550004;0.1385996115701607;0.060855980968880424;0.03687145216125803;0.0037501790462874506;0.013859447747919211;0.026166985240343107;0.055149335013591275;0.009550657763242095;0.003834834893666119;0.023202141148429282;0.01509730365254439;0.04344232718641166;0.019871322535843096;0.022831642086457323;0.032720073240292344;0.02649472553018529;0.019531138314105894;0.013773685683143471;0.1359645730697704;0.050871868085121154;0.09528055917177443;0.012634298977310192;0.016131218582447468;0.4992839051303073;0.029956891131246374;0.23053351372940242;0.0772532497428681;0.006410365991086539;0.037455750731091905;0.027134250877587408;0.05187112275210043;0.011975233337860474;0.03604479886563077;0.05195042026641827;0.0913030326529135;0.04403383852471563;0.05202383743206132;0.11378051620629594;0.005892784326799025;0.004910571645968039;0.008849808219225902;0.04346722731774164;0.02963184021590895;0.04152947338812259;0.08288799434221879;0.034293973040574834;0.08143889003900759;0.06673537247531186;0.047536933651063394;0.36343578000471055;0.4631899366251393
+cis-Cypermethrin_isomer1;0.0064540722662414915;0.00129454911185373;0.008650548919689886;0.046403754683072396;0.04442650228259582;0.10803917691953295;0.0910821725686049;0.0012956118684314332;0.0008143372582332505;0.010777817772452594;0.006821502163290885;0.007671431242907638;0.00962520553428355;0.013947399000220908;0.003992324545887447;0.005245793951256632;0.00065016281773729;0.00098786694996189;0.0016257683746773732;0.0014285489936130262;0.0019738943300155122;0.0005009318840052852;0.02132505882200878;0.002558603648295117;0.017670233432106143;0.04831444793210366;0.4665014189671391;0.11291187138232464;0.029110900233076147;0.14048096692638473;0.46513840216516217;0.05827852507703026;0.050798535891568776;0.014328646000586615;0.05480259296860329;0.04466646203714371;0.21053403231568163;0.01743731553042098;0.011327672072667726;0.015027798266713946;0.03632214448012678;0.011773505731039302;0.08209481870161095;0.002658219467484962;0.021000609084452403;0.02822378549375896;0.0315895799291222;0.026248827431313106;0.033108428045563285;0.0007251103777892786;0.0025424110950486955;0.01574327960913961;0.03315819210020274;0.0628066072156238;0.022069157647722163;0.01126648208090607;0.022962140142318514;0.019236411127551516;0.010267196543580246;0.014747338856594435;0.04057327764619123;0.013167873832073155;0.011630506387152136;0.011365164646747904;0.025031963113991702;0.018302203141180296;0.0194018219849129;0.01969105622608044;0.011460786044450564;0.012323608165596805;0.014902238773068746;0.030656302498469536;0.15239853279563978;0.14993257197596543;0.12776767649244186;0.15920334746425369;0.08488683650010094;0.13899224644224242;0.6588248524814266;0.87111088058882;0.17923459863872784;0.1829845631957674;0.5457071921337923;0.4807036572352336;0.41137118828780067;0.31762683376547696;0.41044133443340464;0.38552305664262304;0.7185271306259632;0.025097145030735124;0.8807155993053462;0.10324369376837467;0.23089511998003903;0.1887935052060065;0.2151542982622091;0.172432697366654;0.19021862496949493;1.0;0.7787462840761981;0.8423955263444227;0.7025853833606842;0.22063409102864054;0.26896933107176607;0.18122394871759356;0.2367906275388404;0.006548389056348489;0.002783017058994915;0.005464173357282608;0.004060999543351932;0.005898661189224733;0.0036642360313924754;0.0028490334820893944;0.01627722000685819;0.010004654460053997;0.00324166793987121;0.005098463220463303;0.009513217583739108;0.009394756853794536;0.0065993472518341;0.021730564886705096;0.011136201101818297;0.008813202084742764;0.001812505171435427;0.026123406944190963;0.09753887884154046;0.09272345924844483;0.03317941645472522;0.10063874804073285;0.11916329491788265;0.12992208906715338;0.12065942199982234;0.11816457818168681;0.02938556381370689;0.18429122818595994;0.011507257151316277;0.10551446554792837;0.05377517225551425;0.11984359650260872;0.09929319492724832;0.09839426978112463;0.12330445394600234;0.14603388708647688;0.1490097639440905;0.21626751665977784;0.09119195524241136;0.09333014161809197;0.07806112506756312;0.059352409281455853;0.12026152436561256;0.16026786456613845;0.008525971754756705;0.2648151883988446;0.08137985183995895;0.024243491589085165;0.05090472827006466;0.08330454291088402;0.06379713413966384;0.03220982340601608;0.03447888243814643;0.03355718499632087;0.0522557725448012;0.07244865347057362;0.054681057477466856;0.010835166331020657;0.02329452508468756;0.028681465431642503;0.13114583919127498;0.01132092033053639;0.012451127152741232;0.2104693442218951;0.1057421357008937;0.01726500239095358;0.052673923621339984;0.030673062625296038;0.07263744788404357;0.02913175484426126;0.00547367367620659;0.1382430702357688;0.378478864995835;0.07624365286781767;0.09225958385298949;0.030556058010371197;0.05467869034582763;0.065102015243724;0.07798732355985644;0.026669941042410644;0.030080142575936022;0.001674614028872078;0.03997118620896564;0.005429810875542992;0.04818513110708761;0.011220827258205935;0.17120054549890223;0.011803258898604452;0.029618766609849936;0.08415689876620923;0.0853154662273638;0.10067605147435693;0.10692079968108618;0.11172402680594795;0.10140850422689558;0.10876642670159434;0.11175535606442437;0.017878265762665862;0.05414843500802976;0.053788269720478954;0.07601535303954597;0.06617257342884951;0.029760945353254624;0.04221042272406767;0.026086263984769036;0.08094941718986202;0.05179259712609818;0.19387816719697146;0.10792278220114669;0.024470918609716858;0.1946989939112058;0.08844985472617946;0.017251405947777992;0.03893590885282865;0.04938293155160433;0.020611271325924458;0.01690724614455013;0.07970011455440264;0.06585004051349402;0.0306783978511311;0.018397258274754958;0.02210135272851724;0.017559832883284852;0.03889989452650019;0.03873076432519973;0.040047473618904254;0.04053435045497062;0.028598458005657475;0.01240210718838715;0.021264998378576618;0.009618742706933213;0.02174162818705146;0.017723719692879468;0.01324836111698884;0.034725400197213305;0.03456376912460921;0.03555558638409474;0.04461162659698483;0.16991195256133565;0.04658938973959699;0.2228251949667523;0.23093486800863278;0.2646738034362259;0.08718158013642406;0.052936495251958156;0.05363623398845393;0.0637524813166733;0.1270624012892901;0.08575817831474912;0.06167069716552142;0.11325172790407774;0.033961759495369;0.05330985437642244;0.004536341976324288;0.05186609361908211;0.10780798484146475;0.011808570024935782;0.01000257957898829;0.03223905089686526;0.03174926188828067;0.06715455161023068;0.034354842244348385;0.07490704129877444;0.005768300989360274;0.11859554392547858;0.02729546055836251;0.13450216098033246;0.048476406883770515;0.05266985718481114;0.059294711829464095;0.07988028825287531;0.03177495916536908;0.057246356724691444;0.03750172403651303;0.04583229558221555;0.1289537322222216;0.05265437988416899;0.0420235105672947;0.01521886580998561;0.0394024615251901;0.024218054860385738;0.030246561973608213;0.058952600925541554;0.05905669009946557;0.010688027957602379;0.07275286377654466;0.08867715103153548;0.0732574011213322;0.07162638768464889;0.02435515370864047;0.038046701253077124;0.08262412166136152;0.30470988930553317;0.12344528817237166;0.10238071933205185;0.027625309506080494;0.05142943720666933;0.02778514099252514;0.004539319156829084;0.016439169152048416;0.03193931657363884;0.41891227750882254;0.0988489336933121;0.004185041636949964;0.04010408162733616;0.02840409770710572;0.0;0.0015507146382452842;0.0436396191365733;0.037888673169417346;0.11972754246310456;0.07500391652431758;0.04037424882850377;0.09840067140529032;0.7066339289026878;0.0681795421315993;0.11612773923878288;0.008670333126951557;0.09776207608467781;0.12832414653978366;0.02729138664282881;0.07149201403886137;0.0403608281677386;0.01466820876626417;0.020183423116853994;0.03550994273089365;0.049484124549882366;0.058795887674188;0.11694799032349372;0.04663705004864075;0.09669036954435105;0.04834030794030148;0.01852925305546818;0.015343594946090906;0.020273680240242935;0.05686657352291517;0.03217226003572939;0.029662235634785785;0.034581267853841725;0.09254532826960901;0.09444595641147635;0.054097141454184525;0.05038977127355612;0.03064680390029746;0.01975722215495255;0.02048377590062838;0.01688998207242815;0.09575990062300889;0.0910114511876715;0.06175401175782019;0.0053104139831341175;0.03681210409298341;0.0325815031715454;0.051334238945448925;0.09559804138794414;0.0759501229121383;0.018308804982746556;0.13978967547154592;0.0873274800687036;0.11153204028660367;0.014349294567350093;0.0643203118965946;0.07191412892799275;0.2184113852150999;0.1595802710254782;0.22091017334759186;0.198593304804611;0.011814075691454684;0.05342688044685274;0.05769140815116479;0.04642762931824197;0.07438615986168629;0.07837023175998901;0.08954609373035209;0.032267401565840174;0.038119389133610806;0.08605733359298604;0.07258127909948764;0.14495727657696503;0.1575236312901718
+trans-Cypermethrin_isomer1;0.007486936629404286;0.0014288629341520154;0.0031637479668847725;0.03331912853061975;0.03306617020432559;0.19562210579732583;0.11921282109385428;0.0007688765405483649;0.0005826754200883019;0.015885004387701556;0.015447441841118348;0.014249616726195924;0.004452553660073288;0.014371652476161477;0.006758203771195685;0.014919641892043381;0.0;0.0008305408805343511;0.0013550252712063266;0.0019456545056590828;0.0032666792821187973;0.0005951001234200785;0.03775552419660763;0.0033493287510449315;0.01473923669803209;0.05953212278898338;0.32525006405510515;0.1827404573717185;0.049760070893299445;0.20777452217162293;0.44312145971854094;0.05106043612472827;0.038935455327190255;0.03930849562363647;0.03691093733319579;0.05014205511360239;0.2397778585131937;0.02512975210675323;0.014118686956098836;0.008324027730742601;0.0664041757878797;0.006685101086105084;0.07341416395258756;0.00807625518970511;0.02630390021888748;0.026302862776591746;0.026989102506617377;0.02474361368316251;0.0291816308439695;0.005377789066938584;0.0034615466560245682;0.012251805428462206;0.0917189879608707;0.08936646526431707;0.010893117178435855;0.0067013532495121325;0.045705036335560036;0.0383394343941773;0.019742972090691764;0.03077058355671864;0.06652102984991944;0.019041477096901748;0.018287282745520547;0.014863147623347393;0.050055922385873086;0.03718237152979404;0.03932381324703105;0.029384056010068545;0.02257632223964962;0.024749033972346155;0.01900269834117927;0.05836220969746386;0.10140914232864806;0.15730667895540135;0.1624568446491485;0.1543450808124975;0.09033271347218215;0.09664150263460736;0.5290115934104153;0.6198685525076023;0.1653685431409429;0.16660245330957388;0.34707431798673166;0.3425200917057577;0.3008095309017343;0.19780057761386882;0.4133170696387308;0.37654478100500277;0.5864113356362115;0.02647855850413591;0.6225145242748086;0.1279155122064372;0.6219940339847367;0.3151450264972722;0.3713739806408557;0.1076498224049379;0.2497780473371194;0.7787462840761981;1.0;0.9263604348492813;0.8840103770254812;0.527792588095445;0.5785543775112936;0.3058646484457189;0.40118916166683855;0.010128390311636343;0.003862017708631546;0.012207003797669197;0.0008554120508016431;0.004717074757445821;0.001563614839143617;0.0013613686699937007;0.00477937932997286;0.008275289813722973;0.002561088354783729;0.011586376771776692;0.02328546614820764;0.028033729306537334;0.03331314464639513;0.017117881494256904;0.005065046336787487;0.00232828075277704;0.0010554996233295962;0.03658446262326601;0.025173320048566723;0.030764014110771495;0.027842644496295595;0.026853119483014613;0.030886430062059395;0.05616932740553363;0.23400011788909567;0.2793936884344817;0.017073919738867217;0.13428667093808758;0.005436542576978603;0.277153550085376;0.12416542156899897;0.30570337893933136;0.15312130052777748;0.1583413495058545;0.10074357711234123;0.24685823475807062;0.2659909260907591;0.08411058473097004;0.14674435270028796;0.19833507914183532;0.211539093721963;0.38894240105008476;0.08205573089141321;0.09970865990294187;0.014944452717391418;0.22259407037593634;0.11610081746427514;0.041134699742965394;0.06025707178092777;0.1401085148024148;0.043298049996388775;0.029673735532634582;0.07983802848624921;0.04408655711269216;0.0633844525479012;0.03030713189473737;0.03743664541138366;0.013483309207659496;0.02550471559797467;0.03138465655166468;0.06045600910941014;0.015840076074857892;0.01829387571465727;0.07483324492798805;0.051817017248654215;0.02497369024737459;0.12106684130819514;0.07944402500218643;0.06993705990914577;0.03480840402426893;0.00985393863350676;0.019100259796854657;0.4251883560253741;0.12178050298822281;0.11476627576717457;0.01277087697995713;0.12646822319833917;0.06535104414889781;0.13197971063058692;0.028848292467201796;0.029047028588462018;0.0;0.028344334404327334;0.008351030195902422;0.04690854387645791;0.005539851387254922;0.23585919629082627;0.03479927852248458;0.02638942072405466;0.056297860267560104;0.05745831458285134;0.09346903479197467;0.08959650831059687;0.10011919192921313;0.09510325065918959;0.08889799721022952;0.10449752502111037;0.030665423406001306;0.04907366716086581;0.037317002185472;0.10024792842726453;0.08191851661368213;0.01426605999507869;0.029389689578987587;0.0510376848971037;0.07240541327256646;0.013317500880246231;0.22064230171490312;0.043478708699345524;0.022828334153669624;0.28030459412697656;0.060024107129619156;0.007254602696201038;0.026047900426492916;0.020428752458387954;0.024451384527689052;0.007679907494481028;0.09519074356284181;0.07705481491152888;0.01456919183509459;0.011341106990343764;0.032627238711849714;0.0249248852978691;0.0767166838267134;0.07484627920065719;0.07527343886638517;0.08242895398435396;0.0557296096307993;0.0201225053899972;0.03667861829718461;0.008235881725159926;0.018801068115153252;0.019675924511006693;0.03136761869223029;0.03454531233906876;0.044769791946806546;0.04808046815586913;0.02834618945207097;0.08619192735285734;0.03530432917476576;0.4973485049925022;0.5197704506381844;0.5749471983897777;0.056545892980516016;0.12002663872115665;0.11924247509631546;0.06371200388371852;0.07223117413275579;0.14379012329617388;0.02638898631729296;0.36651065115401993;0.08143724917627007;0.12292719419313425;0.0145916113227407;0.10712988267750877;0.05325162071343439;0.0175892680990049;0.011769070496263275;0.06372714673038665;0.06984394572379105;0.1019695374372021;0.15360974371428301;0.13966369093257794;0.010758748357661873;0.0358609863149461;0.0426454666114989;0.15933474563150055;0.07000748617995242;0.08334015767052944;0.05702818139362148;0.05125707751864676;0.05587959746172089;0.12376500357943236;0.05048632222945104;0.06307690638015806;0.12039191995672203;0.10616455179350048;0.08769618582528003;0.019271162738235093;0.0915983505095957;0.020971765259921036;0.02403210736573152;0.05868112294567885;0.09509925090688004;0.012636581611287152;0.049854660050297;0.0006224297516280729;0.05503571789054139;0.08672387625680643;0.01558379833889523;0.17752002983356618;0.08431110778551755;0.3051114289958439;0.24676639443001752;0.28745672997008354;0.0472794459739095;0.06938924087350212;0.02118460740884786;0.008885482740632823;0.01822590991565651;0.026762806733228034;0.37426078976413246;0.0893784366442375;0.005501834541438854;0.03386161273704355;0.03346480032482751;0.0;0.00048644920574698154;0.03412995725742774;0.05131668204764232;0.21901104476862512;0.0699189088201886;0.035744149084632804;0.03341295273628833;0.5030472914516029;0.044637852263669564;0.06697219804624019;0.00825155282824216;0.09351842940861181;0.07190750834142683;0.010629831216283194;0.07861294178884486;0.1303598365048951;0.020224815491393766;0.02027938853783968;0.04530477273771418;0.05342208271397376;0.06919421350903804;0.07256793077364199;0.1779966942024637;0.08185296599346178;0.04743943119104139;0.015541550545789845;0.023471831847903156;0.020605252683215076;0.05078270735141721;0.025644175914479532;0.023311038817349337;0.029955402193691263;0.009978495810633321;0.01066995647167192;0.08536658160507354;0.077496911965613;0.0372094080245807;0.02229530829688703;0.022430212842274505;0.031382010747918646;0.19586524199007496;0.10484194212895755;0.05939680593267572;0.005820808577295464;0.05598766411821617;0.02225759383166109;0.0307064510520759;0.08661591056853372;0.13612933746031766;0.02725901010303875;0.08375053466806755;0.036683762779118015;0.20249321744904383;0.012788598223728777;0.0880314417361545;0.1041159507485861;0.3146165382992642;0.13364145763107188;0.226939374221114;0.31102509502412234;0.03829516210876411;0.07723234014594971;0.0820493249862767;0.0254796936338228;0.11080330588432803;0.10177949921322796;0.10875312350925075;0.0681635225294074;0.030521010438134082;0.09863556835955888;0.07723087716580013;0.20016426872965057;0.22866616177129054
+cis-Cypermethrin_isomer2;0.0256809528802443;0.013307856435823358;0.014585571441630942;0.03148663225051995;0.03407515798806773;0.056803346319812084;0.10419586675152846;0.0141163949366345;0.013818329796087322;0.01961175128953583;0.020613772415649118;0.023860354701686477;0.01225036686891804;0.016079783832430278;0.014767298752847243;0.015290027150719908;0.013948100550080063;0.013666755131361279;0.013608482182488713;0.013856979091193612;0.013147948504010548;0.012888367087326063;0.031419639058543725;0.016300993095141346;0.03498317806823251;0.06273872709402319;0.3413716769446541;0.17792547792799335;0.04221802651454712;0.1650654892497248;0.44242348679269966;0.04130500488769215;0.03460432430680218;0.06343576968316685;0.04632704725554372;0.04654155026655334;0.21738012266362947;0.03159039767121206;0.010462332249402767;0.025104098862834684;0.062215393252411225;0.014631310254971382;0.0801484947498864;0.009626440756775923;0.0321675463543099;0.043044078629797096;0.04763462485735774;0.04325016714382127;0.046751302498374996;0.010726855725815167;0.012226802703015044;0.016430337592115443;0.09893989629420978;0.1241745901974281;0.02548630679250619;0.01392614446033033;0.04890977249439734;0.04401187288947569;0.020725113875001634;0.022911797296775897;0.06440858013801355;0.025081833310448474;0.02820831858300798;0.023410096460105688;0.0526821318561447;0.04299550185056578;0.04487662083317383;0.03139866026353637;0.025882378060411517;0.025943073034821938;0.02353392192993648;0.05620772088761068;0.09362495162047983;0.12192483899460337;0.1250552986269853;0.13970255258791414;0.1021953186969801;0.1233703460738852;0.6001869804016623;0.7547612431226052;0.1619855971245575;0.16226065906487977;0.530540792939123;0.3551258245456222;0.41078225941801816;0.3287788063050662;0.42683145654123;0.40615795365310714;0.6612809396924726;0.029695590982218717;0.7769925118357707;0.14204794812340718;0.5213629933024965;0.28003883595471873;0.32708433368986356;0.13274993766920914;0.1465458786264695;0.8423955263444227;0.9263604348492813;1.0;0.8123187220976477;0.4028698858354198;0.47246664970115765;0.24589777753618372;0.37484636781453273;0.021004693465069387;0.017897151143061243;0.024218638718020033;0.016764249453451327;0.02478957115609198;0.017961807270769306;0.022107451172988256;0.02297657848681002;0.015284959094813566;0.01519810392938803;0.017799171208588593;0.029453311251548157;0.030813650098098253;0.025652545566929846;0.026898067964685246;0.01936661078914333;0.00889903200632396;0.01047937789842924;0.049687313166271944;0.03214640689386782;0.0851044498690713;0.029938549422185542;0.02791783738023387;0.0513790491470022;0.03308283705672261;0.15032088378538688;0.19889553049255967;0.04851106450798396;0.08509127024723104;0.016103395721966698;0.19082952259022443;0.08222672243187958;0.19350778398326104;0.12830165606428015;0.13534342172649053;0.09648183254492776;0.1812570620809559;0.15460853370058472;0.09962231564943232;0.0961902720276264;0.11817958535414251;0.14135443256883548;0.17238307395489885;0.04462566661792532;0.07738215415787694;0.02271100520516302;0.14122317743478463;0.06881067173724864;0.02690516302060688;0.08088642587788147;0.09279265291476199;0.04586585089632985;0.028827751269278487;0.05130796654789742;0.0359015013069347;0.06064490460591996;0.03824395503768858;0.07201484488636209;0.014967732091115332;0.022601486527398556;0.040635823198772604;0.10239698682223838;0.013952312253044115;0.016285879230551324;0.1842339323249143;0.09111584543674747;0.018620781456222497;0.04559503977053414;0.0826587578084767;0.11455320124057437;0.030121518110913452;0.010643281870793749;0.09177148907441929;0.43697436074319695;0.11922512419865947;0.11759079518901594;0.02356313445588349;0.09830909819019307;0.10027970875138159;0.10790439783619714;0.054927629857960084;0.012177828605753725;0.0005350910447848681;0.022429541522565852;0.018353887895994313;0.055644842608817795;0.01807089384611572;0.21914110303738105;0.04843256572776626;0.04724392821495107;0.02029282773061226;0.019148207351452288;0.06643499171091083;0.05933445529866376;0.05370732635725256;0.07236580701457612;0.044162757259664016;0.06894978822629146;0.03558120743195728;0.05264847445521614;0.035294196175599514;0.09928251902768542;0.0646474546691756;0.029784731463329838;0.030243184437960688;0.040193611021440714;0.06320406566079843;0.02032525237106768;0.2067520379340398;0.04640324596892077;0.03155309503168314;0.26313355145123696;0.08569982644975813;0.011853441889373711;0.028285649408699366;0.01901356000522089;0.016692808215048795;0.00678619364619042;0.05039718973113719;0.024412963534971605;0.022486381657310348;0.018635107876499774;0.03864290168674756;0.03603165067796832;0.07747418787482425;0.0724315481562893;0.07473862747761036;0.08480097170533762;0.060864409465691764;0.027890874927776515;0.040763466964455757;0.022486348426497896;0.041361869068317444;0.04061182747115144;0.033128200216047385;0.03991088103201576;0.03745252364336591;0.02088981975870481;0.03500328728039157;0.09754647353479647;0.027675775625827938;0.4611778895675569;0.47954815850286514;0.5212398907823103;0.043923245375354844;0.10450785083216366;0.10378669369275903;0.06969760629130646;0.09324220700057835;0.15671453018744375;0.032207942021278586;0.21642744179118195;0.07660029325214986;0.1251972040156965;0.02674271112787761;0.08081778301038135;0.04835887098840533;0.011691987875626446;0.015658609532992113;0.057946456592128937;0.0579890396295581;0.09719864074959003;0.0839513856862872;0.13826572858688466;0.021531435268743272;0.03303092683779565;0.013825061210211903;0.1261078442782107;0.07897386647079256;0.07529195863430337;0.058577709418549236;0.0029944301404299023;0.052089220749540185;0.15473595130836165;0.03741035974837219;0.06994028999256985;0.2011106782686669;0.08044111029021342;0.0368657348545789;0.033223316662349484;0.06306037929728667;0.01528973777656035;0.020492348941777167;0.05262244885866857;0.08054944896528937;0.009621543465579018;0.07541295185251648;0.027473611708376058;0.055585824229775566;0.08139557062239396;0.04222568860209137;0.10357934379517551;0.09125680771056041;0.2937795286411034;0.1768934737101667;0.15225574936223576;0.045521198015874426;0.06111223843130943;0.008988478601718567;0.028171208347581633;0.017110317209197614;0.0348005923931186;0.4220732879501593;0.1518738557566831;0.006943966058820942;0.02125126091750404;0.019761439360581758;0.0007902000703441323;0.0008716785816094802;0.025241811409253335;0.03345780271219269;0.20668000029808764;0.028362973290985815;0.06495430056738857;0.01922171488960622;0.5616990812684466;0.05520047641031898;0.07114576252681233;0.011795702978412845;0.16578000151169006;0.1299049228094414;0.016883173660211217;0.05838722434912675;0.06209924388061191;0.012494141653376003;0.031066794570479377;0.02421296655840696;0.037421175584054604;0.0447196563590303;0.12349888809993727;0.0435164928142229;0.09010413404857114;0.052394295394505956;0.022113503656939495;0.037758092534893255;0.03288450109273101;0.07001315092275308;0.018190391347005723;0.00868643167231424;0.014913556100200153;0.008113702038792601;0.006592711835599806;0.07781536314940339;0.07645074080503517;0.04053662725909313;0.01821523666773451;0.01862388754927993;0.02887391803347672;0.170046941826985;0.08026556910572841;0.05619611333819085;0.008474572013647893;0.03965846366439315;0.028260734287024376;0.028380032108485553;0.08589915341860842;0.11414104218990559;0.026848342126406858;0.1109531435886369;0.016843334207647706;0.1944846275047518;0.010490002025423275;0.10069886837729819;0.1080068032931814;0.26338661075166153;0.1194084255768651;0.1917784698076764;0.30304184860173833;0.04900610756879531;0.08131208160361969;0.08388409167297477;0.0454723475039456;0.07774048758770659;0.08581261492645892;0.09682653079031873;0.050891627576149595;0.025173512060095504;0.09439283612269317;0.0796808183078079;0.1416794938331487;0.15620768527128526
+trans-Cypermethrin_isomer2;0.036695058860562034;0.02048823987064204;0.029937201487374384;0.04420262532502231;0.04456764791263564;0.18129199555512857;0.13241678817488972;0.022874488733035516;0.02266391564318756;0.03938632267734503;0.028897318679413374;0.03470093305707262;0.03409093788987817;0.05613731484100149;0.03716887301470342;0.041942466619760976;0.024514985179224562;0.02394634829915862;0.02357931300066569;0.026112941352659978;0.03543637821608098;0.02025027425351262;0.07002929041601852;0.025334059272059773;0.04001219473146887;0.1107085773134319;0.3048997693885388;0.1939204561276319;0.07955242251425364;0.23004234006688584;0.3853946223654225;0.07923902384987902;0.08155804428218728;0.05698659163278192;0.08287277233035784;0.22875557002735133;0.3839831680460363;0.049508515271721364;0.02223202733874198;0.02518260748959202;0.06937302708647074;0.02563522290613454;0.11175848643607493;0.007959343395432077;0.050624351423719106;0.035605570073579805;0.04003918274236699;0.03381015865132498;0.04123588263525595;0.009514107570163;0.010123590192568345;0.027985518283010182;0.0975086057982887;0.10901401379712301;0.03944453309775561;0.023883225689307588;0.054505370413807944;0.05008405596471414;0.02978747329527391;0.03385619768372789;0.06876348810520008;0.03114504850519138;0.030029320358544817;0.02841020996194922;0.06041260442459281;0.0485265812676722;0.05044321064693678;0.03558355943731874;0.03099520412501533;0.0329363408130599;0.024468252097496174;0.060784653264920954;0.14683552943240658;0.17734013390273715;0.21848695235801158;0.2609978656675853;0.11106622309600324;0.15003944201358133;0.446126698060967;0.6087538172425476;0.2027048760919109;0.2015270255945118;0.49643623004393905;0.3366187311611215;0.58047895745395;0.5020795303600593;0.47527809441482394;0.44309837473036473;0.5256338253164684;0.06438681104527896;0.6658954042388296;0.17234554635898763;0.58258940294171;0.28652613808836963;0.345677982337876;0.24740529519224394;0.22267583688259038;0.7025853833606842;0.8840103770254812;0.8123187220976477;1.0;0.533681096953915;0.5941693297308489;0.3336944143498041;0.43919438111411485;0.024089867547528985;0.01807853403404176;0.026115285131022212;0.014369979408296788;0.017922904254705385;0.018766885598708132;0.017804382962845557;0.023298118168745288;0.026276093128246886;0.022884190388374727;0.01950609201566165;0.030172650029800477;0.03683533145563672;0.04296337572824972;0.040172968069351035;0.028718204190582887;0.016886973053284907;0.011607255629620094;0.04575229726789696;0.04015115799699214;0.10425186746147981;0.04271596527819052;0.10945596158263332;0.12730724287414102;0.11238910557096916;0.36494681714031646;0.3503556196344078;0.046889940735942895;0.1786030618327969;0.026897618681992013;0.3380340182560861;0.17547553145394118;0.3705307592663072;0.1913154535741597;0.19091130858174954;0.17549512305362577;0.31652229330873843;0.3040306776463659;0.15561439226885965;0.21353591764951094;0.2321699047662509;0.22421051706900993;0.356096046908762;0.13543649579179984;0.13914447296820712;0.05891405326582131;0.2764072505258876;0.20208597581108398;0.07047512638552496;0.10488302170077232;0.21753575541740278;0.07663104627250172;0.06705795156514738;0.11892404952112358;0.07359596368867519;0.12435776833574758;0.06422844890485131;0.0697236392872669;0.02541777911413238;0.03755958633416297;0.04527849274132225;0.13402842395858405;0.019953098974335413;0.02503278056051375;0.21591178230714153;0.1290170901087999;0.03237892223537844;0.06037885874389516;0.08073400951743846;0.09883437976083213;0.04899075638825305;0.011470872093910331;0.1885124355628653;0.43097433604659796;0.14195571286989556;0.14113934250212687;0.029750401437244993;0.17605214438797606;0.12331152707996289;0.13633123752052087;0.07586632627287898;0.04071431607145122;0.00031821233278598915;0.08334194586013348;0.05919416227012793;0.10336746553813542;0.0406000726874673;0.2993054845987841;0.08578794683695548;0.09761624697557263;0.16265946253730654;0.16510841976438553;0.21016480619160222;0.19661915465646856;0.2219961476044412;0.20131055309278784;0.2171487043033561;0.22454180507801494;0.0445570779231051;0.06645891391778448;0.06388755432481202;0.13879309970086567;0.11799894863558968;0.07972546922235342;0.06577145652058353;0.07285143090817119;0.07993003849202562;0.04826012671526898;0.23006318290067201;0.12403530444510882;0.05211902223470502;0.29010832057774594;0.13387492383124666;0.018625457618439326;0.04126888634136422;0.052998609869597035;0.04003890157529711;0.017844636905561102;0.1107716488036143;0.09851669428809533;0.03699845859884748;0.02961114184804869;0.04496782646319102;0.03847491589912047;0.07833076466999409;0.07642626003784697;0.07713771726603427;0.08989746203451049;0.06560842975254168;0.03255035910548564;0.04510668303642675;0.022579671003606062;0.03641658765238398;0.03391963662140795;0.038937161142498136;0.07814703366365552;0.09546718292466023;0.08306145270001704;0.04428733201231016;0.11377057921954982;0.07455715236042229;0.45660881774213247;0.47173553500710347;0.5290919314512276;0.08233736784467578;0.08926155603997987;0.08906157762693925;0.13196126108122053;0.14636590554076265;0.1664332294644724;0.18320469659663652;0.3005392094339654;0.08817175264237385;0.16922120356886805;0.03547531143757721;0.13748544194715495;0.07830641499894667;0.061810149707316554;0.018814136393294913;0.07667907388962397;0.08317441695059195;0.1138793270786577;0.19564774579598693;0.1613829909361494;0.02955732253747428;0.05219461850993007;0.04182541420458818;0.23766339633912645;0.08892886771853237;0.09979335481713995;0.19520463818763356;0.18001156578947042;0.079280878238448;0.13085222514059386;0.09223524116558504;0.09900719265049052;0.3446292339536163;0.136640831442205;0.07836791200550396;0.04467602055796077;0.10099261460310863;0.1214037402656443;0.06404960757722317;0.04874932081376002;0.10765305516926689;0.026855072743193473;0.046665260368479934;0.013172244718790267;0.11080828972439533;0.14481078444412612;0.01770082626938995;0.17790414898712364;0.12758440211209598;0.2739239423669868;0.29322651091568297;0.17812882868578395;0.0650670344424958;0.13201883652277743;0.02249633601023352;0.03156803890065394;0.03619069187059594;0.03761886277108479;0.3404092121337748;0.1817540461671983;0.0064123365526910624;0.07402121707504848;0.08435314261755615;0.005899289659481349;0.0068968196622267814;0.0934451421916265;0.07629897495158391;0.2219528989925286;0.14859887422321175;0.10473920749041997;0.036091259600283;0.4456477356835539;0.06449002813270382;0.14716939368674384;0.050463487446699276;0.1404167950092024;0.1379683727853672;0.04221168701695748;0.07776667313534727;0.09111061549408409;0.048605384324470195;0.0333750459807207;0.12203108162334592;0.09549032118985087;0.11171024884669216;0.10588300984994692;0.11015382063388685;0.13552850515187326;0.09952122712933158;0.02953779223053658;0.048211124499366625;0.05367542869999482;0.06847855099213929;0.09068286137646434;0.041392894571072494;0.059008544944502216;0.011781491423480598;0.008676886505251027;0.10291056323744274;0.09908785123114328;0.0626502780849979;0.04154755609520841;0.04118123045130778;0.04769520538208664;0.26491506261826875;0.18520717383529267;0.15727975671977468;0.007699504684181505;0.06564508572315979;0.028115321847500353;0.03011649448778861;0.14881344475510325;0.13146111782065584;0.03719631233123341;0.12697618470123473;0.01224942454155371;0.18811525394143797;0.01642914970096256;0.11461896779931642;0.145473655326928;0.30836272715576446;0.17541156373630118;0.23624934648028711;0.3334893032289565;0.08601973299637582;0.07669363761793677;0.08551926309123861;0.1357986340200008;0.14018828394009983;0.15279095997273398;0.1915000959815711;0.09311235716117112;0.09372692833211088;0.19152643499645855;0.17286654448214894;0.2937066790285641;0.311376133300496
+cis-Cyfluthrin_isomer1;0.010022260582200765;0.0013066945245879774;0.009365123480171914;0.02623025719192377;0.030022673134405726;0.07643296385466022;0.012489802296294702;0.026820378282302642;0.027360661124265266;0.015805046464316793;0.014538926948185083;0.01356652778121253;0.029855700957895647;0.040857973780819665;0.031673068242686536;0.04300101559559724;0.0014074834045797531;0.0012147502411133176;0.001917304949358268;0.0036716673314457805;0.004625239011543951;0.000297325791367346;0.05822571112747878;0.001635015212013366;0.017906226761923105;0.07596021115161841;0.012173727220942013;0.10009988584134664;0.04205297083701745;0.18499269172194144;0.12686419678067273;0.04204221111589671;0.24397553579533368;0.028044549731618854;0.05664706769809327;0.034805670159338754;0.14545586088415;0.02331121461152569;0.012047553545796438;0.0393915918717629;0.06061178304724962;0.00986692164068163;0.05958032228578359;0.005204379405784814;0.01892725545488094;0.02207685448774661;0.022083261768590167;0.020409130930630775;0.023787108065627716;0.0003009448874878183;0.002425209388905868;0.012616605790362865;0.1399833860425962;0.11392785771996021;0.006953311362187146;0.008473752631385674;0.0472864758121847;0.037635091597463574;0.0136136287330378;0.019515007794794068;0.05176137359063125;0.019955843053462288;0.019506285955462704;0.016439984364035026;0.052947658552003646;0.04089235249295346;0.04086574060533641;0.019560290870046612;0.021060617074204067;0.020818533266393557;0.008642476902895196;0.048567491078857085;0.08827407458578343;0.09892635716669192;0.09138007360783383;0.08788378381717146;0.057574529871090505;0.05924181788881087;0.17990121275437537;0.07195277959799982;0.07464570380703692;0.07099945367089054;0.12621296116026964;0.07092964224429717;0.17462085502033184;0.15139383136030354;0.2740791655135083;0.2585451105308324;0.20064801160160564;0.023010273104353524;0.08020940642794466;0.11792616600552401;0.6249539675536748;0.19750984755513523;0.24109759252041493;0.08277900090246616;0.156730934388857;0.22063409102864054;0.527792588095445;0.4028698858354198;0.533681096953915;1.0;0.9697064639441062;0.8190155704233738;0.8825782577477792;0.041817779116916365;0.004569909874308334;0.006929972461773918;0.002168721782093204;0.019854609694646887;0.0030352965893633774;0.005061429976284172;0.0247335437970612;0.0063942458074806785;0.003598322813793849;0.010090414347903238;0.018007902059239835;0.023015020185690408;0.03104466292578881;0.01719088645840465;0.00463927985403281;0.00042523453532554456;0.0008509107746765086;0.028816020905335252;0.013107425908484537;0.02927689731436112;0.030790852571091553;0.006237254236537092;0.011140395671515466;0.29593091564327995;0.23635275336088166;0.22416823706219483;0.011143725897599236;0.10137062240229056;0.005812175630694615;0.21744000236242997;0.10698496827135774;0.2502440885720372;0.13185114232087383;0.1332456682234728;0.06454578219878722;0.23179806634867683;0.2399513880785454;0.04587861054973555;0.1215273556108369;0.15804493576386947;0.1852993897867039;0.36992099884592416;0.04106141288430828;0.07479762388266359;0.015097938101715589;0.1999810999158572;0.1169630609030974;0.0358913172391037;0.05284295909726815;0.1299195715515355;0.02300687426951028;0.017033840159818618;0.07131385671401362;0.04810136878275385;0.04041710057076915;0.023347994315961615;0.04515465671568229;0.006184307215321009;0.013051995301238932;0.05763262059250518;0.04531643837073246;0.010628388021275446;0.010866046890789289;0.09253655026943278;0.05417505985837491;0.024909699878044946;0.142269013978066;0.09510553525135984;0.09088609919167961;0.019673295411689048;0.007027730372745767;0.07452237803637116;0.19920995734963692;0.0868003784664467;0.06974329881891665;0.015857171089623957;0.10856566578202262;0.11306502831022382;0.1576021866518652;0.06049255547995429;0.0882409560717633;0.0;0.029310651348192183;0.04156702639145178;0.066420600523832;0.024607216731554225;0.16236095558342808;0.01575748173377664;0.01768785739420783;0.007252023563067539;0.006410946099694338;0.019991074076055864;0.020890812900320358;0.021158282286901395;0.02155405212739952;0.014620661898920851;0.02154360801915968;0.024428414881118944;0.05156909211251224;0.004053845719669514;0.09152160714176709;0.1418719416534229;0.05658410316320859;0.08347400147083887;0.03219351260783567;0.03586206216489604;0.06545516867340297;0.17190918367068284;0.03570427208800266;0.01624728033440405;0.20387478406104986;0.0491878710178662;0.006656570767810452;0.0564314738460243;0.027144291635728533;0.09040389347570182;0.006430443636384392;0.0274617551869174;0.03070438211042148;0.02569772303021304;0.012946109238947994;0.029676458125197522;0.02296107925535114;0.07617331437687627;0.07200811233378922;0.06622543663352058;0.08397416049955952;0.05384948180886805;0.01523987208335152;0.030719072885133102;0.0068247132871743915;0.03960809773719834;0.029290737378290105;0.02866482141900522;0.024973644088040828;0.04343318987515598;0.06142426723470243;0.1322905102536442;0.09073066725575761;0.010317245367199955;0.3804731993113791;0.39974962022987204;0.43805209611917706;0.04594262488781544;0.07016729654421415;0.0699474792653504;0.05472853640109388;0.05106168463673961;0.09507918741218274;0.030686079754376698;0.18973425319046414;0.07012028810562418;0.04755065459856461;0.014400030635552298;0.0793936697125611;0.043022398117351805;0.009988196043339378;0.007881982316759972;0.0536773693859401;0.06283182970905106;0.08798485826710205;0.16755300335136222;0.10043488534162963;0.009822139868636965;0.02744408185339095;0.05538411394562457;0.15700703784197484;0.06456319884714055;0.05979864432292235;0.02012615071498503;0.0007375971607166041;0.050571357480353615;0.09519264554327458;0.05446341537828914;0.0315914499632442;0.11929918693730278;0.07782935514047998;0.1335601056932586;0.03198547387831706;0.2328996979581224;0.2931797862484031;0.27252110524563655;0.006921994448046894;0.08500215133233086;0.010509429918202026;0.013753546125121413;0.013530528059716246;0.033970432406286825;0.20338384223192607;0.03458084821899475;0.16760510784852575;0.32843712829974653;0.13942299585634998;0.21038074137693694;0.16213430099279008;0.05005489037636123;0.018004789009894013;0.012632000702338816;0.12868906571815436;0.015173883708097342;0.030639889904608003;0.10157322489048683;0.04459564062325981;0.007441215419722892;0.016100560169934122;0.053897650895657935;0.001367593166582171;0.0014484027702940298;0.02406545770624388;0.10733349968796674;0.14220617886982115;0.037608823147345635;0.28713993180468894;0.034468257738849616;0.013089162277099161;0.0365035806798083;0.06600264141066114;0.00732889273474318;0.1555441864264904;0.16630146877213978;0.007256094667020995;0.0480938195785918;0.07868784165544548;0.056384767548611193;0.093474636177381;0.11465563123195803;0.04981819232172696;0.06081346591526041;0.028703306019177935;0.04679922759206646;0.05339635240768641;0.07026647533063674;0.013964214024781664;0.013162337746130407;0.026994368488294822;0.07127609206483236;0.05416271430799587;0.05583754039622455;0.05671182081055385;0.013925356401136093;0.008813524409652366;0.06744025347996552;0.06004456378622852;0.04545252083451315;0.04227730388737697;0.00821376888980577;0.03945459857663399;0.16651495557056223;0.0755623658822537;0.04384447856869642;0.008540006567189116;0.20647843277853803;0.018002608505417152;0.030227285306040987;0.08801353462121543;0.11100788491188238;0.048857451792969374;0.11199684743041609;0.021733154303110378;0.15589339512021302;0.018262186375152444;0.02760703215801607;0.04382535291309645;0.24869722143214448;0.46797079053949786;0.0756623987824993;0.2839509048321198;0.05326933569281704;0.018777711892423245;0.023244577035644632;0.03911993068035046;0.060215349582010344;0.0776232311564015;0.07794333343669366;0.05132613349014508;0.03902680379749438;0.08359435981548514;0.06098230584778735;0.17407966765260832;0.19937143711872282
+trans-Cyfluthrin_isomer1;0.011644914690565972;0.0036497184189481354;0.0021490105055872104;0.018757295626713116;0.02239794092927417;0.06305200720028203;0.018286499862002245;0.02531622764787074;0.02582035973143349;0.022294990928680095;0.01563382432275897;0.015400655561442825;0.04375667629971658;0.11212105250458626;0.06030551666330378;0.07087824435091242;0.00333326700122583;0.0033085084573642584;0.004502350153084359;0.0057158999079365705;0.004169925540499393;0.0005454486264585605;0.04786806297103005;0.0019351412891948656;0.00917590929156493;0.08740018476939226;0.04263334902729674;0.12352090951730527;0.05387185953138277;0.186352823698754;0.14508483039794975;0.04581164368839072;0.20988760900614564;0.03326248324316518;0.06605460318452107;0.05495840599092851;0.1747094951430488;0.025981771157733688;0.016346133954797396;0.03452027298685057;0.06448250555346778;0.013651579183947916;0.06716931892579403;0.008352559317993884;0.02881469900220012;0.02841571875142608;0.03011389783592582;0.027384814259727563;0.031065008975711194;0.0011900798833167708;0.0030884643762814933;0.014972823617394772;0.16658349024236652;0.1357866640118849;0.011119666790819315;0.012541342084340426;0.05033267577967764;0.04003994808681057;0.01629726449034867;0.022237908679260714;0.05588912211166026;0.019093803954612985;0.017663557359205356;0.015188113381743444;0.055394754261304066;0.04198737653181468;0.04279845780821347;0.022168314619431098;0.02344833242737695;0.02311663258041225;0.011483069586228772;0.052833735252295025;0.1106811470917633;0.1274242866374902;0.1459900339496842;0.136854649355538;0.06874609761819692;0.07409945297288775;0.1774625864733742;0.07762863227697811;0.08904718138340419;0.08434693993443497;0.12341499192981899;0.0945698474824969;0.20746844748978552;0.1777251750852737;0.30510871330627637;0.28703699104480085;0.20811951250612754;0.033493503093686865;0.11853188318930316;0.1571481580948502;0.6452877003390397;0.21448005617006105;0.26307701341807377;0.11436482319329096;0.15953402981945797;0.26896933107176607;0.5785543775112936;0.47246664970115765;0.5941693297308489;0.9697064639441062;1.0;0.752698558690688;0.8799657507681014;0.04033943961448869;0.005970477377615246;0.011462565291730639;0.002996718334969795;0.01506664708290574;0.004020756761121808;0.005387497053800663;0.023585512045549765;0.007838083204666472;0.004386072345050448;0.012420044475478544;0.022577903350979173;0.027470584363746036;0.031593344271348016;0.01942267660998548;0.01291792326078631;0.003969527607997922;0.002175419166581933;0.0415334791476045;0.02507523924659073;0.03454889187718994;0.03530112726096373;0.03708710685878646;0.044563126006812205;0.31496748586058393;0.245482777621048;0.23796783673304894;0.018299416701961942;0.1243228653160652;0.004813215752787202;0.2290192505038979;0.11532225703934042;0.27529412090761524;0.15380540566365;0.15730348883009362;0.10507852235232779;0.22960046701892617;0.23664478485045073;0.08387526876440857;0.13245824476197054;0.18255766522739095;0.18828942512862754;0.36268611946960927;0.07387963181495744;0.09509777714887509;0.011609082343790699;0.21412860343232998;0.11955149508274546;0.04071722673691982;0.06069312157379824;0.14270829086984366;0.03129687071435516;0.02723643545740352;0.08193898065871462;0.0742959227169245;0.05254594513878108;0.03005047857217504;0.05144333237415411;0.013041669586034052;0.020274675013911867;0.07423999743224793;0.05550489041041792;0.02303813203177274;0.024074603155884815;0.10488486310374925;0.06490419287501747;0.02551355189670063;0.09674262673902956;0.11464196829001809;0.108637035394988;0.020405778746285963;0.015403240146169325;0.10422660985886478;0.24424291968126066;0.10154564262617748;0.08311744081762903;0.01638723520354598;0.11081866391746704;0.10718631393622116;0.19816842158183057;0.04632700847663133;0.07781292960985006;0.007229490858498612;0.035055787726376596;0.035602704898986946;0.06782450259277645;0.03453883021334269;0.18654979398806032;0.013279233470926948;0.02336053906811172;0.004760231652872983;0.0039485447508570805;0.028448422297522258;0.0354151216848668;0.029599473903871434;0.030709179228345766;0.01916267724501268;0.029032833861080805;0.03405608281871946;0.07273977961055154;0.004076416800878686;0.0956783357083132;0.1805489523885233;0.07925174696441646;0.08768674492927087;0.03042965713480863;0.03442409194781972;0.06601211316830542;0.20953882973400026;0.06677507202037355;0.02488551896024546;0.259331878990994;0.07960389313495876;0.013749768702391005;0.05770149305930748;0.03004889538445746;0.08915907755710292;0.00815252611422367;0.022150301623220906;0.02829120351973006;0.024949377145434617;0.017806634141935812;0.03169157905756134;0.02409359246210762;0.08082434308052316;0.07644040607974524;0.0712786183879359;0.0916780556566289;0.0602583907696783;0.016791805519455503;0.0340475121266709;0.009494212968465488;0.03596687511626961;0.029430320677340256;0.031799777413717006;0.05166254243905468;0.05179627062935142;0.05611246964291858;0.12393265876945579;0.08934057081898752;0.00695791815535084;0.45161982154712244;0.47252854229558405;0.5075640275989295;0.054505908074902215;0.08359353679589139;0.0830567524329113;0.06173020424014863;0.06756993814015327;0.11909346977287337;0.029546190583986363;0.19660467393170877;0.07620764080882388;0.06343285907159724;0.015804523569853592;0.0826259539756759;0.053509114661099824;0.0032519345610052468;0.040354558672078746;0.068655648311502;0.08384015476064673;0.11846275581780177;0.16802850370891115;0.12506556206370084;0.013769924729944531;0.03561284744063808;0.05297914480998975;0.17732099395909123;0.06813444294295899;0.0670169967171969;0.02749897782228763;0.0005545604888641771;0.07233016475508763;0.12786915504668317;0.05424429714293627;0.04448970895751479;0.13940770958685572;0.08142854331777093;0.10878585170634995;0.034121498372597085;0.2103927458855789;0.35704667632701825;0.33758852564208897;0.006361136341483223;0.09121067724367649;0.008143645733407156;0.034263630776489404;0.0010238783404964563;0.05383987336745592;0.18537731938541235;0.021326393273096673;0.16515204923128812;0.3069484698338608;0.17383675277281416;0.24305458486366704;0.1775786436053869;0.051819953104504726;0.015200536665229745;0.023003611891484012;0.14297366466721684;0.02330350715051857;0.027118623017695097;0.12977848685631246;0.055326788372156904;0.02041125336902521;0.014558130024778956;0.047877736924356054;0.0012474559627451557;0.0029106721361903403;0.06595267293130408;0.12048595476005955;0.1695094463916374;0.035132238471608075;0.35669410187571987;0.04503015566547546;0.028439647202696847;0.03600280058423057;0.07891132752587827;0.00719350239187044;0.15247085231299148;0.1575091006025861;0.007989883741279824;0.04755496158335454;0.0772836543150486;0.06622428285107383;0.10187114238471887;0.13831361992147662;0.06332885440813515;0.0743655175616765;0.06904922059481236;0.044164445902426706;0.06391790973922959;0.04135660286080721;0.015305209363844005;0.01567130456466798;0.02934444883855499;0.07676986266052008;0.10438483694287456;0.06627199009547967;0.067850411212544;0.014185225227376651;0.01112905970421379;0.07084226678599519;0.06514686661362915;0.06379363440377046;0.04799689292265747;0.012615068954597486;0.048499707537316125;0.176193241274549;0.0849113358116447;0.04381015037769391;0.007162687460250403;0.18405948704803754;0.03877794800876838;0.04115801819679384;0.12743035737031358;0.13442028662014543;0.06319843714723013;0.1369621216968992;0.029810027816667525;0.18297871826555323;0.02004748929739423;0.062212195530890656;0.07798120063242175;0.2789637036676491;0.43609023918260725;0.09613283458615815;0.3165396073028182;0.025977132131662663;0.07829710495298076;0.08208276324058818;0.05548270451223885;0.08342200009056029;0.08664218065707754;0.10100825860909363;0.05497646060230372;0.03943196197368942;0.10891435221104145;0.08286607941481271;0.2095560745921893;0.2352414101104853
+cis-Cyfluthrin_isomer2;0.03825186892252824;0.02568751914553422;0.024147237661205842;0.03607990925214376;0.03816879817030768;0.06634580476573478;0.019612804962150003;0.023217959968259642;0.023148056799464353;0.04528833500777713;0.02673421001122637;0.03767973886617272;0.016876096156656674;0.1409017170967787;0.0877145641584788;0.10455673744752675;0.025279306695409582;0.024748289967258894;0.02691582995018262;0.028222394483793836;0.026652246239881175;0.023295049595361373;0.05342823758123748;0.024454022061870792;0.0443614213534001;0.05076488340637015;0.06859019501452489;0.06743466410117056;0.05045380654253237;0.15236618947491737;0.10059158295022043;0.0360635014643758;0.29506340700434386;0.04668019861393353;0.027399518990626544;0.06187546606531038;0.09349963005203211;0.032020079882802976;0.028266967630377508;0.05615365604438375;0.031597325791372276;0.028861464178916076;0.021847656162562904;0.0028456568802859928;0.040476946749232884;0.017572724542330165;0.017674980727781696;0.01669208734229968;0.017852565169235703;0.009317383936255608;0.008283211536181076;0.014011621552700766;0.03825942031102204;0.03785628932890474;0.024082900445567736;0.02639813151054889;0.016641973198291162;0.017264012000487026;0.0122122374788279;0.011761049644192764;0.030719657695706948;0.01688160150229915;0.018349878423106543;0.017203186359979045;0.017623732915726317;0.01480857560595425;0.017255149405337674;0.015317829442338553;0.015318182291703357;0.01545595642211557;0.010332824670049638;0.030764122884031634;0.07727384289468407;0.10279937166245735;0.08667950128436645;0.059143153568995556;0.037349490756392136;0.03616114276754682;0.04737390183763532;0.14661791582774628;0.07183098451861943;0.06284691791809739;0.12515248449104563;0.10236807842185942;0.10981680126015123;0.09084953181834023;0.09131343972265714;0.09400704198149802;0.25498362209959613;0.0346153031923549;0.34147312776594985;0.0771799853887201;0.4068466019029593;0.1154456933616816;0.13744254316215468;0.08351762453635206;0.1393022280028085;0.18122394871759356;0.3058646484457189;0.24589777753618372;0.3336944143498041;0.8190155704233738;0.752698558690688;1.0;0.7897206572055734;0.027025364671170386;0.02820252607160203;0.02502262499641059;0.027000512131618668;0.04904901349430087;0.022475388450964074;0.02194334720291194;0.05388721656081525;0.032079785899015285;0.02842247769045779;0.013024068950544865;0.018172086188027434;0.01668202147559678;0.040584195006960484;0.027723031422534256;0.015202426880910837;0.006244180378349936;0.021192671346242947;0.03153587381554866;0.026797042956447813;0.033208369200251844;0.03164467755007136;0.017681936145023697;0.02702492571065457;0.05596353288012211;0.18295951672138633;0.139600973465493;0.05675163713584623;0.09812642898479748;0.02660933782542699;0.12287374177026;0.10943245115655872;0.18115635402213046;0.15766123133722595;0.15383262590709434;0.08258501439637174;0.2387892421876125;0.21678595180021262;0.07240448104932128;0.1514577089771686;0.14361067547991402;0.17312670352277512;0.2822724849145207;0.035278804194006745;0.06633706091745223;0.02263211009430676;0.1585434294714988;0.09820391825396248;0.03365679856831108;0.1085773252518662;0.1236664700351113;0.02473918986585891;0.011328111383144076;0.049184612375857;0.026128849681085024;0.01860273694831976;0.0286748549961463;0.059630849353317215;0.018982897257419314;0.015522407859729526;0.04199624154936508;0.06135660499485932;0.010852868791033064;0.011660172561154704;0.11589330940861277;0.07593245492068644;0.014479220953533042;0.12454279160044139;0.036599228234252434;0.03435723234620848;0.0206275377426592;0.0010472600633409344;0.0775691170327581;0.1222861132348779;0.06650659071001519;0.06292534230195694;0.01342861015433279;0.11434371535517819;0.09593321851388327;0.046010530980730546;0.07954826586572705;0.019871303782288675;0.0022378691234560644;0.04110926015158902;0.020788261950625324;0.060529597035786385;0.02735751030158831;0.03429550062428755;0.03283495574922319;0.053971801964029203;0.018456249806685598;0.016387766790103914;0.0266622886943296;0.04978122290006881;0.015515410631593398;0.03666295487126035;0.01628716227601563;0.024840228976398156;0.04365739716096542;0.057581149993324886;0.021702218271812245;0.10159057747950881;0.054698419874069024;0.08217814269976398;0.1319091559537786;0.04903503860865607;0.028186361944226707;0.027821062089447065;0.028333033972541718;0.0795096836427781;0.023224174757849637;0.03628305995327693;0.09088369409949862;0.026557562549582393;0.03569929612744199;0.033879235745247815;0.11204241759930539;0.004871103625479849;0.033335761356906336;0.04099609845507316;0.03413003759232332;0.026632320547687535;0.023446674599190268;0.02105260070910564;0.043274392903767014;0.04214132273535846;0.042302741699791487;0.027197668223880596;0.01968242228019103;0.024794002148458606;0.019816665778449448;0.011532116710399111;0.05296048536886426;0.03792306006410328;0.01779326614727758;0.0694023849313942;0.05595523512347399;0.02908418314821376;0.04180862864032999;0.08997982676816069;0.01628179529624804;0.022803228661414363;0.026964577858061563;0.06154695423470938;0.03581331324506375;0.06200420500951183;0.06195298044209791;0.023630779424590798;0.031161402632144963;0.04417394200487622;0.020724003843013653;0.21771829984090785;0.08046306100740584;0.03538927657071504;0.012884744280916904;0.062243400511878176;0.05035955038344421;0.0038096936294588425;0.055751809048686;0.014929554623328803;0.08497636557133653;0.08240052680526726;0.1502454374616153;0.044959759752594586;0.025982777993507154;0.010456463142114937;0.009105215643715539;0.05608337791602982;0.05202781584551108;0.014229771611568649;0.03540660492381296;0.00021108247670374494;0.07583412325619582;0.06287386761871042;0.04288329651197686;0.035933418053843806;0.09679308208157078;0.06141593934310254;0.10936233607418266;0.018865109507109453;0.2521524875905252;0.019503287458198404;0.06257678294863371;0.008366609047927223;0.04672369994008528;0.023572150243928294;0.10530444119490272;0.03614490700301751;0.055948562679133666;0.2624496539922566;0.041428085961238696;0.1470080807911118;0.41732784133611217;0.13851435882911814;0.24363245108872694;0.0846041066861583;0.056084917114429124;0.017045949231254826;0.004259142566560445;0.01223037003203226;0.02697707024557679;0.01861913190571454;0.03612536172141859;0.060048563723699044;0.014449586758126973;0.010372233553850821;0.053715232858768724;0.0003726951117576753;0.00417085151427037;0.09278567278132116;0.04937016824393497;0.03491628276906667;0.017099094631149486;0.08484469140073506;0.02594706283461759;0.025482459299677282;0.03693020196653312;0.1101108881515908;0.019428676830471264;0.20060821983201096;0.21035764113682912;0.009656347239250575;0.17592127629511872;0.06109189793992984;0.036358445173205606;0.015554873195471317;0.07193697946360515;0.05477156248329331;0.06496709472368069;0.09976253204387006;0.02591521074476797;0.05667615535268355;0.05583414915973637;0.0198624427596305;0.03900352211947251;0.03350467609464879;0.041919969803799854;0.1007906811094859;0.03789957880541189;0.04124798503111428;0.008021377942595241;0.01234088085023155;0.027056145961052585;0.023879194641254244;0.06642033111617597;0.014427892413393243;0.01626836184414945;0.024047524918002324;0.14161429581238394;0.0883715601837948;0.04547718004121025;0.012264421602512612;0.2425461114963613;0.035449964349829104;0.04674542275449533;0.07598350250692826;0.03828300934810797;0.08664065178693747;0.053331934514317315;0.029999797564701253;0.10420650329220858;0.022848314495707664;0.013733609481512688;0.03380191189690129;0.10051147239027054;0.5207584302798821;0.04255998759896267;0.13151460809088023;0.027995164857539532;0.0060422823929400255;0.012168893056716583;0.03640384533663545;0.06307300422880074;0.08389090521315445;0.07571155181067096;0.03755687502153843;0.03756674233636255;0.08204935879447264;0.07402861227788944;0.15125308661797732;0.16416044282807218
+trans-Cyfluthrin_Isomer2;0.03298453657003804;0.023559700980882187;0.0186204961909958;0.031285977863758425;0.03126484685335454;0.03983752840380411;0.048733214964760074;0.046746094056675964;0.04756767778122899;0.04285552790311524;0.02716419342140826;0.031598140914125245;0.06635094061119477;0.12055473009375414;0.06386501920453402;0.06905235213454429;0.023884063955340557;0.0226516274601869;0.0244390881229274;0.02455070949723866;0.020029211003402637;0.018586012263442874;0.032764877316340354;0.020387304410257243;0.048744424592856765;0.07213831473082409;0.06269917963097815;0.09474169118422315;0.03638285104168173;0.12790663256461776;0.026162203079790856;0.01494177064263924;0.2841471073470596;0.0611738983430529;0.036991618148044254;0.048136566394909715;0.1830542961442093;0.029380706746727665;0.02574444745954896;0.05367949109022437;0.04179623379167425;0.02572176346832382;0.07094097138499117;0.007868345259098658;0.03130741740751498;0.020680932365609982;0.02505178829039595;0.021753959201921153;0.02291211853457328;0.01112870277922374;0.00828197496283615;0.016121476507186244;0.15340220396631163;0.1299653594702768;0.01819407933671881;0.024301834870122854;0.041681318278850674;0.037522648479346096;0.01653291041436279;0.01639987543605373;0.038286513563812775;0.026144080291532767;0.028729462592529276;0.023230880625178776;0.04554893811546854;0.03766036333945981;0.038770015124287543;0.020037616257373044;0.021114932708125422;0.02063386814469229;0.014204162838204156;0.03533019672062365;0.06556449741964429;0.09051443859481528;0.1256972157828621;0.1083890329782783;0.05579128491927852;0.06500292196339992;0.09073470941693045;0.10493339585659667;0.07731192587372865;0.07212612161360428;0.1782539786015836;0.09074178769689384;0.17440138734947996;0.14748510702475484;0.18620723923804047;0.17186895009235656;0.15749370145255034;0.02472407523866302;0.07321125820889161;0.13324932034948858;0.3571821443944648;0.1939875065243161;0.2282035640127057;0.058079759527707456;0.13542729917136243;0.2367906275388404;0.40118916166683855;0.37484636781453273;0.43919438111411485;0.8825782577477792;0.8799657507681014;0.7897206572055734;1.0;0.020688614499061706;0.01917112205257335;0.02353569292023621;0.016813593336178944;0.03805587459535116;0.016854877662600846;0.015894803794740692;0.041937273861479316;0.0167940612148648;0.015778710959555464;0.011704052036321973;0.02155849369750589;0.030576565816579852;0.01695705142621629;0.04665943170440051;0.01554003190789941;0.005381748267530823;0.013549222622561806;0.04985600684691138;0.03891637118672335;0.06113790069745208;0.02810506794441645;0.061775740204429004;0.06805874726650674;0.1313776668113742;0.079384072717546;0.16187692000756188;0.022181906400764187;0.06194404080960524;0.023798824396661297;0.1460766475453936;0.027969325158367288;0.1341014512472833;0.08475157688241809;0.08730665066887812;0.03909657810189189;0.10455576467637916;0.04670630676335059;0.0648689054803597;0.04558239222185214;0.058154506315188724;0.047725972323851285;0.002251114623367068;0.04862822919673865;0.039621228620276075;0.036611375598431445;0.04217093093870154;0.03791766815675687;0.02702400410165945;0.06187107474721063;0.049453686672158985;0.05100967638496291;0.04113051624206832;0.04972039520041141;0.09773927173148929;0.0659488187783164;0.04443325358517037;0.10369711779459574;0.013639578666707336;0.02591496046076126;0.036684515884648716;0.058747712230336424;0.010169284141098493;0.013591572992832918;0.10281935957090287;0.07890639513750954;0.021820489774153733;0.03233730213204285;0.10845936985615873;0.10473789214223202;0.016299075665337795;0.007253587749612129;0.05728239162005442;0.1408927936312378;0.06837483553814766;0.06671394801829718;0.017642568496580156;0.047165380798621995;0.07797992936297478;0.14729672265504287;0.06935939065398741;0.02914260125874042;0.00042191966660251444;0.04824226787826645;0.05883287310650715;0.08150489077600447;0.06478473118716276;0.17818673244375463;0.026615214606521158;0.04393654619873046;0.027408732389011623;0.025885927095557114;0.05488683169551169;0.05921386751019431;0.05301674109912528;0.061882169158301345;0.04206174436272742;0.057153729143546016;0.04885432767627068;0.053704423728654326;0.023402378332946915;0.07525425068657252;0.14272822174223035;0.08460364840579696;0.11754456022171736;0.3732708306767594;0.04883000400796656;0.09606147839949437;0.16190547928558718;0.08137787104085557;0.0326029758116875;0.20990403251230835;0.0841862877574988;0.012385716020137187;0.027627843584764288;0.02407139948304696;0.12027166560893746;0.007021499270691709;0.04767852006422474;0.052234119431213435;0.0354945269839009;0.028101019775046913;0.035580424490742106;0.03107147462697881;0.0499436041009723;0.046582458401570236;0.04869816768333128;0.0713013053928525;0.05181460751833792;0.018262902397555254;0.02696520878188998;0.014785478436406846;0.05184277824764704;0.04326185491657518;0.026114806915154755;0.05138648701621886;0.05086432497795649;0.0709336436341748;0.020072254010228916;0.09107177475677244;0.01356634401929498;0.35340560957604317;0.36939428018278264;0.3868234008681355;0.03483865302812052;0.13840498175271396;0.13984248232906854;0.04619404004187172;0.07046006588080746;0.14373663205516624;0.03214832393947884;0.15087097152920667;0.05659241090989232;0.028745384392193225;0.020069125773674815;0.013182285225270558;0.016929508063581296;0.0037931287079346187;0.03718589827759667;0.0548614789691748;0.016022979765900856;0.11514296646984178;0.055749628872533485;0.1160620060917122;0.025084473665947713;0.00029127305794336906;0.08195434665504257;0.1925506948846699;0.06543584009101241;0.057274928149848324;0.057881641786359544;0.0002098743390395387;0.017784668381252616;0.11980717887909959;0.02324926230815557;0.06177731076025744;0.1324673189270166;0.01353229313269972;0.08209325051500328;0.0323210642716057;0.1729900999331597;0.27366155149282556;0.12725954892650887;0.005797226292131784;0.01330491546671046;0.018770677530608924;0.04493224539820425;0.00575683518650845;0.0710821539737716;0.19127139545512553;0.03194363399267178;0.008432308302508951;0.34438950979754346;0.18444637071709294;0.11958560946048058;0.20405638215154084;0.050416873488541375;0.027845103501458156;0.02473238562116355;0.13595803963278189;0.024815734379898837;0.02323952604273955;0.14764624179759359;0.06429966189449901;0.03304321272871367;0.02603619513694669;0.047825830607666465;0.0027374924122660054;0.003435602675507411;0.05894953534586642;0.041863519087515136;0.15057122010266857;0.05908279494271502;0.10439240708855685;0.038717423544060124;0.027321157978542607;0.056952433909762394;0.09751379406411405;0.0108824789064949;0.14685397705279415;0.16328625431224586;0.020397834405890488;0.07427371167162931;0.03735106634607914;0.07681511409236128;0.11525016873085683;0.134257755310362;0.03498637596726758;0.04057441045667428;0.0684272414089056;0.0773223207049129;0.07243517739724209;0.04275248931938409;0.028039523677425297;0.032934224345615506;0.060945706977792564;0.04089816433744927;0.13121474668019031;0.0879499600883876;0.08938145365241237;0.011281292667476147;0.012965214985503399;0.05073813164992375;0.04750001259148772;0.030931996052612175;0.042404170362171985;0.03533169439475122;0.04362523088779274;0.20311329217298288;0.09468311818610252;0.2755251023048294;0.010207914740678297;0.22742720049313062;0.03973354686709505;0.0417652732253669;0.07634201501074579;0.1209287220476153;0.050377141345128364;0.10611119331491994;0.02868007493760848;0.15578893157608342;0.020587525919990763;0.06596351560975836;0.19555456271571217;0.22786935180843335;0.5204316957907394;0.10530999174632502;0.24897965428226845;0.04549556733297141;0.08906353783759555;0.08934262892321429;0.0193264037306447;0.0658646742809198;0.10637091204164999;0.09993999049349897;0.033222059651204845;0.02574903505492728;0.10233524338670462;0.08491808437057063;0.10274125569637141;0.10836278381861104
+1,2,3,4,7,8-Hexachlorodibenzo-p-dioxin;0.6124513941000884;0.6996376059075021;0.6362073686872252;0.6808709243705588;0.6838595687202221;0.6898359089705313;0.4699757162533182;0.6884702764237721;0.6888082520701999;0.6703931447482147;0.23550178229728175;0.6944305308950157;0.40666195013301604;0.6923796432352313;0.7018251501557696;0.6992967181803273;0.6747868108539401;0.6903461661428117;0.7016972742897882;0.6930457468293123;0.6665469189557837;0.6905692502678936;0.6413954756247034;0.6709336555486373;0.6736876504519375;0.0020277846062780117;0.2993609607567602;0.2046680333443916;0.15331385532922884;0.14933504659126665;0.09441792919704668;0.567180116132745;0.33906152152450514;0.5362939121824801;0.6681722855549184;0.5990908677885062;0.19146258861921878;0.1163665363822372;0.008672871868711126;0.8570923691818829;0.43487713899710456;0.7234048576126206;0.40214071066949936;0.020340030306495806;0.020403691233314397;0.014937841939556815;0.015727728797309028;0.015363399324551599;0.014975239613789205;0.7665995791743282;0.6922328423788824;0.20688828478282584;0.04738594756160167;0.008125606846541707;0.7846108802632134;0.7488861236081884;0.5839429237712149;0.7262625546187097;0.5958019626864541;0.09654554277234503;0.5030460658952044;0.5745382130184559;0.701643152263136;0.6877710257347353;0.5475669142485531;0.6879612773538808;0.7234844458311906;0.6112165033061077;0.5847684725744143;0.6059970588189894;0.5964495919548869;0.5261745253505847;0.02763237613130032;0.01857255991496794;0.0016899470342006482;0.016552114236254155;0.01987876429305927;0.022137542681132934;0.0;0.009672577537395711;0.012369490542895784;0.01075442705731375;0.0008367298499855898;0.0003778423923757579;0.012162506091619835;0.0007311762585110396;0.012167248351648077;0.014630689341858526;0.011087400416029205;0.04002347338677198;0.0005397006437264193;0.00011841104420944627;0.008806138354691104;0.006903586612132524;0.0076825467670982575;0.033402740397214144;0.0099024874589387;0.006548389056348489;0.010128390311636343;0.021004693465069387;0.024089867547528985;0.041817779116916365;0.04033943961448869;0.027025364671170386;0.020688614499061706;1.0;0.8654691713430808;0.9190061856009488;0.8556179419094939;0.9285187658442229;0.9376967218398902;0.9175227580150597;0.8875629841846908;0.9279142016108699;0.9780348978895997;0.14883416199543603;0.20883661343915377;0.1521615394106079;0.6837653975458771;0.1299038589360083;0.2000430125466735;0.14625454839116825;0.695755258899177;0.11416976376435291;0.004823949191226214;0.03291009866453156;0.02256277201501062;0.019279887954261596;0.012224448993926985;0.004264875799259354;0.08364595049474696;0.0038275852374408227;0.14296971358791652;0.061196992157111656;0.6380912554253618;0.02473853487820941;0.03088370070759223;0.0049804799507681494;0.5107256106029608;0.5623820191649751;0.27829101518251376;0.45908072617688656;0.06598227570673496;0.17574688642823294;0.36967219471644475;0.03177436972235885;0.015496600691130112;0.016193636553305888;0.07590316440354793;0.15473615384846356;0.28536645224597806;0.013738068306041852;0.010722694865437025;0.000686164166215346;0.4189427808615821;0.2298747972631216;0.23269776167682296;0.08205118405364702;0.09582045530587757;0.29618298576588414;0.10461994907443073;0.06734891819961424;0.01597192957531948;0.08394940592058066;0.11748321506863857;0.05812509587795952;0.20884726241327556;0.13834613005607097;0.15522302111343678;0.029804936746610642;0.06017094366167183;0.09855859036836902;0.006480102947217894;0.002765801639719256;0.009904442842915365;0.0791448996344642;0.00904643909284077;0.053928541287064535;0.22533922157454386;0.5017461424821321;0.49176920717177863;0.0001518433575084921;0.2192649880101359;0.5698088781280262;0.010241702895477675;0.005104264664240026;0.012634395088983641;0.007786952965167686;0.36854971183960145;0.4267710113854876;0.48334147597661287;0.4700800748738002;0.2005355365481104;0.4622217468904962;0.5532463067090044;0.4430028725261116;0.43069663398539504;0.43725250354780304;0.33173938921794005;0.24907974668833963;0.4730937464431657;0.2583827452946149;0.39081395300347227;0.44962539079722647;0.07292989665074541;0.6307467702901839;0.4668492127327267;0.09721371701825984;0.003640543591414448;0.048920624673711305;0.08037036318653912;0.39325496697694173;0.22648334754124358;0.14275913967119352;0.003282664379076425;0.30214563635099356;0.3350090404792475;0.031175538346803342;0.0032852532471726826;0.02261118562364507;0.0951965928281191;0.005811117145706006;0.05872631700300699;0.6668533910295752;0.7078672292593869;0.5862896349783586;0.7621275551128325;0.5961677594266281;0.7560002178420037;0.5171576702585894;0.536827221411518;0.5007363500064342;0.6316753073443939;0.7403687926034408;0.4456591406722391;0.6160568158774093;0.48975041564190297;0.584680981867717;0.687827811150699;0.6077766358503218;0.12998352554383988;0.044168518058546075;0.030283663382226194;0.03231373960994235;0.06858855813577347;0.006734466232331817;0.013010884921483246;0.01659121890927104;0.029306633651646187;0.010882840486405119;0.13913189763582415;0.1414061832856437;0.031896603639456164;0.5689176057379555;0.05125755513270742;0.07351408575748168;0.01912151344429413;0.3353508264862857;0.009682890888427477;0.11786109217783919;0.007696317433293495;0.1545331672985734;0.001097130200813968;0.0006674187742811513;0.09143931408452485;0.003431879864644529;0.38640195803355964;0.4567859610541037;0.3893046743210067;0.0948311365097331;0.010487565400019244;0.017741258644129638;0.14921863650181671;0.006565678529299935;0.026122557167279428;0.23400030359523094;0.01846720500627594;0.0028957275289102132;0.0006882258547197035;0.021419121754012005;0.0007370497028652056;0.02894325235652619;0.007918426446961222;0.47393978789574326;0.06497190213713916;0.01603949197660093;0.00879696415231722;0.37415187845046644;0.0005192210593685321;0.013798076456869533;0.07387834035203042;0.14668798443462366;0.06341598426139755;0.04429869307451457;0.003527414931917763;0.21595208437050772;0.11348415358463801;0.03086971224990969;0.00893341508959414;0.005955819114652145;0.025592220102860146;0.0;0.19838678736832144;0.04565231844655663;0.20555781355446193;0.04477356956928197;0.18848415884805114;0.004506422535651218;0.002256026565313582;0.0017198184997410894;0.033541575498182395;0.0;0.0001573886925061325;0.0006756398482509051;0.07853824356696108;0.23673331429345326;0.5558559471291863;0.03912819619256449;0.09516047155785348;0.011237923268721636;0.02054961561521089;0.10569635659545365;0.01703768511984571;0.25770660970481113;0.13013743725111052;0.006624103474936693;0.02487337943190127;0.006226419471544495;0.026205849491467568;0.02801095073128779;0.015626250797820603;0.3569406832251497;0.04519328440049781;0.038872296741995195;0.002564195551532192;0.14968280423253358;0.027371164726316583;0.02277717919038797;0.43510798463426487;0.539313535936436;0.6001746486087582;0.4360607384391413;0.08782870037291797;0.0;0.0035038820587617557;0.013736888863829663;0.02537651698595741;0.0011836780616190107;0.044751974099745385;0.03462342777001048;0.015612812377235212;0.014078657244548322;0.006498923313973936;0.0266939274119509;0.10516757866492195;0.08431449545249105;0.0018323687100358754;0.03224555358319634;0.0013199309517122279;0.00721925993899421;0.1237882450865754;0.029232490848330225;0.05074799539208962;0.00615489507515025;0.004234664191151468;0.006252115876181165;0.001968098296207249;0.011168074306498453;0.00724265533611209;0.015757348748807975;0.039910210776042336;0.0006407176789939335;0.02265477255490447;0.5811914132590497;0.007688720378680455;0.010098094787932794;0.0447985847297917;0.01127146882649031;0.1570839840231804;0.12470433103937582;0.07087750737245636;0.0006241556756823735;0.49916416362440524;0.5374516450741003;0.12207352192019733;0.12548918123871602
+1,2,3,4,6,7,8-Heptachlorodibenzo-p-dioxin;0.6229964949395804;0.7191775247900545;0.6280574427714569;0.6747303500144428;0.6727362559963402;0.6529916055170721;0.5695330882512241;0.6829290277459904;0.6850822238597996;0.6577323889776566;0.20358629641506934;0.6536486110567241;0.40994002531952833;0.6936669433270759;0.7187496078431321;0.7447027027723093;0.6370635363239799;0.684295419992324;0.7240613042396724;0.6945987668635532;0.6528651903440736;0.6884665790829051;0.5897629309473075;0.6431544784578737;0.6519952970044505;0.0014532299356443978;0.27960739807175977;0.18178605784420984;0.13295997513503238;0.13182631813608386;0.08263776225068523;0.3546522260696111;0.27388575761202194;0.5603841929884036;0.510973155096291;0.5300143853663017;0.16582845449164332;0.09534692366656808;0.007638606421866085;0.5961952336192285;0.34492398314041356;0.5326649042835871;0.24978956387054294;0.029364812835867244;0.020094971605603987;0.018885222565664106;0.020130182064558383;0.019285815176512323;0.019885286590341937;0.5297153187451038;0.46693131696874446;0.15443724723346938;0.06322321517641095;0.015056057192420596;0.5063368603590237;0.5501296021643156;0.3860608550359837;0.4824781901919139;0.4107299785966515;0.121695954229102;0.3603743096491791;0.40826213623905205;0.5087152278191533;0.4947050027308322;0.3674745927506827;0.4609596774343669;0.4800543147058885;0.4364711259977523;0.4259819627388649;0.43291669527913085;0.4049157758678829;0.3423766379894344;0.020508665880313432;0.01124859397363519;0.001187268279074175;0.014924599234126461;0.023790222193459915;0.021107510623554277;0.0;0.008731864247980892;0.0067101721331453935;0.004888213813430056;0.0009504519527048506;0.000667529061023473;0.011981226187122896;0.00216203301680017;0.011210029449277145;0.012385878581423797;0.010987908624785414;0.05575463759878719;0.0010732701112973148;0.0004510614820512942;0.015802733356745206;0.0012129209915455613;0.0017117668007485638;0.020411864311291994;0.005363276163478478;0.002783017058994915;0.003862017708631546;0.017897151143061243;0.01807853403404176;0.004569909874308334;0.005970477377615246;0.02820252607160203;0.01917112205257335;0.8654691713430808;1.0;0.9670741092097279;0.9097023271045571;0.8648642926143726;0.8196201707098942;0.7648438401292252;0.8906860466110395;0.9158628974934325;0.9011807321935318;0.3183048546473545;0.1337683152445719;0.14491826020396784;0.6461655741932474;0.11338035769028529;0.08028734310708187;0.15855397707451735;0.7016828329809796;0.03353367364895772;0.013004645831554609;0.015235335253537777;0.007312571726319733;0.010309018550865894;0.004945736271873202;0.0028848816452551693;0.04069477197738616;0.0021867789613577346;0.16042243740154932;0.044925399610709786;0.5710269375425344;0.02634971183336631;0.02193449014186585;0.002791783456358882;0.41857631427250314;0.48299180748541937;0.23478024588350524;0.3910889698888448;0.06241867972902179;0.15839941419209239;0.33192971197752824;0.027998692989380035;0.011351362400638347;0.014461957604900723;0.05107701821570549;0.09736428080922654;0.24887535958686396;0.01095134459867695;0.00853427774064173;0.000244711588667463;0.363517409366064;0.19387706583762357;0.20476015215475174;0.06926914709910137;0.08247902133618477;0.5097153572890291;0.09007540133727977;0.10955006010554857;0.01608264965203561;0.07734735790457235;0.12702058202952562;0.08556129233589532;0.28738095118179663;0.10359350163640747;0.11614999051418505;0.02099409649605937;0.08449827918492463;0.12429626726002281;0.014315016437628784;0.005337519607839933;0.021780557538800857;0.06989531089227172;0.001939689958437788;0.048059124934677344;0.19869899508428418;0.46225799722604494;0.45535752465928464;0.00025326205697189793;0.19225665938889025;0.5034769702818003;0.005270237902167721;0.011822963690711997;0.011374310493605938;0.00026140175895851146;0.35516016008458257;0.377962491377888;0.42560121037481546;0.41421650420531025;0.17640122841779146;0.40351197542999123;0.4505871659316087;0.42388935032401837;0.4138257264932809;0.4421214426595058;0.32775691094363846;0.2595054987159956;0.4812350591669174;0.2588960858751979;0.408510325789844;0.42648887015961223;0.07628692614878503;0.5586013544627031;0.39153085757593764;0.07764031112006015;0.002977292132937231;0.04511156417863251;0.1163382961063624;0.32505567869272367;0.18727385008688463;0.1283016939029424;0.01739030841554558;0.2495727578864599;0.2866997575997792;0.02467081200485773;0.006433007099517321;0.00933670734040896;0.07732512346995597;0.0034655564606373033;0.06583805239728872;0.5519208543798877;0.5510251013592578;0.4284168235528086;0.5607552716950414;0.4237353296291819;0.5396421565173783;0.38550112835637923;0.3802106448717792;0.3775290830766143;0.41928869003032254;0.4914784763983602;0.2794213009570917;0.39510477761818763;0.6717437506538845;0.3203029531784365;0.376334667922815;0.4032321799545377;0.11423537988209895;0.03403571879845739;0.02277385250896442;0.025147240162852424;0.07833888177456956;0.0001855181392774289;0.0048917580676685005;0.012279257627504463;0.02911823028247076;0.014351120037639518;0.11451968823857758;0.11619565603215136;0.04016665534122385;0.4840914725375725;0.039524586196698776;0.06454379753131333;0.01033860832632816;0.30234867145930105;0.00020984809746101525;0.1129288930814416;0.004899753863493578;0.12891691165568567;0.010481513952471207;0.000664825902352412;0.07338421365420195;0.0014045671689134431;0.2813270983744288;0.3368088542003451;0.30233633014739125;0.08394870608393241;0.009287685528341201;0.01426589375040337;0.13118608613094512;0.0015526169065390196;0.020821950465301112;0.20875283684562507;0.024185107569011297;0.0014743958879878901;0.006654255970919567;0.009759718277804162;0.00036574009866177393;0.051947016090302986;0.004957645539266337;0.41228853332995063;0.03084103113431823;0.012735618716595174;0.0064684534372497415;0.2917254041460231;0.0004198409423290909;0.023546382865104718;0.06555682744785361;0.12282626242188271;0.05841594965423272;0.03341023367973118;0.00454514912080532;0.2677493136867064;0.0998692154699112;0.024967407111006694;0.02604534486770585;0.01271395759274462;0.0222057618651398;0.0;0.17299596016208132;0.03798711056053471;0.2252057682995845;0.04353108576322916;0.13938308250107515;0.004014148877106917;0.00404836848864579;0.0003390371385966806;0.028925780641294578;0.002263811507379244;0.00017478443326798669;0.0005717445283443651;0.06910987630897739;0.19219077409786026;0.4984866580650067;0.03350900262174403;0.08535999000438248;0.010887849681451987;0.027242785960018282;0.0877533433928622;0.016433078618305622;0.23920643030232322;0.1166964689261106;0.01223639595914813;0.028066712937876128;0.03936902022514368;0.0013067434609026305;0.015497273816544347;0.011134053908370096;0.3077570858112316;0.04093571498424054;0.03504109473871289;0.004181328819267278;0.15542637917822066;0.03914751518920957;0.01857903978861135;0.3802119865598307;0.4734176003812854;0.5210987209019938;0.32886876306359497;0.07726673746522657;0.00024392913344255924;0.005385900454302773;0.021167931220942744;0.030502518663602266;0.0012581312747562022;0.016812541107136744;0.019145829911532276;0.0015224396926990793;0.0009554398467078048;0.011296417465094166;0.003769026243809719;0.08348068566183528;0.05997713152088613;0.0054051981142901875;0.033540775585723964;0.0015838659446976025;0.008705565805112121;0.10376650060323639;0.02527435778732171;0.02033414134275584;0.008241406659529825;0.004279477194917376;0.006360570265136289;0.0019321705895263869;0.013540339556413579;0.006837004427956897;0.018796611426426028;0.1031204490921744;0.0038444691442496956;0.020159037848120797;0.5203746639965483;0.006771817887959778;0.009191497978353978;0.026863362613246112;0.010022089944811833;0.13290636233817715;0.10808813314967929;0.056984915702727436;0.0014405251205629537;0.4334786528156877;0.4668586780295591;0.1009650243185629;0.10366856925622582
+Octachlorodibenzo-p-dioxin;0.6362623982293336;0.7288152671314165;0.6463023999932007;0.6909943671440771;0.6904278424400757;0.6742180372994391;0.553661650129043;0.6992350372649601;0.7009693485981509;0.6760250241279907;0.21608061924701644;0.6796326163847792;0.4182522376303013;0.7077308152325263;0.7289382319707245;0.7473343762515134;0.6605504345840338;0.7003436272395531;0.7327566972240757;0.7085112201572902;0.6704167059881285;0.7039943555338298;0.6172145467192286;0.6648563782659627;0.6736644387082907;0.002081775985901652;0.2927105345394271;0.18955340084249245;0.14098384740425657;0.1380878506599174;0.08791324621087139;0.45583313587484586;0.2900392854881694;0.5665241141524745;0.5587748929384071;0.5609139928317268;0.17521019844317168;0.10371790600542369;0.008108104790467323;0.6866877178126117;0.3476201164226704;0.6054722932433266;0.32284132443017366;0.04312757704344283;0.028382366852539243;0.029170855869587235;0.029368389154296567;0.028718766942359673;0.029805323265303753;0.621805071675082;0.557669454181039;0.17487555952467798;0.05204898458235399;0.013576461894080525;0.5987532109728378;0.6275426166611059;0.4537218616537222;0.5754335520819797;0.45412145538855614;0.08612436603419633;0.4129911165635509;0.4610861796095314;0.5778351757113258;0.5651665251696166;0.4236918628646342;0.5497598569839351;0.5730561910544335;0.48381049472484267;0.47242055676430783;0.48115248603157257;0.47085271938071416;0.4255430752441638;0.022325502368741083;0.011381945233340043;0.0004765138518169387;0.017007329107391233;0.02734759657300902;0.0254230467683739;0.0;0.010043610399465561;0.021876583852859278;0.01940607434746056;0.000364337588481263;0.000978818712722588;0.0121253726557688;0.0008668015476040146;0.011086317373953651;0.01328382257891979;0.006648748700943157;0.05006327956697367;0.0006623592800150342;0.00026945123822741564;0.019435692135604508;0.004489366657151589;0.006090878790467013;0.022476526196582212;0.0026910596516693977;0.005464173357282608;0.012207003797669197;0.024218638718020033;0.026115285131022212;0.006929972461773918;0.011462565291730639;0.02502262499641059;0.02353569292023621;0.9190061856009488;0.9670741092097279;1.0;0.9096652108909525;0.8959962883201266;0.8694985599304812;0.8270745253049913;0.9008669129915401;0.9217025297905151;0.9221849309192348;0.1769618800556118;0.15284146867791207;0.14669639278424942;0.6815448187015197;0.1243830098893039;0.20835872213802567;0.18145191653518175;0.7360699670215134;0.08259763077034062;0.02650528136721786;0.0376164984294714;0.0236432947087882;0.01984741061715946;0.0020866685145031556;0.001232401846256969;0.06521545424849609;0.00265357818669231;0.15853446062293647;0.04116332762544157;0.6015667347760377;0.02534248326353818;0.023939897503925747;0.002991754058825835;0.4450376223882218;0.5071574946866128;0.2443410829365334;0.4107663196191693;0.06426309509454028;0.16584225123369026;0.3441817596664935;0.02985963582483555;0.012733049931187249;0.015139126243364947;0.05680010252175496;0.10426550936158237;0.26385322627649566;0.010569065884092616;0.00939628915466417;0.0003246715263648407;0.3852251911747125;0.20541269875762205;0.2169397296808014;0.07397527259390463;0.08766619734205841;0.4585218820283485;0.09513775605907725;0.05407932130995141;0.01068498903383858;0.07557991013487253;0.09029659212892575;0.06195536735905223;0.23556793306956356;0.0716545096981877;0.08465561164585875;0.019175146813432305;0.06123696194624212;0.11435758143214049;0.012860750716875336;0.005423081854881369;0.018802747661850538;0.07380947155807532;0.0017067236993768289;0.05208299144183034;0.21014932575800835;0.4830056544014718;0.4742398922331545;0.0004784571220317356;0.2029664859995531;0.5324541820657405;0.0009593727798143212;0.004644075079613825;0.010407437872540268;0.0;0.3673648323094685;0.39944708686326824;0.44949916705792575;0.43635099640254255;0.18792002904852348;0.42748751740556223;0.4919148757192987;0.43870598648807424;0.42808944976982655;0.45098660237270466;0.33281466117086483;0.26297615045511996;0.49084038278745123;0.26566625868308885;0.41421350144665864;0.4416563822776736;0.07422678411947185;0.5911327742141937;0.4137900592132132;0.08416946140617942;0.0038818727551555615;0.042525339277903716;0.10992789103078163;0.35419056638285507;0.20126571216682818;0.13334051212333217;0.010493595878384382;0.2704580372594933;0.30327484732130583;0.026885164776980844;0.0019369791162298596;0.013617366990321114;0.08298008416302276;0.0035043161629055228;0.0780565284291966;0.5927674383195146;0.613069797740925;0.4802894495406355;0.6398807208722854;0.4772227616507707;0.6217373368142834;0.42529535208696506;0.4426379432667903;0.411211776297642;0.48985546140992914;0.5843775785197789;0.30492510983179055;0.4306412198585819;0.38403875312426244;0.3837175994636256;0.4490182413640512;0.44165787542793594;0.12022292912491789;0.036090647394687383;0.022147665441355983;0.022784879056446033;0.07451028213181292;7.643258712732014e-05;0.006025804346756874;0.013112854813826399;0.027301491120141252;0.01740698931691733;0.12436558387194349;0.12627858701392836;0.059611696381859564;0.5180717093677096;0.03915587686089031;0.06290807182416878;0.009658442602673793;0.31435029728151986;0.0;0.10938971031440908;0.014322567969314923;0.1390626694724934;0.0008744236129231792;0.0003517769129869201;0.0800678397286145;0.00214335416406609;0.3138258529527776;0.3775749751673106;0.3342856812150797;0.08798842680878148;0.008868811340657954;0.013352225709342325;0.13910537911324114;0.0015740890051994072;0.021990994619792526;0.21647541101308607;0.025190442627370364;0.0016178204075678613;0.0009023651342606264;0.011236336774668808;0.0002639220170507092;0.023317337210066784;0.01405699244552294;0.43707506233187304;0.04150458776201414;0.012385710274379501;0.009897826890559389;0.33033207143305304;0.0008426696598988295;0.012751487545529063;0.06359606918171944;0.1260090169127106;0.061926167627150176;0.050105357570404;0.0036765356849776773;0.2573063728690354;0.10582012850102816;0.02714243453442194;0.00806328364393645;0.010535398442370055;0.021847137035383962;0.0;0.1820840909474923;0.04093331574827007;0.2248086624283595;0.04443039987380482;0.1481880279831702;0.009056903541042768;0.002224319886625411;0.0005167352065632291;0.030123457454632404;0.0018428179489663032;0.0;0.0;0.07320352468074116;0.2076043361976172;0.5248514707234105;0.034656958412038974;0.08889093741373925;0.008139410485944269;0.04412856075990386;0.09142312715126992;0.013840056695329336;0.2484110306850784;0.11267261944387308;0.00979238611862585;0.014963994761801635;0.00718826602430443;0.005956729981158868;0.01787021512311802;0.010308303080219756;0.326750141590078;0.04285315542150847;0.03666056189848945;0.00720997277588306;0.13407430323240743;0.02460246925067984;0.020281694498439917;0.40429590669578075;0.5020028801555242;0.5532947456510305;0.3533509440062682;0.08157775916399254;0.0;0.0027401336690640694;0.020947972544033137;0.03082401095908485;0.0015756073555763539;0.02563238829383456;0.020020266016223455;0.007255719133029559;0.005187394568424711;0.007175428321773938;0.007800435748405069;0.08931919541938632;0.06297328683950981;0.0002456884573495949;0.032869434817234214;0.0022406495638515357;0.006668201588520989;0.10726505164258451;0.02007259725192115;0.016827411937255215;0.00375501635309445;0.0034899108270247813;0.0047146577939483365;0.00043801614594627747;0.01387738721894323;0.007869954244002636;0.015511705138336464;0.0864398867782393;0.0002629548348654562;0.01779485424738906;0.5473655713375397;0.007188040072383451;0.009321059140640296;0.03635799821181255;0.011339931651083893;0.14272823245325567;0.11387359806868924;0.0594849591651257;0.0014429864559616563;0.46037839694411736;0.49649196902585346;0.10576772150015455;0.10887499050092281
+Octachlorodibenzofuran;0.6512524759188526;0.7442503730198639;0.659612661570673;0.7041023889389407;0.7032645654271668;0.6845365647587822;0.56301142936251;0.7150219440264497;0.7172649796791724;0.6905206082348684;0.22348168714970545;0.6928730163279712;0.42280334011470905;0.7216986153261702;0.744073007823689;0.7637895129666403;0.6741595360267469;0.714928293567785;0.74830251956034;0.7232981014486933;0.6849415921871873;0.7193767929076077;0.6312647546676448;0.6784933791116151;0.6850155036467137;0.0025146146719278893;0.2937278898735422;0.18999782032975904;0.14364338439513982;0.14238408623425375;0.0845692237139231;0.445736258238235;0.29513921212946453;0.5748550289217316;0.5640521943203407;0.5712739928848112;0.17932533954088836;0.10533055998031073;0.008958540794561173;0.7024147929531059;0.3123204897423941;0.614102957172562;0.2984307787613132;0.057275933867025945;0.014331571042264638;0.010701183157734877;0.011027826589306101;0.012121867318089308;0.009550388589729102;0.6017662246212828;0.5250806942119784;0.18489874756984473;0.0675952921968718;0.040612354543533395;0.5497155792551772;0.6357901237429072;0.4445668977348077;0.5673684260527176;0.44607175247829134;0.07193098860880363;0.3763512133822547;0.45952433383823577;0.5794560443035683;0.5675783056530143;0.4144581581230586;0.5409619583955817;0.5639313468282776;0.4767338987972914;0.46615593749018125;0.47403935656661617;0.4675569665751588;0.397993664094398;0.011914586052300915;0.012744507014200936;0.0018001803859655958;0.004450140057493537;0.005240563607461118;0.0015663671955062732;0.00011919388443596047;0.009220881740691038;0.03963184919325894;0.04415466776842463;0.0009879409891713979;0.004018092897913015;0.011663398543609154;0.0008142208568386361;0.013135718965930174;0.015057997453875918;0.0206748733824078;0.03895793533674911;0.00048634232761656166;0.0019927262549365794;0.009605969410779092;0.0018948057535900591;0.0019081225511087066;0.02192330630998898;0.0026771283358659552;0.004060999543351932;0.0008554120508016431;0.016764249453451327;0.014369979408296788;0.002168721782093204;0.002996718334969795;0.027000512131618668;0.016813593336178944;0.8556179419094939;0.9097023271045571;0.9096652108909525;1.0;0.926992488953808;0.9081536391947174;0.8616008895585504;0.9254878543679188;0.888758287056207;0.8826705502379243;0.6596072698717467;0.14462201522412857;0.12446848932353927;0.6801337420237001;0.07220518418222395;0.06054853871289707;0.15706827752390734;0.7420129897847973;0.04010921135657544;0.028811826912641326;0.046169800597202076;0.04712905555639158;0.015582886110667587;0.005578911731708322;0.0035867686734866746;0.059081466971230366;0.0030246920024874584;0.15917335104196575;0.03071524698374399;0.6124952455751771;0.01732177138492112;0.02647686389862716;0.00518367002956554;0.44495819600864206;0.5089558842025742;0.23929678067766486;0.41390461162063247;0.06471228350404608;0.1659603133212955;0.345890182373919;0.0300370850272759;0.013336253139106878;0.015417482551832265;0.055148649832862454;0.09520018979759617;0.2690447454066712;0.009884495440028333;0.008895205568081151;0.00046630997144043974;0.3961180358835554;0.2069096509761572;0.22140967481949733;0.07509461454688547;0.0892490236771004;0.47133420769737056;0.09644987504694374;0.04434851679297226;0.09690426800186155;0.13978449466224063;0.0988737333281112;0.07916344211201375;0.2318146376800034;0.09367605683536333;0.10467358961464968;0.031964892171010714;0.07501571751180856;0.11255973238017201;0.009645686671112201;0.03448770238921251;0.04668915911802359;0.07551281851636314;0.0014253677103151046;0.007633876578878184;0.20556840084117672;0.48756999557698205;0.47996829261761276;0.0;0.2077121750413955;0.5394350626255036;0.0045837764494162676;0.005828249797722214;0.010089765704014335;0.0;0.3679845507166239;0.41029257642711364;0.4622897505427712;0.4450232076096643;0.19306749818744262;0.43541355020130784;0.512941379978598;0.4440614905489567;0.4332026988515381;0.4590918315379764;0.3423420162116796;0.2684966180681747;0.5007522519050261;0.2700603124355498;0.42209433574408084;0.4546981859504364;0.07759109407033443;0.6024501103834131;0.413576814919324;0.07437506232569666;0.003936759437112241;0.038712825836635115;0.09668498946167026;0.35661826175059946;0.19554723881182384;0.13253860065478884;0.024155910230735902;0.2731448220253347;0.30500978213254565;0.0307907567851014;0.0008034131449157313;0.000671195542827913;0.07458426626449394;0.0035510551465593996;0.08198875343030151;0.5951104489039544;0.6227801536135145;0.48249901943934337;0.6444156729043509;0.4714108820251415;0.6199834753328396;0.37997456922410516;0.39751286472456304;0.3658800560308891;0.47472590594808833;0.5728959564903595;0.29393148604072733;0.4112103501530449;0.5442002383962135;0.43155107732388515;0.4513148941483649;0.4256308760636139;0.13850790723756393;0.03780045041974489;0.02728882737963974;0.03199637763726727;0.07629050185468718;0.00011507107276372529;0.005725040792818612;0.00887053838411066;0.024250365906287586;0.013107292190059324;0.1263141393029404;0.12824211898576357;0.0010061281668962232;0.522036127210103;0.03479361657963357;0.05792751988772089;0.010625872538047138;0.3346991349394027;9.353583460057996e-05;0.11163008237765185;0.04497036411408725;0.13989814483153268;0.0002855713080965074;0.036622943514980945;0.07893880513684981;0.0022925651147358045;0.3039397820955555;0.39191604292276644;0.32143406811533626;0.08968554702612251;0.009774920480498156;0.019803984140203464;0.14285944130262804;0.0016245834289610255;0.022395333151850997;0.22082191737111745;0.01874949272229452;0.001486387231679844;0.0003531474749436575;0.010990263169410416;0.00018529643299477902;0.028921473067272413;0.04548801962270484;0.44161764022923217;0.035494714954326705;0.012092372177231461;0.0034121849729858563;0.31018867870475697;0.0;0.013207350147839402;0.05904182787554313;0.10177090850296146;0.06457374390704873;0.024457274123383253;0.008774468211070854;0.26030677058894286;0.10789347734348033;0.0295577469680692;0.013462198649982108;0.028203830297237064;0.02213809993086715;0.0003340190080689999;0.1837028763558899;0.03786215919544091;0.2254420206177259;0.013985542327990699;0.15367659911728332;0.0027617717793158407;0.005989934319139828;0.011740147181455923;0.030330143157636217;0.0;0.0;0.00038260769889402255;0.08678746346537736;0.2108094018178731;0.5305631374645249;0.034138408148571664;0.09255192652580785;0.027238326704672067;0.012581631811583035;0.0883172490579901;0.015334570913024688;0.23927400026078627;0.11972286101147633;0.014977131449350109;0.009875729362447858;0.005651837974159712;0.012730731143698213;0.016040828326415256;0.009694612271141276;0.33046602738893294;0.044238462854417564;0.038480931123932714;0.0;0.14054158784332224;0.02274003125800066;0.022292388450011115;0.412184826864756;0.5116570443164916;0.5591327885434848;0.3499411705326502;0.08074019091315887;7.684558701869518e-05;0.0013354819610094347;0.02139459518078292;0.023144701958565717;0.0015917571544889094;0.020442597864051497;0.00834294744910027;0.003988464991514043;0.004068370735422354;0.010708305267212701;0.013369074991870126;0.08463729073144692;0.0621012304028201;0.00484561878934383;0.031357228591101155;0.0;0.00794975001690949;0.10586026649224814;0.02268372863453325;0.007080235216720943;0.021348753584466442;0.022425270450809668;0.0020690835324971278;0.01060395307618328;0.014449971182523516;0.0034891573822290727;0.0167681911970134;0.059309675173633045;0.001128991594408624;0.01853337999933482;0.5575692381318578;0.007320203333822712;0.00949244126479236;0.022421538254837448;0.010554006662981326;0.1425724926270268;0.11760750181366304;0.05743124956989453;0.00011581614330050356;0.46910617181875514;0.5042144292959412;0.10694703631265637;0.11044295205163528
+1,2,3,7,8-Pentachlorodibenzofuran;0.6996968280250058;0.812780965041214;0.7278641880398534;0.7881561108126149;0.7902310819907871;0.7787559466058848;0.5641305468307637;0.7974023223929823;0.7978087547064564;0.7711162976749862;0.26028054817481355;0.7929834631211933;0.4705229401665606;0.8008579888562728;0.8143840290695279;0.8163244982626279;0.7754096379014438;0.7967427165122519;0.8154389830038122;0.801283582324041;0.7702291840253476;0.7985853776916655;0.7305310518167617;0.7704888727759973;0.7712110236585726;0.0016202721855995872;0.3425340791047927;0.22458016367068764;0.1719696682454663;0.17136800364847113;0.10211459609059198;0.5050221247888782;0.35021826741966866;0.6242392302477421;0.6650123013937995;0.6814865718630099;0.21355831505400794;0.1269259440853055;0.010863251205061264;0.8089570666619179;0.3524396104768142;0.7304529733489877;0.32532992009337947;0.021126765323605252;0.0037242101658985644;0.002421168521434548;0.002645126734337838;0.0026704577519528596;0.0024376012347265418;0.7160020300184354;0.6221243999152005;0.20384923392489518;0.037326981623198086;0.0077986886615539685;0.6453350374936271;0.758224915511902;0.5181387420842742;0.6658809013745786;0.5107408236098405;0.019567129928502732;0.4225842240978242;0.5429559316903954;0.6871993251429949;0.6733130175996899;0.4812991357042712;0.6342612022711672;0.6614254760530696;0.5472700026560671;0.5290840153852419;0.544723998590674;0.5426683883526461;0.4534118339638487;0.009551406559745483;0.013574494626510116;0.002159021306184369;0.003085792370980793;0.005541139503624971;0.007293543637130414;0.0;0.012494257411494923;0.0034649697296159133;0.0025049460961025704;0.0031349591607598274;0.0027863042335795588;0.015903992796516934;0.002701560915749519;0.017056304173856042;0.0170214930366549;0.0327924271496856;0.05632815750724481;0.0007240807415306122;0.0;0.006649455377169874;0.003041903011209463;0.003215742343299552;0.02357931827342687;0.015094517306074215;0.005898661189224733;0.004717074757445821;0.02478957115609198;0.017922904254705385;0.019854609694646887;0.01506664708290574;0.04904901349430087;0.03805587459535116;0.9285187658442229;0.8648642926143726;0.8959962883201266;0.926992488953808;1.0;0.9744419991028475;0.9329689886580371;0.9718367752924156;0.9399067477116433;0.9513463112115474;0.14825758196287103;0.1253985280980633;0.2219877716968322;0.7656056447645193;0.04944993032019991;0.055145260247291654;0.15323683530014984;0.7419404943618233;0.02139672843166496;0.03791489118397668;0.020535017866087555;0.025131918687646457;0.003922248099196128;0.007143609021001114;0.0020978277940160704;0.055127926155384865;0.0013684843223125168;0.16854922459640592;0.033956409531275725;0.7268832513310646;0.011815129054293777;0.027354747555504638;0.005612929337675933;0.5213184813926176;0.5872248602036207;0.26786651052090005;0.48846354353667476;0.07109731078360525;0.1926890063275296;0.40111848511877746;0.035901187321917216;0.012389632309408385;0.0190383146779987;0.06105351865729533;0.09776898437743597;0.32180749980533674;0.012446760765330396;0.025150433755690794;0.00102870099535552;0.4593788739777383;0.24968263660083476;0.26465679489561483;0.08903586052257162;0.10633873935587185;0.38984410743167264;0.11464633790593894;0.016733494457721373;0.18853886166842407;0.08744305332755083;0.07468160572588656;0.07824734745809588;0.15441216642348293;0.06061791894265467;0.07614811794202458;0.07578385853193598;0.06520384759730881;0.1078707936014874;0.00517606479512241;0.004825514730286333;0.010142006866116797;0.09086785580180344;0.0012147044146439555;0.004116039482232023;0.2483285490167305;0.5745094735432633;0.5661807581597634;0.0012033558994357168;0.24822129847053456;0.6423934066270435;0.004868406059407755;0.028932449799079444;0.017476941516237573;0.0;0.4246934848379079;0.48053816004724287;0.5442365018963156;0.5305576621341148;0.22745268984513267;0.5214849733885265;0.5910296730008701;0.5102040817917007;0.4966321415411189;0.5015367218849792;0.3698512922552474;0.2869030003059038;0.5432239907748453;0.2950179292210004;0.4496046442963523;0.5128043409876148;0.0690956562673913;0.7180497793843542;0.4908911643404001;0.09541433010314562;0.021567693702479025;0.02530204333712518;0.05223523873279212;0.4328724866113006;0.2310994311672321;0.1558347926873517;0.015155804135621675;0.32816672357175275;0.3587631141977554;0.03131594537109359;0.0009883429425808449;0.006988902215663988;0.08779395219851341;0.004024443730980464;0.04870530698403392;0.7037074025089256;0.7400641275264903;0.5725941180389789;0.7691589236505265;0.5585389719614641;0.7385739226283939;0.42979542777756874;0.44959069935702795;0.4129604176000572;0.5573559858781937;0.6755839427344396;0.3172673841913813;0.47271935676088894;0.44260101762549914;0.526316540707375;0.6144493847251996;0.4882032794334848;0.14802695827809687;0.054881123426735276;0.03613121714630386;0.030596315459258786;0.06059318446291993;0.0;0.0029054041720437307;0.012726930346027775;0.022492271461597976;0.004952397308779971;0.15178259536784472;0.15411396334529717;0.003661246369845265;0.6269165966995803;0.0361770162086138;0.052886685373118546;0.022873999878848826;0.3840516869783941;0.0015841608827995555;0.1328878492115654;0.02681681315152074;0.16388666706196234;0.0;0.01333323926736021;0.09550616437571159;0.0016769331038467925;0.3462973284834398;0.4814769823849405;0.37450917607465933;0.10732472640140685;0.01215940937498306;0.016179851787717706;0.17084335727481054;0.0004791431120739078;0.027042651091972684;0.2661385606359318;0.01784459678128951;0.0013820737170933462;0.01867070180826497;0.016848048529270666;0.0006633699781021249;0.0410184256784073;0.02689474196520431;0.530585782300265;0.029916528104083004;0.00931035992149813;0.0029964333084018632;0.376385584436808;0.0;0.02025066651415902;0.07622220215101506;0.12536183594824862;0.07193837470348433;0.020047946388243098;0.0028481426982873985;0.2602639209919164;0.13042059395291988;0.02292592928472981;0.009935012718084706;0.015330259802212321;0.012567274498318829;0.001015243483020653;0.21901269351822725;0.04651377015445414;0.2429543419927052;0.014364568735622554;0.17443996933779024;0.007656916731470172;0.0016349150508302589;0.0007342985189128488;0.036269180488532594;0.0;0.0004439167544801086;0.0011893527899493428;0.09026523981869397;0.2540063883311083;0.6309490886291762;0.04131168724046723;0.110948668062361;0.009199321935564529;0.014752694614116655;0.10577710629975445;0.0178657261398587;0.28561166846515507;0.13483052049746566;0.010613698218628832;0.008586900540496614;0.0019440857295847359;0.0008074568905320383;0.017196868301577312;0.007403077995011455;0.3956624665050979;0.06748333968455983;0.06090387022638777;0.0004657661296312107;0.16896366074524455;0.015938811876306552;0.024817138691803454;0.49206666139534655;0.6141405301330458;0.6683461285567084;0.4185444928133719;0.10104042134487433;0.010047220998665564;0.010106392099808105;0.0;0.027096843375499828;0.0;0.013379834856625826;0.029242806232265838;0.0020425352787694392;0.005890117671921526;0.039829867008290706;0.01568061973643356;0.0923060378711777;0.07211493261962025;0.0026730723015720606;0.03635262426151907;0.0005540003320871829;0.002263851021798911;0.12574944777755306;0.019892995284500913;0.009185765347752898;0.0027512312270539475;0.0005012523454739721;0.00035807042467320545;0.004544875696443892;0.035376608794231566;0.004404575438931683;0.01579894985752858;0.040452810754667126;0.0059733168359559306;0.019956416787584644;0.6631679885313512;0.008882679901952996;0.011757345383503266;0.017537164251636837;0.01241225970872739;0.1657834319415988;0.13992142302546126;0.06714564818395714;0.017438508262525746;0.5624241279744667;0.592815328890817;0.12697554824715007;0.13092987194124348
+1,2,3,4,7,8-Hexachlorodibenzofuran;0.6561874806406353;0.7471483034426958;0.6816846519763502;0.7272364809332021;0.730293759775278;0.7257874648798232;0.500328461784658;0.7360298628435504;0.7364957717021473;0.7172718335799266;0.24711196542740027;0.7420240173653702;0.434347561224685;0.7389125947425796;0.7490538384142199;0.7451481914305104;0.7218085123897834;0.7377524228814104;0.7489357618656509;0.7399948410766962;0.7146950277732176;0.7407097533227929;0.6883645244553446;0.7188715719929905;0.7188681490060106;0.004217691478830089;0.31930178567376566;0.21075095756908788;0.1621429147485705;0.15930130326491965;0.09548706022031288;0.6175186972051516;0.35651778777328563;0.5725021508366471;0.6965360368458137;0.6405412851027443;0.20168120641442358;0.1250518060468597;0.0102996767100392;0.8888337176159361;0.4143079770683431;0.768497967157858;0.4112037635722174;0.06199926222246476;0.0035226556285559156;0.0026987893306678395;0.0032068093725186172;0.0029756494415692307;0.003070136956898211;0.810435257509393;0.7108907322640009;0.2149812535382388;0.03290570971833697;0.014718823901720671;0.7324680574538204;0.7991852900355765;0.5807718972953365;0.7431301315092695;0.5816311549624957;0.01882784965797124;0.48852084260820733;0.5844648636635716;0.7439298423640227;0.7256914894916057;0.5337577365826567;0.7092327852132645;0.7400134621064363;0.6259431353042468;0.6039388581811443;0.6234720194343571;0.6261499954603695;0.5371333846070452;0.010425510199168412;0.01269866252826267;0.0013195821868742202;0.010466203712454181;0.001082565857616121;0.00020977529626368656;0.002422793308255649;0.0109779508932047;0.003462384429276729;0.0033865325217124357;0.0013121988413759345;0.0022106491768478366;0.013573581069223187;0.0015044151335767127;0.015745949792869644;0.017614645288383638;0.005293574401345651;0.027753557882031554;0.001317041106528488;0.0006174357162689744;0.005025806939312935;0.0015917142283683107;0.001954252021845474;0.02276596440780376;0.002707644167185796;0.0036642360313924754;0.001563614839143617;0.017961807270769306;0.018766885598708132;0.0030352965893633774;0.004020756761121808;0.022475388450964074;0.016854877662600846;0.9376967218398902;0.8196201707098942;0.8694985599304812;0.9081536391947174;0.9744419991028475;1.0;0.9720837628488811;0.9246325899894826;0.8939188381071028;0.9363675165603775;0.1334629364496567;0.1266489108830546;0.11607979661085727;0.6967024392677799;0.10639579810067272;0.05181112346918779;0.15996118392135772;0.7360704995471463;0.01758118592865748;0.007282011472454905;0.04942607658654747;0.05323552642380291;0.018813800016120666;0.022427971909824523;0.012211972046439071;0.06714091345834874;0.002511288123908923;0.1502934160867407;0.042077662929831276;0.6814958340437967;0.012250593747148578;0.027409799295706663;0.006795547687056322;0.5031742471030761;0.5625500775930087;0.2562661745500475;0.4613837878278981;0.06594026278348547;0.17907041085037076;0.3743852145208513;0.033843816593546135;0.013100261101056741;0.017369530425006083;0.06317037856483154;0.11012407816055962;0.30292977595747367;0.011294377406508257;0.01012626321100402;0.0004861518556033542;0.43571620880436257;0.234956134637997;0.249281267645533;0.08485339139168865;0.1007052440311825;0.3102119558964762;0.10864797270102662;0.018621800790040277;0.11747711326358411;0.07208538280802058;0.06467543071736445;0.09470080015759787;0.14737983535283866;0.213128564538024;0.20340321383860177;0.030763977623834076;0.05231200452217902;0.0954835910969177;0.005303415723940067;0.013084101639322658;0.017393580222471335;0.08513074842650088;0.0017561511441093582;0.016144257718748594;0.23221035170598128;0.5348867646171571;0.5251657024759214;0.0011331877035152369;0.2350523989817881;0.6077097075273684;0.005694733767566964;0.014739409111622989;0.009410185989305025;0.0;0.39771792351286334;0.454182271518769;0.5119862600620322;0.4989954001202158;0.2137747484589291;0.49583277149670224;0.5907436283640289;0.472930044963555;0.46041575448254346;0.4669541698502413;0.3468568692196925;0.26656957725646546;0.5066603471085961;0.2767751419264169;0.4185596948127454;0.48390437725824953;0.07939910416793673;0.6764257014021119;0.4678216431060293;0.08617399298451098;0.011917980712922278;0.02699556582374784;0.043673884732585794;0.4190602887209932;0.2306451421181176;0.14621231673690188;0.0136388446908366;0.32240839950225575;0.3370359641571208;0.030297254693551292;0.0035615290403357425;0.005170061453755934;0.08727430944757565;0.003047563938684121;0.059202165147070565;0.6912691527587923;0.7512278234018935;0.5979668899612364;0.8119099859352837;0.6008076914677838;0.8035974791074316;0.4979676293267615;0.523676279742194;0.47976289630783653;0.6193256226093804;0.7534842321885534;0.3823506999887266;0.5368710084204587;0.6157463725185929;0.5654621142010803;0.6034199961928737;0.5561666598128043;0.13903889088704607;0.047212456256704255;0.02650846971271166;0.02409572204230276;0.06286064872435487;0.0;0.0055599224446780905;0.009086964329026793;0.020821934063236423;0.0033619656559613137;0.14956150390964063;0.15196677730447022;0.002454832023723652;0.6023657698334689;0.03735966078224117;0.05267719046781948;0.011410997225055456;0.35960578198959775;0.0077554187798143225;0.12505693086570022;0.04391179123969784;0.1584911240674336;0.0002634578616552115;0.014916150516734422;0.09307273875929074;0.0023265565246446893;0.3572344462223057;0.469584749303942;0.3745745441215779;0.10105919791643168;0.011175660567757872;0.015071464410769501;0.1615820535017905;0.0002635210618874197;0.025230864977563643;0.25572127098527947;0.015267670727899502;0.0016061734363801592;0.0005156899692466585;0.012471904507138117;0.00043291096451359497;0.03502936969700246;0.0439413043657162;0.5010849233662006;0.042639690476805284;0.011346669582139944;0.003005887066920499;0.3829734054793439;0.0;0.017333273888285382;0.06889045799481973;0.124639100350829;0.06775799095124693;0.026915413000745667;0.00286756593468086;0.2285190265555265;0.12235035272852438;0.023240599790324487;0.012443020355934769;0.01167925088161684;0.014948111229898092;0.0003014826613273566;0.20591694833291255;0.042655986403141916;0.21882427353495368;0.012731951232628306;0.16846905795932832;0.0017225522321574049;0.0021706780854251696;0.047952671129300184;0.03384503604132193;0.0;0.0005743213048767506;0.0013130358745139662;0.08512109091684521;0.247771995821125;0.5930924482461662;0.03924125753208127;0.10383942028633358;0.0033746668789414315;0.010840864787424933;0.10023660449896452;0.017753368223928468;0.27174811557637824;0.13174623492666676;0.008316322298160123;0.009699643814151136;0.0036029772545211917;0.001245890143564958;0.019043132017393598;0.009307345245839566;0.37586352392176176;0.04867712121708368;0.0422685927852903;0.00025410973881855227;0.15400433907163544;0.019930705813936415;0.024505159019761705;0.4667105954903835;0.5790478152133302;0.6337218753558052;0.43115563380756944;0.09087064289295757;0.0013652971227365515;0.006353108868949753;0.00038428371368659406;0.0007667486656758846;0.005689719945340252;0.029206778227685005;0.004541102741175211;0.001992431753680605;0.001757725122043733;0.0053507509911858925;0.013710187631485082;0.09254015630327529;0.08054914164100171;0.0014148444562004385;0.03085270799634017;0.0002618662168173664;0.004393988657061179;0.12757558922516346;0.022479220075624133;0.012349628411812285;0.0025311485152214484;0.0009637474896022614;0.0025341087117821126;0.003842345432154759;0.011983547008775233;0.006316831791001724;0.016319623661575845;0.02841505294549116;0.0006707273259625359;0.01945312548229492;0.6229797696440232;0.008247033463252002;0.011160583912366519;0.0325194059898439;0.011451513237574354;0.15977920442238047;0.13360134688868502;0.0644655451870259;0.0006162630416160399;0.5313299246662669;0.5650328670234963;0.12135146703845318;0.12461740515768956
+1,2,3,4,6,7,8-Heptachlorodibenzofuran;0.6013140298000001;0.6707137345584792;0.6209823305584465;0.6543575050751343;0.6579380369894147;0.6597937907322591;0.435084137068815;0.6633355027458572;0.6638905733992413;0.6499080574482115;0.23166181507926029;0.6758009070605767;0.3902721876747088;0.6652306404891143;0.6725549302257643;0.665522727718322;0.6541005552580962;0.66588417248497;0.671854830342046;0.6666312312550989;0.6438510623854796;0.6672249688084513;0.6259853264457675;0.6517632132250273;0.6527206896615108;0.0005472426994271661;0.28927276196756246;0.19371712890874118;0.1493922903932763;0.14692384331591207;0.1020529142395453;0.6644457843136227;0.35445120579753614;0.5125041649073966;0.7010092811132546;0.5885328247908719;0.18722746666225046;0.11846229053221104;0.009695870860431636;0.9216253338654924;0.4587551276458861;0.769316460515216;0.4749367641048037;0.04172454192919865;0.00297459067119908;0.0022422570707660377;0.002414241826166317;0.0029555432110915996;0.0023868649527951534;0.8407905159398161;0.7644693120028228;0.2233220841504931;0.029722962787946044;0.005644141309215089;0.7766736602166411;0.8009810826465104;0.6137974658783373;0.7792363602378124;0.6238672485886788;0.014973925414129653;0.5331903363641695;0.6038981209215674;0.7647875218275139;0.7421203505150669;0.5613994634272863;0.7451039275517992;0.777060832076105;0.6714792396679651;0.6455788434695163;0.6694629369314596;0.6749779018461752;0.5930582591050917;0.03168341627552039;0.02495544334503564;0.0020208164568876166;0.02813799487012976;0.0035060549690671215;0.012100090100995716;0.0;0.00997684552924154;0.01109925732879789;0.010279987667520089;0.0012665965099327786;0.0018222897621751532;0.012699866216982419;0.0012853742882411871;0.013936533739035405;0.015724390211784373;0.008003603819707524;0.02336181294791214;0.0011513478226821204;0.00047016771216682146;0.004590829841835039;0.0041879027931576275;0.004621600811165665;0.06663417001924167;0.0038529771669761717;0.0028490334820893944;0.0013613686699937007;0.022107451172988256;0.017804382962845557;0.005061429976284172;0.005387497053800663;0.02194334720291194;0.015894803794740692;0.9175227580150597;0.7648438401292252;0.8270745253049913;0.8616008895585504;0.9329689886580371;0.9720837628488811;1.0;0.859880782293977;0.831849521103417;0.8958668387381385;0.13303411136454876;0.19621715888053304;0.1613499636389934;0.7012166567064346;0.0534433431807781;0.0509636203669449;0.15369429622329495;0.6975724921932204;0.1201387840597932;0.030652197947286724;0.03106446268319089;0.03318435954784359;0.004645587739241552;0.006980822806039729;0.007624170616915522;0.049745408839839536;0.0044357926382329865;0.13190885030031302;0.05091282816416352;0.6226437528783825;0.01548605793506012;0.03331195110926321;0.008609886680402674;0.47680904788673467;0.5304597376237401;0.24393439478496676;0.42824241246346884;0.06269937115569606;0.16348534280512025;0.3454700771153756;0.03153879271219883;0.014616590105634457;0.016039201908809926;0.07538686715273091;0.12494789479052229;0.2827169634210096;0.010501308757394101;0.009781732968031349;0.0009626027391263819;0.4088847366631326;0.2201993978494201;0.22860576867712767;0.08128252878926408;0.09446664066439424;0.24636832984006746;0.10095515945564405;0.017095463994480954;0.0875404306875189;0.08216620228731115;0.06425255224787639;0.07100414914328307;0.13101234845222962;0.03959437631032514;0.05220840144616457;0.11066028229006164;0.07436758456809965;0.08601249563512815;0.005397292957480247;0.0037990589238231323;0.007366739020244277;0.07772854611731077;0.0015116040394799264;0.03399745215448725;0.21379795704257415;0.48693618656094295;0.4779698363462787;0.0005227543658846226;0.21644060723406444;0.557732093883574;0.011395545231337005;0.01596723804156597;0.01322531305081475;0.0;0.357179768225567;0.42300313879851287;0.47632144743864924;0.4578008060307294;0.20515591779721135;0.46784372015886944;0.5722796133005327;0.427396998738125;0.4155449612013936;0.4240334046284877;0.32223143092144385;0.2417753245187266;0.4602830019801886;0.25263294185577745;0.3795094476649726;0.4431709430751409;0.06382542382976057;0.6183824583344073;0.43789006327060537;0.08044081141651271;0.003974177928301294;0.03430871781640495;0.04595930048026677;0.39719496266603727;0.22230634588652132;0.13424551452774058;0.021891728044575263;0.30503867323402123;0.31100964486323235;0.03487116255335552;0.002095673667371874;0.021961393461718902;0.08568246884726449;0.0028548145171209513;0.055996527656850016;0.65443646944641;0.73390246291997;0.6015415474606565;0.8149918468240337;0.6198539858347731;0.8274099468987481;0.5452828775574698;0.5742026804997238;0.5273176292985468;0.6528223522748007;0.7894498710116253;0.434290508079848;0.5759323211361742;0.5926177095974581;0.6688603604212678;0.7696248900844177;0.5972101999267039;0.1406004051236951;0.05083486965461247;0.03571491488425044;0.027811513165303746;0.06871611857351553;0.011065658180618833;0.008100415094412314;0.008550569753709401;0.018357033796031867;0.004666208044008706;0.14048070911911803;0.14287483215418886;0.003423784579995778;0.5779829172802398;0.04326489054738636;0.05357802421036665;0.012471369215307013;0.32813135352794504;0.021480778073510343;0.11516781926111615;0.06142277730522019;0.15092315085665964;0.0003548358381137926;0.019570509699283534;0.09103424640162884;0.0038391253156081916;0.35724185856379537;0.47555545705066854;0.36459437660441735;0.0923686211385321;0.010764078488197904;0.018281305095746703;0.14927402173455573;0.010295531768729303;0.02306294175532108;0.23783563153771867;0.012932107938244156;0.0022658444009513883;0.0007616779224836559;0.016842436014105386;0.000992554082719679;0.058535505544844144;0.061627641098354606;0.46429374727747097;0.062322327013573514;0.0148048849097677;0.0037859072500079543;0.3786387138005301;0.0;0.0338327480262818;0.06256735801729836;0.17068584613751978;0.06363966768384048;0.03738340760751318;0.009036523217063695;0.19703543708526647;0.12794057266599757;0.03132771823035327;0.010095421035140276;0.027782967832389815;0.019620179037069082;0.0006256768293121806;0.19581545464819847;0.038990836453932205;0.19231070550196783;0.012923666215150263;0.16488688244466151;0.0030388566100015627;0.0070190362851108145;0.0010444560335827224;0.031953124644667236;0.0;0.0005605207363880152;0.0012141528225876384;0.08820297501781649;0.23954243525010915;0.5439924392474447;0.038066311250460935;0.09656856983999147;0.01051912779516086;0.009688893422292634;0.0921958896279086;0.02133290092678987;0.250326260422368;0.12597020635639655;0.007503373165971736;0.014513096490030759;0.0016929316987892053;0.00025085067149662393;0.024212452691030156;0.011933075647899343;0.35239996850765437;0.044957037659667576;0.039097682679889154;0.006869838877377199;0.1433727236602719;0.023874114518632934;0.02470531630248868;0.42965790699659534;0.5325029721895043;0.5875426289074015;0.41548564184944925;0.0842719123441162;8.97182499389257e-05;0.00042450704890299647;0.005681229315490699;0.006920276189074125;0.0007577237633467387;0.04551736505913056;0.01996628396249017;0.003451216609347987;0.0024598702648807444;0.00427988663671835;0.007484529661154688;0.0964961940614327;0.07056647078268212;0.0031351778597564907;0.027606816865612407;0.0;0.03539251758577076;0.11729498397789612;0.020675552538005893;0.010287431136819448;0.007866608461764235;0.005486366266517218;0.0023838721435801204;0.001975169286843361;0.013271476379147133;0.0030741374167814806;0.014913886324892562;0.021806422376315405;0.0004952125527372286;0.019967942769197656;0.568761874874098;0.0075384198118574;0.010230487896399973;0.036462388608259635;0.01079805736762146;0.1518410363461089;0.12392964250916798;0.06460232243826168;0.0008731862722556309;0.49026804974314026;0.5264820848938638;0.11484314908513844;0.11816233129266407
+2,3,7,8-Tetrachlorodibenzofuran;0.7013779934898774;0.8476407557081798;0.7379481486841881;0.8164659613888103;0.8172175385100449;0.7967926200617155;0.6137836824581734;0.8250681670821396;0.8256252262906525;0.7892419864705786;0.2608435490708807;0.8079075921806078;0.48178995909300537;0.8294461299724185;0.8486331159047742;0.8592167186648657;0.7934580976521217;0.822162679404908;0.8516713740537818;0.829843101013007;0.792181682931895;0.8231538234946422;0.7376940873099667;0.7856615736164106;0.7886649801298097;0.0025221462308016498;0.3494013539069438;0.22730668279904206;0.1730152714629233;0.17386463422642862;0.1024152632268899;0.39144313964642286;0.3231786853963;0.6487282080623451;0.5852200562663381;0.6828405134409394;0.2273168951802091;0.12201948638842372;0.010255821372841126;0.9904472346419999;0.27111477193534933;0.6423415094786096;0.2310600983666914;0.01308461527602648;0.004659879710559811;0.003876055663099539;0.004689875166556877;0.003672096446437253;0.004313124731713614;0.6147373311568255;0.49786130976608806;0.16575520151500173;0.043470754926658486;0.009801106079136276;0.5236794470698147;0.6670973065209891;0.4221533999642979;0.5532921375349253;0.41092665463901;0.024539019028493453;0.3338058238142903;0.45815435859851256;0.5860279534864057;0.5758418769212339;0.39539949612764763;0.5246619572467212;0.5482328623185018;0.44082458543061975;0.42746128494433777;0.437475378046297;0.4318044397248874;0.3496496851369606;0.01379964038024534;0.016362551986033494;0.01722155602142472;0.017220861870113374;0.003907090226773279;0.0031985329175378673;0.0006615187247757674;0.01293840066706835;0.005290170243843415;0.0043405217094796625;0.006464081181747466;0.006198402389028056;0.022131942191219913;0.007859101089613234;0.02537350836724984;0.020668734768551866;0.01941248269949493;0.045745515094495655;0.0014707630899447597;0.0001140021402825411;0.008836140046484697;0.0031513824647216894;0.003382194589255978;0.026450511967798625;0.0036149243305242944;0.01627722000685819;0.00477937932997286;0.02297657848681002;0.023298118168745288;0.0247335437970612;0.023585512045549765;0.05388721656081525;0.041937273861479316;0.8875629841846908;0.8906860466110395;0.9008669129915401;0.9254878543679188;0.9718367752924156;0.9246325899894826;0.859880782293977;1.0;0.9577828495133897;0.9341907951324948;0.1402752452277981;0.1300931924536126;0.11391216918466213;0.7049953872231732;0.04741645355246036;0.056264557113297836;0.161884071224903;0.73947223053554;0.027410174739168614;0.007400915350574427;0.018112954415298057;0.018619927702839937;0.005853752368355619;0.007107489513542228;0.004454140705132292;0.04688617651628906;0.001645521902964824;0.18158553143372405;0.029517462788930325;0.731045475917224;0.012237287806824907;0.025859928741051304;0.004212566343062265;0.5174931028246536;0.5853726496595975;0.273659080559625;0.490033084907435;0.07648917061353913;0.1985845931167147;0.4112548228114622;0.03876119074136412;0.017308298083373613;0.01934046815404121;0.05668258215826234;0.08418914119506891;0.327745789426101;0.020268591542628646;0.020253187265724438;0.0015483728755762796;0.46430472917652776;0.2516804666899337;0.27572485954180515;0.09016953134003441;0.1062973525465896;0.4906580884758775;0.11461448474025553;0.018112116389469156;0.13929424627691134;0.07097957568874397;0.07596317359267071;0.06906787382964293;0.1553411085439443;0.046845221561773315;0.05901759937177121;0.07506034782228245;0.08726285008478707;0.10904089277463766;0.004482518697190353;0.0055796797763050365;0.013207882184673676;0.09197425810279128;0.0013840342908184602;0.007963034027384162;0.24919461627488637;0.5761418537668108;0.5666716882905096;0.0025372603924201415;0.2494989788018569;0.6439216037737964;0.024838769517749493;0.006356021568837911;0.0133285856532689;0.0;0.4331786006697138;0.4790217483319178;0.540639399449126;0.5310031633627288;0.22734041726978313;0.5226247753204042;0.5586413511734882;0.5183143062986;0.505416525270727;0.509206187561059;0.37501085772895343;0.2937485089354855;0.5510567490444593;0.2966607128660636;0.4575214087099788;0.511973139808529;0.07008136213290295;0.7199140506415457;0.4916815406181837;0.09788407024942464;0.01077177706355582;0.0239903129119177;0.06344615706298468;0.4143529327017659;0.22894297451372192;0.15787395144308558;0.008672477777046947;0.3146390731494562;0.36431823908234595;0.03073409929512032;0.0008808153266927978;0.012604079834118612;0.0966403059535734;0.007537679554436436;0.05290798382079936;0.6716365393077738;0.6741325020726948;0.4981544666564863;0.6763097928226726;0.47302400989330445;0.6297330315919624;0.33784876808511827;0.353414263043253;0.3226724685078504;0.45889098646590615;0.5621808950807933;0.2390676171032796;0.3792661750157453;0.37094865593918924;0.38859710501867817;0.4195211349078388;0.39134624293725806;0.1496880385394091;0.050527707713845356;0.030624451186168865;0.026000444381701276;0.06152933216794801;0.00070193379644329;0.00034868074149426326;0.012735475326198318;0.024611568353016634;0.004829077584336668;0.14916442455290424;0.15114997742788416;0.0034218239290431636;0.6244781270613119;0.03481090482191185;0.05264591971845756;0.019942576649845802;0.38102209802614156;0.028110810886766143;0.13561356057563678;0.015671133132461445;0.16141972761918785;0.007502788564963306;0.0011134369616162436;0.09496242213545389;0.020783899764605297;0.32041164631466373;0.41700916037144026;0.35703372086144775;0.1087064984717196;0.014385057729600274;0.019273962588558843;0.1719068979924493;0.005158742858688211;0.039448719122188954;0.2658853936737036;0.019233398008397556;0.02176432041339757;0.01613929592152367;0.010964322919653846;0.001634591617702959;0.038654201851561786;0.015556038055988956;0.5321294924718586;0.018290441247645332;0.009401148476996517;0.000916308129148224;0.34795861540496703;0.0;0.016852736114244503;0.07146453432275016;0.11465301660193548;0.09742388051937527;0.014101255819572714;0.013383352543760182;0.2845665658145781;0.1294565675583868;0.02988208445477917;0.026390967041114072;0.010410727657757945;0.02244110928131554;0.0014928518700764654;0.22034118657275445;0.0472905732726148;0.25390252283980547;0.01591706466931606;0.14791299383088355;0.01615340310009389;0.007124604653060851;0.00160655212878327;0.037525732466664456;0.0002589960080162723;0.0018167311869346388;0.0031379502467739997;0.09821949625470569;0.3028571297226087;0.638291747175629;0.04180301829033973;0.11214649376482584;0.02355137207087849;0.025619030036064472;0.10567966790743318;0.041215934416371856;0.28413335366852865;0.1498441047448319;0.013739295152983454;0.018042154202789488;0.0025372468499478113;0.002122740059521003;0.022983889874010083;0.014310471047698963;0.3953947170817282;0.06230202853056519;0.05602353051792183;0.007550516777499724;0.16776189316462906;0.028682077832270413;0.02381031735774103;0.48898384141840046;0.6095482645464259;0.662902276670198;0.43778973518715014;0.09954068227964424;0.011718421819346986;0.012933193350807113;0.02056839211178562;0.02247538565706632;0.0027927834482138233;0.0068898391419466316;0.0095021271362604;0.006520708939860266;0.0022684766803193544;0.014854331138310977;0.008759616647830768;0.09068737103456928;0.06798956281304222;0.004547565998620488;0.04156999852829088;0.00016846075743143286;0.008596788976477572;0.12165189997551967;0.03313379487130808;0.00792110444566809;0.021439044009750895;0.020008569970107873;0.005851971391163647;0.013419286771124275;0.021588796948936152;0.007160222462843697;0.0225336820476835;0.041934790100017806;0.0024235081395029803;0.024732953010854018;0.6661770875934726;0.009302009278729408;0.012681101801173877;0.01548532283324097;0.013419066756204636;0.16932890325678907;0.14604624870059757;0.06554174576430633;0.011178436831778764;0.5692412867412506;0.596930236380337;0.12735761683131785;0.1308913620597866
+2,3,7,8-Tetrachlorodibenzo-p-dioxin;0.6867503817282742;0.8172951677014311;0.7202917350347339;0.7897980384537613;0.7907965365322348;0.7807977100935409;0.5848246516891142;0.7986731594332223;0.7991287080498934;0.767743597004928;0.2565122502892084;0.783632163406557;0.47363673899677683;0.8029167946477199;0.8180321782770942;0.8258764732468639;0.7713286498196447;0.7961910623290376;0.8207418621261205;0.8030687851358687;0.7691351268065526;0.7952616413965715;0.7194164106612838;0.7642338117207069;0.7657100556038264;0.0025404334104331882;0.3421062703809915;0.22983286768386305;0.1706771988242221;0.1728762272727629;0.10633278720415937;0.3725292701835366;0.3335798056370842;0.6300129129973295;0.5687390678727201;0.6719824790308112;0.21399062615823417;0.11952216135851541;0.010067643904603404;0.685057456283549;0.3802957613325314;0.6476621449013718;0.23714673452072751;0.007477980396731141;0.0091623808715476;0.006108839371207509;0.007106880347232191;0.006904987726027072;0.006258069888951969;0.5769119742340499;0.48338642982689256;0.1863401156275766;0.054185413306028773;0.006857069591125903;0.9023339425501194;0.669016597285746;0.4251878220188929;0.5432358752656475;0.4022449458240214;0.055018773013572074;0.42494497140670356;0.5150162543129618;0.575792918165559;0.5731831981451596;0.405159799064038;0.5155229034211413;0.538817519178843;0.4271199540665296;0.4162427136108975;0.42428500487697285;0.4146030539296998;0.38047871269961536;0.025973214561687757;0.013974700375376937;0.007398467395906264;0.009823309769773275;0.020971066072691957;0.020633008269922818;0.0003939911624613745;0.014905086952446151;0.04068783959476223;0.036482382680946134;0.004087341339935893;0.002950799415062301;0.015967300955751232;0.0033100555470857106;0.021465806030673645;0.02368227013229106;0.009428422558389988;0.04327746590186219;0.002864892140979864;0.0008404748585508062;0.014341345711601889;0.004967464915087495;0.005980989642013695;0.052224781596068484;0.0073920347774915855;0.010004654460053997;0.008275289813722973;0.015284959094813566;0.026276093128246886;0.0063942458074806785;0.007838083204666472;0.032079785899015285;0.0167940612148648;0.9279142016108699;0.9158628974934325;0.9217025297905151;0.888758287056207;0.9399067477116433;0.8939188381071028;0.831849521103417;0.9577828495133897;1.0;0.9688286377191303;0.14450513360674888;0.1314088994145725;0.13154192480400737;0.6909350482822897;0.04934645206464181;0.05862153821269224;0.14743895970803383;0.6956086779950058;0.01852841138531269;0.010856550881207612;0.022461306666907873;0.015461172185205022;0.019917493947262634;0.002855017441828637;0.0018281070765680122;0.04995576832291177;0.015010462203388798;0.17707414382969466;0.036646067981185484;0.7208906495203196;0.03422747061657329;0.032876341117389504;0.0179471060051221;0.5178040848537272;0.5833397928906837;0.28446500547952225;0.49827562186214197;0.08301565590271591;0.1982053111032716;0.40677712262589444;0.0426210184657113;0.019864549720458695;0.03054175592800591;0.05803967040437664;0.10332347909237853;0.31722157967564496;0.020506880444379337;0.014727080391030664;0.002001763060966556;0.44699671528172763;0.2465072689132672;0.2616614491541619;0.08779685441259936;0.10673953229770522;0.43512917411990204;0.11423585814058576;0.10692659733632263;0.01528772601688573;0.054044640244088976;0.11324269130933372;0.05898518415428738;0.25491831127444664;0.0889662527184018;0.10106656772013844;0.03861821943702561;0.058251928381615886;0.15156304391437364;0.007921017670531272;0.003965266881123259;0.009685625329057302;0.0900167179926565;0.02457735635533037;0.05572946146977537;0.2481048010263526;0.5687371102251533;0.5582670341469959;0.0024892914572681737;0.25023506822419106;0.6328682004047281;0.025760452478029123;0.02168077625516745;0.03249872473042422;0.023117898825706817;0.4257521849391607;0.47177805912569454;0.5341105264557534;0.5204611271006977;0.23413526097290638;0.5138801552028565;0.5340838835653834;0.5148374534086946;0.5021684503677315;0.501478933950814;0.3720637661387315;0.28867880397975554;0.542244033153958;0.294620361634411;0.44982356951239305;0.5030994125303212;0.09003617294085335;0.7070533510604988;0.48951406479956827;0.08875243672969425;0.004510900613349122;0.03857033578331429;0.09408977134177962;0.4183407945938868;0.22110140952373045;0.1700277933193056;0.014813357315070838;0.3109932391293794;0.36799798651457516;0.03352549256007828;0.0472532255152558;0.04707512880962621;0.08955123094364292;0.005594759654112574;0.04314512747642151;0.666091210889659;0.6506441474565301;0.50993095647737;0.6828808752550487;0.54229933731417;0.6100134862524352;0.4049622763220203;0.3991015088274237;0.4043993696510376;0.46420093121360406;0.5532192255532965;0.420351638368162;0.3861225919129466;0.33187461127727613;0.3461071628385588;0.4092849153377089;0.3915939547046192;0.14847865584974915;0.044403260596269485;0.028079319125582827;0.022001018518753725;0.06783550705729283;0.006148098793414666;0.004184089879432621;0.018821098371485042;0.03307957382861465;0.007862762616855867;0.1422656530039711;0.14427620743783198;0.018997076043407366;0.6145160532322348;0.03536943987786888;0.06530115374755607;0.06076398690497259;0.37477757272469503;0.007161464383056757;0.13307426154893853;0.016275818874708213;0.1584866589433234;0.00046791498691260925;0.0020418425123367744;0.09030018826630666;0.0021293401802427387;0.354045517718587;0.39751412978721345;0.3656597390645929;0.10696041432427351;0.013288399500241192;0.017716459799187737;0.1668377061342863;0.0018305780596357605;0.033125768924911314;0.28702793358040396;0.02226978660719234;0.0028314212586244324;0.0005390728083804606;0.0032241558221159598;0.0037441594791986794;0.03361803024822512;0.01650580904068128;0.5187401254324574;0.016974151299596854;0.011992924243926907;0.017837066944499356;0.3411509781178618;0.0005613520880559416;0.017049350716842177;0.06209810805022643;0.12860332516675352;0.07112942393446257;0.014427959953233399;0.0058520379051179225;0.27448484392259404;0.13135942719764718;0.025917322344761927;0.011859719229680502;0.01214429833765204;0.028791235482875294;0.0015210247731489617;0.2170785400680485;0.06512378678269366;0.25141189318840645;0.03549583155405484;0.14811406499201468;0.005277622615331775;0.003525983796831495;0.0055794943465654005;0.038140519878300964;0.002881056058924855;0.0;0.0016625544481827185;0.08949191277568538;0.23959656021807735;0.628090331986662;0.04260676286039312;0.10833464296982455;0.01417979113788541;0.00953721387911804;0.10741581765147158;0.02073372806141359;0.28881664907508;0.13207689508718892;0.010651870014826226;0.03321835534291146;0.012852078411300937;0.007981778236807869;0.014362266300412528;0.013190531929963596;0.38736403563475313;0.05225697599948874;0.045919651561129926;0.0011269751767567396;0.17031218630010186;0.04975790134632776;0.026003328551546648;0.47902574878366083;0.6247481314441147;0.6548287109213581;0.3926399097689414;0.09625447159096749;0.0008498658280444012;0.007853696794471217;0.009005043251727183;0.017891437029105176;0.002485069600424657;0.002702982453817234;0.03630825899061805;0.000592183158232245;0.000727928097399797;0.0103541312672459;0.03772324859245343;0.09748307434657849;0.07630560300809949;0.0032394864257152003;0.037678145313498286;0.001403512231605368;0.018290653332871477;0.12062680904101494;0.03053479425397123;0.04267912513307702;0.009345463754729444;0.004614554272017048;0.008921216439170015;0.0054983167551370515;0.01376387154428638;0.0061790814637479935;0.035364004935166345;0.03915327068284407;0.004945887343517077;0.028808819618381325;0.6555806712907203;0.008869219963027652;0.012225436669650407;0.03836983555686205;0.016180590726298676;0.16681031112581166;0.14200083574739789;0.07185703123241867;0.0011515132609405219;0.5552579707253132;0.5834937617257304;0.1356022158779262;0.14125838887248082
+1,2,3,7,8-Pentachlorodibenzo-p-dioxin;0.6661108156341298;0.7705274172716254;0.6941512144221235;0.7486625671277722;0.7509762424146375;0.7496552121088784;0.5299141124375241;0.7572635506443822;0.7575570540812034;0.7348077602413712;0.24969197232812435;0.7545454855392577;0.44983875902825643;0.7607693275537826;0.7729918037189074;0.7743499422539687;0.7387827773315575;0.7575663294042121;0.7732115092594749;0.7616370180432802;0.7338286410864154;0.7573286133101039;0.6977592827653676;0.7335827677601289;0.7382519171487751;0.004469852093958567;0.3275976143372311;0.22205070734644652;0.1657914469438213;0.16646021331190486;0.10053527591236879;0.4838570693525193;0.35114207587694085;0.5933017440973941;0.6558303181391734;0.6516030195673018;0.20956418814541947;0.12168936938160117;0.009442266314886413;0.7998230448450374;0.36072388296089286;0.6980375227456312;0.38786032132912585;0.024231304332445462;0.00923365523864254;0.006345720550947662;0.006976462496960779;0.0071351872343532454;0.006188183167386409;0.7009263251274928;0.6074389710708643;0.1894745818191733;0.041358881405530824;0.006345154591213525;0.6973034215246307;0.7218375705472734;0.558810857135359;0.6407964723574692;0.5127744489204769;0.22852065585818115;0.41381172092227414;0.5551921603388885;0.688035880560156;0.6730916955025353;0.5455751428329496;0.6117328530449229;0.636930791824445;0.5427746682926113;0.5251130524719124;0.5394679516949457;0.5235491991301935;0.4395820579693442;0.018527502047302326;0.021210681610092416;0.0056670121981491645;0.011719510131924148;0.021036479703884704;0.01988352133857698;0.0033560434962907125;0.012321518292543921;0.012189280897348862;0.011118309234328645;0.0018245418133954318;0.0023215141654180284;0.018842348575947486;0.006004194966203826;0.020535833809710514;0.023759388432078518;0.004509278869256409;0.03071930918126619;0.001484383640433308;7.185525010564898e-05;0.007420238514749825;0.0019886011138769786;0.0024373651965790533;0.026611983162017874;0.03173856970680504;0.00324166793987121;0.002561088354783729;0.01519810392938803;0.022884190388374727;0.003598322813793849;0.004386072345050448;0.02842247769045779;0.015778710959555464;0.9780348978895997;0.9011807321935318;0.9221849309192348;0.8826705502379243;0.9513463112115474;0.9363675165603775;0.8958668387381385;0.9341907951324948;0.9688286377191303;1.0;0.1413366692322766;0.12989215493912207;0.12106094265007897;0.6753396421827964;0.11083416400551033;0.06702700616569904;0.15799245069982076;0.7262492216610862;0.026524572078093816;0.015110432298447572;0.024451694079606748;0.01920349149056471;0.015072655308816983;0.011987391660655142;0.005302957293544773;0.04233771903126251;0.010946189300401612;0.1621149102492415;0.0548420366552615;0.6956859389352126;0.030173685340726272;0.03070943177352112;0.012276028773545623;0.5250191216554755;0.5856449991044776;0.2864680071621794;0.4877484961531751;0.07306958188797101;0.18625853500250306;0.390218005141856;0.035109772263945474;0.017490590871209494;0.01783905920473074;0.06594908095439024;0.13126512518125208;0.31131600922286107;0.013389789018064271;0.011198735051941041;0.000886099332187487;0.44068036017320933;0.2428602016598397;0.2542809228010836;0.08713494309237782;0.10321925133671749;0.3523614566358697;0.11310740194861325;0.1344008729361568;0.014134903504519394;0.06913811738275323;0.18389450808337124;0.047728929638084935;0.2145827846601189;0.11719048286387096;0.12833137103312303;0.03170738428568086;0.059637105575328815;0.10460576606199429;0.007097633067800181;0.0038365876357428857;0.009343675336347553;0.08701439740660274;0.009008058488653894;0.058253287593177834;0.242987970567195;0.5492824534850613;0.5391190306749291;0.0;0.2390492233094453;0.6175011711400816;0.018755344996094502;0.008770729757892707;0.016249198902439446;0.008111249380395466;0.40754138993850103;0.460497218485865;0.5245484932985522;0.5075986940132836;0.22584933556658013;0.5000978529961838;0.5621729424210661;0.4921749529291608;0.479723937195335;0.48155320105889216;0.3670966094765161;0.27695335224391987;0.5210741862374842;0.2855892355686613;0.4316849080881997;0.48906949300012037;0.08662169786388776;0.6867884817257607;0.4904953221010071;0.09647012983806245;0.004254073718890455;0.04350047609524633;0.06500093549125892;0.41266317277725806;0.22975731356568996;0.1552506771798629;0.003489734546984985;0.31601323610775683;0.35562376423984454;0.031356241475220856;0.0019801796765047002;0.02597153911939852;0.09155245909077009;0.0034934132899178635;0.08744122467849877;0.6893116350107733;0.7066734658485399;0.5643676492794566;0.7350951842722021;0.5777368069698294;0.7377923592408722;0.4248047938623613;0.44009623800351133;0.4106403548831542;0.6082859095173649;0.6561277886088596;0.326526570112279;0.4854856757550819;0.4287596579228749;0.42022753674222224;0.4930578646554673;0.4962567952486089;0.14315480813913373;0.04240693347217889;0.02781531262800557;0.04109050534487022;0.06927880801868869;0.006996030062869222;0.008933161211068033;0.01779884656842201;0.028748029472533607;0.006859841695606124;0.14533215754800063;0.14754854238930415;0.02204600384980057;0.6049028867002146;0.044690690885677314;0.07036172046668497;0.014696198483454211;0.3657338308680986;0.004487047350079328;0.13035541152519747;0.0066685520986338636;0.1611040335516881;0.009031072250728465;0.0009139839888036097;0.09365305257555073;0.0022901711054620602;0.370092937822801;0.44022040464056855;0.38194435697992785;0.10353260437792977;0.013788770688091253;0.01707606619014987;0.16282972219937197;0.000739466201981819;0.032412405173809854;0.2601009167812018;0.019067936995098678;0.002137810919029927;0.0005437623788280559;0.017235605683661736;0.00421581805464505;0.04164781709858222;0.006951224440216388;0.507048300024622;0.04404340722370552;0.012033680726790239;0.006209372473681285;0.3715428427839096;0.0037549500312443903;0.026170884848997218;0.07101920477537296;0.16887023413525487;0.06893742079317565;0.027320581718787876;0.0052181499133622244;0.2457745905392873;0.12376044541644564;0.029779409504535018;0.011010210956937376;0.007288236898066936;0.02167645277965616;0.0005485447946038871;0.21047948970961594;0.057291582745189785;0.2320151146787301;0.03636354281854846;0.18455621359356522;0.00439748938653305;0.00379609245579774;0.0013364376175599795;0.03603379742262651;0.0006874734886629881;0.00022428382158415196;0.0018875328552680956;0.08564518764326065;0.24512226301593865;0.6067736436586233;0.04110723474160907;0.10431918274161922;0.008857825050428987;0.010583407875044179;0.10644192997319381;0.024125372269942415;0.284338097274956;0.13031192916588993;0.007925870672904527;0.017197355915258634;0.0057685221200691255;0.01855715331567117;0.02080525364869434;0.015032884714278497;0.3786451700000573;0.04984849135938701;0.043086126995938605;0.000568146520763181;0.17746444691447386;0.08120375771196528;0.02449567133803565;0.46960495216826653;0.5834173117162275;0.6421116654260376;0.44281263665783555;0.09264108560360826;0.001390280950646616;0.004580384589339087;0.12087308779685695;0.11518645311646702;0.0015803084970120865;0.02499275767823007;0.018156102228308595;0.020788386108303945;0.018246634499520548;0.008645396908806502;0.010322307292397135;0.10283030519069411;0.0878079779688946;0.0032649833848031238;0.03364018560900047;0.0005714580285368644;0.00958875234069293;0.12650197864604174;0.0346884182406233;0.027675353212335947;0.011737969922494219;0.007052223046561124;0.007691569437668537;0.0012009154260863907;0.010932469617097523;0.006981435581373277;0.0224160181334347;0.04107406547335018;0.005077826473009016;0.026350483149165;0.6346586203651535;0.008370808024745333;0.011697314510498883;0.03688634340219236;0.013921785542965668;0.16694870032294357;0.1370279802195453;0.07328401625584048;0.0006764633513559211;0.5420375025230294;0.5761122369557875;0.12776071599762592;0.13182958425934505
+2,3,4,5-Tetrabromo-6-chlorotoluene;0.17791954140548696;0.16870704015554056;0.11293282456853238;0.1782300247199617;0.16834241627122687;0.17285081148782572;0.4795997030495204;0.19150176070281005;0.2012994704120228;0.19142467690723858;0.0463628564878341;0.156237646766212;0.5328907071570526;0.19444799888541875;0.18611948232773118;0.23060568481174695;0.13648529197553208;0.16256385033723078;0.1766019731062643;0.16239250571161526;0.17251249155972126;0.1842040466388451;0.1722385756025312;0.15607173606388586;0.15047962956453348;0.00585432323274877;0.24920747485360184;0.030746676089532403;0.027351251397481364;0.09421079586644217;0.025006244936546355;0.09791638436703265;0.20477376520661494;0.47468064969434876;0.11199040113602417;0.1460518031284916;0.04133591815716869;0.021367202044573458;0.0006930640314268574;0.09800188809698007;0.14059877786347819;0.10265701045129355;0.09194411429561135;0.07030791866446165;0.016161187520331535;0.011889941495752614;0.013164774046941089;0.013791499639179809;0.012473395037823234;0.09318686797287054;0.16863033460144164;0.032262559079464535;0.0026960075675123364;0.04538183000538224;0.09202673698542958;0.096771593152303;0.06020557307255452;0.08065187398168944;0.07838127947442387;0.24426346652754014;0.12835629207960386;0.06998619430494771;0.09008551148617987;0.0824776791523016;0.0606800439444546;0.06372141916994889;0.07936578797915202;0.08333026518740383;0.08542027062368637;0.08223442429023915;0.05940840218808955;0.07528220697614407;0.060876789991858055;0.0032842124353529064;0.007869640157221625;0.006649232658093135;0.0020182990752302442;0.0;0.0;0.0028621102036156935;0.13279095973576754;0.11684298782491126;0.00044713679667401576;0.002817228970211387;0.0029177640966618346;0.0009326277929667577;0.0023931084744292963;0.004152057421051753;0.00894218079329897;0.07896969485803879;0.0002149778411071883;0.0018986859001037426;0.05097318408422839;0.0038304548681127623;0.005085269236086142;0.10342762152576689;0.004781555570739467;0.005098463220463303;0.011586376771776692;0.017799171208588593;0.01950609201566165;0.010090414347903238;0.012420044475478544;0.013024068950544865;0.011704052036321973;0.14883416199543603;0.3183048546473545;0.1769618800556118;0.6596072698717467;0.14825758196287103;0.1334629364496567;0.13303411136454876;0.1402752452277981;0.14450513360674888;0.1413366692322766;1.0;0.9481400055432061;0.6384185495985146;0.3121260856748894;0.48652462705326915;0.14601341731429432;0.7856348100385201;0.2838139517374664;0.0895221301170069;0.061097755498868936;0.021639554022522146;0.012915298216707994;0.30582876106985274;0.004672810629878026;0.003967209937536925;0.02461421729578875;0.0006681167468310703;0.4785947111102757;0.01789332809331164;0.10145215490628252;0.13433827561478276;0.001406173408264826;0.002567601039838627;0.07610838876228636;0.0990908041510833;0.2196344396004497;0.06656883227774343;0.06627560052792227;0.1583002018845034;0.3447881189561135;0.0021616174883159265;0.0007845876141745452;0.001853756625030371;0.006357622168444421;0.012396229751370048;0.03778551500271948;0.001227649428119201;0.0038336621299238463;0.001554969393990795;0.16388887123088425;0.03678004936326461;0.04284274769961367;0.014857847662097282;0.018213361768654502;0.09670534089642005;0.024709973730231084;0.07815446767945373;0.04993890525622601;0.022374290073796963;0.07624276874616999;0.11705773653284177;0.06104516843335481;0.03204406133066876;0.03165524222159029;0.042012078290129914;0.07741587719920554;0.3473180985520852;0.037429802006204126;0.09491669797114102;0.04821077054651736;0.02211153959246609;0.011432548342398898;0.011381108960730437;0.06181758095580642;0.3837975832408205;0.39931209155631336;0.00011420588264356838;0.059599938686939996;0.1864251472683222;0.03400638747313372;0.02338534670413038;0.04429313907076471;0.0008536901014292126;0.47101022920566005;0.19406978764265917;0.1469635189244142;0.1027831673862019;0.06131680346073467;0.08702120429713876;0.16125921238741567;0.44844185223982547;0.4520928061234815;0.23398613240622745;0.17103869350413972;0.1118038323707907;0.27318647794553536;0.13307001331094886;0.21834115706853313;0.15040747660343354;0.22893295069045502;0.11988278563853173;0.08548999557926212;0.02389366043376265;0.011917822670816744;0.07390893269940381;0.05289072571600348;0.0704647982629921;0.0586116504929864;0.02280915426420844;0.004450097222823755;0.07470283487029102;0.049529065237916316;0.002152821691962711;0.00015112119806722863;0.030096205278903086;0.014522144963243585;0.0008382247912356414;0.36424676730434524;0.14046124775877533;0.09666352278991734;0.0793306258207024;0.09858507684923382;0.07566721603374603;0.09262747900718563;0.15982391418771982;0.13447208631165505;0.16245043769072148;0.07216315470992629;0.08409804984194647;0.060038309760802405;0.10012544275449602;0.08342722918232595;0.11579182028558525;0.09569471971728413;0.10042807959569539;0.025365944408846507;0.01095971501897153;0.007966312942826763;0.019327752842816535;0.12279183420649607;0.0073479475689863325;0.007989237018392338;0.006907691525585818;0.013605329093212853;0.07893623428857138;0.027897856534221305;0.02745268637079702;0.12078018426433185;0.14512874541523865;0.0792890255973558;0.1251434227611621;0.004514081412295537;0.12825853975315837;0.0011286959245022984;0.022395467564376378;0.006719785265287225;0.019337843617117278;0.0;0.00022884037767503248;0.011719166772851293;0.034980852250880434;0.06622547914347084;0.054393017485105;0.04666462065694085;0.015719546576753448;0.008182163919178245;0.0019598619829723596;0.02684438753489721;0.013003836317987936;0.0036735992305506303;0.05404217723375415;0.09754087863941437;0.04510831563240634;0.032790870472324866;0.004156553392101614;0.008417108866395741;0.010135354576338391;0.006811533663235511;0.10149502827273603;0.0008397060794066175;0.0013820809139701029;0.0027151028780455283;0.08054359261068461;0.0008678752118950573;0.0037345425165052413;0.06963472250620394;0.0217800176147515;0.010849862509633485;0.011242515680104443;0.019176906207252202;0.5335764198155895;0.020800771621319686;0.012917274243721095;0.0038685845913708464;0.002693505804940582;0.004660955610613748;0.0;0.05765508645870092;0.004297717678292548;0.5210430700543739;0.04740684288023635;0.0396289230778017;0.0033025471634791355;0.008112536705307557;0.0044969155351641124;0.013718242455412085;0.0;0.0007033031880892219;0.0048473424686419206;0.015616262239095086;0.045596276654386265;0.09092056660602545;0.008717530181009354;0.02411473351501424;0.0011318459635349745;0.015961650782765742;0.017590504473547673;0.00938096828716539;0.0639343139972691;0.07151264823075364;0.00450473737368677;0.0030861911121916764;0.02545960020487111;0.0015039382308192732;0.00654065381046801;0.0016729180868998341;0.0728776003274257;0.010521373999843854;0.004014718982219521;0.004044927153919817;0.01056645296408686;0.01481539540652368;0.0014759643746042616;0.06689132088609163;0.07264139094651008;0.12549100324953927;0.12033850381447748;0.012934513169628719;0.0005645945488920922;0.06941388618719103;0.0005736495271970322;0.004076286355050705;0.005518213065564286;0.004359848638815669;0.032215145962274795;0.10919410229248044;0.0005514960291386918;0.08426105897705563;0.028197155397009115;0.03342948928937364;0.02696992149487043;0.012205027199947451;0.047316518550622175;0.01990494959955313;0.010571710139700883;0.053427596505369;0.010447552570022799;0.003083315963785094;0.012982124361517255;0.0035845033765840866;0.009778883447259341;0.0011020729413488098;0.01820889620521123;0.00843375136221237;0.01699526715408972;0.010029379602188198;0.0013247757006466898;0.010253920373410884;0.1767310264349111;0.0016847901108566648;0.0037758932292238255;0.055538790898777377;0.0016534372781118946;0.031380479537063605;0.024488156963903517;0.009512022262329962;0.0006814197418999352;0.09810915442754778;0.08844886321275687;0.026918666857023658;0.032214532987350546
+2,3,4,5,6-Pentabromotoluene;0.1586858586171032;0.1506750862542241;0.0998570600071564;0.15854060745503482;0.15003843360010855;0.1529270071034971;0.40940859783638056;0.17011248611712412;0.17806758498085767;0.170296941184408;0.041244736096963996;0.13850883035419873;0.45612558558664984;0.17332415401931814;0.1686451916134904;0.20243042942627396;0.12657865412199124;0.1480394854911902;0.15813928727371362;0.14635159070415435;0.15825788764696577;0.16750638890992903;0.1594958842588412;0.14467017051817946;0.14224118119351575;0.007482860923121891;0.2188288639057912;0.026081505561002458;0.023145145684543632;0.09559942946726233;0.021803991910720077;0.14918493011481346;0.17985431480425096;0.3990861853771312;0.1006109190433658;0.13181359783537744;0.03816900366847553;0.021163364493059503;0.0004997662627441876;0.10880781832536807;0.11617451720802288;0.09935223346318617;0.05743684975026398;0.06919169638789346;0.014573074137126673;0.010641095161667325;0.011585422280398555;0.012031817058009374;0.010721020091888876;0.08865653643202147;0.1156969125603403;0.02917129249732201;0.003275413100757531;0.0567460630033427;0.09465844607761931;0.09556619140576575;0.059928118871431256;0.08347404278512816;0.06344960946566096;0.2691433982755393;0.14282912329735917;0.06703071175952424;0.09039957982938011;0.0823589505102162;0.059201982930190994;0.06397727874681877;0.08239388549291674;0.07074102228982185;0.0725268010295557;0.06830777174026621;0.04378826223652721;0.12399456039703025;0.04852806534556007;0.00476433562722498;0.00854340164501321;0.004504456565583217;0.000996887664553282;0.0003286701506988314;3.7974643104507127e-05;0.0024890834106451993;0.1298282524080058;0.11479176177925134;0.0007281642099322472;0.04057946867334915;0.002438313731835043;0.0003268774855413323;0.002036048137114308;0.0044398139747030664;0.012688978955089612;0.021260111332434314;0.0003508068464440344;0.0028682565788413655;0.05823193352474484;0.007722873562902865;0.010048349320673427;0.10046585371853892;0.004405537484111822;0.009513217583739108;0.02328546614820764;0.029453311251548157;0.030172650029800477;0.018007902059239835;0.022577903350979173;0.018172086188027434;0.02155849369750589;0.20883661343915377;0.1337683152445719;0.15284146867791207;0.14462201522412857;0.1253985280980633;0.1266489108830546;0.19621715888053304;0.1300931924536126;0.1314088994145725;0.12989215493912207;0.9481400055432061;1.0;0.6716915213976146;0.34579247527141826;0.5126646550942392;0.19255248016966905;0.776909758654596;0.3086135734279547;0.3328926456517814;0.01843718191694927;0.01069759329725092;0.009218323550833196;0.2787499813625512;0.005073261887786402;0.003303224000765045;0.026152221487328105;0.00039537804353520836;0.41360732398276534;0.018248622785279747;0.09024233035296703;0.160380565312274;0.001016010074470842;0.0022027098559838382;0.0570300653404897;0.08079546480495933;0.17802350543577006;0.05874990813626671;0.055675820525074464;0.13797567816329032;0.291539591885297;0.0027225491157989554;0.0011181289120078008;0.0008301945783384179;0.005951701716322259;0.01303450199708276;0.03374593444799134;0.0015229314747092402;0.0006729297402153862;0.00014420919027669407;0.1438191743756519;0.03386232689377638;0.04030025740207595;0.014120275608140125;0.017326400312181175;0.07463068320844249;0.023125004520269134;0.07980556860252219;0.03481567229162112;0.01992085573457351;0.036967851482646884;0.07973547823751338;0.09736806569544565;0.017463158254458728;0.01851785090583377;0.07995622078251162;0.0972812382467022;0.29818863653128574;0.021221439936516182;0.07818306719722935;0.056116762412724744;0.02208757044289843;0.010034443839030625;0.015084483274365132;0.057797999115437426;0.33891375840712495;0.3521206585654228;0.00013934382519861557;0.05858472950246195;0.1729207717801333;0.03658210698694213;0.012442819701692111;0.013395883742422192;0.00138908120774916;0.4134491951452951;0.1746494812926311;0.13659823532355836;0.09387605836962534;0.053497183562171084;0.08038417946541383;0.14884735625701168;0.38572906383967687;0.3887617532578334;0.19758726640493057;0.15288132366879265;0.09341454223005348;0.23278817067358126;0.11078316396341405;0.1821319666380236;0.13413919833933236;0.21579812297463774;0.11023088002538187;0.058723779903267194;0.024841623137323656;0.01849646867140743;0.0782662875405604;0.01676718953856903;0.07024038773019264;0.053894597604953826;0.020230342888081808;0.002626097853432832;0.10103041275303157;0.04029921161137677;0.0012524755740732079;0.00035907145551410813;0.004077889623861209;0.011699254536963842;0.0004712188911127877;0.3706095508595521;0.09089483493600796;0.08762085141907551;0.0755016896127999;0.0988203361230603;0.07150847633328059;0.09385395339421841;0.14931409806264065;0.14244675874086185;0.15277896644659317;0.07247058892882886;0.08805551159677416;0.06792119130112885;0.068430007556206;0.1313564333252437;0.09460298965176646;0.08425963431961608;0.067258901417008;0.02413586885900839;0.006125748811867116;0.002140522538707914;0.002349221953970301;0.09855090997325895;0.005210099473284213;0.00849025331569375;0.008237150573144099;0.007775726141388408;0.09016408567941568;0.02804009363926513;0.027587448629129197;0.136374610124291;0.09624623673634193;0.0928075530523746;0.11038733155622472;0.003593041270904639;0.1096775875573842;0.00010814757354142307;0.022654554383973433;0.005536139728345327;0.01755091158611085;0.0;0.006743890524095522;0.01016785936827712;0.0002850489138383012;0.05912592975397215;0.05130264882189061;0.04393218732141962;0.012849328793317504;0.009665764685823166;0.0006768284111558356;0.02524001888979357;0.00018119797873826274;0.005025202858905855;0.058201425154343914;0.08304817252792768;0.00797754532280876;0.002305486134471447;0.00013850863942764782;0.013097066475421365;0.01169938975523423;0.0056174623255374;0.08665135498518955;0.0007177426517845007;0.0011497632062315883;0.0026907850925262998;0.09489325109123192;0.0;0.0010623720296683398;0.07050171403927155;0.014525884844520002;0.010014905289113071;0.005828402171599173;0.016878364166231768;0.45909019885633073;0.018948366926383218;0.014943432992443642;0.006658581312919508;0.0007819763017428082;0.00020066697190489327;0.00011739709167819691;0.05161525395893102;0.0023252476991070287;0.450472132219694;0.03790779694566477;0.02554926583530767;0.005157000912511749;0.007008220331117282;0.0018308110872571086;0.010700829948633769;0.0;0.0007767699304612722;0.0056623204325695915;0.01510336167290813;0.04372432239019041;0.08320452972615307;0.008240028811552804;0.023976099172108137;0.000861897739688727;0.020045289490350914;0.013052320750077147;0.010922892440788309;0.0618592761567306;0.08738444371968407;0.004334579956930014;0.0021770144912154174;0.0009589565617672927;0.0013431394012110342;0.0053992634967939025;0.0007655386347622981;0.06508751111601266;0.008795980675137097;0.0020648656020627347;0.005540352026102676;0.008105287913995271;0.019348339582920537;0.001156149769807195;0.060114160465981725;0.06315045816363253;0.10767085597457901;0.12485121239827451;0.010943826199108636;0.0008019007116213144;0.12371366089814563;0.0007481583795723448;0.004983843721183046;0.01017915929614836;0.007999829658053563;0.012702669544570642;0.12707218396436493;0.0009034037641986057;0.1018355754289416;0.04205368819674272;0.028744234276516383;0.030656755067797702;0.01850414455909881;0.03583913919431852;0.0013239570248162926;0.01036227677437934;0.04773791074527134;0.022706911518457253;0.0021418606924305736;0.015392617001227366;0.003973419118406865;0.014666934020634414;0.0010443122203297485;0.009143435233362796;0.010718558840041094;0.022117626734417254;0.004073836803115681;0.0020615590877913364;0.014086894755005408;0.1574144514006682;0.0016190662717947865;0.004037350925399299;0.07406815540259733;0.0017856296668502627;0.03192301308793015;0.022360885030875407;0.008912047785166959;0.00018653858712344387;0.09109987865101436;0.08236256682057205;0.02265019764397204;0.02012676574352023
+2,3,4,5,6-Pentabromoethylbenzene;0.14069195005702353;0.13238490599983382;0.09328140471999133;0.13882779242852888;0.13177837236884632;0.1368856677513807;0.3515598693446884;0.1501494009809657;0.1579679400462995;0.15617834668591915;0.13009262407516686;0.12199897105830333;0.39105252523581724;0.15262373967182238;0.1475181168059204;0.17682151234636712;0.11164456112140592;0.13002175137465952;0.13871655803077623;0.12866222003481534;0.138600171949285;0.14658748375304237;0.1406454637598471;0.12709093723814163;0.1404708267458987;0.010649502012381372;0.18989150733872054;0.06211651759731946;0.1047743630030514;0.21386469210768455;0.06704385385612559;0.07812813608022956;0.13300612457113747;0.352611022675386;0.08832012365573143;0.11891491578000708;0.06200140409421264;0.1437697201042748;0.0009561248328517459;0.09584686430074389;0.039059732923309096;0.12519344586435857;0.06353249839438985;0.13945459934877943;0.033997069710662874;0.03348627956148918;0.034204253721376296;0.03341688202819725;0.03467168673769028;0.08904526723546552;0.07078342204126424;0.025516523025352674;0.004138435908264453;0.032210430664530304;0.10432786292093095;0.1253001986581744;0.07080484804716909;0.08767668947500563;0.0654871239801699;0.12786068425261554;0.06667546191696919;0.07164465430147349;0.08626437808346217;0.08020809855586292;0.07168733207767872;0.0722098771140764;0.0875559711991621;0.06904284813733387;0.0682249670115491;0.06922487081674004;0.046073489060299885;0.05809323998305933;0.041773263322586164;0.06711762715244585;0.01052092030167777;0.009687107244862709;0.002188702212302996;0.0012545648336408;0.0004644001124789116;0.006253055273571972;0.04724268686088041;0.042283146365012014;0.0021182348932322053;0.0022519965036344783;0.004539136215971488;0.0012658201477066964;0.010564739452864238;0.005930475491876269;0.030721849447642766;0.043150005238613634;0.0015702582558837818;0.010797595158413217;0.052027639725836815;0.012772574215743055;0.015670073622581146;0.032831539630086226;0.02462684700955039;0.009394756853794536;0.028033729306537334;0.030813650098098253;0.03683533145563672;0.023015020185690408;0.027470584363746036;0.01668202147559678;0.030576565816579852;0.1521615394106079;0.14491826020396784;0.14669639278424942;0.12446848932353927;0.2219877716968322;0.11607979661085727;0.1613499636389934;0.11391216918466213;0.13154192480400737;0.12106094265007897;0.6384185495985146;0.6716915213976146;1.0;0.22141103830401448;0.3233484488884311;0.10926149986267154;0.6626498314376049;0.18020812449861875;0.22624908518686115;0.17733927345526854;0.012644162821115449;0.013020773565197801;0.10590903116034323;0.003747576119542332;0.0019024993022681682;0.046917873677819064;0.023559592875818106;0.3551172335673294;0.04469734012783267;0.08796079479573055;0.1013208359333725;0.06450724172825596;0.016133273270058732;0.07461791393814646;0.10225525345689027;0.17325929900616505;0.08362949286963965;0.08117568087240638;0.13381099230388033;0.276505670950565;0.08498188444114682;0.019731638829102366;0.02380670779169589;0.007766039647481847;0.0632879653695855;0.04919269379297544;0.019785823429473624;0.007617351348700823;0.40954450514442176;0.1275666162051834;0.09065489398357796;0.12061031027015251;0.10903941118618232;0.11108294319812986;0.06682651746980597;0.11038081012513382;0.08801057617970612;0.05148062162711956;0.055521261611392946;0.049485571257438236;0.07686709555039993;0.06989434136777373;0.028278015103132197;0.03533553436970824;0.04178448426654443;0.07732586900625281;0.25074294419283855;0.005888284522171379;0.032325226512133994;0.029904379610528255;0.17366520043080477;0.05230447616902382;0.24488482085138163;0.0640317643418642;0.29751845643491676;0.30883450988584793;0.0001221012143233854;0.060434626254389695;0.17555254299204673;0.0429804495286652;0.021984171240240304;0.09666490121290951;0.045279297698313535;0.3618523026254167;0.15429772751550638;0.12261482278215659;0.08248725192406911;0.12192679806367247;0.06592546619726555;0.12132665546124004;0.3348985734326164;0.33809881066111985;0.23078674439516642;0.18410078710378996;0.14861625082074995;0.2534517288509322;0.17065166710955934;0.2213674670977058;0.26181990330096694;0.21787895470408364;0.13114035836488058;0.10597310638837971;0.020871453130936548;0.06463484149539613;0.05487745211195225;0.09405589286976987;0.06272226224619006;0.12198388258396302;0.0694653214119425;0.0029395965212502644;0.07267329132729969;0.05464687615348926;0.007926503917164724;0.005111838346938624;0.01599498518094564;0.08654118490811694;0.0017811562744767533;0.3259724175006234;0.08956928358602977;0.08513390652682987;0.09791565994490457;0.13030131070358236;0.07782735643289314;0.08925570203425212;0.06531666656963317;0.06649395674012373;0.06510679903753018;0.08043475563990346;0.09039888025615309;0.0596286196322879;0.06317549903695895;0.08269192605675256;0.14949605508371325;0.09996619769520071;0.06283817693437665;0.022846868934201466;0.006619045815210061;0.0023910307701207646;0.003588937983478347;0.10313485661716336;0.001780687595558338;0.07018027223989946;0.005938592241521778;0.015006342963202666;0.017488922870041983;0.024627194123230934;0.02426505830180994;0.026821625124854427;0.09538681337013354;0.0864297963464822;0.09753266778740578;0.004641150410418061;0.09608117399127736;0.00203195166793964;0.0757316251446699;0.026078007071763762;0.016555999757715968;0.048032919262085645;0.0013090067697171463;0.04583965842300529;0.00301648355570028;0.06168232463846549;0.07263805136529662;0.08913991121282344;0.011455700153299385;0.008448195843201006;0.0008080970083573516;0.0237049275007353;0.001511886538728275;0.01423387135045354;0.03327096505931976;0.10162528229571562;0.006003577845241434;0.0012732154030761496;0.002112629200236029;0.003910395451599407;0.018415474793780303;0.026159245427595505;0.115373234319438;0.03142486096588198;0.004868702118058621;0.0035464544603048885;0.06186341455651071;0.039874210467947556;0.003524717275849195;0.047846863300837615;0.03691730284652898;0.010112027491605256;0.01285792912937633;0.020901168588205257;0.431601787312444;0.023984554950624282;0.016998002204883886;0.03692057171281039;0.011604678209227236;0.0048739649630275125;0.002179098741830062;0.09049370484681109;0.004419381630206025;0.40275668519785934;0.05007390792990094;0.025261126237523756;0.05727584374928606;0.010424970113579202;0.00261362690103238;0.029224878691356378;0.0014852547862974188;0.04020308495618178;0.04308801127541501;0.01469716322871028;0.10202439281970412;0.12259039217144818;0.058799995857275134;0.022177670500662636;0.00859838103795326;0.06456064009677422;0.012924162293645515;0.01659339565974227;0.046082492370176774;0.05560089765878161;0.005514799686793528;0.008538989471440812;0.0030392712043869527;0.003804222759929906;0.06479387925760333;0.4493975359176224;0.08705311432225186;0.017102109424408492;0.0051120427172392045;0.03307635435344015;0.018222060470330367;0.04188966045420168;0.0026082329790942755;0.05660511958767471;0.06840671437151122;0.10084380217360653;0.10627181406746149;0.042071851137144615;0.0011231224885784124;0.0481968948848673;0.0022861012595599126;0.0053443259529886685;0.014608523039549319;0.012384877398215317;0.007861435143384214;0.06306583394116343;0.002115597088576804;0.015958451451546854;0.030240258650628803;0.04196105395195723;0.02292964876385665;0.006954619237321517;0.04200545824041858;0.0012584296545474492;0.010947115410146811;0.04617448606525579;0.015718807555397667;0.0026633812336943705;0.016357142239836614;0.003927376190753616;0.01699426844248011;0.004478151710315626;0.03708290369924128;0.03589026405025865;0.041515225140797765;0.027354889438086734;0.00803618879071681;0.03762637511843197;0.1360649470157329;0.002301376744334781;0.004503649311913723;0.07569651355915939;0.008804540114862393;0.0326252823811146;0.02465641029312716;0.10292297660832729;0.0013274729761751252;0.08309965229146422;0.08298884594541625;0.06015058597897548;0.04605830867491946
+2,3,5,6-Tetrabromo-p-xylene;0.5405531804919522;0.6185426483436647;0.5587327687871598;0.5961105404451843;0.5981215187174186;0.5854719810876368;0.43721148987933306;0.603996193428559;0.6046831423139586;0.5835034672950435;0.1966662040062292;0.5929737421512734;0.3473042493376911;0.605588484963038;0.6195244887780406;0.6258038141950237;0.5788648960192689;0.602062124265799;0.6206579154639476;0.6067717094041327;0.5790511686544535;0.6030451543967532;0.5436317495438925;0.5785197855711778;0.5813488773679109;0.007644217493960248;0.2519892095017182;0.1691517554746272;0.1310619297453102;0.14191684893776613;0.09382504518767854;0.39933985669778616;0.31378948205444396;0.471272238134284;0.4876233039246876;0.5065341588000002;0.16894603037480585;0.09952745767860446;0.009488663481394592;0.5553380539492333;0.24639128973280458;0.540274391334581;0.23045119889585286;0.08500994264306559;0.07986167458896717;0.0849773024055147;0.08408760931733153;0.08308650084572176;0.08669222683440456;0.5397495242937382;0.44931181535059445;0.13252771950249959;0.008659656644687154;0.034960012426630264;0.4686566176388639;0.5642216658684791;0.3714657306026396;0.48578387115001737;0.3630432060051239;0.11600692458298589;0.297538702575097;0.3906196667815714;0.5002799899985774;0.4885734644671777;0.3423488557082317;0.46146339779391277;0.48262239115223343;0.3927587577889871;0.3765983573912382;0.3916439247279485;0.3918103904305528;0.32304581946236344;0.05768600043632284;0.020134440743230016;0.01605324135764048;0.015932613765155028;0.0040876520440636865;0.0038887104314092842;0.000967037468333477;0.01032177373774013;0.0838507875640059;0.07481373199489931;0.005435548078484714;0.007507046858414392;0.016155701018685183;0.0030108999092062225;0.014039217099978293;0.017250444158067858;0.027800260467159676;0.0160126346916725;0.003364183864778801;0.003135202738075656;0.03999039409559953;0.013234546778936051;0.016295300849517587;0.08267859001817046;0.019687199365222733;0.0065993472518341;0.03331314464639513;0.025652545566929846;0.04296337572824972;0.03104466292578881;0.031593344271348016;0.040584195006960484;0.01695705142621629;0.6837653975458771;0.6461655741932474;0.6815448187015197;0.6801337420237001;0.7656056447645193;0.6967024392677799;0.7012166567064346;0.7049953872231732;0.6909350482822897;0.6753396421827964;0.3121260856748894;0.34579247527141826;0.22141103830401448;1.0;0.18751755041573784;0.18924540265051676;0.19620341313922549;0.8085675350368919;0.04751608483072471;0.221480399318824;0.01958502217344777;0.01652242226540259;0.10585590846561041;0.004235850117112968;0.003330385436650159;0.0926151598111714;0.0369439434487369;0.13245571933444455;0.029857663629248413;0.5380698763704106;0.10730049858471241;0.03755214697253333;0.044306806667548895;0.3926650463623038;0.4510887911243082;0.19057690264764987;0.3756584018157397;0.10017053772187484;0.1509405686328854;0.31650859537065285;0.058936663092051984;0.05496015777253667;0.08528638602685565;0.04418579149848138;0.050066898650595174;0.26305466009894607;0.03946157004460767;0.02617757297050814;0.006106292467852149;0.3506506630427168;0.19883755745474216;0.19658892163895839;0.06592573273899129;0.08798851262589069;0.3258395555935244;0.08500209247028388;0.15290136633905996;0.05075019076290705;0.08486459648322021;0.07435028245381567;0.09117497321795823;0.04114133414282779;0.05624064285539543;0.07890648397988179;0.0344549012608679;0.12182241898694274;0.07821949433716893;0.005999080143118401;0.1092532426563312;0.0356495210905944;0.07201181549774337;0.017475487417123143;0.02270349951541355;0.2008532025192806;0.42872225716442447;0.4199036836437202;0.0;0.20613569327027512;0.4813186825944067;0.02137952481973828;0.01143023697031676;0.019742231780881775;0.017194741491242962;0.3140138000595075;0.3647324420751611;0.42148600100567374;0.3898751542365706;0.1909883538513956;0.39324373760435344;0.5501399930792924;0.37433361270345894;0.36483016886763475;0.38604799867375356;0.2898346941914289;0.2258607266842095;0.41935773846376584;0.22883513945696254;0.3520354657262881;0.38497894600814175;0.0485922552602752;0.5331927284160544;0.3647841500471356;0.08688455063496557;0.005042822522411799;0.22685717703665056;0.074453159222907;0.31737186335536366;0.1758137250370082;0.13047264003361445;0.002590660275412256;0.2539270017514714;0.2568864724430069;0.020314449713260768;0.0027404761690799483;0.005664219906623387;0.07001187526322236;0.0011135491942407818;0.1965491449669957;0.5182131801506547;0.5408968790412865;0.4156212647989768;0.5742560959664845;0.404203684420074;0.54155605586606;0.29946858728120657;0.31617937969763127;0.2859522515219322;0.39958046573504374;0.49237776334372296;0.2145168094826114;0.3351157627612521;0.3336054458924803;0.3988042144857331;0.4187105990419347;0.34577168422526355;0.11255619054950403;0.03812716657977855;0.02257494399719015;0.010348579269033287;0.04629671070125694;0.0007711561384172777;0.0022111041853139606;0.00847708799154883;0.021814650122683847;0.029420425104132755;0.11247437629208089;0.11424583477634417;0.030458477632352574;0.4615771026279692;0.028076934300133537;0.020540881870536414;0.015707095542959952;0.28166694423124133;0.007150772039780095;0.10342508285196866;0.023739185448041975;0.12069456279714025;0.0;0.000733485465322616;0.08805746806622702;0.011990564377419575;0.2705474095413385;0.3657551723031566;0.3074365497817457;0.07936823986011655;0.011464423733284695;0.011898504940254233;0.13482550779748384;0.0068800707929118875;0.02696005683915433;0.19431253142575822;0.019578563611832606;0.023367324437393953;0.0019383346739412807;0.008222250976806018;0.0034298249877001475;0.023840515798903138;0.023663433654897058;0.392977671129911;0.014789848256224014;0.020117117862763705;0.003896214746570924;0.28444959210071874;0.03305200457148652;0.020359352110485042;0.20279784924091185;0.09455319228761873;0.052998295685852084;0.010876184551815498;0.011646595111170305;0.19285023602300894;0.12137373245572072;0.028653142097100827;0.039881011587996465;0.035973602682760224;0.018439353961608028;0.005831754334719712;0.1636845304075559;0.03367572328184185;0.17529418751885906;0.011507958955696744;0.10933842050437095;0.05548253337825741;0.006383307074782173;0.0009690708083003734;0.029396994854131765;0.0051195892175493465;0.020339003767222943;0.02198334594206437;0.07039945939918317;0.19478321441699845;0.48501358626895247;0.0334185402725921;0.08531664189621578;0.0068913843337058975;0.09001873290261025;0.07833563508024845;0.027717944871801067;0.223705179893567;0.31290264790421946;0.015046735102958394;0.01060590208813173;0.007034745338699762;0.010755414923262591;0.01264722743473721;0.008979265456847314;0.30057842305157306;0.04336413090753781;0.041430806106150755;0.0016723147657540973;0.13407075553598438;0.056919633401058926;0.023900100193305355;0.3663232774960777;0.4605350956163791;0.4911210653233369;0.5231971668350215;0.07357420019200334;0.0003968054073008611;0.11112100364027264;0.0002860657892983827;0.0018641251307387847;0.00929100572012323;0.007950968656904837;0.008406756812124673;0.3380109836173163;0.008053957516112861;0.006477097561206529;0.020356738866216445;0.0692121043947871;0.06051356886439149;0.008199909964707392;0.02616101104542216;0.0021206547985569103;0.0038299488786307755;0.0989793380449619;0.009262694856383343;0.00696268054772591;0.013091388470870172;0.0017873587983116552;0.010363702359919805;0.0042015588641338706;0.02241961496801799;0.018788673857346963;0.03693321299563871;0.01456039714371689;0.007558725215613808;0.03240303259057553;0.5017834515077944;0.00958222233823945;0.013227521393459354;0.023616602481702515;0.01645973087745905;0.12696075400546578;0.10712666026254301;0.04934849280272114;0.004683105356559306;0.41803823637949866;0.436818628677691;0.11275621654612689;0.1222732873417201
+Allyl 2,4,6-tribromophenyl ether;0.07245043277341899;0.056637364364725364;0.03773977806603635;0.061099790836218845;0.05828908637174805;0.06151351529385078;0.1599699572467584;0.06250761983138221;0.06579939338563066;0.06656655883790477;0.03599191628305947;0.058931007681022475;0.17474946751047965;0.06396860546534065;0.06319825777762358;0.0756219767494317;0.04784181704407153;0.05594547918237369;0.059308289943135487;0.056406546850442905;0.061746432961837336;0.06127505354695189;0.07386201590210388;0.0545615733008406;0.07267773276531046;0.0440364563004679;0.10653689088624425;0.08977449727576216;0.04475429692102168;0.14435843703685353;0.018836219299926682;0.3842533965835803;0.12355438354992264;0.14725567685415236;0.2389364579334109;0.07372822389392729;0.10539650603045592;0.023537108910281546;0.05354542724696097;0.03278784478793272;0.3211280667387434;0.22270325719030715;0.18895401861048577;0.07461923366004664;0.02116914831577949;0.014778360481695414;0.018052455833849245;0.018992681418738597;0.01677323763419775;0.18298595766442913;0.12190374295715767;0.46500932682555574;0.10613951103254465;0.10573103818829287;0.04224846985955159;0.19435267737664227;0.3675624599214373;0.21130577232050063;0.3043299376159752;0.20368183047706429;0.3412626901455462;0.3097016272071773;0.25469863597250614;0.26805411424339515;0.40487581266372075;0.2374030933263107;0.2086320744690409;0.27361604372363385;0.29997866493212716;0.27221031386368877;0.23813945777265302;0.2856095193058794;0.031315922068458915;0.04833596109417436;0.03914995182129524;0.03566243738686325;0.0179626993380507;0.012114850487800564;0.04195943494433301;0.018393929245713887;0.16966542291098952;0.15493992212984556;0.015284030756866195;0.014751248540607172;0.027528699857414254;0.01871689082072848;0.034735972986952086;0.041398877189956725;0.03893183711649717;0.12665497975364712;0.0086286253771976;0.005116445461790076;0.046576245162216943;0.008921980826277874;0.010067735099906808;0.09036483694871617;0.0164358592557695;0.021730564886705096;0.017117881494256904;0.026898067964685246;0.040172968069351035;0.01719088645840465;0.01942267660998548;0.027723031422534256;0.04665943170440051;0.1299038589360083;0.11338035769028529;0.1243830098893039;0.07220518418222395;0.04944993032019991;0.10639579810067272;0.0534433431807781;0.04741645355246036;0.04934645206464181;0.11083416400551033;0.48652462705326915;0.5126646550942392;0.3233484488884311;0.18751755041573784;1.0;0.6739672992656416;0.3567023184252686;0.14843548947569832;0.09059012471031176;0.028667144986623046;0.030438951707665696;0.019326159017087927;0.16602741692284514;0.015822897147368887;0.015321576406937876;0.051603332103223994;0.156250693738587;0.17830508492822844;0.16227389561149072;0.04205550844393999;0.09857422455068357;0.07398141673449879;0.04629208669086968;0.134452141193894;0.12043193255408122;0.1035944409227391;0.07039489836155156;0.2142816174139706;0.06028285091073476;0.17496887592998595;0.06547733346758133;0.0871620845094507;0.039456528414869345;0.08663623740070857;0.08318531000025416;0.03420414843635511;0.14614882981295613;0.033886221478423594;0.04574698004408617;0.13525281464157815;0.09004117422800238;0.04662542868139495;0.0170141338201592;0.02630089736347197;0.06531232243464342;0.036432098812779166;0.5103853550864584;0.05668638186126333;0.06739650285621361;0.17241091066992187;0.1543116477001667;0.158725722385898;0.1166674474239451;0.12105023249019534;0.1658544154397283;0.23854424210161074;0.18886149611545153;0.03728215529871942;0.09481947964446609;0.09772951160736168;0.01452433872807726;0.0177924142840565;0.05462413962029578;0.03574458344833268;0.13491670009217538;0.13948824185282213;0.00236349339146862;0.05772119627570121;0.07647350028844259;0.05158806261256662;0.09519300188604665;0.03213663192116207;0.018141295019368793;0.16757922735783437;0.07602079477705549;0.07855414218465015;0.04900237785083028;0.07738964911896251;0.038697051502903826;0.12802553009920895;0.14577037961984418;0.1466091780637829;0.11436415521081379;0.13612590791042764;0.0830684832447918;0.12919307733567956;0.09286154431185939;0.11189806132894355;0.06044082098634208;0.10135940653620497;0.05349429740654689;0.19573035423034735;0.03891101073147987;0.03351672313263949;0.08050870285382704;0.17563972810703868;0.05662553000887516;0.1505541899396045;0.08835228171552771;0.1313568025578513;0.043430120964531256;0.05007647632477371;0.06272820037910166;0.005366383509605918;0.012058929933394;0.01752761204255535;0.03680158911044536;0.5613731348896426;0.05518722157939874;0.19739684525956394;0.266021400693435;0.17604966330539648;0.28309779588109696;0.19028053407620044;0.32586180800311;0.3152246635268559;0.33063981282625654;0.23347159876954016;0.12361514145723912;0.24527121932970156;0.2887886061845647;0.19055065437350338;0.19181865087870933;0.2096252458795228;0.2974771086031931;0.03818942485886634;0.0634189285811503;0.043961690456036234;0.04540744367245279;0.05775289140545477;0.006131949068995897;0.0075692765826676466;0.023419003689900693;0.03829402725322305;0.06887843149927686;0.020388875507608567;0.020225057761890514;0.06647842159231039;0.04977062612572263;0.061345973129116445;0.044293520728576154;0.017873091785265544;0.06794720951442693;0.07443783251663633;0.03475544035246417;0.0482666493565206;0.12621955281484706;0.015778358542770606;0.015525090091562119;0.0246870949423706;0.20895934203459757;0.08289138802217798;0.06011320850989406;0.05860935816909407;0.11468208281412959;0.01963588312773531;0.10091255151155704;0.12022755596308504;0.0878121242638196;0.05810212604198554;0.2282564140822971;0.211367050867328;0.017614104889210537;0.028073553021460702;0.01371329250447826;0.023393512010293126;0.027204519835953792;0.04707109565322504;0.13498203111981102;0.023603963221771496;0.009460816897506273;0.041034939946137224;0.05368022836836881;0.0009663916257517324;0.008756575304396415;0.07306341784692713;0.020098516194997928;0.06567576577773851;0.034780895378381305;0.06683997217751786;0.17512623455845705;0.03336032959895931;0.07661792450223967;0.04475207470426536;0.047458071461178385;0.029684351241573606;0.02549311179003836;0.14707828051940353;0.012711487018524632;0.17428473254699187;0.03673715812688659;0.28064051508845145;0.1279731881337825;0.05918002935279983;0.05894546375564218;0.016982355085212234;0.018634497582538913;0.01686332294496885;0.021377328196834425;0.04701741659093624;0.041333899048403296;0.09307624168788396;0.030794300855922434;0.041904462711837835;0.004234394607833006;0.038927524492056456;0.07185119360564927;0.041260408905792925;0.1809569294071358;0.06014936087486826;0.08842139524695593;0.019467494754599166;0.09723823918700313;0.014107972636813876;0.01856399385324441;0.03630311152242209;0.09356463745771762;0.023113130621941622;0.021442832887702115;0.028892094605579524;0.03276809312980655;0.05547213932351929;0.018833331229477713;0.034235814627542376;0.05064876762584849;0.0727000922024504;0.03331553768784081;0.02471693541450448;0.004913999142676613;0.09758443120774353;0.02314790745159217;0.023907452985757728;0.23398044723055766;0.03135619507815683;0.01716249277488785;0.06710138244671134;0.010009045212071091;0.3033854568197331;0.036457146701061524;0.12659029360563312;0.06435224631714943;0.010692840918334282;0.02183862417620935;0.00826064996827278;0.028442037046693847;0.061208588147653474;0.047910855141850395;0.021249799777239658;0.15227166023161418;0.008400122777870304;0.12357134654719024;0.006385360956649166;0.03235699578816412;0.0447211677209042;0.042871002680115226;0.034954515296951795;0.016691815467024244;0.03740517674674272;0.0695020287050327;0.021269304758318824;0.023299508272692157;0.14559778287266956;0.017802812655080196;0.04374174676687671;0.058601984847076856;0.006612545405061869;0.03457324955536141;0.07019672810090268;0.05596319456646535;0.14418807826113927;0.09744508960824408
+2-Bromoallyl(2,4,6-tribromophenyl) ether;0.03851645645447683;0.04565326249115992;0.04084703238994218;0.04368260084304648;0.04376798575323353;0.04322255230704156;0.031241293047803584;0.04521571305366341;0.045363539282778934;0.04224437077543953;0.015773411542796344;0.058555280034003614;0.026510808495707482;0.04474138414184631;0.04598214002476938;0.04622746904920312;0.04245888743970186;0.0440596492912175;0.0458403703386409;0.04456544395321058;0.04213489219712308;0.044010538016109706;0.03927737215414993;0.04368768607809451;0.048404762052993114;0.026859242371923123;0.023145578141408774;0.014167376445037188;0.011944539456031338;0.030714072649130474;0.007570141493430275;0.7304421555805962;0.07416858636013442;0.04073794896106982;0.171666947159338;0.05279370244211842;0.01835584778499799;0.008141215281237365;0.0016488799688737289;0.04020487855188394;0.07508288189451826;0.04496160782674231;0.05660535389743431;0.21995692268461178;0.014793330104322237;0.011166795592529718;0.012952227576885527;0.01807157833815808;0.01230791326037359;0.09602218301422626;0.07309437753206685;0.021911189631854018;0.018463841569892784;0.10656393571116456;0.04842968999241013;0.041297760749965134;0.06731880332165058;0.04858347876682548;0.17600849117639544;0.17725719600149478;0.08726557585752061;0.10520075172285755;0.1312004279168522;0.13144683018517778;0.07966323356767434;0.037987456726051604;0.037444315004860305;0.1477923714184353;0.16049800500019948;0.14603745633288828;0.1267948330593756;0.07714279802505974;0.08158740167450992;0.015650939208715534;0.009609135555971184;0.020672897967260753;0.006747826956252291;0.004433621145352103;0.00011205839543001148;0.005251061255829427;0.10364563197365752;0.09527587437597548;0.008365728625637855;0.008158693556753673;0.01281448591212656;0.002331570119950017;0.00932574426884614;0.009049787064161853;0.016585678149566505;0.04128169834865435;0.0006012981110835204;0.0018846638972858096;0.029825270784831732;0.012449217788278464;0.010846241093857692;0.09820934427274103;0.013489684387234907;0.011136201101818297;0.005065046336787487;0.01936661078914333;0.028718204190582887;0.00463927985403281;0.01291792326078631;0.015202426880910837;0.01554003190789941;0.2000430125466735;0.08028734310708187;0.20835872213802567;0.06054853871289707;0.055145260247291654;0.05181112346918779;0.0509636203669449;0.056264557113297836;0.05862153821269224;0.06702700616569904;0.14601341731429432;0.19255248016966905;0.10926149986267154;0.18924540265051676;0.6739672992656416;1.0;0.07729960156825412;0.14978881010333284;0.09510838715767334;0.03977023916303635;0.015019062401331294;0.01942681707950836;0.06003631106642171;0.012344537961000329;0.014541259882138986;0.04002686133841221;0.010807302676031562;0.012601704001391451;0.009247225474364526;0.04098824310229064;0.08997192261562542;0.011764483963396053;0.014197362747468151;0.04012010836334498;0.04268633642408826;0.01962746142115632;0.03388990397817452;0.013447166073313024;0.024212288493990094;0.032247855144983587;0.16634512548913238;0.015382636939822706;0.006170451474727286;0.005690046525934011;0.008457191852814842;0.024533226080330223;0.01079722653101839;0.0038966305252203393;0.0015082982331010293;0.03482569773529974;0.018997391023376328;0.01613944906048867;0.00609161571138023;0.007150152987161468;0.030213278840068858;0.007949006065739603;0.08266769421946889;0.03135973697011077;0.031102891866608723;0.15084321527344866;0.19430600820341332;0.09895148218102555;0.0759716274909803;0.08292455543315982;0.10625666133784098;0.10450227251963287;0.022039115967657476;0.022358227442407414;0.1260926554353761;0.08498657574631396;0.005334095054914989;0.00019340677909058593;0.05027805629960653;0.016667073714891397;0.03043671717102509;0.030596048158449303;0.0004111861017854725;0.018223572689057263;0.03767177829554918;0.015066716909448746;0.06120794596675631;0.033624936548467536;0.0003048439924265463;0.02267055692019582;0.027272920403272102;0.06012498025156332;0.03883868000068058;0.01821801906654858;0.030456896196031456;0.04954976323985675;0.02528428995484102;0.02458900574969267;0.02790599465510318;0.026599635114054374;0.016638171175141755;0.030546285078815186;0.016449522662346786;0.025080654067898667;0.028802288128870885;0.01972396470409445;0.03873751396551471;0.034769109966097195;0.03806363484100161;0.03051136148541039;0.14433244658741892;0.3577732403100971;0.050997973777094446;0.024759758896444658;0.04301166743214572;0.06477323830820216;0.06926705938240636;0.06515438010363254;0.039285112900066206;0.004350697214892269;0.012648369520622874;0.014478060023978691;0.013060137598916471;0.24321257616000821;0.038111442912572326;0.05890883854200945;0.04234800346610774;0.048326285082759456;0.11140837599884104;0.1520914147998373;0.0834123003988638;0.08794863731709873;0.08863676335208609;0.08680730568153328;0.060333203778778696;0.04558597365340684;0.1897778253328621;0.06514814813761965;0.15632790497318516;0.06821545985703459;0.18372297692606923;0.01489376619628915;0.004843825165710379;0.005836847613542058;0.039967510347624635;0.009320698996119725;0.00015518354575827956;0.0034599152882956244;0.0016106260384165995;0.006436712768678362;0.049423931324348816;0.01528698205974049;0.016243312677838934;0.09580154299916978;0.04167466280212974;0.005551429671828837;0.00390726796778677;0.002836023640266123;0.021742715022841922;0.05658432885869953;0.013315786645006352;0.033082910898071895;0.011298589497795133;0.0;0.003571925990231622;0.010111804667464737;0.008574736035076164;0.1886194002049703;0.050573461122859674;0.04471402051309637;0.006469989211331926;0.006619635986240232;0.001437915669977398;0.010569038885258727;0.008135674174016963;0.015600370641487844;0.017933710923418018;0.11753154768626944;0.010957004743624725;0.051077692160247955;0.0018753616903886658;0.002999079187489564;0.008974532599869427;0.03254269547163108;0.03397091191464721;0.004315387348482375;0.003469962546744698;0.03587932711715667;0.03770769160675178;0.0;0.05498564949392417;0.1609238090959484;0.014711747053731572;0.00381762553055522;0.003069305518765826;0.031864873545201;0.012412588591815796;0.007168510475811149;0.18790285160614376;0.021986775151885792;0.0231176568494744;0.008214410665178157;0.0022160203415762005;0.012162071351602704;0.004509389548554263;0.010670730259033374;0.0041829761905073665;0.012886321783781995;0.056801487219871216;0.005300934179559429;0.006530321240872293;0.0028044448984868137;0.01086364672618289;0.0;0.00026648495220197655;0.015289840072726471;0.01682782065664611;0.19619434934071894;0.003202876002754131;0.018956236995166856;0.015643557507533313;0.008795752388668985;0.10453350186878468;0.018126278929332832;0.13738300413759144;0.1371866313996445;0.010362309338479623;0.0064679976076261365;0.062153352965131886;0.005728236727734699;0.002718923037373684;0.004112818931524541;0.022838126715091445;0.021900147933343606;0.030984092512836386;0.014643123944063719;0.019629844111961184;0.03873709247271313;0.010394344999736144;0.030859225387454954;0.036882835593054164;0.04769977804555322;0.0611752093473406;0.006396687631591243;0.0007825128807375291;0.11625343707049388;0.0011274217200983937;0.001477584996101764;0.022206428801936892;0.017721858744835037;0.02135965041559068;0.06500703154364967;0.007675463020462753;0.009518999719340806;0.07427555612120583;0.06335735673566634;0.05084036820505784;0.004342760747411572;0.006970935438810545;0.008829961533449062;0.0035421918607036716;0.05613611170822883;0.02119939134598829;0.0027638012141249103;0.009997933718564134;0.004216207953487697;0.008369793990168182;0.002416694116100867;0.020726156649920852;0.018935230932231994;0.018336587822755202;0.026310843622270094;0.0030729341959017677;0.018914022360878774;0.03929590704240868;0.006175557247559384;0.007221926771996174;0.011871781420865249;0.003526485282877213;0.012447702651889948;0.011145329884518471;0.0036639448741023293;0.0008903209699612992;0.033197200027033254;0.03544343339158549;0.016552435532990246;0.018402489679890496
+Pentabromobenzene;0.20593494644299837;0.1952755999867429;0.12857614284414112;0.20299554237413583;0.19183595455460795;0.19481614243888526;0.538805217429124;0.2176199759876886;0.2288849140122484;0.22126495928039513;0.0533133453705645;0.17945776971715563;0.6039068796976274;0.22537924007314586;0.21671428829519596;0.26269983435260635;0.16329127543552313;0.19170887510313853;0.2051268059760523;0.1895819132725283;0.205466650075164;0.2175011000466843;0.20944225376751466;0.18723552891642706;0.18271652121336449;0.0034648100957310017;0.3183130934189611;0.03601576238006848;0.03307146352688798;0.13288504791208883;0.03443381962557883;0.09030925951479919;0.05086772412892098;0.5248552361452313;0.1069380146403332;0.17288287659233553;0.05832641046133508;0.0320229622801019;0.004010762095052855;0.12247734637580801;0.03367749443521577;0.11890942575226907;0.05896919739917137;0.11043574877755821;0.0049426418890493465;0.005097729489636442;0.005798700321128313;0.005365283525239622;0.006327041909000604;0.10598826240612273;0.07451192947454366;0.03201864502588455;0.0005535143713051427;0.027995765268859014;0.10849698800824346;0.11677194930127525;0.07069500408362128;0.10324385303322375;0.07924847752562086;0.043965844334419975;0.0681319868607534;0.08317173364080917;0.11403695700623923;0.10389344306705216;0.07212356946371425;0.07883636259871386;0.10213720153421482;0.0856766913162256;0.08704887072478533;0.08433865746927326;0.05299898936273879;0.05593382538151833;0.04914335312053673;0.018246183746061094;0.010933900785130643;0.006201595738786273;0.003951920468995811;0.006454453341730708;8.565578694400239e-05;0.0025279981534280824;0.030440481774252962;0.027615080324197665;0.006699730931927866;0.006418380813563241;0.004189447371405922;0.001998634013350242;0.03278901947347194;0.010306064988971783;0.00822238122653188;0.004132471289777134;0.000734775839536866;0.0002676456274027626;0.033998232008592956;0.0011855105939532337;0.001290693668247303;0.025735565676563023;0.0165787940711204;0.008813202084742764;0.00232828075277704;0.00889903200632396;0.016886973053284907;0.00042523453532554456;0.003969527607997922;0.006244180378349936;0.005381748267530823;0.14625454839116825;0.15855397707451735;0.18145191653518175;0.15706827752390734;0.15323683530014984;0.15996118392135772;0.15369429622329495;0.161884071224903;0.14743895970803383;0.15799245069982076;0.7856348100385201;0.776909758654596;0.6626498314376049;0.19620341313922549;0.3567023184252686;0.07729960156825412;1.0;0.2842678127768835;0.10823489306579044;0.21361662483029512;0.04611241764025998;0.044968421247982074;0.07729789919173576;0.0516595564199906;0.05653808823466896;0.05306173136998316;0.0034031373915765386;0.5645569508084761;0.02389811587578694;0.11602474855661872;0.034428643559263034;0.006783643313130197;0.012366820608821038;0.0806780663051938;0.10898310523880496;0.2459421760435674;0.0845729827589662;0.08504152076275587;0.20781589451508758;0.39492103576768045;0.039107798457090365;0.004596321287239871;0.0015329895384992467;0.011891899737891046;0.01975037148327499;0.05099154010861807;0.018779604244530578;0.011622811565215625;0.003898631371541636;0.19259244298987116;0.05296764162967644;0.05252550448198059;0.018387281588605683;0.022656323657670646;0.09745933106968252;0.030148389641688273;0.028716481653275894;0.03570107049870781;0.04391176274404277;0.03845521546178681;0.1201958719752124;0.02857854889396483;0.028232733683730138;0.02888235651832776;0.013676720147434122;0.022029335572044145;0.3868710384831955;0.002784515991478511;0.02010028342262528;0.027114100941484778;0.02837483771577445;0.013097279503552639;0.011373586287436756;0.08089360955734892;0.44954301716759126;0.469762341375832;0.00031430459979117794;0.07374995465898261;0.2271021107095182;0.033412523726977804;0.007205016705799346;0.004593079754250438;0.0013013597347541496;0.5321654305980418;0.22592302259237845;0.16287453685183914;0.12081790622814488;0.05246202947342778;0.09132791660166474;0.16291556853029174;0.5076938031508171;0.512053960141453;0.2593015484819754;0.18498007755088477;0.11894226494801331;0.3032326471347577;0.14371360390516;0.23727077774056132;0.17464141362048946;0.2749620619804154;0.1425608290839554;0.07782587526909406;0.02238466512999682;0.008373048624818748;0.02591079048226945;0.0099206453773648;0.08410857237918198;0.07158903219617192;0.02987136518171092;0.002809674980953954;0.06093813107888891;0.059191143623290095;0.006772727084465337;0.0031972638804183637;0.007570430669047868;0.01312225351446391;0.001906889350785937;0.36789696257885296;0.11140384598049477;0.10643406749052148;0.08807033390102507;0.11904167474816083;0.08737802236831058;0.11506506070714803;0.06793719144053899;0.0694267762526937;0.06369830447467634;0.0843762210319238;0.10486264762660946;0.09795789939938616;0.07347615570478414;0.08335325881044402;0.08147522184271537;0.09308663829613036;0.07454809089334845;0.03678734936176751;0.00931175831212071;0.005042130099697149;0.002524889415678958;0.11254715444127783;0.0005245801987997507;0.0013523618542972933;0.0073691075165338;0.008317110470861755;0.01244214724906198;0.03517644414906008;0.03458475291201686;0.012413063182727287;0.1277540527048932;0.11845448393278123;0.15075885484430152;0.006615344699278637;0.1437641843861717;0.0008067359414970722;0.019269936089658816;0.00629008820456851;0.02263104242292194;0.0;0.0004445354506049087;0.014921082472369831;0.0011594953360574796;0.05481420490804222;0.06402160233440196;0.06958083330325468;0.016363865954625204;0.009206890801666593;0.0012087656324359717;0.03227541692822211;0.0016355308269417957;0.0067111827076901135;0.045258593000498545;0.08548907050867906;0.0015718748817705893;0.004462207928564784;0.0038665458892809135;0.0038312066715314778;0.029235679207808254;0.006668915541200197;0.11211533450985965;0.0018154742553925744;0.0023592371962521705;0.003063802528402544;0.07351010943388123;0.0;0.0016923384045640464;0.01750043683368545;0.016970736774922307;0.012886627678043057;0.003283362071396032;0.026057034363127562;0.608292670238309;0.024668842395539098;0.017857281635462338;0.0008022502898568733;0.013478839906069694;0.0011775151085628337;0.0013584966502157095;0.06472664130063402;0.004335827142295331;0.5978937440229395;0.050785714943089484;0.02595959732870104;0.008948017493687021;0.011739029665949852;0.012574749583480123;0.012529071957207063;0.0005848673647401701;0.000574246419166925;0.00437096341540673;0.024305744597378304;0.05711074623038615;0.10613817598226025;0.005415065945298255;0.031011007009604262;0.0003676800970936629;0.01670588330848037;0.016637718397720543;0.027160175503660254;0.04261421444260489;0.06116924550558054;0.00662586064394396;0.008858843090858522;0.000592911819559954;0.006850689937589485;0.0059835645183025695;0.0008680008999335353;0.08296006164424125;0.022774064358898734;0.007414938122940614;0.014694314245687354;0.00902493667319563;0.038364905317827304;0.007589102064989225;0.07803452056682267;0.07933578565677318;0.13545027036109616;0.09773500388550141;0.019224144257985055;0.0008253825660520843;0.02593709682399356;6.547552409404436e-05;0.003553716416889802;0.00173816956041958;0.003743257346583017;0.007632275242910947;0.04418574557955958;0.0041632119176676875;0.006519602243349543;0.0030343351187819573;0.02894518910679382;0.021375416044794565;0.007025974663177661;0.04583738739663843;0.00022690029080370115;0.00833942193898682;0.03879021305362977;0.0015438861945108124;0.0006824709857685739;0.010870220929324877;0.0010344494050787186;0.0061615990118958795;0.0032320348012703742;0.012165206165778975;0.012753273393672224;0.010484410975626812;0.0028303945597840433;0.0033613701644952397;0.009866356283612557;0.19106891344744403;0.0004553121347076556;0.0022426480120295283;0.04429931080543677;0.002627900607393009;0.04069187651140883;0.032283465145927843;0.011823115018756691;0.0028733599149782115;0.12065975078775967;0.10921734123726999;0.0428072954615992;0.044488805746980074
+Hexabromobenzene;0.5606464812939403;0.6325282615107183;0.5720942620292649;0.6008977100471192;0.601462596289001;0.5758926282519476;0.4467672993820425;0.6086164433830977;0.6096053410781256;0.5916809402156824;0.19040729687406224;0.5962067941661419;0.34178023809978336;0.6145745205115158;0.631526330540865;0.6414823398956578;0.5816678231663887;0.6115456055615536;0.6348597325802645;0.6177277377043562;0.5854861454884159;0.6134626759467221;0.5424415468335926;0.5845411644910632;0.5906344695029775;0.009236644745967276;0.24848525129163393;0.1615453801422173;0.12438046920220464;0.12262642356463317;0.07469917643681778;0.4567225098417834;0.3084684726665182;0.47351211287334816;0.5075988281079175;0.4982041117700861;0.15390983244961978;0.09537326785006985;0.007416783535768946;0.5915398678661111;0.2781905013927921;0.5516793681699759;0.2655975412964243;0.1665699841847384;0.004942605465788708;0.0052057644156976845;0.005486299349268789;0.005030287295209158;0.005327362444425788;0.572558057976932;0.4977186582309372;0.13834669077226164;0.004682464678665661;0.04273147572932268;0.48047290502814155;0.5752944504492371;0.3961630351478442;0.5188552831764411;0.39332865002895984;0.17065161019986103;0.32491807190708427;0.40512723552077734;0.5262340360781669;0.512520118905899;0.3617277498226523;0.49421843072931404;0.5162107631050228;0.4273552887542626;0.41001744234172866;0.425796304302807;0.4294927346687541;0.3618270917035009;0.013154827526334092;0.012041809806502412;0.0037876428725713736;0.005206214255677529;0.001147570154088443;0.0003571043133160069;4.125993437621796e-05;0.0081814215301228;0.08349896283527501;0.07342770888669674;0.0005065970343326487;0.0005007483256693379;0.010816791084425716;0.000803966010924252;0.017515148995579037;0.014474937880375977;0.016036578757084717;0.02844980184610994;0.00032250970513123813;7.90318735505107e-05;0.007044016224951397;0.0007059391109103665;0.0008424385244970007;0.08692119719379704;0.0015435806909529684;0.001812505171435427;0.0010554996233295962;0.01047937789842924;0.011607255629620094;0.0008509107746765086;0.002175419166581933;0.021192671346242947;0.013549222622561806;0.695755258899177;0.7016828329809796;0.7360699670215134;0.7420129897847973;0.7419404943618233;0.7360704995471463;0.6975724921932204;0.73947223053554;0.6956086779950058;0.7262492216610862;0.2838139517374664;0.3086135734279547;0.18020812449861875;0.8085675350368919;0.14843548947569832;0.14978881010333284;0.2842678127768835;1.0;0.11994420256897839;0.06287509917097057;0.046252539962658844;0.056954070907438537;0.11316365133561263;0.002716074650813406;0.0020451487209840876;0.06121370068932335;0.00017637289330648642;0.11103514448459532;0.017563700602863764;0.533998997544429;0.09481431347623487;0.01782112430948334;0.00046738182558396003;0.3637089946669778;0.423544839084694;0.18084830038810926;0.3408527239883082;0.05325519087870755;0.14133517316166833;0.2845150737891316;0.029387109123428456;0.009009546015606822;0.013736463861151502;0.038740365025188996;0.044345349562830746;0.24741101323540218;0.009822994215753847;0.007450057946092934;0.00015668512567423515;0.3290812070783016;0.17679494761198605;0.19404897898058934;0.0647917505818276;0.07773700737099845;0.3576330488984601;0.08276749833135365;0.058359418922435013;0.031050153624435823;0.0887339305464156;0.0551075481231837;0.06255393140198363;0.021989500876080457;0.03971187968787845;0.05105610988746912;0.011385470278679928;0.04667083261124519;0.07333379520084597;0.01765724520596899;0.058885195898639484;0.044798945536735316;0.06633972839804093;0.0008100069093410112;0.01172388468100829;0.18307149747574725;0.41256546629644336;0.40531010820550567;0.00015139884442373313;0.18113589448379733;0.46884812653917407;0.012108226911615274;0.01770129200365164;0.029838409238714017;0.0009308788266941746;0.3033178491558332;0.35398065984005755;0.40589925961792006;0.387539435156658;0.16833154800186814;0.386468406713163;0.47422085007542525;0.36667581962083046;0.3573018301435468;0.38920905640851067;0.2933500984089441;0.2281582782931661;0.42371159632088307;0.23119403088535656;0.3579865778686933;0.390534892804471;0.0421288787142245;0.5292476920342187;0.34655958953697447;0.07425915833092553;0.013330142204634422;0.07206475231505288;0.09831971059757627;0.31510689032866335;0.17545973215917535;0.12393817091031678;0.001862645828177419;0.2951398319606102;0.26171639285212206;0.016308475395705714;0.0014016700176120674;0.010111356557213588;0.06724142733420943;0.00035893592087965883;0.12444394607256806;0.5160301806845128;0.5495297587564224;0.4211533039137385;0.5854295327003041;0.4178814921454458;0.5716490502542785;0.33675844915855246;0.35165724422784966;0.318495265640518;0.42511313955780383;0.5269892734947815;0.3036725123129877;0.360739460152044;0.3613471464704674;0.36188558953705335;0.4157947390771867;0.37435064211246316;0.10760308956510742;0.032539389029459694;0.020216550841745642;0.009305955863033899;0.037335458652378854;0.0;0.0015858645004752684;0.009215172024900091;0.014372227544040748;0.015919737304630283;0.11373077595657867;0.1155342263004315;0.014588630858750238;0.4647681157629599;0.017972947781652617;0.020721033038179907;0.01026562905702258;0.27715682484081794;0.00011750371886277763;0.09956647754709874;0.0031623836481299923;0.11725079187635577;0.0;0.0010393167828983549;0.07682654828888542;0.000309709282760438;0.2608239418311685;0.33872452451681845;0.2882425897932658;0.07893190765591247;0.011702786525219935;0.011871775245614852;0.12328430532268647;0.0001968739163991438;0.022082656180845924;0.19340083400915903;0.02788486267006693;0.005981180324975297;0.0007333012710722572;0.00015049140442469888;0.001226426620501925;0.02818842069444342;0.003188585928954778;0.38833452721517087;0.011153381806700323;0.00635608460481663;0.0027094631020905444;0.2825130782049214;0.00018506588452201983;0.011920066879377196;0.07969603203530697;0.09254989944106697;0.052660173163616;0.009566361341414378;0.0030362313001806905;0.18963354885528436;0.0950990908130314;0.02032929985862671;0.007857333534208179;0.006512522444353401;0.0008954518877829694;0.00012755343836335747;0.16106239928112934;0.03369885024119358;0.16679687492253367;0.009493706748973907;0.10889298540318597;0.006371471243929727;0.0021226874685894882;0.0009774124682704049;0.02755513218302174;0.0;0.0006247220950920704;0.0025001264940973265;0.06568853348392771;0.18787300600723325;0.46237818333436287;0.03221180964623913;0.07992325962762431;0.00044738016593177677;0.026259583511235758;0.07818979524484142;0.01609487191883321;0.21089935396168497;0.16194235606883675;0.00983956215878118;0.01953704221592342;0.0003206241668877434;0.0015250482449410288;0.008189021490740613;0.0020321119349022156;0.29081516133676777;0.03766224994364933;0.03295728283043294;0.012430028332909107;0.11923526317087586;0.040719140344282305;0.018684292768212978;0.36200177494074787;0.45044306021461294;0.48810613131765107;0.3780123339024226;0.07071120678714615;0.0006705673215174459;0.16641964253683872;0.0;0.0016992741880522575;0.012410715850163321;0.010473354678627249;0.012031040507841184;0.10745356136302009;0.0005467419276434734;0.017563045455100176;0.002262107755974287;0.06352966334272128;0.06970700805002455;0.003961384745749645;0.021777162770201055;0.00017965209255000301;0.002888692960426729;0.104695664444693;0.002010942671084281;0.0013331623676002312;0.00607052830978557;0.0009160663189320552;0.004685688767148245;0.0016402301318358388;0.011874101228066198;0.00695096819197195;0.017103277731875966;0.004258735564176695;0.001202162551348789;0.014893731827734662;0.48768646885660055;0.006496178808532488;0.009525689901417557;0.044344543482892095;0.009737839354768086;0.11951684165836067;0.09940596637509412;0.04218467248050592;0.00020267655556800276;0.4082978257566834;0.4301865228212249;0.08745434303337973;0.09091203366050134
+2,3,4,5,6-Pentabromobenzyl alcohol;0.00430416475627469;0.009424452128430301;0.01219403549792076;0.006702081832443981;0.0059112751744416075;0.009021690435650678;0.011434981290701453;0.012022006016125247;0.012401932059545342;0.008248837200308666;0.05466448890873606;0.0065261595165559865;0.008072717951314924;0.005739483509526549;0.00879036182068499;0.009430328976875181;0.005531731974476066;0.0076100970754983755;0.009695647108775272;0.008164261439076368;0.005392617833331587;0.005944804856938285;0.01012257057125572;0.004001914329096438;0.03440572528284229;0.027094968668575373;0.023941419519413757;0.04869838960624251;0.06322691044065896;0.060379554084759916;0.04511527751771763;0.05623248981144288;0.07526667232903157;0.01964740916208163;0.026214584675972305;0.005040411926024771;0.05507792694837487;0.07623798344950272;0.0032548867879928166;0.0249877710939932;0.03660483679270937;0.01541191187685561;0.04791808698478725;0.025747192699595425;0.012262357273522585;0.008760562119023827;0.01046562507941332;0.00996361130610598;0.009796899504540914;0.02572514538163891;0.0329504355974354;0.009398990332301894;0.016285064648905157;0.020402276449775488;0.02370996900514459;0.012608391526746742;0.019329724430575457;0.014258086613804823;0.02254790300437842;0.025090593506410918;0.04815968083776777;0.014432751551682848;0.01602724869457093;0.01115142172572199;0.02160408179980525;0.014775237284894601;0.01493809290251966;0.020501811676557433;0.015541331577181931;0.020962956439831582;0.011777021189728903;0.03673160160065266;0.01936161195516636;0.024518027372892905;0.04811790863214654;0.029771185278717905;0.008728069908652039;0.008301984713432728;0.021895455761298425;0.040026578322620944;0.027349893004651172;0.023681663930256214;0.020819715175292887;0.019470628614303948;0.014996987765673412;0.01285809673834077;0.01870836489324554;0.016766339931462232;0.054980781907146004;0.03633265872288781;0.010021773150355965;0.004802289120991642;0.028132061541118483;0.024439724419784647;0.027810155705646367;0.02696935048162626;0.0156866525690896;0.026123406944190963;0.03658446262326601;0.049687313166271944;0.04575229726789696;0.028816020905335252;0.0415334791476045;0.03153587381554866;0.04985600684691138;0.11416976376435291;0.03353367364895772;0.08259763077034062;0.04010921135657544;0.02139672843166496;0.01758118592865748;0.1201387840597932;0.027410174739168614;0.01852841138531269;0.026524572078093816;0.0895221301170069;0.3328926456517814;0.22624908518686115;0.04751608483072471;0.09059012471031176;0.09510838715767334;0.10823489306579044;0.11994420256897839;1.0;0.07803148865431674;0.012912821280784477;0.015915787967561493;0.03714255181934098;0.031860701936984454;0.029193689396334693;0.05384650331114639;0.01548791133926372;0.00941267157117969;0.04928742325214156;0.00571784449303852;0.044780085940736514;0.04925743337262601;0.02145083309303055;0.04109422635487364;0.046556763511018465;0.0419116423143361;0.03057265594413441;0.021565727298206622;0.01891203107518102;0.02203343611195741;0.0444802441891419;0.014739048045225389;0.0020456982894000524;0.03836311990781907;0.055902678754392136;0.0043528111287081915;0.02073188286721903;0.019887179381809082;0.09331929796819424;0.02664867625517526;0.06935008889927691;0.05367961459939919;0.06492935247814545;0.06334402481538152;0.016928697457543954;0.06942563061135971;0.028466029113149462;0.0551426161416426;0.035870743449211644;0.05029090161076999;0.05198398842925188;0.09774634062368322;0.040247297843283035;0.04307715500535873;0.07189618632234052;0.10997268565153417;0.02625014697652299;0.00692602400651417;0.0301390464430609;0.02406015655054647;0.07075640547094827;0.0020867597582751463;0.06144927478530079;0.02240230226239;0.00815104184741388;0.009587320572132086;0.0009993937775742141;0.013863324518185963;0.025903128863347696;0.08396414891679659;0.016791377970561582;0.02302363223930066;0.004430541501757015;0.028658610082281204;0.012377355213256957;0.02692071734810355;0.010298399061677305;0.040809804334575844;0.006154964587365114;0.06716352121390733;0.007281331223400029;0.006235541172755561;0.05305739219129225;0.13426654069134916;0.06126404920228475;0.04790107176227535;0.05670746748926343;0.054298799740759275;0.05912085026843794;0.013693956341469;0.01012355057311791;0.05178786390407354;0.02726727046381159;0.021139051921528627;0.0248868635877688;0.02468966316994073;0.007365175251589271;0.08440242974504392;0.01085407727077765;0.025224584626779973;0.007930523600430199;0.024848708154832266;0.024775471629965348;0.005676792890143166;0.009282263094268517;0.07348419754021418;0.006590596703634155;0.08379903744604296;0.027698469102949874;0.019407042689565196;0.0213878289764681;0.014048407488483;0.01989633934306914;0.01261889148581335;0.056485568080717106;0.04534166306606567;0.05849315007402795;0.021482023864072077;0.015500205633417665;0.06820245075253735;0.021011230741407972;0.05976069787553841;0.0716567239865811;0.045946072075367196;0.01933927617239673;0.012416902220052924;0.029841853146816977;0.028389211951059874;0.01715936488446378;0.07617194005170612;0.008698989158311231;0.012408579498494821;0.024590724564393165;0.02826975404519318;0.010668969162014128;0.00753544206149035;0.00743472450628963;0.02670593668223297;0.024164756707825304;0.03258979170777611;0.017811996733395015;0.031371474886360065;0.00699240726148999;0.006831902587816934;0.07321681912898996;0.06996923421476337;0.004978010438420018;0.010892702337799673;0.005594857062771655;0.014001851490736907;0.11364609185858081;0.0836296522790351;0.010675326289633068;0.03950888656003556;0.021663510606889914;0.026059124110233776;0.025957592038124543;0.02170027876321261;0.03156654245195483;0.008970941400099325;0.02053055507615433;0.019396128186632597;0.08111744211227376;0.04815892703083853;0.011350060054776548;0.006654640785262833;0.03544987023171773;0.07003132621519899;0.045911559299046285;0.022769380584763566;0.01139089131896542;0.01591981274896756;0.019314296434145686;0.0007389347970291023;0.014983904173023078;0.02558058533338279;0.05392621262253288;0.00864756420618769;0.03842443441873587;0.0055069317996568985;0.011682478088412006;0.011619357346410874;0.05309221212109531;0.014996704898596263;0.020037323118977105;0.0233946090400095;0.012964469016640503;0.042425477771813526;0.03492668543966333;0.0047226248288198755;0.007657143690688874;0.008869170671191655;0.017852894949979478;0.009723104839948522;0.011049900140277609;0.029699541037290382;0.024616134212209123;0.01753639824471991;0.027981942458132316;0.027731456805408745;0.051538508376749975;0.053965792655110235;0.0554885418647524;0.02186940463090357;0.006460514466113689;0.036106602037133236;0.021383432820707777;0.05569050659641143;0.017755652076373796;0.057661492117530994;0.017153084837417003;0.006121554402325273;0.035736968468090276;0.02092328998975124;0.05664713541013727;0.09934167383765731;0.03326727836370033;0.021560411164091332;0.01006363289243744;0.01988644741535505;0.02068547077703131;0.09800576672482658;0.007011419115073392;0.025166506600148558;0.01758102439916183;0.05457344599728369;0.02754349556780488;0.034852955572569067;0.001968359246993745;0.036858095115894045;0.0025786259229116882;0.013324923815068699;0.0014666834111185557;0.001868910657242885;0.018222377031193046;0.018498848509197485;0.01243759266656259;0.017382104073673323;0.07753060874288784;0.02614107001678373;0.020772577354872045;0.02322772353334545;0.011115014967924748;0.006539672294163561;0.013476281840669313;0.027506414737089493;0.03472453305149274;0.0038884311509664077;0.038740920870166486;0.010173243505084063;0.024539754245864253;0.009758893591337806;0.025712227809380046;0.032359238216128225;0.04954726996061951;0.019759662887274647;0.018585044506523807;0.03812414659474944;0.016987850813989767;0.0008307549770282687;0.0022016864500317384;0.04421602403696829;0.012258453092918661;0.018446196411325173;0.03862068547146982;0.06167742389077657;0.008704417507986199;0.018221387069948452;0.02637271776625971;0.060104346930247556;0.050559231787096835
+2-Ethylhexyl 2,3,4,5-Tetrabromobenzoate;0.0021249933816709496;0.0017077661637460036;0.006778349214978179;0.009591791684487682;0.009003396613270924;0.012490125132167889;0.004646355537611553;0.0005378633774799974;0.00051568099576656;0.0006832452916065428;0.0019599638104830833;0.0003932769845150397;0.0003978754142912035;0.005348762469010107;0.00258800035236553;0.0031175888614687034;0.0022258070935025345;0.0018608668736501172;0.0019856652224325704;0.0019958101103449604;0.000700421679113717;0.00039679223697688547;0.00477283646978427;0.0006888158237415959;0.0031198793421984695;0.05695320422018783;0.007670945592683368;0.03146310722365704;0.013267097974947446;0.07132696344852343;0.008391192103192762;0.0689793923564505;0.0158525787857936;0.00984325238867635;0.04508888795895434;0.0009692794066581965;0.03340815441031844;0.007921863507528293;0.010804051353316675;0.005659637054976608;0.019309977461443747;0.0026128790837042846;0.02499984175149298;0.005760044987743625;0.0010313485019400623;0.0006955976393657192;0.0012322835568287004;0.0009188113229050291;0.00180454725495804;0.005513038309595023;0.0007525062860269842;0.004660625953159185;0.0018899075767035156;0.0033625718580170567;0.014997059830351203;0.002010525094945975;0.00795155111102464;0.005997417490959773;0.01615184788525383;0.015261156671514236;0.011183694499754633;0.004926886072539316;0.00491721144531817;0.003595812185260815;0.008522094762322576;0.006556215877233919;0.00592316863524611;0.01776278811622909;0.016449188162401075;0.01753273680045974;0.01548745766839234;0.005826098845412586;0.1810660111915835;0.1986818050885022;0.10214996101044271;0.0858522781476627;0.021776490705275126;0.07976300970618937;0.0009887439728774067;0.050422268470356565;0.10328076972827323;0.10650179381107908;0.13097629701916605;0.12847858401596204;0.013183828479731714;0.004642827734379716;0.027503002905980598;0.022668951016536806;0.03443277398674802;0.01787068439832933;0.007858043488721447;0.0007829985942663138;0.014435925837586622;0.012797098413925732;0.012765355176136322;0.23839150667918652;0.2338063266359618;0.09753887884154046;0.025173320048566723;0.03214640689386782;0.04015115799699214;0.013107425908484537;0.02507523924659073;0.026797042956447813;0.03891637118672335;0.004823949191226214;0.013004645831554609;0.02650528136721786;0.028811826912641326;0.03791489118397668;0.007282011472454905;0.030652197947286724;0.007400915350574427;0.010856550881207612;0.015110432298447572;0.061097755498868936;0.01843718191694927;0.17733927345526854;0.221480399318824;0.028667144986623046;0.03977023916303635;0.21361662483029512;0.06287509917097057;0.07803148865431674;1.0;0.047082308639719433;0.04533386599954363;0.1382930695596805;0.1475112668760294;0.2030113884532268;0.016749282330939086;0.03965919994609987;0.013733928862157544;0.4208945695472574;0.00952574143672135;0.009921025052962476;0.025436692504535584;0.022350732386344833;0.05148902029936281;0.06722651282516884;0.07035557146815544;0.057268387565350715;0.07332370341343217;0.3608335368284115;0.03998294750474018;0.022917157763808756;0.025083596780036004;0.005002905253946656;0.12183075647985603;0.1920459469606895;0.0010113102073895314;0.20591695377868308;0.05398323234823586;0.014771235425346682;0.005329069855352258;0.05560494983162759;0.0012851100068276727;0.0008954665552858551;0.0009652888786998228;0.0006860801786488579;0.003534289545281225;0.07771603968796828;0.053837461450392685;0.02842985545753907;0.04179173561610214;0.041424088767084546;0.05801221910119197;0.030003229891990012;0.03093354859149491;0.03927838152149714;0.07142509421449415;0.014532063746055405;0.005082395440468239;0.014938090744503358;0.011765402226880614;0.000887052455495064;0.0016277165331817782;0.020981113486138677;0.01920897133266096;0.011223505418195154;0.024968783671792154;0.005293772339441301;0.018415339852126417;0.033612956310831284;0.02029146548583592;0.01292433515088067;0.01187294005518207;0.004343702630193451;0.00628917434207442;0.004000980949288996;0.045116233113037016;0.0026121066001485336;0.0031217348475232522;0.005478421691793814;0.004626535691287458;0.0011070258035980273;0.0;0.0027392851148945385;0.11702116840283451;0.0009551242292189821;0.061545122547662603;0.0019371036594039372;0.005752486873085687;0.005349306875241404;0.0014332408291656351;0.00021430268345081047;0.03307368653505623;0.021696972165015482;0.017922884951346682;0.018566802773987513;0.006924360303580114;0.007499861869232438;0.039274943566708034;0.04651527700120434;0.06555531232098774;0.007076400159424535;0.14992278674900172;0.04482696644999547;0.006802190440254635;0.013974414310274422;0.02694661541895516;0.001257513761087248;0.05465618999419152;0.010005889677187794;0.010165256181629565;0.004900222099527207;0.0031174097138007943;0.0060904374413619814;0.003910486112269934;0.01391241070871659;0.010822155199227832;0.014650671883054713;0.008378203869481548;0.0057636689872174705;0.016061872765030856;0.016248945779420845;0.024131325737395314;0.01932265115779045;0.019210208073648857;0.016319338174086283;0.026871257291272037;0.011662502531039608;0.019493870675994614;0.014060616411364992;0.03728055838790429;0.0006366909192552512;0.021111934725657144;0.026047850108715926;0.010292758975129896;0.07492444564153572;0.0010303861438997418;0.0010140131742735756;0.08057016447163103;0.06232804943950095;0.014653760536518057;0.04199646372381063;0.012468256761225748;0.011389343498035952;0.008382326056374081;0.013720658982278575;0.01370047037956269;0.00398502929843038;0.008495945914189718;0.0129530820599761;0.0031900083238225324;0.007809014575195689;0.0964825046980209;0.0031073785810099915;0.013553211742855608;0.005303195536720361;0.0061749762245535455;0.008990157524803349;0.00804166911048565;0.022265017221342817;0.02005506611127966;0.0133524823210163;0.00030492547241045266;0.011593799706007045;0.016046079971770297;0.010517512468283117;0.010893219808187662;0.029688739074245064;0.016360108675565553;0.006904208160021938;0.005322685749185863;0.018865236469229656;0.004434314759614764;0.005049539030606411;0.001136275472047328;0.009504266702321549;0.0020050767706058167;0.027455207138737635;0.00854413601789007;0.03666610269195529;0.017672327802215875;0.004344064940130479;0.006362016573833783;0.06631936960383793;0.01840039953894529;0.0301270782829515;0.004564111214132728;0.014635899163336833;0.03167401395649769;0.030391858925432315;0.0004990427753471903;0.005777893330123138;0.013489133090208117;0.02134790984701006;0.006938139639113513;0.005938650854828504;0.017204575555086705;0.003944435139141009;0.006503715269745109;0.011347307422072251;0.03867256623296714;0.010505640742915774;0.0022530080716254446;0.026214521011772608;0.021720863832105683;0.004255520917814045;0.01537115964568597;0.009928417577877156;0.09697587487198295;0.0002661710851917224;0.06649286252278869;0.007178288913469262;0.002547163744383332;0.03212532706369815;0.023892476957643273;0.006435718362195582;0.009387975124765614;0.0152562970444803;0.032633465962960205;0.042219613163254864;0.0356030304165342;0.0019254448117350645;0.03204678906808518;0.01581129885769484;0.0003977701938075708;0.005424647970470895;0.0031872593137117805;0.006334131062520472;0.010789728211714675;0.010591068224035535;0.018986647373505985;0.0007441030401012085;0.010133350394839742;0.043445006851186685;0.0352046389324379;0.019493090752682123;0.007807232436898038;0.01499620553109506;0.021343751700219144;0.011126714611061284;0.01189449521131076;0.03270958976359576;0.0045194994947666605;0.002813819012177972;0.05931571125772204;0.10686602936977345;0.04341700465409738;0.015447713653147295;0.002265994577727146;0.044360576196155396;0.008635237085624407;0.06616521154557069;0.01224692880246087;0.0951677881640016;0.09086601045499017;0.10406100585908058;0.008736654314540574;0.06401922913766317;0.1333813035510396;0.009809882811217927;0.0003108713943676807;0.012472154955892906;0.04274168006232341;0.008669474869894793;0.016264404771284727;0.024452755018122233;0.0017251570997533715;0.009464334650712466;0.02122281388480274;0.019501228234737163;0.10843473240213002;0.1372847654614334
+syn-Dechlorane plus;0.002070002054660714;0.003506959444813515;0.001284459678458458;0.0008756509477618313;0.0013886465448889882;0.012193044176890813;0.0022007433549501992;0.003129132890091671;0.003361596504217137;0.0010333054164010879;0.0016521398492997331;0.008286284648147357;0.0003241955488792783;0.0008323023825700478;0.0009668834748867856;0.0012756704657192392;0.0037364862269631794;0.0037786157805094565;0.003771027454192116;0.003788769875491415;0.0011353826798372664;0.0009572088814926395;0.010181021601245064;0.0008521495797886617;0.0065253072303922905;0.04837971510073218;0.024494936536094282;0.021003482181572455;0.009592330479503433;0.02816750272306035;0.01754588670219857;0.026406581537734383;0.020947008823711064;0.0025935520683683004;0.03731323729209774;0.006947774962977438;0.02362952478795994;0.004978780194859384;0.005919811997924574;0.022639962305725545;0.016664338741957174;0.010252221726872165;0.021990210495184723;0.8388216357447678;0.04584961472418017;0.041688908660716305;0.04386555877882269;0.04441313513011381;0.04186668450217758;0.024463491107803544;0.015750338386219264;0.008141243007204948;0.03167370227642716;0.03384120800994196;0.028798988642016198;0.009184994894971772;0.017301563169662464;0.013327703308684723;0.01852908403373974;0.028232256139181764;0.02040231969175185;0.039279317935179095;0.018607623811880938;0.019344647921874545;0.02032628553332348;0.013808234300838261;0.013140075237617335;0.015704785109416666;0.019837961883586424;0.015972446964841562;0.011734372422238341;0.015576352679225766;0.055787072564957726;0.05891170869701419;0.029123532742834413;0.02893159674164956;0.010853804913895487;0.02610624309068611;0.010162240204278377;0.009471901703353179;0.03405844187043404;0.03328991296555712;0.039111807966815744;0.03806520627784888;0.023117095864114756;0.019118130988073;0.0069667813001592785;0.010191031006936472;0.07134138732908253;0.050522243679055716;0.01352223066508139;0.0054034642541074705;0.02270312517265032;0.011056418174765662;0.012966595999335586;0.06500583045790378;0.06936615259439406;0.09272345924844483;0.030764014110771495;0.0851044498690713;0.10425186746147981;0.02927689731436112;0.03454889187718994;0.033208369200251844;0.06113790069745208;0.03291009866453156;0.015235335253537777;0.0376164984294714;0.046169800597202076;0.020535017866087555;0.04942607658654747;0.03106446268319089;0.018112954415298057;0.022461306666907873;0.024451694079606748;0.021639554022522146;0.01069759329725092;0.012644162821115449;0.01958502217344777;0.030438951707665696;0.015019062401331294;0.04611241764025998;0.046252539962658844;0.012912821280784477;0.047082308639719433;1.0;0.9831323039655996;0.07028152500096477;0.06856253865554574;0.1538756793322215;0.47668736395826117;0.024700034280616824;0.0068430168938356725;0.05565548954241554;0.0007480959172972713;0.021760632786674398;0.01798321785709404;0.038041706708717975;0.038457592617355305;0.03628084689112838;0.027288925372993298;0.037974731989944284;0.05558451348649232;0.08277397397956118;0.03250584197566144;0.04483442745877377;0.028281940151001154;0.04221677912302391;0.0420936883953088;0.04830742410249237;0.0010900946313459547;0.07590530350749712;0.03240787151064608;0.011530895549398294;0.01644897119871351;0.03501862412926773;0.0022022842825793975;0.0019040316768877841;0.007828924907189103;0.003437003768558937;0.0038120282566696923;0.15909574150734485;0.5531449081853412;0.8064415325182138;0.23284811430273966;0.8640480631428413;0.08975478116644241;0.2736382578002532;0.2852654750375077;0.12776723323308786;0.17512695328376754;0.011698375942654419;0.0029093528135725024;0.031655965953216486;0.03295201281277675;0.00397586419478308;0.0004852002624117749;0.06166608550329519;0.025418244330306997;0.012103544695944143;0.014514869039666176;0.0021353622457393685;0.017641797551540647;0.01934071192954573;0.005720869050279291;0.030134375873756225;0.014719950692689894;0.00034936571881113765;0.006204769109565928;0.004721350655749602;0.012987347439176573;0.0022104619172015256;0.009122648629658576;0.01518807005622012;0.006031008026417967;0.00815370193510701;0.00782484620849474;0.007981556370402742;0.010576789436385335;0.008481714253743264;0.008376367069777188;0.009119315173149668;0.008492166432749006;0.0031919490886512104;0.023632807314559065;0.00047721232399058455;0.028975877867598768;0.010617030723593027;0.00743873130253354;0.007738299119711522;0.03463682094967016;0.005764049053807138;0.019469985528848786;0.021368457941554467;0.024823874499835304;0.0032229011470899845;0.03681414747855407;0.023781418224276398;0.005201941411019443;0.12368760969012352;0.006838233437095067;0.004502137548854664;0.06334490569656351;0.004794280050487473;0.004997121697779412;0.012649286632473205;0.009555609874783787;0.04414166433665196;0.012465302814799534;0.022984811589149605;0.023251349147714116;0.022901789531147413;0.018247841896100646;0.011469479281907618;0.03849545251584408;0.01516823076945821;0.0931856294097438;0.06843215692278729;0.05693122847111653;0.013872063595372075;0.010242414270102059;0.018764233712690204;0.00957932343856456;0.023512672408124668;0.05031918322187561;0.003039738038972015;0.006088232249011036;0.0035419764658294545;0.012830906314937772;0.021069962009511573;0.008459512999748156;0.008292710281878226;0.017372708740532077;0.0273779261851521;0.022600648625810675;0.026375255366063343;0.015830116590999428;0.011007439133292588;0.0073195713848391575;0.0008987146701997176;0.007271375494816029;0.017559063017882248;0.002258730669907044;0.003957564848492333;0.0004570418067809104;0.012271685075972653;0.015510277113814488;0.04512002235849904;0.004843957625439827;0.006322723525565583;0.012324691552132096;0.0042639363528650335;0.02326744107433729;0.02083236932865558;0.0035600440652162656;0.014472886304177465;0.008112804098027485;0.009328499562925854;0.018296731290787606;0.012012568433994989;0.004458549651170228;0.051599248077409315;0.00763227813475706;0.014514038008048076;0.00483293236504525;0.016652744237696106;0.02325992677178212;0.005133794265066005;0.00460296301381892;0.009252325821587389;0.010577190510855608;0.0037178876454783526;0.024743762093671854;0.016647776149539332;0.009002212110221753;0.0034946550314344294;0.015485431693680909;0.013979728202608304;0.005777967993387834;0.02835447982920169;0.00687933556299067;0.010935049390250555;0.005865989301874743;0.006830950670623122;0.004791701351518254;0.011063999617096816;0.023241991714358957;0.014130703271270974;0.003414453096805383;0.004980532968673169;0.0010206674468286822;0.0031674753383877275;0.0;0.0001593401491184501;0.017048049774093965;0.007068975746477024;0.0016620656226422857;0.0016862407553192669;0.009459158320446496;0.013319904444058873;0.01837863994378053;0.004758802604293541;0.020717121238324934;0.01074382693575443;0.03709289726830991;0.012023358775814981;0.018671875133928345;0.009290978260429737;0.019257413381675963;0.009441924450041501;0.013001794685803633;0.011729141957754345;0.01606821730785429;0.02041128281638015;0.0237902551308068;0.0032804493170648834;0.05405226750881525;0.007553178194648991;0.005940066893304234;0.004931812294894736;0.009676042585719665;0.04297312005446124;0.01647873304452942;0.0016663033857098222;0.0025111825455980618;0.051659675444653524;0.04335172674783565;0.008224093809756926;0.006768969677965812;0.012594122830469302;0.01840174703430597;0.012484546252490637;0.026691791403836665;0.016753429375944668;0.014111873433434325;0.04056477295317388;0.004762131502936048;0.007346346076244231;0.003606542019402092;0.009927983202758811;0.040513950894755915;0.01164245402482127;0.007781878350609479;0.011824863156081878;0.009490355351466518;0.013614256136733068;0.005286430503472587;0.007008436983023965;0.013055975086311223;0.017465454371224987;0.03336994887740158;0.024009336904282984;0.016018787388495298;0.016601397257518725;0.0008852374593925286;0.0018805394521614065;0.03734487702854018;0.00598607811938707;0.01026539379676667;0.01614308570482687;0.007329578932737188;0.011568912312782915;0.013496303225970193;0.011854252904455279;0.048320435793669486;0.05796123935470299
+anti-Dechlorane plus;0.0017637722545828182;0.004291079978404825;0.001349332550106677;0.0003149585828253031;0.0011849448144065707;0.007365615238099948;0.00032078766404537517;0.0034380841300912335;0.00368978636288869;0.0009032956263359893;0.0023975436547673903;0.008223693100162743;0.0003560485089510526;0.0012423203267068657;0.0012857041701898908;0.0016404105427081557;0.004487793309073892;0.004673278868863691;0.004499056554301989;0.004696862464654159;0.0010769875429076667;0.0009727466290807993;0.008815392038957683;0.001007278716391326;0.005215597803338916;0.038771776727063605;0.019836434453752688;0.02205375389858572;0.009650121427230601;0.029386106940979158;0.016901322899827372;0.03028966553539873;0.02022351009316858;0.010346569559978688;0.03087096105348122;0.0070439728571093;0.022856999184225263;0.004994188463018989;0.005485030298351438;0.023521968125098297;0.011668143493315518;0.005219796579735142;0.016608071389936523;0.889959150238388;0.04972902407643307;0.04502310706976611;0.04714742169197704;0.04809085598479341;0.044822600767240275;0.030616788062939427;0.015964983220042618;0.0036585544535624715;0.03306531757458452;0.03387045558566073;0.02039300729193808;0.0042973687290983;0.012972962889819629;0.010357510566209078;0.016821455947332073;0.01784181120444711;0.014988949154015635;0.029281856569968852;0.015379726089143213;0.015586421527733669;0.015260203418086676;0.010360281201065857;0.010113130892340656;0.013862959115693258;0.018321753052441738;0.014062597081917691;0.010054424288436793;0.011487360281479859;0.05177637415006679;0.05345462729605272;0.026733007199595392;0.02639872107648529;0.010757629241771887;0.027541251054426605;0.008190363542853617;0.010354903539081306;0.029504534837699433;0.02942265327628755;0.03565652994863964;0.03470250342244882;0.027361968065534432;0.022022054908264845;0.008100064554584965;0.010074647526890758;0.0687715568058564;0.050603972561302515;0.0104053702846498;0.005395978736956031;0.0240765675555751;0.011541815745149555;0.014043993766750888;0.06408909284802283;0.06829337771955092;0.03317941645472522;0.027842644496295595;0.029938549422185542;0.04271596527819052;0.030790852571091553;0.03530112726096373;0.03164467755007136;0.02810506794441645;0.02256277201501062;0.007312571726319733;0.0236432947087882;0.04712905555639158;0.025131918687646457;0.05323552642380291;0.03318435954784359;0.018619927702839937;0.015461172185205022;0.01920349149056471;0.012915298216707994;0.009218323550833196;0.013020773565197801;0.01652242226540259;0.019326159017087927;0.01942681707950836;0.044968421247982074;0.056954070907438537;0.015915787967561493;0.04533386599954363;0.9831323039655996;1.0;0.06474618393527985;0.06504374153231347;0.07072251790559775;0.5238678794175443;0.025920439467415665;0.0055130827453782495;0.056933152555977966;0.0013061958155039068;0.0233545856748714;0.017501037348830517;0.037984215443216916;0.03598801687210343;0.037424532009144154;0.026457099882169655;0.03854907677343479;0.0490075589757258;0.09316111264512389;0.028324486927528883;0.04035806018582331;0.030494605855719618;0.04322547047951879;0.03488339682034901;0.049293288279894064;0.0032243110837899378;0.07787085645565807;0.03534296025680999;0.011096519156461307;0.015701394350584652;0.03526675889327305;0.00234014139769357;0.0019277640368932597;0.008028787529133073;0.0023217431673547197;0.0034646090258419193;0.12909230702112037;0.5847540029898037;0.8434520895007954;0.23220548706618319;0.8594723440154461;0.08522982237087463;0.27896576957384484;0.2886074576244019;0.12286638518623051;0.1649612554286347;0.004832604509470759;0.0029426624076247057;0.03262966084755865;0.03259254552691781;0.004363833194314348;0.007093391572190143;0.0372230115042578;0.028680602195178196;0.012932073252790638;0.015899882892523382;0.0020192167503751664;0.017988715336354124;0.019762731913257163;0.011922598857831514;0.03221986888605567;0.02196711002195881;0.007160695128543403;0.007161309243704249;0.005534700281977187;0.0123827524053654;0.001804066838586823;0.016801601630477805;0.01641713769966295;0.0054981783253129435;0.008702487699993641;0.008417888036394592;0.007537635717292878;0.012580525887531026;0.008324862579125436;0.007992317463095824;0.008473529500352869;0.007813319131195698;0.003910584596358425;0.02737346469841994;0.00022696204625680482;0.02606421418967325;0.009504355139708164;0.007114526257251401;0.008569678735376033;0.0328395995221683;0.006734017937286881;0.019963903670996697;0.025157370855726835;0.023389994279024565;0.005977151777952052;0.041463467442880035;0.023924731018715978;0.00522953698678225;0.08361150232688051;0.010386656597518503;0.004671317738227445;0.038217811681747614;0.0021269572842959085;0.0031872658623886586;0.009208981203866465;0.004862607351215367;0.03287781305207657;0.010494307713073931;0.01591241718885906;0.016796282899905958;0.015292804623971073;0.013904612196431495;0.008944675455935367;0.027408600662853347;0.013655547619873733;0.07522159418711262;0.06110031318488581;0.051677668868807695;0.012330342924053292;0.010838794555867412;0.020477161075663837;0.009978008661334114;0.018098533775716;0.039925849276890774;0.004735316615978957;0.006812975889754163;0.004939700243750605;0.012680100900576308;0.024600195419860717;0.009019369820786188;0.008832361001043837;0.01919785476977923;0.022968156699846982;0.01913014882640442;0.032667949663154484;0.016076927385592032;0.01061404911473577;0.007938550442280501;0.0013013019266611134;0.007646038315730313;0.015185149653157851;0.0011445432284271167;0.003050130597789763;0.001626800278946043;0.012637306650207836;0.01777440187096165;0.0519266339363398;0.012148199651207664;0.0003315181202520703;0.01702331142277304;0.003690584976834219;0.017411658063837872;0.019643033745648637;0.007661461310530775;0.009425662447040229;0.007865912390920401;0.010470109027810738;0.018468374969689057;0.012750821248164394;0.0051438640538941675;0.03245890789879882;0.008025428891460866;0.013709107760158384;0.005548373937110694;0.017900573108378066;0.022150045568079594;0.003191228032029058;0.0121822516220461;0.010474559685869413;0.006046418090719655;0.0036470522986272406;0.012984438455633398;0.010812536155093934;0.010778462980397387;0.00452903785857791;0.01489085840201569;0.01582531866895634;0.0034972658460024402;0.02750090900469411;0.009707078089330263;0.011044228260506501;0.00195664916776698;0.007936744078111011;0.004012779642504986;0.01123566999843718;0.026509587652330826;0.014860088778119887;0.005029295206823349;0.0025733163716934386;0.0014833540844262924;0.003141145880601803;0.0007860023508114219;0.0012522329430747678;0.014827153025267034;0.014447143699286302;0.002209346975568604;0.0025656564234000944;0.014647031282593866;0.020988579186280037;0.02062426004231767;0.0026832053376591495;0.021693227272663086;0.010326290805215924;0.04353359800480101;0.010458492902884356;0.013856273164942806;0.008792340089818983;0.019871860721366125;0.011515304814395673;0.013423870749048513;0.011452952977539052;0.017703101893334298;0.02198484504628343;0.025121155743528606;0.00220994660259471;0.03808604060587467;0.006873005319461827;0.006550203402959895;0.004598976405702431;0.010601079962680083;0.038848973712646694;0.019380664570316685;0.0012319410333722605;0.0021550783121036337;0.03833587595447722;0.034089024662328604;0.008430717532493753;0.006943799272744032;0.012897947410679959;0.016561740829531567;0.014945196424160583;0.014901502141012136;0.01924847650682102;0.014063494623853562;0.041942436171638356;0.0036903774704955994;0.00779522684237347;0.0036521855282848135;0.010868911175970485;0.046991097534559705;0.01454966302426457;0.008167365933026133;0.018398751913286177;0.016386051555848845;0.008881771624242238;0.0069069165588780505;0.005629253834098452;0.01226915716737409;0.018543204148496837;0.03474880422929;0.025387441121848292;0.016388621661297714;0.017567180646056644;0.000915242513263442;0.0016154045431762932;0.029574380865920395;0.006443112169553429;0.01209108119195668;0.016364866936707724;0.007329007650668428;0.013628512540404697;0.01317180071692438;0.011847549933929976;0.047537457973792094;0.05734186902805125
+alpha-1,2-Dibromo-4-(1,2-dibromoethyl)cyclohexane;0.004179575983505431;0.0;0.0024269877844146836;0.0;0.0;0.00206291870439822;0.0;0.0;0.0;0.0005271069056058874;0.010797432740256727;0.022905574958894413;0.015987204800524162;0.0;0.003503109086374115;0.0039024172067593376;0.0;0.0;0.0;0.0;0.006481042460862092;8.191183703109588e-05;0.02151309656529534;0.0;0.009073497015607647;0.029899086298543313;0.4898147235175918;0.0688769768170737;0.05267036702232174;0.06676319542662563;0.09421841435187348;0.04229652729957494;0.18348837411843927;0.020637226349257472;0.03488891182126171;0.017637615485102686;0.13993978821046682;0.036928888393338355;0.05344704973687704;0.0031939237846264016;0.015817004139857326;0.042780297256924255;0.021496024361378797;0.055908644441398536;0.0720500237071555;0.07272395297455683;0.07567004246689321;0.0727131445915454;0.09103627213682831;0.006351367072261345;0.017423112101886493;0.03710807018859664;0.0;0.030438569135724167;0.026841518984108116;0.037570723702491836;0.013209498131744709;0.009944037902017576;0.005798452272386845;0.08535666071751769;0.012685433614910917;0.018899407901246924;0.01678660193557199;0.018740570660227576;0.014227310452928877;0.009044844405309773;0.009227204576676619;0.00670136289909994;0.0069737194482822895;0.006875958420755957;0.0033978888171172436;0.011788769521217482;0.3058132900411515;0.2599514250313665;0.06956979574913218;0.07092886843101887;0.06040581041785427;0.10061303371171977;0.0006126624715782165;0.01607973099416377;0.32575026533683116;0.3089961250743348;0.11498926077537003;0.11132423465054557;0.06338399108501723;0.052564819027797235;0.01208763650204085;0.02675724387297595;0.10375245434903882;0.034774630880571436;0.006747714632446532;0.004173355507829753;0.013625433687326775;0.015251665365075268;0.01765455253239124;0.4544616618148119;0.2385799283664771;0.10063874804073285;0.026853119483014613;0.02791783738023387;0.10945596158263332;0.006237254236537092;0.03708710685878646;0.017681936145023697;0.061775740204429004;0.019279887954261596;0.010309018550865894;0.01984741061715946;0.015582886110667587;0.003922248099196128;0.018813800016120666;0.004645587739241552;0.005853752368355619;0.019917493947262634;0.015072655308816983;0.30582876106985274;0.2787499813625512;0.10590903116034323;0.10585590846561041;0.16602741692284514;0.06003631106642171;0.07729789919173576;0.11316365133561263;0.03714255181934098;0.1382930695596805;0.07028152500096477;0.06474618393527985;1.0;0.9991259747151562;0.9375676286692077;0.29661996658219053;0.045956409911275274;0.038268876458329465;0.19682963777966142;0.0012736744463119048;0.02775099779175645;0.08647672742178737;0.15417665983650072;0.1353497832018284;0.13201409411702703;0.17215488953989216;0.14938089469828558;0.1984265171863857;0.35319388683236425;0.14589728168962385;0.5692911816013335;0.050042285892570565;0.004894966961939319;0.08739967783462191;0.12148620507430115;0.0018738871983677245;0.2312019496822119;0.1807534965205688;0.059657171958764764;0.1046968471472582;0.1633205542001644;0.008884669802216588;0.0074736604469334235;0.009187730816903475;0.0;0.008457348168734911;0.19862372119751687;0.04201205947721756;0.03768092245406401;0.08744611377361038;0.04373339358834876;0.0930076453728177;0.03568163555733709;0.03544690370442774;0.061622796313510385;0.20354944051140816;0.06409451317145788;0.03072835476146373;0.06508505420336018;0.040571901288645525;0.015615660811100291;0.0006920825910883602;0.050547023222936416;0.0599974761046917;0.022735057620001307;0.04436047109263823;0.002418774278177717;0.035309045961670955;0.06397201489435263;0.009962758347946927;0.0859745263201084;0.008430546475148784;0.0008566737511680487;0.01924363130016066;0.015115375009796985;0.02912892878331718;0.021471332204655517;0.03145151606028712;0.009093259670842284;0.12386112056816274;0.0004560675208695664;0.0;0.0030809345539895136;0.01849888545364651;0.0017435774357702058;0.00763248101622235;0.0018652050647632553;0.0033451063590203196;0.0034388452610829147;0.2918107866312301;0.0;0.051960801676517135;0.010189058451812344;0.04902452765823308;0.0671822538213292;0.004007077713427135;0.004677279575051984;0.08159094199022329;0.03825358274163678;0.03900855415295329;0.013866028813315319;0.1267815273612444;0.08352479452075465;0.03596382364421431;0.04027825169032028;0.021364569126805545;0.03570362141822246;0.06896224611172824;0.028453342368085614;0.017991320907486678;0.05300038292311547;0.0348626903974268;0.021349946627342624;0.014734153874861176;0.015838676896773412;0.01150927210210081;0.012541796830349798;0.015246333705847284;0.011941010507752928;0.01881582352635843;0.007242142757919567;0.007404409360120888;0.03008822329316561;0.007220667475734448;0.0071019028279382624;0.13510168502568548;0.02703274097501537;0.0426314384084571;0.02812110109374966;0.08256348861389962;0.006738611085725056;0.016238168936660767;0.009418222622084168;0.04718126316260883;0.06332730589369533;0.00024967560187975305;0.000256268936474089;0.08389465545535298;0.05381371253321538;0.2851104120007817;0.1761771866656436;0.07300762191094859;0.026038663487087072;0.010620699362188513;0.002432109359390435;0.019481901794997713;0.0036823341012731325;0.0029968472615684804;0.004676622870429629;0.0018575713180210604;0.015531409307325954;0.11717412034646645;0.016008442775642617;0.027695817209844854;0.0;0.0035463334769946183;0.005641847581057185;0.007316660586490862;0.025969451522447336;0.005744407726485855;0.01060506953115012;0.001449573473779584;0.02372790718622225;0.05189297247160008;0.06452621994073489;0.045549644053333234;0.02011577817921898;0.021651116556632193;0.08049677270830399;0.013657952679616326;0.02793197797515734;0.015120373610733323;0.00039594985779119125;0.0;0.027201634279623178;0.026121805236764505;0.013097982815241625;0.0028073486216584316;0.03506944073800745;0.038641565126880544;0.0014711349012406453;0.0;0.08698664953608165;0.0013182524936370267;0.19242161129998187;0.01730500069761816;0.016628640215215845;0.0004766776352999854;0.0294922916142002;0.0011621690917041135;0.0147050745997754;0.0014932324907095086;0.0002716678602099771;0.03107602393128021;0.2765658804281764;0.0009147042106872364;0.010429303984904598;0.00017049970087018481;0.0015202947443253656;0.07067205659075149;0.020628221874546274;0.0017302731079709595;0.0011143957784299852;0.027230855382002508;0.005709172789982566;0.05372505489452057;0.0022621784573916355;0.37698648182767397;0.0021211814120710533;0.16481642579698796;0.0448012660382738;0.005503206750039716;0.004525694620359097;0.0972255566991134;0.004937777891170435;0.00825140470746714;0.03126366310414068;0.0707397600398325;0.08485406985618339;0.08548762784662785;0.020331663338312007;0.07908489820983604;0.10256219068862152;0.0009932478624226876;0.029731058805529783;0.041564188345871;0.049862924433177;0.20347141241988542;0.0;0.01047707969203953;0.0008313182970994149;0.0033802410704466615;0.00132751751044324;0.001140438630643698;0.026139934287286462;0.3230322869323863;0.30826731305545557;0.05343606863151215;0.015007003142633094;0.041979046913916;0.084585064123909;0.002339894787012218;0.0012368104805118448;0.0015746115820845117;0.0139918530322372;0.09602421085149329;0.0041017253714486675;0.01602897890763601;0.005929045417386417;0.0014675185840156894;0.007700119334099013;0.01806491422129319;0.007014001298981848;0.018493649747325452;0.025382089244428672;0.019154233644390294;0.014102140267364897;0.028089163562260586;0.0479092322171629;0.0;0.0070928359586228664;0.10317268178657214;0.02282633590651489;0.012992882586855162;0.05798489428141682;0.005211989159551256;0.055944867203555654;0.04754672566426252;0.05416936855396231;0.2250597135115284;0.28401255913878753
+beta-1,2-Dibromo-4-(1,2-dibromoethyl)cyclohexane;0.003976087352922778;0.0;0.002276823147337998;0.0;0.0;0.018700756089446866;0.013094874561244956;0.00011103274491795809;0.00012318614321986106;0.010929122124842683;0.010707809356471155;0.02289103881378156;0.015741845192267696;9.762429522430103e-05;0.005508056296550874;0.003841088767708788;0.0;0.0;0.0;0.0;0.006608430190686457;0.0;0.02232214480136581;0.000384913634983711;0.009580314644482843;0.030747840987647178;0.49974622329288493;0.07368710532305112;0.06496591271117155;0.08864198025543558;0.1319055717621869;0.032108867455498014;0.020523382312816016;0.020601382371107035;0.03645139126042333;0.014511731500445846;0.15584592023999383;0.03797962988528706;0.05322436213957596;0.003086886486476473;0.007952637104125849;0.04698400950785252;0.0072536834490178346;0.04678662616794852;0.07195165057889358;0.07187544312668101;0.0746874520136843;0.07196034222643423;0.09002465889309366;0.0010265324854502019;0.0011913605348169763;0.03571277895390662;0.00835454364146006;0.013759399782574316;0.023707933633298248;0.04011575961392279;0.017794169289777652;0.016335783348284023;0.014882464520674722;0.009365741993389633;0.008067297708462057;0.01809829127842893;0.01606687236382577;0.0180719710775272;0.02074184076376161;0.013384226431747867;0.01479724900750193;0.014733697806914454;0.02081113563809026;0.01525359266471095;0.004357101549120219;0.007791466275850445;0.2704981808894667;0.2617445242993018;0.08166488603815945;0.08395255556214239;0.06086433402742997;0.10016870682135973;0.005271020815409362;0.022015640162151903;0.18697351030381015;0.1854347562877038;0.12195947983080267;0.11253502327192606;0.06325610167425567;0.05309267055713141;0.01570640904021928;0.03010203105824564;0.10518729010372711;0.03389944379000365;0.01008533926091291;0.008379945870831736;0.014311428091304925;0.017855353029286564;0.021373914911185836;0.24516082488890925;0.24078774099143246;0.11916329491788265;0.030886430062059395;0.0513790491470022;0.12730724287414102;0.011140395671515466;0.044563126006812205;0.02702492571065457;0.06805874726650674;0.012224448993926985;0.004945736271873202;0.0020866685145031556;0.005578911731708322;0.007143609021001114;0.022427971909824523;0.006980822806039729;0.007107489513542228;0.002855017441828637;0.011987391660655142;0.004672810629878026;0.005073261887786402;0.003747576119542332;0.004235850117112968;0.015822897147368887;0.012344537961000329;0.0516595564199906;0.002716074650813406;0.031860701936984454;0.1475112668760294;0.06856253865554574;0.06504374153231347;0.9991259747151562;1.0;0.935670750308281;0.29600482166428627;0.050165137156474644;0.038120307577675185;0.20904377572330737;0.0017284294757855209;0.0235382511799352;0.14546439932820387;0.28812195629696835;0.14067150639209755;0.1395504118485311;0.17149519436381067;0.16404356171613513;0.19792829493634637;0.3552560401310196;0.1466553295172714;0.566176369613054;0.05173114078970636;0.004969268311457903;0.08874089858461755;0.12964571394480845;0.0019573440969900854;0.23197650614231818;0.18001303063533286;0.06341091067398948;0.07711982687597654;0.17109084139561612;0.009706410876625594;0.014096862071643599;0.012990277065220887;0.07060635415323731;0.021078496256518062;0.19878016801171905;0.05904877071981791;0.0418964972956355;0.08441315876015815;0.04697135581474503;0.06378980093618462;0.03731176639303671;0.03588795941870975;0.10601922062624582;0.2531844627037144;0.06349132655716104;0.0011414948547117806;0.013573720032461396;0.02352778780347251;0.016156632799664585;0.001984996313390832;0.16207139871365417;0.06063154565279686;0.023062914397485288;0.04472556844497603;0.0031032307308799124;0.03504803603193792;0.06379837671858936;0.01889615233628512;0.17944224082989527;0.021688382603241595;0.0015129772926642158;0.06861816045223276;0.03583238364979748;0.04521949423286014;0.021037559921119428;0.015437397851684975;0.0004907451853112633;0.06236967876202651;0.00040981384514411303;0.0;0.003489095621308742;0.04205237130415774;0.002489242328282415;0.028673966462613745;0.004083215336983957;0.0038349557249555636;0.0046673062713013195;0.28528143891012037;0.0;0.05379181741474103;0.027090357449793812;0.11568941294917177;0.042224179682539;0.04384995408615643;0.02248043007217518;0.0923375665384766;0.11667418530983086;0.0436257889024839;0.0163021428127956;0.13958502290721;0.08847451889986552;0.09803939118069044;0.03933730578245246;0.027865025252481492;0.03643775015043826;0.009357638135521809;0.03108212085438623;0.01790075491182059;0.06086903093855291;0.039516411099800655;0.020521194658624373;0.013996952124636988;0.00983954352637736;0.00930548128182117;0.009848948704662677;0.019664188559380708;0.015135859412526683;0.006196934883782638;0.017954020627742578;0.009548097842842575;0.016207217235246152;0.014296843191035635;0.01871282588903833;0.1342098407656832;0.045415143274794983;0.06245515284112616;0.033021955824729055;0.0308837868178693;0.0029320564647739517;0.01988030990398397;0.020233210910104854;0.05629753757570042;0.06175364448130869;0.013991092972079068;0.014324290198454282;0.10339056559872647;0.07125500596338004;0.43238168853562986;0.17978548111846662;0.07378081540309629;0.02563163906823381;0.01321459014967001;0.009205577009588763;0.006981255922763387;0.007054698407372625;0.003087528066725629;0.005397141687865105;0.04928912419086735;0.015315751245998863;0.12371400394693646;0.019388939380994005;0.02901566024338002;0.0002198118674155707;0.006597879004548904;0.005568774487260584;0.012055527935045938;0.06100932093228923;0.007460773690000648;0.010547100408888774;0.0014567831525281638;0.01795207775566631;0.1855688725978564;0.0822273542996801;0.047323168077922514;0.06169082386653313;0.009436956775552403;0.08599720325173607;0.02528504898391487;0.029450507247551664;0.014353968479271475;0.005536931338297867;0.0;0.02775183261547372;0.011804855211001601;0.00930383464707187;0.0031187803818857576;0.07300737755566565;0.051288998410297666;0.0008188526490311819;0.0;0.12577531391513527;0.0038816231008064884;0.2724141824698914;0.035387312792562374;0.016151373447139187;0.01054666069404673;0.029390005558290702;0.0011684473617901917;0.014430646484404714;0.0023019640554675733;0.003222475604306669;0.058505512212858;0.2732573114931839;0.012017449671669175;0.010347532629425744;0.0003982408452883875;0.0032337866314566003;0.07035399851717031;0.021589346622954152;0.0022661852219651606;0.012535193093929755;0.027006950087730366;0.014986153105021096;0.04897512595115112;0.0027666936651774927;0.38379419943613036;0.006839159015615759;0.17059133053061457;0.12768931744430392;0.016990189162062696;0.01751860501046463;0.09705641780606516;0.0120928888341803;0.008020609363442281;0.033428703053603175;0.07049942943284254;0.08466110410249664;0.08579500910999441;0.02942211533117524;0.0676517101922951;0.10235877204644185;0.001113483972337242;0.023824233636548363;0.06095183839783497;0.07622424999113864;0.19866816033724585;0.016835907565456724;0.004398390570750204;0.0008377573481403553;0.0039010596052483125;0.0017647214986297158;0.07619864168975812;0.04120894807855696;0.30921633379925867;0.31603065478531983;0.2111527485057168;0.026756498718099445;0.1016173674413499;0.10642685246254469;0.0019570937086528166;0.0015879094108085647;0.03103073014854451;0.027254683141718188;0.10950031847291501;0.19052519972380177;0.03150257748892497;0.016403542106614773;0.002443940237579836;0.027294980489251133;0.016015510358763446;0.040176165907433746;0.027629266739098508;0.034262092833194334;0.029467021084581952;0.12112591391712522;0.0340461513672351;0.037185357196073354;0.0;0.008099056331492323;0.18217983448288236;0.02826122152499365;0.06888969569010533;0.05993121392685307;0.014703264382220957;0.05539126306962579;0.04974018941915609;0.056031454254680466;0.23282589367880702;0.29197944345511395
+1,2,5,6-Tetrabromocyclooctane;0.01169538775577439;0.0;0.0029602577669991317;0.0;0.0;0.002353062883459416;0.0;0.0;0.0;0.0;0.00615512493849842;0.01503847910617145;0.01057071411623724;0.0;0.0025121445410602587;0.002798495805064157;0.0;0.0;0.0;0.0;0.003089431564957529;0.00011822298544991687;0.010499821168395805;0.0;0.004596338394824061;0.03383874275930549;0.5572586045261715;0.08275117005397883;0.061547815579358345;0.09658203390450767;0.10748053514997366;0.03778695676789081;0.010922873334725762;0.009743825516836075;0.0376472229477195;0.018949495001860415;0.1700905750857043;0.04845564063910075;0.06373581677699178;0.0020667220102881714;0.004998910365588794;0.03185585182423976;0.006234035110110151;0.0032937976123783796;0.06525611826104914;0.06237949040947935;0.06611905671237348;0.06305447937543639;0.08080966561850725;0.0014772225007039827;0.0008790352021352631;0.04100036946572777;0.0023754497693090904;0.015350394488767752;0.0217589982641416;0.027990326131374473;0.009290900487375358;0.007439712283079185;0.004747686221687097;0.005775366450259118;0.0024331047993531737;0.014111119144137017;0.012447584994343728;0.0137446424406161;0.011121540144444867;0.006996703451221757;0.007002512648310169;0.005306911607037843;0.005141750454747395;0.005668888137008934;0.0028909000419894363;0.0023402352095475976;0.2974556501671305;0.30013629627446353;0.07456610373592275;0.06398171233098443;0.05858167890477388;0.10849047503431132;0.0024312801443361434;0.02176528989834941;0.09223527562557929;0.09647885097900964;0.14031277398989223;0.1091188523628134;0.08996840539489995;0.07360970341375632;0.043784397826290476;0.06642180817845461;0.11325272462640322;0.017610253916531485;0.07664508083994316;0.012904421119937639;0.018933462292202337;0.009102393977780556;0.01161222035497544;0.285443095866581;0.27891864961855584;0.12992208906715338;0.05616932740553363;0.03308283705672261;0.11238910557096916;0.29593091564327995;0.31496748586058393;0.05596353288012211;0.1313776668113742;0.004264875799259354;0.0028848816452551693;0.001232401846256969;0.0035867686734866746;0.0020978277940160704;0.012211972046439071;0.007624170616915522;0.004454140705132292;0.0018281070765680122;0.005302957293544773;0.003967209937536925;0.003303224000765045;0.0019024993022681682;0.003330385436650159;0.015321576406937876;0.014541259882138986;0.05653808823466896;0.0020451487209840876;0.029193689396334693;0.2030113884532268;0.1538756793322215;0.07072251790559775;0.9375676286692077;0.935670750308281;1.0;0.22667959547939548;0.05668999334008324;0.04800689119081428;0.26077507941624223;0.0018693105049391505;0.026835286607392823;0.1016371505886714;0.17848244567280647;0.16456856363055106;0.16627417248921958;0.20489530910161471;0.1632443577541028;0.2467410983707208;0.4839270485491585;0.17312386010105976;0.6534115956034965;0.07581873928263524;0.007401285204659022;0.09204690053725834;0.1412837231369965;0.003613353710260879;0.30406443011775475;0.19284175885323254;0.06864110307923868;0.09462451811570328;0.18033082414219806;0.01000156284985371;0.008510039829202938;0.010457633645539564;0.0;0.009616308932190709;0.13721649581910422;0.04226199541744385;0.016156293275607355;0.04219305350987044;0.02005727834879943;0.07071391542984501;0.019654989406357168;0.019600769928314877;0.06673340130737565;0.11468300465995217;0.07090067038921993;0.0006127812790888711;0.009262045195626857;0.025132971533404404;0.015687117584197278;0.00020174979039692414;0.03735006750007852;0.0592048013813435;0.026441019469013546;0.05034671567157555;0.005965761602917464;0.04427554620528219;0.07840662447105143;0.011619998238133382;0.06544261547742901;0.015010658183645048;0.00016132328646471783;0.012173560332479098;0.0;0.009233318803841145;0.01460437975980442;0.012763288158608608;0.0002541101355510065;0.07471602910520563;0.0;0.0;0.0034975262473399965;0.023473237097159507;0.0020236415375599385;0.009028986416982443;0.0021548449523793663;0.0036926571527568642;0.00305604785677435;0.2231796526863029;0.0;0.05901624857590741;0.01032473585818384;0.05801673054222996;0.052650828158778896;0.009977246387769331;0.0047393229209265605;0.09849385453850391;0.05820401154199116;0.03347369924813444;0.015087503979644337;0.17735136412142993;0.14776251966559384;0.044538451043752654;0.04769680081972968;0.03312922678135322;0.03797017851686174;0.011134091255288182;0.020619183102590272;0.013567095983526317;0.03985520590603774;0.02621389082315705;0.01633932242888418;0.010805707076574791;0.002530814590410668;0.008627676692092304;0.017897433488242194;0.009775404450421145;0.00666944118500548;0.0024322607547548917;0.0061455792077573365;0.003907950675958725;0.022671920759336026;0.025404588362180108;0.006054811611707497;0.11722285513235987;0.03222517522377557;0.04942893387092668;0.03762966242031418;0.027004077682433604;0.0012497199043347374;0.022643909626405764;0.01221500533062104;0.05312518401439649;0.09309889235305017;0.00019456125820607566;0.00019969915500011427;0.09995394872860057;0.0762704638705042;0.3199238692092118;0.15118196748024793;0.06609892038276635;0.02888485867712137;0.013132598062375435;0.004316088666860491;0.007920631980469581;0.004845240890251844;0.00018907230384998237;0.0065651396699318255;0.0033376871297252564;0.016502178947319993;0.080041971030662;0.015476573866461356;0.0315798595115783;0.0;0.003429897408918844;0.007754819270058319;0.08464447288483748;0.029047923064094715;0.008643445969585611;0.014358465893924454;0.005570648558574714;0.018466284615123927;0.07152422711334303;0.06682776876353566;0.03633280664304224;0.09641727922126389;0.011408855958661531;0.061306229290761995;0.02345245266449839;0.0384563220458028;0.011584528512619886;0.081132901423125;0.013398780318375502;0.05088397196546269;0.006146440812308732;0.0068775127616221505;0.08520100962263324;0.047502534569332386;0.0470637858026524;0.0009290034929243088;0.07565470682996149;0.13165203783522803;0.008415034503303848;0.30111431285412765;0.019242404306784453;0.02077990489851904;0.0005962871477260321;0.031646210219148894;0.0013256251679536863;0.013064317174652744;0.0016705414384399066;0.0007205522959742794;0.031956753103266636;0.19410444323994133;0.0010879601427001408;0.09250025212289177;0.0001669640226125558;0.0013636659835850277;0.1353764872135706;0.02894626686549742;0.0028103745833171555;0.0011047365144103939;0.027945100455880802;0.00910402426412331;0.04152247981693541;0.023727987137251244;0.4733144257009902;0.03821386073018742;0.19555659821828403;0.05516776359185647;0.008473011580218778;0.019557342991941073;0.11906194744367361;0.008082690132012122;0.0062905551075022395;0.02901437116702789;0.07323357712082974;0.08769630080548932;0.10431042126480192;0.025287274962031567;0.06464513634527747;0.11632412132400967;0.0013033271069568004;0.010043350732458926;0.0324456853629226;0.046164242881632796;0.15459392429110677;0.00030183224722171573;0.0011396173679260513;0.002198368732546813;0.002455002226155904;0.005453802773563041;0.0015282670876584177;0.028201704687629517;0.13965622212295398;0.14258927548036332;0.025814078899702175;0.0234816766763187;0.07451654016201022;0.07452945937435031;0.00139285620602945;0.007878020888250098;0.001576054752100242;0.016778023678235204;0.08092896578329413;0.005370997028749464;0.03645813182295439;0.009664627853427787;0.00286587200177021;0.010609203074623123;0.015885818330977262;0.010366597393911029;0.025404191389359544;0.06427001496662;0.02741638198132696;0.014782698418308026;0.039591885534511526;0.029800128626909908;0.0;0.008373217861824234;0.09811405597587383;0.01912844760479111;0.07840092159155392;0.0728100401703246;0.0043047270097532194;0.04448658640679804;0.060618214747842306;0.06172242590866463;0.26897293008857825;0.34432204016448326
+1,1-Dibromo-2,3,3,4,4,5-hexachloro-2-cyclopenta-2,4-dien-1-ylcyclooctane;0.012562306060015339;0.015110417448122415;0.01918092160238902;0.014397937301473675;0.019903193471458802;0.09268590251973513;0.014524896959531146;0.021557738203540486;0.022262238687884833;0.016520463699272406;0.024757267580521776;0.0494474997048316;0.020782241172929376;0.01550021316062898;0.016540291695570447;0.018449620882835673;0.013496273621721051;0.014559097227544095;0.015643933325069026;0.01566357452844408;0.016531478571488067;0.017345722447399514;0.04552233742022686;0.015303872615517435;0.027866708204587788;0.06884342163218493;0.14270371247427246;0.10750813401814181;0.0585893633424231;0.15986560983363637;0.15852559146161824;0.13579861959487508;0.03582886770518722;0.042140802469036016;0.07229401049192914;0.06461189781646384;0.13542504891774104;0.03398418834824065;0.025797107325164038;0.055206558457185397;0.051739012351723186;0.045210324814618535;0.0347733373996134;0.46043311246793106;0.09317596030745945;0.08678050736416529;0.0886102464335664;0.08797727912215995;0.08989992534731316;0.04087057038672162;0.03393522918933698;0.017584930499664406;0.10003220684145465;0.10302299164853287;0.05607505013293254;0.040520273008916065;0.042883186457646244;0.038605814878284836;0.03831336537924357;0.03350427565798031;0.05725115302566177;0.06697923039950869;0.045167663903237495;0.04623436633887541;0.046907072010187234;0.03937331703420011;0.03830423859101322;0.038932914764520814;0.03678829614187506;0.03930764460681841;0.029261210913662475;0.04846009024867353;0.14915115894978254;0.12289942938137714;0.10809111293217959;0.10560912655349267;0.11012205428442766;0.15525071406480004;0.030550408952516376;0.03460027399691443;0.13535157103938938;0.13260285612401562;0.07907767004565712;0.07618720726239528;0.17620644743607503;0.15094799687253366;0.048109164688235645;0.05890626787792136;0.2398442444524567;0.0925634228580102;0.057922260427369934;0.046567191681407966;0.22343346541690082;0.08269471114935939;0.10794102035577027;0.1513871614672621;0.20770170155788784;0.12065942199982234;0.23400011788909567;0.15032088378538688;0.36494681714031646;0.23635275336088166;0.245482777621048;0.18295951672138633;0.079384072717546;0.08364595049474696;0.04069477197738616;0.06521545424849609;0.059081466971230366;0.055127926155384865;0.06714091345834874;0.049745408839839536;0.04688617651628906;0.04995576832291177;0.04233771903126251;0.02461421729578875;0.026152221487328105;0.046917873677819064;0.0926151598111714;0.051603332103223994;0.04002686133841221;0.05306173136998316;0.06121370068932335;0.05384650331114639;0.016749282330939086;0.47668736395826117;0.5238678794175443;0.29661996658219053;0.29600482166428627;0.22667959547939548;1.0;0.1999832705610789;0.028641482604346836;0.15004581823782628;0.016991044476112136;0.19847824429125283;0.15537121909882307;0.3184658801811613;0.20890735166378718;0.19555717267001183;0.18167030904690826;0.3921813767163754;0.42626510238702353;0.21186090473225394;0.21608382196118725;0.33804044680884027;0.2598796887244051;0.4882168894285376;0.09753515008480829;0.1540085566630876;0.021106466698134162;0.3801559513749756;0.36160419310948605;0.0761352579126794;0.08041699762708163;0.31729040616498105;0.033715622632912744;0.0119499987249166;0.07898730004842495;0.016767246875176306;0.02096992304888028;0.20776332843456602;0.3961223781751653;0.49882412471124127;0.23516966307251402;0.49244517346750516;0.19388488295624087;0.2634910669879031;0.2811971581290239;0.22358113418895234;0.31005987052555595;0.024286402684752798;0.008790876908106978;0.1019668694522912;0.1036070527937369;0.045138792752964396;0.019649697167664303;0.09701535636582216;0.20064105932570034;0.09472336989076328;0.1189597807850637;0.006379489305315735;0.1597178317032787;0.09733273961260545;0.04350115292389157;0.09158904853397487;0.04476070325879357;0.01933462421362644;0.026627747829744405;0.03200883045976734;0.05812238374279891;0.035796233706449423;0.05931906756960945;0.0362195525200489;0.037942854831178555;0.04528080641081327;0.04543825572697435;0.04441339869417176;0.04970674072845104;0.04826709920226606;0.04209725448800915;0.04863251312945165;0.04684844261250065;0.01980696144813343;0.08842709065692167;0.015390656260678323;0.1542287459959544;0.04221614054741471;0.025864395316936562;0.026763622693216686;0.05818726194640499;0.03271337900444179;0.07803808882829136;0.06903672084671669;0.03875221050917178;0.022254853865283832;0.07511321388422162;0.05933045555771158;0.02717337171061169;0.10196282828843879;0.04561532404070319;0.02095047611994718;0.08350060030380066;0.033144395518888155;0.035176630133892745;0.06268470723242729;0.045193149170602645;0.07993470565973548;0.04267164614877089;0.06455454068031766;0.06261435876867365;0.06282120829192071;0.05055265703906;0.0372637010471466;0.05885828774780131;0.04586199923519211;0.0903740196906635;0.15333413119652192;0.11577760813638986;0.04230004782932655;0.0440664712077072;0.09025392447099656;0.06474508129002043;0.0959321624970048;0.09893140655269907;0.011695852950087533;0.026630857654667186;0.024606848950331675;0.09276221099962349;0.05682750235738741;0.027104110672286956;0.02656954996592888;0.026069433114047285;0.05104470055971146;0.08574453167958963;0.489802714107244;0.2044951031522116;0.0518657947521417;0.07921386512432911;0.005491235815653702;0.07888359152348595;0.0896924105391487;0.0015153190210404218;0.010253868886146027;0.0133375495988311;0.1060106880581538;0.09456353762877831;0.25425364173416815;0.07221594394039703;0.01496785570170415;0.06846497373589946;0.019161243563221363;0.05441429569557337;0.09272618835752344;0.01736437758555102;0.030851145371685346;0.043338350010209616;0.10067459578546553;0.09596675946841353;0.13648992203368074;0.02673467118637862;0.0811878464814962;0.0772035776659693;0.034404589534618196;0.015231161280131984;0.10800879840606077;0.058550096004434206;0.03714537431525716;0.005222380469939072;0.10313965285127977;0.031769430892571955;0.00816715850229024;0.029321085153609903;0.03430057721877859;0.06695918561676828;0.01121915004022118;0.17140046855444807;0.05889309454921235;0.02163571453983282;0.22120907841264287;0.05405977444138764;0.05851384896748668;0.011582622578231346;0.07133188581686968;0.01843968612025101;0.026551105387959795;0.08525313390154976;0.033053931502227324;0.01914066931250205;0.11381596541849033;0.005781748793472587;0.03192075703004882;0.0014936213630705678;0.0027279784851470296;0.06417958995766787;0.07098554345694649;0.02495684106042216;0.009654932421459284;0.04352766451086496;0.05736173922329052;0.15804524803805567;0.0202553468873004;0.15466592882565294;0.05402080144642879;0.12375278333614768;0.1038947857928527;0.023041672503489027;0.03456128008521939;0.12429508343038216;0.026117891068281336;0.025196163661679302;0.03675298369880517;0.14285439695142135;0.16615305793484453;0.07305584168876575;0.05659960468794127;0.11054970447135015;0.06654312403112922;0.02743991183219032;0.07564257303444731;0.030000632937972626;0.11484183895371779;0.03486488796159125;0.005736216450156125;0.010473325231909879;0.03340428591393947;0.03624613279907979;0.03129463817147116;0.029678243841490266;0.09455943994930699;0.07730465332689099;0.0688551038556281;0.20539728095723028;0.07792752649299645;0.10825708555210273;0.23003577023147856;0.011154140398511281;0.027708673286334546;0.019614951538494373;0.037029737280298305;0.26224689610240043;0.06878019675523839;0.026764267251724715;0.06518570389501345;0.05084996975956836;0.03549728930702215;0.016992657817127225;0.013744283289903328;0.044536540263260406;0.11335557462553233;0.07250065732869292;0.08635052057949127;0.07669259434765331;0.039819348323391957;0.010067666794426845;0.01721405324538125;0.06977722547578023;0.05030107659292893;0.05991281354321107;0.09260328208979908;0.06495788695759729;0.20100464823381606;0.08674948140946359;0.08904057284675262;0.28300727529185016;0.3422056405925241
+alpha-Amylcinnamaldehyde;0.023053610357509333;0.000799356596945746;0.015447313804432329;0.004675696355451727;0.00879297402735172;0.05457168231103912;0.01925284459617565;0.0008806789713655;0.0007673010290141221;0.032505791706335496;0.03715886322555736;0.03178748896794942;0.13480001673722972;0.0008982480364526413;0.00174869352448394;0.002192774867621871;0.0016503003892570662;0.0015613002426395756;0.001390618596033779;0.0018887906402122818;0.0011171059679889839;0.00042410104564806044;0.01914089501033229;0.0011887332213215832;0.017192719284824572;0.04971904715091907;0.049563888668658254;0.12867663724908063;0.16235852681885313;0.2976451881522771;0.10855221207250272;0.04707581514826714;0.07524464977115199;0.014680119116310826;0.12296186280147964;0.07170142966810016;0.5083927101304083;0.07549728294359852;0.1396009363027514;0.005637091205096043;0.005873790899647932;0.001315807225727421;0.015694247047725332;0.0006094514598015488;0.12922107566317237;0.06134323569627077;0.06353042703772067;0.06336476417034409;0.06336349033923033;0.000819560579621299;0.0008712392635715657;0.004562360671883667;0.004147304091268134;0.001646380496577238;0.024599833089386274;0.00100212246587229;0.010438733683747098;0.007201299676062284;0.00513176690525772;0.013037747463708605;0.006514107080198067;0.004834949742017776;0.004263657237264129;0.005496789643424381;0.011044487451859741;0.008048498241153997;0.007585626275922678;0.004187025826715698;0.004012798409051969;0.004021243480825296;0.0011659285740875471;0.007259335775216802;0.10452637453615918;0.11086042033882051;0.3330759454769236;0.33812268870598894;0.03127119608483039;0.03366638863867482;0.018083393504359568;0.14389811140713002;0.1273140007474314;0.11769177175388239;0.08337016840139135;0.08362659582026932;0.08634466495818857;0.05613472114033497;0.0985666060978073;0.09421208434003742;0.12654353212036265;0.03599656092710485;0.0835503307716688;0.045601845088239515;0.22326294086166373;0.1358832737687732;0.1728596834477456;0.10050310761270946;0.1345024279417885;0.11816457818168681;0.2793936884344817;0.19889553049255967;0.3503556196344078;0.22416823706219483;0.23796783673304894;0.139600973465493;0.16187692000756188;0.0038275852374408227;0.0021867789613577346;0.00265357818669231;0.0030246920024874584;0.0013684843223125168;0.002511288123908923;0.0044357926382329865;0.001645521902964824;0.015010462203388798;0.010946189300401612;0.0006681167468310703;0.00039537804353520836;0.023559592875818106;0.0369439434487369;0.156250693738587;0.010807302676031562;0.0034031373915765386;0.00017637289330648642;0.01548791133926372;0.03965919994609987;0.024700034280616824;0.025920439467415665;0.045956409911275274;0.050165137156474644;0.05668999334008324;0.1999832705610789;1.0;0.21706977114879206;0.2504187637126929;0.05815058943133351;0.9713427840721263;0.48678587265584256;0.8269025627607036;0.26600997251317887;0.23601274460543356;0.0747227969331656;0.3060003512249402;0.4736657290680904;0.09005197515134754;0.42939015352760257;0.18485653698754992;0.41567435566441485;0.3371083530998291;0.17625685678073508;0.17024613370075356;0.13496243959714255;0.24530779272453573;0.26433424301690944;0.10888687335803254;0.25784930017918295;0.2735719623460951;0.1684406531739238;0.1282541316140594;0.19280756523826095;0.3403387948567119;0.155625244569771;0.38986420006662287;0.029482008939454366;0.03314304715126127;0.04524606826306542;0.008552299391267736;0.039523280233791404;0.00872960168425861;0.011879565708928114;0.1197339100762818;0.39082251480483526;0.007078589703828245;0.02093692554074013;0.007914440157062512;0.0018897323330578915;0.05813648131457163;0.006592473655381954;0.01896681749239392;0.08232059255397654;0.04520094739446591;0.04198222409833059;0.04287266912188408;0.36012004481870513;0.04835839119864941;0.02531812757556686;0.08001894901294901;0.004884624262931585;0.0013350925439863728;0.03749070768343459;0.16348997053984238;0.1875036228306752;0.10010777785536273;0.5876020023918606;0.07742195687616063;0.3144888235700556;0.23591575893326547;0.24395101718185994;0.20223274254118465;0.3330279358895914;0.24747950654166995;0.21759700872768506;0.22963002715601447;0.22593846489944786;0.013317989594818709;0.026852313146221912;0.012653380579054446;0.24130008764348485;0.05610301954014739;0.07544581780658434;0.2267505523451456;0.14576851328587098;0.18755825622937097;0.15474826182533213;0.11747095525197787;0.12211054413885798;0.07853919094433831;0.03433276024595888;0.24927889331742387;0.01777577696469756;0.09641493610440477;0.1650118113613956;0.11204416706110717;0.006586418742699738;0.015690219532472204;0.003395200105196988;0.010310661875468656;0.010035412739956687;0.008008072208458419;0.005549817797227897;0.008113913018951709;0.008744688564752159;0.00856551368987105;0.01761390651780522;0.010495608903972137;0.009697193307466271;0.0075193806629494;0.017314581162401702;0.034898836698880525;0.019826219801244254;0.006361149978410949;0.26761706475960484;0.31573646424700735;0.2716752596534551;0.04183695204543136;0.1436345498131387;0.2935493692217649;0.06433599967900233;0.35674200663177086;0.1558722741486554;0.12472742165754694;0.5413653189095955;0.5422625627226374;0.056941149142759266;0.029013314768061536;0.23253816706697134;0.025221813957172556;0.09627569471891978;0.08053095936748453;0.3665392485352701;0.11325070072474626;0.21550971016625298;0.46419305189812077;0.24035698656482812;0.03255781108901214;0.01194522228407981;0.08720282345905657;0.22491701697656374;0.3886833122264526;0.19100023897344165;0.5824413625081564;0.003352231438368024;0.5447847917143779;0.16768418108651162;0.4397413642800728;0.1311227179269355;0.1261452131917134;0.10207472801266802;0.0982240439014319;0.012976063975702674;0.19092633083699515;0.20968844580574617;0.056588508201649346;0.2146979554031256;0.13177057014640173;0.0795369638892041;0.11803515595202435;0.0181560223123455;0.026263062451696313;0.0010914516901041466;0.046490365318573465;0.02635281736241778;0.05041460682660138;0.1011605884573539;0.08481624276694963;0.31547698082510545;0.005849579430135243;0.13001220896076515;0.26483398922928336;0.1415587748164058;0.2580444536080316;0.43641134419063193;0.10872587556811245;0.1533409292287222;0.04199705781556385;0.007891270762991306;0.061132457677742384;0.005639931483691928;0.286189184216269;0.3217987145790669;0.010872269409504757;0.12102055202718362;0.3584124603277443;0.0014426131736505002;0.00961596791465813;0.1319032879920044;0.18797485275705683;0.01986485702985294;0.25116691665981594;0.03245314775306505;0.07560790244173078;0.016218595607447855;0.08249162453975781;0.21938918850030434;0.04543628540545655;0.10562547534277479;0.19249358755582435;0.06792842817327406;0.01651921765769154;0.08230155016360961;0.08620027489371132;0.07116994629357129;0.11994044081360235;0.09975029891050166;0.11380568610725987;0.06461664054926936;0.023953487141934446;0.051928802498041174;0.1491496789137632;0.07098415450483439;0.045218601881624805;0.06557889821670286;0.018358140286457252;0.23065410520934815;0.07839537103357634;0.045047205054786904;0.03010273127184276;0.007389313171600943;0.0935791919194316;0.08862590368656864;0.030853940996114205;0.0027366945669248456;0.010398351145252822;0.0384925444583842;0.06829680333511466;0.22284017858969601;0.05889572957621364;0.00012394696256801463;0.03933019589470431;0.013656731778401082;0.06657865814245718;0.05239996628155521;0.06966975580909113;0.06738566168076021;0.2810335539364959;0.01424815621612433;0.08723285339456088;0.018102781684280204;0.10271629202962855;0.1429010959628603;0.2894505634107706;0.03656344898909193;0.23799424190297455;0.37720187643476005;0.10948023081047968;0.16725175884944368;0.20466782778532253;0.05875847958327575;0.17494556669303996;0.35731040340210296;0.2848501240711831;0.05952598334542107;0.15404560375556325;0.30958597934604776;0.26560881194762137;0.39969663940824135;0.3866762262347713
+trans-Cinnamaldehyde;0.21781989932183662;0.2140192046580341;0.17463025045356842;0.269271921534592;0.2578590817133191;0.2913009917468977;0.7833005152205287;0.2757375763992157;0.2936907763459283;0.2569009021392015;0.1059391528544467;0.23497184036907848;0.8278949379967967;0.25847987188147714;0.23748171083943376;0.31760362641513507;0.16649602405328928;0.20057303427947024;0.22552490516802012;0.21459617484367227;0.21355237665581076;0.22809198687118695;0.21258994214375201;0.18430509959719849;0.1548039913702037;0.01679837528166193;0.5263247010921737;0.10060717814511816;0.07452082390015069;0.16500937820975062;0.0690560985792624;0.039760793194531865;0.13028584075708113;0.6574146091007312;0.10532318111329947;0.2937143731633668;0.1094115935437519;0.04912879020347938;0.014054643199833163;0.08837643870721466;0.04396115174393225;0.0993661730569277;0.018452974752246637;0.0005764560384585916;0.007131590562299978;0.006344999991058459;0.007632690434984486;0.014752386132113512;0.006180334033623826;0.08351011844318712;0.06740777460551979;0.02220602947623515;0.003255753725925405;0.0015231222406825826;0.06764336635652218;0.1027972105581543;0.05484807978991227;0.06818170345687719;0.052383669403535275;0.004167991931172496;0.04865366209719743;0.06455205214574802;0.08108456575121416;0.07953817958937082;0.05577046058832449;0.06467481099798641;0.06748954981020089;0.05115272190696207;0.050574204588183486;0.0499100417235352;0.045368110951161514;0.03611253219142488;0.09821826256394628;0.09697357581844665;0.01788577040082744;0.014699648152741048;0.010561818270164856;0.01408163455807248;0.0012417940183045385;0.017800900266971228;0.025129549635851612;0.016288425542191072;0.02172094183230356;0.021892470412383;0.02931637656695098;0.008267783367723183;0.0242093293541214;0.03317604700892924;0.026993905259441286;0.019144793326926864;0.005965346424491641;0.0024318583474145683;0.02888781304249486;0.009059748890023141;0.0076311040724855944;0.03536577619399399;0.036447829486840604;0.02938556381370689;0.017073919738867217;0.04851106450798396;0.046889940735942895;0.011143725897599236;0.018299416701961942;0.05675163713584623;0.022181906400764187;0.14296971358791652;0.16042243740154932;0.15853446062293647;0.15917335104196575;0.16854922459640592;0.1502934160867407;0.13190885030031302;0.18158553143372405;0.17707414382969466;0.1621149102492415;0.4785947111102757;0.41360732398276534;0.3551172335673294;0.13245571933444455;0.17830508492822844;0.012601704001391451;0.5645569508084761;0.11103514448459532;0.00941267157117969;0.013733928862157544;0.0068430168938356725;0.0055130827453782495;0.038268876458329465;0.038120307577675185;0.04800689119081428;0.028641482604346836;0.21706977114879206;1.0;0.11542782590365411;0.1864283528914703;0.19993522467225924;0.44373276004137485;0.10831167508076378;0.5319662647820942;0.48188606141052953;0.5999502125808782;0.27095655183477185;0.21441590742104044;0.5907990493065042;0.680251559593249;0.061960447440545525;0.5287158573241456;0.016508419782425548;0.04774127940396136;0.0930860849408784;0.15226963576460983;0.09880127020906837;0.03279103057327293;0.06384178314881303;0.7049671636065861;0.14760281268777237;0.15761112349471867;0.06673122538291518;0.05416894440694578;0.12609359813663232;0.052392386017789165;0.023883758980640397;0.03655275566517545;0.01581230458660325;0.025302187485035287;0.07034554741038415;0.02827403714443932;0.02463490334051318;0.02720239300578063;0.028603053323699903;0.02206279865522533;0.313067788197765;0.00214055923367374;0.0033619003211596814;0.0013280333227613942;0.02589816565481681;0.020646560508432367;0.020257259023353062;0.10531611606676954;0.6487597849408417;0.6840683433343904;0.004521395843195187;0.11749503382851736;0.29343322508480385;0.009978743749024967;0.044463780665740436;0.00288891813388735;0.0;0.8002537450617097;0.3656868637346907;0.25151030290684473;0.35609555864047127;0.1444243187365899;0.1816822890709767;0.5090475972301193;0.7541291726753218;0.7613111027172726;0.35383260139452316;0.20728912659533566;0.1488555225462945;0.39206290407278777;0.1899164887020792;0.29743854549175464;0.21493968162659824;0.261116008676283;0.19549606974221384;0.43882463311748493;0.03405084172104795;0.08391289080475074;0.14934227989226478;0.005175746821706222;0.084549812903251;0.10139134792088067;0.11005256656556327;0.1173777102474136;0.1361616168253277;0.09914187558770778;0.3563414390194193;0.013062198846115336;0.04267292529269428;0.07421172513378423;0.18043527171072904;0.10707716635980631;0.14581588314247335;0.1183899714666318;0.07552348131910892;0.10360438606362775;0.06634441439324293;0.08630295761783098;0.05453240288490247;0.05048759402674095;0.05268941008255703;0.06247546895063355;0.06930883920501536;0.05435165948927191;0.05903521118897816;0.04065203116587338;0.04856757638529097;0.055078032101999415;0.05582063886091038;0.2453412612705181;0.041054861444408765;0.038636554500673125;0.008478667652290628;0.10135131802943317;0.014551477442991833;0.0010119031079295802;0.004299767096283726;0.022869658559568577;0.007886229106315463;0.02903746868382121;0.029367646884327813;0.003613939636057619;0.134041082763892;0.03678253579804363;0.23489250939680278;0.03546907097939772;0.4144104845190395;0.0211662424301342;0.03140977798597729;0.009967858117828613;0.04511747600539116;0.03286420730371746;0.17308041728214915;0.01900576246010187;0.03467425522977174;0.06092164659858509;0.06752169030733594;0.09603184982227395;0.024552945883994225;0.0024346187675394868;0.010019379458081415;0.049064264620366636;0.20722567887770377;0.04453080022986466;0.06720404661953644;0.1319585581764837;0.17013056688208208;0.013013791871683006;0.010382516258409927;0.023946495726733467;0.021886671458998405;0.010134119734223242;0.18025424431016;0.019183415791719723;0.01805870250401972;0.001973161124411593;0.06099864963212623;0.0;0.011624508577702213;0.005087536210380179;0.03163055009014429;0.017135526358569242;0.08648456492719601;0.4091661318419305;0.9082385073137504;0.033717549854613234;0.17992328761795515;0.009429725614160063;0.2720078347294469;0.17725199106950298;0.1078056220071543;0.11052395855629217;0.013681701379169667;0.919071067630276;0.0968334291459773;0.022280871736285467;0.010632805667852073;0.4382911027415137;0.00029028729977877496;0.31184905728031503;0.033823732382214894;0.0;0.0;0.2458900750109117;0.2190104369629424;0.16025839093097405;0.03385859615177514;0.07256382580611746;0.005120180080886459;0.05410328768077112;0.02361717486387572;0.16896523213156753;0.06645108359146291;0.06325305977690485;0.06472628587262763;0.10820872861250991;0.003931383680279184;0.028006244366911754;0.021015073330441125;0.008605600942852964;0.14563227937447562;0.05846192377413946;0.05983022592954402;0.1464352237372022;0.12464148649148828;0.029180573845363305;0.0890147245956397;0.14557971162818872;0.22708412057400273;0.24790436734783775;0.07149229785937265;0.055039487782468983;0.0;0.0007828673742485037;0.0;0.00011746272268058089;0.01392003593410492;0.008864765057229718;0.0989128155587077;0.0006896864241158323;0.0017239939748883582;0.0020411457197066305;0.007104844823540644;0.17774350309505915;0.016065587039012973;0.00013883782947192937;0.07546661549272021;0.0028944571639217655;0.009643191701585235;0.036191721974520356;0.06554941539646537;0.0019238886363432146;0.021886624815156824;0.000339302136800337;0.023846740960163305;0.0014462692659521937;0.013444844510790357;0.03962201743569386;0.037439249048527176;0.00953919207974672;0.007518119528527693;0.03058808579968324;0.40943006129546355;0.01779379359663266;0.023050234025933616;0.004861817604007132;0.060740884377840136;0.0976184583993702;0.15594033980861535;0.01897543908144188;0.008035632649400371;0.24835363547938138;0.23572706628756637;0.19137296074014856;0.20563550931267113
+Citral (Geranial);0.028165633759299286;0.018354449385919826;0.038213817637001435;0.019178110240483815;0.02396147682658354;0.0491398879027345;0.012945632844463593;0.01825695608812215;0.018072824068957858;0.048301141846989123;0.3810844978212693;0.03973948407061033;0.022374463076812956;0.018041072540505833;0.020681263522903677;0.01750110852868131;0.021360657950225726;0.018504109016681983;0.02049498176496493;0.02075732828028871;0.053077275439172227;0.05881653667864388;0.0846164280290448;0.04068207657270442;0.02967840940846345;0.031964960203818185;0.1005170433827714;0.4127216360344189;0.47312692465463213;0.3060203615906274;0.3803331166658504;0.09059037753705065;0.13729176414149155;0.02780352765046846;0.09650705465167538;0.16182875361572538;0.3217251578650221;0.4289874796588885;0.24638996709463196;0.059280686611982554;0.0672417568587236;0.03277826049348687;0.033703524084641244;0.004204513906315561;0.011241895735329892;0.012787127180475004;0.018533705604812035;0.01734154125123856;0.018797460574105758;0.03370346657635777;0.04846796401684732;0.015184289087206404;0.0064374136155858465;0.007817900584814387;0.07735716973279186;0.023297189253703873;0.05049665456939744;0.019403357724209997;0.044324197919252316;0.06530813935436015;0.04760701674230751;0.057629273509533965;0.02776829195759093;0.03062667394442237;0.0643188908585132;0.021274860605102985;0.021508514940832314;0.027232190183913395;0.024418369858541164;0.026319171507041328;0.017975848682064404;0.024941985541963647;0.49941073370988714;0.5241515521619785;0.29270330545169315;0.2849027743764243;0.06446455943341424;0.18562194174286478;0.00433218413929787;0.11991976905646487;0.32430318588753626;0.33844185163344565;0.4116164716771393;0.4096382535607454;0.04707836831408235;0.02045859371768649;0.01832503486719505;0.04518940453346187;0.09641725528144737;0.07841558156909038;0.02316467629165244;0.019523871368777583;0.12005136214184933;0.03720295771380228;0.05158090310668029;0.5682211584584778;0.5724284577573521;0.18429122818595994;0.13428667093808758;0.08509127024723104;0.1786030618327969;0.10137062240229056;0.1243228653160652;0.09812642898479748;0.06194404080960524;0.061196992157111656;0.044925399610709786;0.04116332762544157;0.03071524698374399;0.033956409531275725;0.042077662929831276;0.05091282816416352;0.029517462788930325;0.036646067981185484;0.0548420366552615;0.01789332809331164;0.018248622785279747;0.04469734012783267;0.029857663629248413;0.16227389561149072;0.009247225474364526;0.02389811587578694;0.017563700602863764;0.04928742325214156;0.4208945695472574;0.05565548954241554;0.056933152555977966;0.19682963777966142;0.20904377572330737;0.26077507941624223;0.15004581823782628;0.2504187637126929;0.11542782590365411;1.0;0.04220907948746987;0.09805284603495225;0.6264837495599943;0.27035202630138305;0.46558035673154924;0.40637827346716243;0.5398801878440175;0.3932768005725841;0.34110104891643955;0.46080020971607555;0.2725322500224075;0.17033963379087314;0.16588011663710084;0.20522747198622115;0.40306983159969134;0.7195779456690605;0.1150625858712958;0.6529741834657955;0.39330858816377834;0.14919872916662982;0.18973219104927422;0.5667995576404518;0.4306656550525657;0.44441689448971583;0.47191051834729875;0.040641216891624;0.4113144365309882;0.3039406808396878;0.04273889365219856;0.02672094307559422;0.11027696407124811;0.023099965985644896;0.09942880293102636;0.07947232405885764;0.07602669589640633;0.07471583244384089;0.14498915411612376;0.018182649297466835;0.007748548170969721;0.020718362632406097;0.013848215084634206;0.3827900789763912;0.02911652543862385;0.05114616891481093;0.09215905078264293;0.0611682135823703;0.07083752611474345;0.034347078513353925;0.13007196858019257;0.14408058244421615;0.07103877961865492;0.12164407399740361;0.017364313433189886;0.0012089090150165004;0.03650944821476654;0.15999713098221754;0.2355557145293714;0.1873426792532279;0.2820383311792492;0.13612252718310422;0.07935286574918082;0.023834122145020877;0.02189414950268503;0.2864782765516377;0.4879429696416796;0.36687765251793203;0.3291921955509542;0.3594802858652972;0.31059902689146124;0.22254146373523392;0.04337832053594933;0.05545418469989148;0.5300188378050862;0.32505059714977586;0.042998539138875226;0.07409948831570692;0.0574260773098199;0.4445839387228924;0.4400535352961942;0.17036051806951083;0.2526585547623249;0.024477833165271447;0.27475905101048453;0.350355143811452;0.013771396392772436;0.17889037612307893;0.4288027022272728;0.31449904713882576;0.05104670513874963;0.05385008372126078;0.0370472353910648;0.06312040452822522;0.031038467414221695;0.0718146351626793;0.02856090551882797;0.06220153669955519;0.051023134662568234;0.06519637509185477;0.062321666653442735;0.02594497867246211;0.06334094183044044;0.0772467383149143;0.08641833564127095;0.12840224794671676;0.08971100962339851;0.06129554772057389;0.06185100615545309;0.3472898844429401;0.3544973533337622;0.1340760602010435;0.14792487704034551;0.16784647952065926;0.07050028974413074;0.06444831637441598;0.11295599077113132;0.10218746804577039;0.010013078415264068;0.00933163014838846;0.10978130094181851;0.11066521455077405;0.19045160445194043;0.13536986616316285;0.08105027952184662;0.20451710057807135;0.28748204606575456;0.38604692434154503;0.08674811278977229;0.2508400178883699;0.08449718652844058;0.009967077136889657;0.01304149309383303;0.14306856055754513;0.2164275714602345;0.12773368672969762;0.07711724220691508;0.13645227611062116;0.06269626485184748;0.15198949351620183;0.035085865264514446;0.2648065823810173;0.1049580012062674;0.15407052491666626;0.015918691710446645;0.11924060757848783;0.08952257866710567;0.11511381703791526;0.024014260150561687;0.02015230271366462;0.08796304878982222;0.3566046518549643;0.25446212390534984;0.06413066857337194;0.001219404908699833;0.03291421446080923;0.0009882953759011977;0.17471275092298996;0.019788488658004914;0.05947147621203946;0.018764545132236295;0.21418178645157362;0.04395138301995479;0.018095464454940615;0.2039238726136415;0.2543215308436673;0.1083983158712848;0.14280675756462832;0.03546282304974884;0.0403052782969987;0.3958374855166885;0.04772311503784097;0.018162546633622958;0.05418802343389819;0.042441177982963686;0.02030064264118328;0.016860115688544217;0.025858365466109874;0.3875508708537298;0.01753777261395072;0.006302044137477862;0.009372737855438235;0.08476643416126708;0.2832386364948792;0.02015473139693288;0.39278953773769454;0.07903558778361722;0.03850938491674543;0.06236942479832382;0.14989760202228716;0.2455448237770465;0.014331296534768893;0.234613498753435;0.4553005222167358;0.20067798083340782;0.15755851500320983;0.0877174261660606;0.5041174127386178;0.09854878412143545;0.32997421107523905;0.11140129610390201;0.12684984816250613;0.225102072664978;0.0420807187358586;0.07162935980790755;0.05756764697255511;0.04627795877597175;0.09234865569022947;0.24855295142559755;0.05934416062017204;0.37381983707977573;0.0026833421105539788;0.01926475029197905;0.03471157961631768;0.04297171528451844;0.06300014968731117;0.14443738059058775;0.025197028797705575;0.020487559478623057;0.032256859592829604;0.05885972854024838;0.07064735072231838;0.22080633395259408;0.06200679942762527;0.010032112584273218;0.05676798839170499;0.28382494213954673;0.20347487314117776;0.13159044758715444;0.1094089287112909;0.13005755757694346;0.08759860094659928;0.044999720869699084;0.12147942726779934;0.016896265100201684;0.03164714666819154;0.04647244051397832;0.1433841000507052;0.09392642205637826;0.17656100606489888;0.20732762509001332;0.08918944671637254;0.006181154081549298;0.020346851508581728;0.15358734400562998;0.03209431600902167;0.15303034047327502;0.09162039449424589;0.41241359917477843;0.2586907336581194;0.12082371548112734;0.09266608690859857;0.41889193920212875;0.4424265020327893
+1-Fluronaphthalene;0.9229504819437464;0.9464730798814519;0.9529548106373515;0.9584795769977694;0.9643739886043317;0.9630105201123275;0.5312795894762549;0.9597433213941918;0.9544731935152938;0.9608072190977778;0.36067065000774495;0.9635373051255435;0.5792492262285617;0.9507879906201037;0.940780975826004;0.9052363655190375;0.9760903449058168;0.9656595177728203;0.9402286734326758;0.9598311489333049;0.9593921809480873;0.9453194844355641;0.9222796107768411;0.9712762255884978;0.9437949005499666;0.00790667596390465;0.45381407105199056;0.3062117287814877;0.23805460817186574;0.24861953756795338;0.1435533547518806;0.19883070341745565;0.3556010276528825;0.7316933909915426;0.5404382559655484;0.9372113151099147;0.2996190656698425;0.1495774293176639;0.028474061020653734;0.5400266640144912;0.15988309754693245;0.5945302572731609;0.061247791125655045;0.0016811251041261147;0.1064213415773682;0.10132224548036346;0.10953720399530925;0.09849234252547;0.1228314734908804;0.44204542666988944;0.3302466320015168;0.12909593112150705;0.003819105779248649;0.0033946503479416867;0.27796425793055324;0.6164171411509679;0.29326342386140836;0.4112447048929593;0.27824285426814854;0.03993429788024609;0.20825388755595806;0.3696856344414264;0.4870093638730092;0.4776609684260449;0.28726210609570535;0.3893638072426864;0.40732856873638457;0.29876883368396445;0.29734719556414824;0.29531674216205556;0.28060713605281484;0.1961928737185184;0.0019360061712560836;0.01713129314773795;0.01267958664760501;0.012933973486813938;0.0006437359274355433;0.001383590944771852;0.0;0.025210355768741057;0.0018589419287632315;0.0002788820389464855;0.0010567733551530485;0.000674817809240216;0.01989433234338483;0.0013310445678262508;0.06701667157629122;0.07508408485020578;0.010405862829791364;0.010402309544841837;0.0003900599017790701;0.0014332045871716236;0.013637010884118665;0.0010787060290559922;0.0014402166288175894;0.029037135271123716;0.0024442732117729666;0.011507257151316277;0.005436542576978603;0.016103395721966698;0.026897618681992013;0.005812175630694615;0.004813215752787202;0.02660933782542699;0.023798824396661297;0.6380912554253618;0.5710269375425344;0.6015667347760377;0.6124952455751771;0.7268832513310646;0.6814958340437967;0.6226437528783825;0.731045475917224;0.7208906495203196;0.6956859389352126;0.10145215490628252;0.09024233035296703;0.08796079479573055;0.5380698763704106;0.04205550844393999;0.04098824310229064;0.11602474855661872;0.533998997544429;0.00571784449303852;0.00952574143672135;0.0007480959172972713;0.0013061958155039068;0.0012736744463119048;0.0017284294757855209;0.0018693105049391505;0.016991044476112136;0.05815058943133351;0.1864283528914703;0.04220907948746987;1.0;0.04023190021496407;0.07063577069677779;0.008830759281069933;0.6819057454918607;0.7721690399611649;0.3267139506174829;0.6828844079724452;0.08892363470612465;0.251238560955016;0.5628220394226513;0.051428687507315635;0.02894317610896334;0.02551514540025994;0.08349121933180058;0.0983958175982239;0.4440481558797047;0.02480835518993839;0.025209951954654933;0.002682016349477;0.6173769524112825;0.347121052952458;0.37746709269757656;0.12709349358626504;0.15463156328924152;0.05332586710892615;0.1583476949726003;0.016674379425191843;0.006535280972782761;0.025942508656296295;0.024530644122658395;0.016797735043925066;0.04324103179408899;0.013716057213871513;0.02390068269302818;0.0339170495424142;0.0361101389797821;0.07989400539790542;0.0;0.002459698976433103;0.0031925790480671346;0.12473647552470572;0.044494789533587466;0.030128430960584148;0.3300805580365244;0.7463008326911496;0.7309071857854937;0.0017837284501134782;0.3318879200437077;0.8585492917883094;0.05732372529254314;0.03208070420194988;0.08427994104819903;0.04028111552469732;0.5321623757114168;0.6398443731267088;0.7298269224520404;0.715204843871102;0.3535860674918717;0.7184275473721391;0.5558281861093032;0.661276392468984;0.6441182931169567;0.6566855641488595;0.48624279623037053;0.36904767724082105;0.7176524333963256;0.40434891043183224;0.5875767999919622;0.6976845130014601;0.06672203406148151;0.9755231671812458;0.6585384894288052;0.11818895390035014;0.02478147155895898;0.21743270535780038;0.00887836131059853;0.5027916821543922;0.2520063030312535;0.2740016360246297;0.004949335090180758;0.38032080023298004;0.490502286803384;0.08430398749617918;0.000785820321925898;0.00863436814887112;0.11542173002191299;0.030266497272679157;0.029913850334107817;0.7964547228697965;0.703869400939133;0.4520693532428376;0.6218096881230714;0.38380995401662504;0.5189974494050758;0.21033957174843135;0.2184881364237308;0.19321845106857025;0.3337024296319584;0.41933436358924975;0.1165626916337814;0.2559338370576337;0.20069244408322354;0.24062690950774432;0.2772941131320366;0.2640254646959964;0.22170684651359465;0.07439430317965105;0.0683879548735432;0.036238493982371854;0.051452448832526046;0.03162248996228129;0.000938323239083792;0.014068080485588646;0.036946820426212265;0.04887284618309381;0.17779332154697275;0.17977651596878613;0.08976664695998715;0.813154870841078;0.012903342920413162;0.02635486257785205;0.027989382716946;0.5056119103946254;0.014769127026082577;0.18389835430748638;0.04053513364772937;0.2393781614742603;0.0;0.00020870769511764924;0.13801455512787875;0.024111014747020536;0.3488664013759231;0.37419339535912743;0.50270904278167;0.17692683582653226;0.016653240268140926;0.07113037723922697;0.2342142183391442;0.10788071209765072;0.056934390574945835;0.37484854466325;0.014498217856638716;0.01304529584057954;0.003390448190631762;0.0011057627349605882;0.0026942607614238497;0.03451594004357663;0.04228867351557752;0.7073549221673656;0.035006956408092746;0.04785247104426113;0.0021018756165770936;0.3607044206220584;0.002044404149283529;0.04029299753192275;0.03649896993198134;0.11548073021190314;0.1365418367610416;0.12394547576804674;0.061957202209785955;0.2334823869411884;0.18561708079462363;0.31295099990539205;0.029148051684545297;0.07379288546633024;0.21293582276607964;0.10075688099428698;0.31148842930664433;0.12678492570239533;0.27194304542833464;0.015496426014632804;0.13512170292911063;0.01205369940750256;0.13605268453483302;0.002247935678561245;0.05656285237416789;0.15373604860161258;0.02231445817774383;0.02244491945724948;0.18835286009160707;0.3005074072942374;0.8707352400532139;0.07338098694718427;0.15122051314034762;0.024333522626470875;0.015269151052253412;0.1427063617054077;0.03443668313437475;0.38741535913053327;0.1763401308954592;0.011633601342964485;0.0013948113205595784;0.0014982710424800787;0.01887283568444412;0.02678879633105328;0.004370640822688371;0.5317911116779742;0.07824331884980595;0.06813450507372701;0.006418461140068418;0.2248140458849416;0.015551557169662087;0.12949656771158713;0.6644609565467874;0.821872477841068;0.8812768953131401;0.3864159872230284;0.14081821534725214;0.0;0.00038615611370031313;0.039634925627915985;0.037366162577867665;0.016495478647397047;0.026065056331289423;0.00421079577763193;0.002247966098596401;0.0034748786552872197;0.0036628157005161592;0.013287807577489057;0.12263627381501496;0.06894338141451825;0.002058759264577457;0.0379389382158671;0.00337188478784537;0.02184861750197571;0.1364587107909353;0.039923599727485166;0.0027397824815361565;0.06391351058719505;0.041317550280057694;0.04310891080152519;0.0043667847316602336;0.0055852026636538;0.015350886808940662;0.08164178854359702;0.010270300890716354;0.011334326055753149;0.07676396673111327;0.9073412463937433;0.015473743592143046;0.017249750891025532;0.0038057453837750752;0.0193854323322703;0.22689230709929703;0.19820647654603316;0.08242919299588304;0.01354904949862335;0.7737174716408716;0.7940265780986792;0.188439261240105;0.19910283813930793
+alpha-Hexylcinnamaldehyde;0.01779332896596812;0.000769951976876499;0.002334854760498237;0.01710148894311513;0.021019932364328857;0.0687147271747851;0.053093627171244294;0.07028376505819312;0.07338652115762988;0.05780986586288185;0.016516871767522347;0.023065479300727085;0.0003225741801347123;0.00030199867062745303;0.02228897941938492;0.022182136025961523;0.000553631438332859;0.0005965056297192266;0.0006286401974600406;0.0006568468576495011;0.0006398731996611912;0.00023948328298599924;0.011148188840793369;0.00022460361357594212;0.010529544350458131;0.04608979278186705;0.07480131253491802;0.07188784491558957;0.13913748379139504;0.2782723718226388;0.18728137890322066;0.11746355650300655;0.033194434735008584;0.005393142331927464;0.13369397964347063;0.041178189433903535;0.39007042323728613;0.05746208702087453;0.011971508846664218;0.016337794021087725;0.04512339131809126;0.006948751802679013;0.038627729715287766;0.0004972891393318386;0.016485202199209487;0.01824249013802787;0.02072184672950732;0.018696392214820824;0.02213210752723146;0.014637308483902205;0.013841494688262922;0.013889343020543937;0.1181250260183998;0.03552818719239715;0.04053361115217578;0.005529632093079835;0.030672457004615825;0.019790315914694042;0.02969443534861326;0.39141460965496433;0.04339794960995375;0.018571812775957725;0.013248545223576753;0.014317399297719129;0.03328608223738841;0.02191327621897482;0.020489463675018808;0.028367967827439614;0.02728684099233985;0.02776909054212732;0.02052305961724349;0.040507575765742765;0.08748783652507994;0.08068477141022126;0.32078762422154444;0.32545784191945254;0.028520334910600506;0.02340266908005168;0.018531067927643505;0.06272588080486677;0.11602422760370094;0.10486902831598442;0.06701120711938938;0.06722346542297217;0.08365309667363838;0.056911836182533246;0.10043793081487844;0.09293303946100935;0.11727393918604534;0.09328040110670345;0.08309455973601163;0.04481615103058144;0.22111987264620347;0.1364419879408763;0.173405186225332;0.08005159813068964;0.10615371645922911;0.10551446554792837;0.277153550085376;0.19082952259022443;0.3380340182560861;0.21744000236242997;0.2290192505038979;0.12287374177026;0.1460766475453936;0.02473853487820941;0.02634971183336631;0.02534248326353818;0.01732177138492112;0.011815129054293777;0.012250593747148578;0.01548605793506012;0.012237287806824907;0.03422747061657329;0.030173685340726272;0.13433827561478276;0.160380565312274;0.1013208359333725;0.10730049858471241;0.09857422455068357;0.08997192261562542;0.034428643559263034;0.09481431347623487;0.044780085940736514;0.009921025052962476;0.021760632786674398;0.0233545856748714;0.02775099779175645;0.0235382511799352;0.026835286607392823;0.19847824429125283;0.9713427840721263;0.19993522467225924;0.09805284603495225;0.04023190021496407;1.0;0.3943570481643533;0.8177852547761192;0.2041225629954376;0.1825849545606799;0.061498559249545684;0.2516319927249141;0.42290155673454316;0.048748157208039086;0.39721300194231696;0.16986411842602514;0.372588958693117;0.3385323290864245;0.048801268085498346;0.046062941480877195;0.06923434390981657;0.1679048513898786;0.12521299350613532;0.05911722931818704;0.16484712334123558;0.191380221099694;0.15772790774745318;0.12372840815212306;0.1827486115738278;0.21608682838245238;0.14915198358739667;0.18279985612083655;0.012330782050891602;0.05540353378867474;0.07384973477329262;0.015949019680294378;0.07818785215064739;0.018647653132019017;0.020115377835489435;0.06167299899863992;0.18597356950938337;0.008958206151899724;0.04301389000642625;0.014487366538846585;0.030907064193737562;0.04976340916059449;0.004136732140610815;0.047542414941283986;0.1261344300692632;0.04659429962558975;0.04107380944683035;0.003533253958292873;0.33873499841684546;0.04358394748511186;0.01872063559682779;0.04683641609430291;0.16453904579970213;0.0006178527526984634;0.028592672567074963;0.07075710101637475;0.11892555835344752;0.0012126516399416983;0.6004245630788707;0.0035380540274612252;0.19013004374174605;0.23797833839622623;0.24674915744367493;0.1933060049853334;0.21304798579085352;0.23928632672942837;0.18687662068235447;0.22663302557275586;0.219347932061841;0.0056450975781895205;0.490966500197912;0.008241855851881117;0.20345134263332693;0.030887834976901535;0.4395550181817332;0.1906325812809012;0.18530983340527027;0.016808368318272354;0.11326922108218943;0.09157595093609837;0.10454089073044764;0.2752602549623747;0.024661379826049653;0.13699684220945038;0.0076680733502975705;0.054452636262791496;0.09700927428970045;0.024922038876525086;0.008136330328091884;0.03605707353405907;0.008410500245833688;0.01921563834288422;0.014155891294155473;0.021951225217001435;0.012432599544687296;0.04258451357173349;0.04446236800020691;0.04724268131503463;0.03546231167443454;0.021191297014118857;0.060445521120948295;0.034137073927018396;0.018982473761111545;0.07198856535044769;0.02557705928981025;0.03298775962406698;0.2976605432979004;0.04173544747804417;0.02879020926120152;0.016610551260075462;0.10653584103347345;0.29928219469803846;0.026292324029806868;0.019327221780236478;0.08665407271024293;0.03623604186542384;0.011363004036728418;0.010651781493604344;0.06966049674770781;0.014386241022937965;0.21130399232419186;0.3224724416987554;0.09580564565773789;0.016405889644106334;0.10357358485022185;0.040084876687439056;0.20279111805847871;0.0191722071041301;0.0012142861771900835;0.02551267182875605;0.017573259493986273;0.06573655435298696;0.045454669373743935;0.14228556297419426;0.10993617626490736;0.007754043829644457;0.0024332963021124203;0.009207683430252231;0.1835957451504211;0.12522334258838666;0.04066586798950065;0.004469341615782733;0.09531071437772219;0.05524068392048271;0.01006006895495301;0.1252533702670591;0.21252496390310574;0.053722110069981156;0.2014351030019118;0.05060698430783747;0.0442622717451852;0.10669711196840626;0.017896764118950904;0.026102088138032237;0.0006899859458959756;0.07559707761905912;0.03520901736689371;0.020030595078700874;0.11836539871524372;0.07458596436408024;0.29705449113295346;0.003985975407956701;0.118862266183978;0.1724391467590256;0.08296623957738432;0.24634895474894433;0.44363410877349;0.1075484494323245;0.01676798207098314;0.542701193983324;0.006136073477304551;0.1955957359844612;0.012245097837274828;0.09376270339240307;0.3006693829577986;0.007726501883971749;0.008020644024100769;0.3657371494022466;0.0009229356343565102;0.0073838901922055585;0.12363852591906914;0.19648897331335521;0.039076642080119316;0.027559202719946087;0.0317104207989494;0.0669442635195904;0.009734703439475656;0.009477623651852967;0.19352516396163744;0.5105189106944145;0.18713641337876533;0.05974192682420411;0.033498730237026604;0.016697672789655827;0.05828640895362823;0.012879137682701644;0.03598848451574351;0.022140035072963832;0.10531348237413178;0.11669948950759032;0.044331462349754734;0.018703606548556125;0.05377568669567068;0.1384942633561204;0.1614157128299805;0.013704348355429895;0.05604301205826559;0.12156962171306211;0.019428417967221653;0.04395191782189794;0.05322391040602916;0.023947330473220264;0.0013601970705165876;0.042783460832105116;0.040920853058538736;0.025949085288675074;0.07704324250125143;0.010054638684791794;0.23659370759516457;0.06348377397139063;0.20383855075830523;0.11443712372876137;0.0003513303520309819;0.027681446437422656;0.01099879395313568;0.03474405075235688;0.1404900314143178;0.04849020413416294;0.046427972301252035;0.16937000250926357;0.0029535725422034516;0.06275516794375012;0.017454638368027825;0.11123645120805407;0.12614101365674898;0.26645401031368515;0.026571926403676505;0.21179347360908443;0.32731056497652894;0.10546254199040322;0.15809991923202282;0.19657985257657165;0.1709750245183438;0.14700013977776144;0.3404212915911324;0.23434880714588713;0.054132320338852194;0.03739131911894814;0.23677821646157235;0.23390022862131876;0.3275629695571044;0.3296664885135528
+Lilial;0.06108738966282499;0.0322929845799878;0.1331674609443896;0.037018126860365215;0.042587564912293;0.07269828525223535;0.0182104844318071;0.033123082232361406;0.03312983219116032;0.08389669501387453;0.5391398165166887;0.11211875090221811;0.05492063318386814;0.05065144307806854;0.03211773611991781;0.031447307313130175;0.03334941879390676;0.03301897628918546;0.03174514245981735;0.03279939137903091;0.032292256922646395;0.03144977776685831;0.04018618062607141;0.032373212532918305;0.06093930161960609;0.014191468238429856;0.11934835577267577;0.4581110274187486;0.7180783097652698;0.37170000661967606;0.5831640761430342;0.041210879576046126;0.082977686731735;0.2428356618943015;0.07202381056479563;0.12526656878438133;0.4778876481407714;0.6802470746511254;0.06426694647333003;0.026701214446528496;0.014264585373282998;0.024236576036821767;0.028212038621492214;0.0003940135379704621;0.0649510260789055;0.0281496079600868;0.026882653036426642;0.03218507482590034;0.029578621466855633;0.01643507665349758;0.013849920313911648;0.01085997624069835;0.035464901506352335;0.002251654078480792;0.03998550600655015;0.021511756028440035;0.025862621584329976;0.02428334092982082;0.01772664179347472;0.020121727321595;0.015884027024685006;0.02489515985045134;0.024663360643049963;0.02538838683531398;0.02713905922776432;0.023384325104857252;0.024053002021057243;0.0223538329780828;0.02030418723542157;0.021051233553230114;0.019316080906430885;0.013061374540690025;0.08206312049220489;0.07646678571635805;0.1382507093841318;0.14588498185385387;0.02118199479545522;0.02214525464798669;0.006547329888605077;0.051699519229838814;0.05252322403138387;0.04293270493822037;0.04007412886176653;0.039852786660223495;0.044837882260255826;0.022734243334476344;0.04583849185137931;0.05143253342587841;0.11454806730567134;0.01832313297487046;0.028958836670816807;0.01664022456196413;0.13100776591383761;0.05083425018005442;0.06639060383868339;0.07483409675795709;0.0965551788668589;0.05377517225551425;0.12416542156899897;0.08222672243187958;0.17547553145394118;0.10698496827135774;0.11532225703934042;0.10943245115655872;0.027969325158367288;0.03088370070759223;0.02193449014186585;0.023939897503925747;0.02647686389862716;0.027354747555504638;0.027409799295706663;0.03331195110926321;0.025859928741051304;0.032876341117389504;0.03070943177352112;0.001406173408264826;0.001016010074470842;0.06450724172825596;0.03755214697253333;0.07398141673449879;0.011764483963396053;0.006783643313130197;0.01782112430948334;0.04925743337262601;0.025436692504535584;0.01798321785709404;0.017501037348830517;0.08647672742178737;0.14546439932820387;0.1016371505886714;0.15537121909882307;0.48678587265584256;0.44373276004137485;0.6264837495599943;0.07063577069677779;0.3943570481643533;1.0;0.41151962715786805;0.5415230814543037;0.46325704973194615;0.09621827861516107;0.5217717346884863;0.3411686551962662;0.06302949090137025;0.5331957111351276;0.197440715037687;0.37602623444034905;0.2552818878096359;0.3789139953426023;0.5690978726380107;0.18440382277693662;0.3987568998145955;0.2524255816321817;0.15705204873312;0.370628649903536;0.7171326126458725;0.6837784707593347;0.7900184200970749;0.7488850635738216;0.10440506319185745;0.7288050046111416;0.06863396590606317;0.015353665985073433;0.025140188440330936;0.02482832588760662;0.0024640561395326333;0.02263045257899402;0.007496669109035691;0.008100238251432041;0.04967970742401637;0.10731639977925751;0.012307462202944139;0.010683081779042012;0.002196828616367311;0.003434345266170052;0.6849907257065118;0.28895737282771855;0.03570902052580464;0.14722949279861555;0.07328950601387929;0.05310972558310933;0.06290138796876665;0.26241343276618523;0.18440940887979484;0.0495214250696198;0.05528950394444679;0.051003157183535604;0.0;0.027459506071023737;0.1286598913779649;0.14794474355036172;0.08469208074014997;0.21918695629833454;0.1643123178714999;0.2864281575804292;0.0789841731892282;0.08085637655674976;0.5112797065687767;0.656846667037068;0.6549593464617569;0.517626002317005;0.6445031584814507;0.5480699217006519;0.37138260947516544;0.10802666238130655;0.07430410185975309;0.6160047260903222;0.09312224934227735;0.1091665728395183;0.2570989400819601;0.032128834463939826;0.40951160473591375;0.665553223782053;0.20070299586047502;0.1627456952473638;0.10419797758201937;0.039512388160367;0.2640867773699287;0.022131642867900404;0.31600673712404403;0.6696354923513126;0.0920286299382567;0.006134882269941741;0.13403332608182664;0.03613038158311735;0.019810994333724748;0.02295555573241751;0.02830344290804418;0.02734778324265153;0.013009507233989182;0.014944067132423257;0.014114856390620996;0.031001296230391807;0.026214684792882928;0.009432731691638059;0.023981161261866026;0.06122369040709209;0.12890845744873483;0.04947877052137029;0.019545338239716898;0.2639901911847623;0.38507871457039383;0.3464291093222802;0.05566321510487254;0.11663598042790384;0.3881204871231305;0.016052924053199344;0.024104246141995748;0.09833092251403518;0.029056779217242562;0.07526533997781973;0.07642606034459194;0.03638880460753325;0.036102489844901026;0.32780868926220735;0.02304328329022043;0.10887848631163122;0.05110440780987216;0.3251236750210511;0.6735323150647593;0.18119174196613183;0.0819894082119515;0.11826128788957346;0.1177164310685589;0.020476345413155916;0.060329065319569386;0.18619192560907785;0.2541589788118898;0.1951829052509153;0.13516767501544116;0.00605368701553981;0.21706457940166607;0.05422328379057622;0.4385063144490828;0.10226126715524236;0.08939448595275762;0.010675690542333655;0.07287201287193514;0.01859413997433643;0.11340837318108153;0.07395684812327535;0.04088962117457178;0.17890853104804477;0.5151135376977835;0.2665179822674137;0.1749786873774317;0.0038062321758563084;0.029196207940172057;0.0;0.21732597922406294;0.01477703376296233;0.01627392376512461;0.020647245432026392;0.08762279082989177;0.3405364321740635;0.02860539496802145;0.27732302784384044;0.416257350193634;0.03438857197920451;0.3128712617892665;0.29451762657747194;0.15152927786932366;0.6193428690353804;0.004504569169321851;0.023365293438549452;0.014296267332275929;0.029989784561767856;0.2467642399180239;0.3660451237589265;0.1450879416509861;0.2591050787055149;0.1561307266386349;0.00030201039553727976;0.007066942626452107;0.3555137857183587;0.6087046401886363;0.03556818028946548;0.5933247522669067;0.0448852473869027;0.01259525886964587;0.01764780872123536;0.04739994779727479;0.24428334041088218;0.046440895931909;0.11750253807985873;0.36177477692269566;0.2699357035264211;0.00436377463434878;0.06953652599354931;0.7541120250373102;0.10635164823726649;0.5201857406385225;0.10703233830010007;0.10426705009904728;0.1104987441617256;0.03309922805491248;0.06466806069607753;0.42499438289579045;0.055015636338377236;0.5999007596443101;0.1779121800433901;0.03173009582634387;0.5104912720405099;0.03151402265331334;0.013995131528348989;0.012384883346107229;0.004534805739690006;0.008897428041805551;0.13759972519386493;0.19898724691909395;0.0003837438820810377;0.004492619232634549;0.022046613953336545;0.02721651800632622;0.2916673632178498;0.05086084948133479;0.00015741211027861152;0.04097451463169309;0.00692692751759577;0.008705296562347387;0.02686870697048278;0.060094933810546966;0.026961050031737124;0.10265167111538555;0.05143787779341772;0.03387282119152489;0.004049707573287244;0.06832330546720726;0.10731433642177987;0.12598621327076795;0.06157616201639503;0.1552997695452499;0.11541718192594048;0.050535729898379234;0.08283960419626556;0.0998415041604177;0.03890254543500234;0.09458000814012091;0.3007156111644892;0.1823535336390023;0.7300393991710936;0.1224361353146825;0.319928870156758;0.23568141314344906;0.5069784031187944;0.39522816803632466
+alpha-Amylcinnamyl alcohol;0.03408613628710802;0.006258603008252157;0.006392264154905543;0.017228880662814496;0.03049373593211186;0.0917742269593637;0.0021257965948930833;0.0048792809443278925;0.005083456187401506;0.024296612436296678;0.012472288039414598;0.02481712390766478;0.0016083289441445878;0.03784572557206909;0.0023786458049597893;0.0046551143693688984;0.0021023358120807957;0.0046948354125335;0.005300719274091307;0.004779458546212301;0.0010122577037154907;0.00017195561857510499;0.02484851414956493;0.00023745060164170645;0.017865935623232163;0.03075085824549662;0.19282063008758468;0.11802868945235027;0.16947587315259555;0.28781709030541464;0.20792332750964024;0.06189360970960523;0.04523781028534693;0.0075015622004814125;0.10948581880544771;0.10144499421966277;0.5701156774746665;0.11312352001244287;0.3444470840812156;0.006537299136743132;0.008683278632381879;0.002583032508856092;0.005483838874688374;0.00019590991364924214;0.11933814765930223;0.09497745021338977;0.09416894952569947;0.09077337483956456;0.09868558960151366;0.0006702914048962812;0.0005259225581078801;0.011247046810684162;0.09114384448237425;0.00471612067282128;0.030133659510814485;0.0020234753055176045;0.01976851424252415;0.017061143323502333;0.008995235411029989;0.009899185349000047;0.010158357291431948;0.011316892509671375;0.01084850479252653;0.010872626659096734;0.02343084448055712;0.018283616224990307;0.018060174294363254;0.00885845794576666;0.003953194118069539;0.008852206602040497;0.005318056123285166;0.008934545504017148;0.16626059948705366;0.16071673770133546;0.3789750540040996;0.38309585355328135;0.04511533171045619;0.04405396639879094;0.0168780770325702;0.06003896553208201;0.12930742597086395;0.12148004789511879;0.09928283591468548;0.09712263810435767;0.08208239990977466;0.0520772686262342;0.09422194181435767;0.0887697368430042;0.18120311094580419;0.02872982916040688;0.056846744247976914;0.026874378933551372;0.26644664569927917;0.14046130058318737;0.17882396275000478;0.15354173412081626;0.1949741833925863;0.11984359650260872;0.30570337893933136;0.19350778398326104;0.3705307592663072;0.2502440885720372;0.27529412090761524;0.18115635402213046;0.1341014512472833;0.0049804799507681494;0.002791783456358882;0.002991754058825835;0.00518367002956554;0.005612929337675933;0.006795547687056322;0.008609886680402674;0.004212566343062265;0.0179471060051221;0.012276028773545623;0.002567601039838627;0.0022027098559838382;0.016133273270058732;0.044306806667548895;0.04629208669086968;0.014197362747468151;0.012366820608821038;0.00046738182558396003;0.02145083309303055;0.022350732386344833;0.038041706708717975;0.037984215443216916;0.15417665983650072;0.28812195629696835;0.17848244567280647;0.3184658801811613;0.8269025627607036;0.10831167508076378;0.27035202630138305;0.008830759281069933;0.8177852547761192;0.41151962715786805;1.0;0.3368421238197197;0.30310774213480457;0.10992627052912128;0.5186714725648259;0.6432574961248536;0.0930188013436314;0.5015168059635938;0.37915411235769664;0.4103201355463173;0.5065028897322557;0.21910794287073154;0.21779211346886537;0.04987814987544554;0.29845858260859215;0.5212166100483148;0.09634611859138215;0.16810542045287324;0.35834008056708155;0.28529749478440236;0.15988975793406765;0.25182996584857187;0.17424218658716867;0.1995925346449341;0.054555904684203405;0.04286967814598711;0.07573385852567956;0.04214493292652338;0.013629168994734151;0.03923021698273615;0.011193876524198792;0.014841484957786057;0.07749205063666142;0.13545205927416085;0.022214810773229392;0.021855079293029593;0.01174836812097534;0.006490204479507933;0.08533411395335369;0.5255262814526965;0.029830583847943376;0.11837292570342628;0.06587563169786845;0.05667233197136286;0.19522407140228806;0.3335319130185289;0.07452777481526006;0.02227865531610114;0.08131530786063411;0.015010273106157969;0.00924602865085717;0.03190913999035209;0.02713007924080253;0.0813876163665158;0.002109441284574233;0.5239155752878973;0.016881454173918852;0.20317460341829974;0.17696683153007142;0.18496959107712702;0.13975819901975536;0.2880925394661563;0.1789874174989671;0.16887586403360433;0.1638144646680574;0.15451047045847366;0.016062868262313894;0.17373802835475438;0.010850018859014047;0.20855060265855205;0.0870058575169065;0.13834801395936658;0.20313541202708585;0.10207104388895571;0.1742727894312955;0.07967962936781528;0.15017539146345418;0.2719162344403967;0.10522360585190445;0.03046947648210234;0.24954738493819933;0.06298151062265399;0.1307528436546369;0.08346881513869447;0.3096661684909456;0.009817867269841048;0.04139931188939573;0.003313700453893329;0.01227967009227094;0.011060393075445615;0.021829522365695173;0.015599186739955844;0.00979552159718743;0.011770328121877458;0.011264945214998755;0.03681487667668165;0.023835283095321087;0.00802955530873681;0.011365816740697624;0.024967481791163985;0.03209180006558642;0.03067067623045434;0.009431140664391867;0.25322327277057477;0.20030026980648935;0.1334064023066717;0.08415757753199311;0.14489487799467013;0.2893325464451257;0.024573875143891383;0.02578029846477602;0.14811686558935655;0.036825751960459466;0.05337466751509447;0.05495892963037314;0.027437934341996015;0.0182240728984791;0.4131232340364853;0.032363071278637814;0.09161836163896091;0.03418756746672781;0.0885164349247092;0.04335268981232018;0.21979212942852747;0.06799649693086851;0.026817238596195763;0.044466438567515795;0.012999249718731915;0.09752923194734794;0.30363741742408396;0.3647447471946088;0.33271172559175544;0.05526803476260116;0.02505866622050161;0.04549628018773876;0.10477373335599029;0.21137593481333009;0.15033298944581622;0.1963947657334285;0.0209109979734863;0.093519758900712;0.040452145804497665;0.14891353210463937;0.17179943240317402;0.061199626290208683;0.21748342288752384;0.08564412378715297;0.10714302934665994;0.15505355335942136;0.011081805691983235;0.020623035163229685;0.00013452106496114762;0.08950638944844784;0.036408657998903186;0.022323798796245256;0.010644321431265239;0.09824390244734797;0.25773903611943777;0.006045028923782982;0.1848894072250428;0.3554804649814421;0.10395902667876684;0.3633568411502447;0.2641183094981505;0.08638569681976156;0.11771337335629971;0.0023254632564139047;0.009478452704206403;0.04896464849443543;0.025816914079337977;0.2253107775292472;0.20989651768641587;0.2915888620954329;0.11887866091670654;0.16476567088646274;0.0008115705488779347;0.007181984289583338;0.12987135655192497;0.14082030208593377;0.021717279449600807;0.2012903581237431;0.03900652864500886;0.04721606739465115;0.007526985279644179;0.02569301167493562;0.28991259834469885;0.045591991336238265;0.23182863029715148;0.21477431088001123;0.04182109458751566;0.012513314029359703;0.10486646540219055;0.18273696200139483;0.03928235924907746;0.07406274251629336;0.09053679003368134;0.11713559771421983;0.06498488509878446;0.028559782007242324;0.06618672753526045;0.16449213148604272;0.05562311890027398;0.015091597743698282;0.06715780376076426;0.04797229055038311;0.2149029172210897;0.06705970222551905;0.03939241654559666;0.028278324792906987;0.0034596038540551607;0.03510073616053268;0.06719130526391881;0.01734606126123868;0.0017769038750631073;0.010819379144798707;0.07201015497376632;0.07097103076694206;0.2604012544574952;0.03882065752321308;0.0009137627105320861;0.028699364307436557;0.024257888753001916;0.013855529685953652;0.03530449550741923;0.06254370742673553;0.04608774488105148;0.13421193776398144;0.10247915379202506;0.06497911566221876;0.014967656884644394;0.1641655575368312;0.20396170789257104;0.22382161133940884;0.0521804921855485;0.3517242676539745;0.26877787061527686;0.07546321815307495;0.24222808000608936;0.2706697231619977;0.05271987027332829;0.15067349283355325;0.368998808009914;0.24004605588381697;0.08666678217674612;0.4182490858834445;0.3104659264541211;0.28731458847651714;0.3967567038641159;0.42773027316054163
+Eugenol;0.6527431196557858;0.6415498954837993;0.6753596705959716;0.6590331079460795;0.6702197919993818;0.730186327502088;0.36072522137551777;0.6591137097184335;0.6562009346290285;0.6856260285308203;0.5668485072666447;0.6971086104459833;0.40906455364060157;0.652706394735813;0.646529097434061;0.6202631263175892;0.6713376365070826;0.6596969108005398;0.6396738636307063;0.6563739191496202;0.6723476692890377;0.6623131328190413;0.6833094480474335;0.6727013366252357;0.6960206909706972;0.0716041078546912;0.4741306343182941;0.5716687835625704;0.5310753491675743;0.3711306103677209;0.3553446601853627;0.19915394865298217;0.28662301832159226;0.5225695558187292;0.43019413655121996;0.6966817541427591;0.45547113646993387;0.4017550878331048;0.11303226438663583;0.45235034891609954;0.22293706313716807;0.44243750829722983;0.0672959791109441;0.000934633761223165;0.039554416935815476;0.014882157734481814;0.019828037839475367;0.01984916306149662;0.020097528180366215;0.3458494740414774;0.30739466547409344;0.12018789409128434;0.06969331466820047;0.07340060102114038;0.3133974863680339;0.4434348993743604;0.28869145427555404;0.30065827334765666;0.24893640401111233;0.04802948595633258;0.20988858631189003;0.35871187273452093;0.3921592423196236;0.373771421208799;0.3118295112915122;0.2902360604743276;0.2957071398035024;0.23069119420267511;0.2257554565893645;0.22500582121020787;0.19701922706853905;0.15795117690620208;0.19907721078886073;0.2169656407265394;0.08194625341284799;0.08591862804639087;0.718475209747498;0.6999466062125537;0.04245525703456547;0.05157815407021746;0.09055448418811485;0.09152790721873855;0.11043956234034595;0.11063458133629944;0.07195972200895466;0.027354507477710056;0.044175681008705656;0.06506116091490687;0.1212139716429554;0.015333176019876259;0.02156053825026914;0.016874790379208415;0.18574434711583063;0.05739158250948153;0.06886611666405919;0.18323183253423797;0.18814309538979887;0.09929319492724832;0.15312130052777748;0.12830165606428015;0.1913154535741597;0.13185114232087383;0.15380540566365;0.15766123133722595;0.08475157688241809;0.5107256106029608;0.41857631427250314;0.4450376223882218;0.44495819600864206;0.5213184813926176;0.5031742471030761;0.47680904788673467;0.5174931028246536;0.5178040848537272;0.5250191216554755;0.07610838876228636;0.0570300653404897;0.07461791393814646;0.3926650463623038;0.134452141193894;0.04012010836334498;0.0806780663051938;0.3637089946669778;0.04109422635487364;0.05148902029936281;0.038457592617355305;0.03598801687210343;0.1353497832018284;0.14067150639209755;0.16456856363055106;0.20890735166378718;0.26600997251317887;0.5319662647820942;0.46558035673154924;0.6819057454918607;0.2041225629954376;0.5415230814543037;0.3368421238197197;1.0;0.9613820202328712;0.5392945165644909;0.8718505338780025;0.42527825773928185;0.3532668064306432;0.7680904608014384;0.2906130066318875;0.43618521800823784;0.28575131889181005;0.24129019902420187;0.5972077085737966;0.3370772362446078;0.40344232412987874;0.21577619330963654;0.11197130924686409;0.8514651459629106;0.7080102307022819;0.5530702832320485;0.39787426326289377;0.4180957406508189;0.07553750297807195;0.43111774935800246;0.14214835872228634;0.043400869619188244;0.048289790404226575;0.13105297631653037;0.04271330569318959;0.11010114541707808;0.13949319365527357;0.15798060360315216;0.06606023482181876;0.12333465419020523;0.28256659802905243;0.008337740841931658;0.0721990722982036;0.059510197305756574;0.36999448449650557;0.0202569069381495;0.03895387006615939;0.3595210447432026;0.5723012383023427;0.558329096095403;0.013038808216846644;0.3896278486844293;0.7392148974813687;0.00676011322486252;0.09469737813814141;0.0701702184660357;0.0;0.3880952133224539;0.47058680883815734;0.554344621731449;0.554935603267954;0.30908915703370266;0.5284671881399403;0.6126585397447393;0.4940627978308676;0.4810895952449971;0.6534416969618374;0.6344747867535572;0.5103321660667858;0.7037247686444352;0.5312534225879306;0.621179976292754;0.6412943300447296;0.06352279499902493;0.7016106595224522;0.8770086436286952;0.20074634062844338;0.1331721220301605;0.14538252339918248;0.10205470750592724;0.5632205282801938;0.5159242420571514;0.26109317945570815;0.2520534749119114;0.3248363790856946;0.394552892186336;0.27117238673968647;0.04467143378907504;0.0759790842106382;0.3588739700986312;0.101685185526289;0.034225916775294934;0.5719499490474683;0.5068571308370342;0.3976987751154844;0.4435338677502251;0.37591331947829165;0.3775477664474542;0.23562027674326524;0.219783350500173;0.22859939833032983;0.3302650372439196;0.3055077027499299;0.17153703774673063;0.2937314717546293;0.19965466221556905;0.25408006291759117;0.2637037397033553;0.2676114975877229;0.3411724005170275;0.4585065386437794;0.12491648415344257;0.15758346309570223;0.08214149919841002;0.0929103456951781;0.21629910089624102;0.036964194975400565;0.18779667840060985;0.0581014023899404;0.22038693565890027;0.2215181963685449;0.0719147567995592;0.5978802318030928;0.18808957406128163;0.13596822161966968;0.16108043833134872;0.3831022376265093;0.07796421587642974;0.3960885527102109;0.06803213414271966;0.3351285194657272;0.010345185825103523;0.3532394104961336;0.11470808222934778;0.26158175136056916;0.3865069708177829;0.504603914294233;0.4354002992225471;0.13350758838284116;0.07041753586150144;0.0454446363407861;0.223812793791799;0.8379571930869221;0.06309538555064094;0.3380850611920753;0.057926532350600156;0.2539299603868657;0.3230847295821422;0.22704873162040407;0.025019745202869623;0.1599090916255801;0.06745612785860987;0.7116270645155026;0.24513872514704188;0.12630668571225454;0.00562654146008612;0.26875617155106685;0.0;0.0939039133915992;0.07470470844843778;0.11503647917888514;0.08989322517811044;0.1495172733530093;0.21049867549076273;0.17388011913594453;0.2630565188207432;0.31399300026173665;0.1383744586708549;0.40564388931255657;0.19430121802731143;0.13493499985058122;0.42199440457118037;0.05631505799128754;0.20361425182608345;0.0506425990301467;0.14569676979478827;0.07869294615946215;0.18717084050872823;0.018958980418793063;0.1414417996063409;0.035462193922988924;0.0;0.0030365303060243096;0.37373618602601555;0.4494306562565888;0.6102675650960674;0.25207797917391206;0.17933799929611194;0.021322246440386054;0.0479990236183239;0.20433086238773487;0.21959901779121593;0.2893793840729238;0.2964106549911761;0.34678666682592457;0.06758330134213322;0.046467750978142756;0.11659030896609723;0.38328652688935294;0.0904223800475891;0.5344633229341957;0.15546889637886654;0.15976881543983446;0.1953584552921451;0.24895395974911338;0.08834282054458253;0.138823358956472;0.5641022736443863;0.6361057948414252;0.746618214865117;0.34267240665360577;0.2938312411560996;0.002305901518960496;0.00447256882682743;0.02284427287122271;0.020200089289591057;0.014891225959081844;0.10867185308938558;0.04933682614480476;0.009597313442049843;0.010977174707551529;0.08140112307150815;0.05604382861800862;0.23653274153946777;0.08195286729511038;0.0018316677161008198;0.05569389448643668;0.29155837949141594;0.0174927314679789;0.12840733565521964;0.1456234703033125;0.2693957493393761;0.05801111625997596;0.018127303655470824;0.0976534359357799;0.01396663315708865;0.013333801022749987;0.05130375638666765;0.0840014808980622;0.06397490022321116;0.04864641401392876;0.13023326351219824;0.6570881235175392;0.019142950011599102;0.027546455970373095;0.12788341062511976;0.061826882089529744;0.3444923356387344;0.27976850147853843;0.37903831849307584;0.10105479498013771;0.6747863562000748;0.6989362571272902;0.4996356457288234;0.4843686447091798
+Isoeugenol;0.748061596222929;0.7322147429248396;0.7630785092154893;0.7478895251790493;0.7592889380135321;0.8139589030463584;0.43352633283086756;0.7526289222111077;0.7495614622700215;0.7751884103423162;0.5153887831834373;0.7806624049610842;0.4789780859488054;0.7454062727423645;0.7367475243357466;0.7109606755490503;0.7595910183347164;0.7505870008537635;0.7287196547553949;0.7456580003550572;0.7602994155057812;0.7451297549624708;0.7622464315829033;0.7618733427058612;0.7739615897620863;0.08331274894774272;0.49970955438373293;0.5189552083236466;0.4719594449758672;0.3866314046377448;0.3490948343064479;0.21206925393589826;0.31526430129056543;0.5915862702974937;0.5112911786762327;0.7813631531469085;0.48090467232461415;0.34452872963904024;0.09956613202772885;0.4969489189772852;0.26048865904075374;0.5035423439387724;0.10063728485287074;0.0020814786059704317;0.038730120707572854;0.029230225876142983;0.037806004565202125;0.035730431489347826;0.03096164264115128;0.38726062228857017;0.33877648328449644;0.1623929323838907;0.09945279037618747;0.08471413732874505;0.32615550558166795;0.5083633674169279;0.33572822433351046;0.3586000522476537;0.3000710036977334;0.053235308484289375;0.2593831154903851;0.4014531960357601;0.4456709894416743;0.43302934819844985;0.35498905130396896;0.3500755881702252;0.354125770397734;0.2865433000193373;0.2826569473367132;0.2809863623606223;0.25238754677589764;0.20810733544252596;0.18782340579306167;0.20908777468667716;0.08739053491086704;0.08672632177351175;0.8027506631814554;0.7834294058954994;0.04722236462974686;0.051151042744790556;0.09502948744579592;0.09627834146226692;0.10238274966174074;0.10196826175833563;0.07283942606532111;0.030013354712790832;0.048971235980367685;0.0662572045117095;0.11524513275227413;0.027632116501071644;0.02151960520973156;0.014459296916505628;0.20870930890840456;0.06747508689451615;0.08003595506183066;0.18523586994368285;0.1872165571683507;0.09839426978112463;0.1583413495058545;0.13534342172649053;0.19091130858174954;0.1332456682234728;0.15730348883009362;0.15383262590709434;0.08730665066887812;0.5623820191649751;0.48299180748541937;0.5071574946866128;0.5089558842025742;0.5872248602036207;0.5625500775930087;0.5304597376237401;0.5853726496595975;0.5833397928906837;0.5856449991044776;0.0990908041510833;0.08079546480495933;0.10225525345689027;0.4510887911243082;0.12043193255408122;0.04268633642408826;0.10898310523880496;0.423544839084694;0.046556763511018465;0.06722651282516884;0.03628084689112838;0.037424532009144154;0.13201409411702703;0.1395504118485311;0.16627417248921958;0.19555717267001183;0.23601274460543356;0.48188606141052953;0.40637827346716243;0.7721690399611649;0.1825849545606799;0.46325704973194615;0.30310774213480457;0.9613820202328712;1.0;0.47928360132045145;0.8721501657095614;0.37148271741319794;0.40393277292752566;0.7535838123813297;0.2931850141017059;0.4035575235239435;0.27208047042099004;0.22633650314912318;0.540502894533224;0.37208929774029603;0.35379242019849727;0.20130502653768625;0.08113835558025542;0.814968231192054;0.6621679356702147;0.5245189095140805;0.34426677880276796;0.3695179752273432;0.08227632574366801;0.3963739781950858;0.128052885879382;0.046300239299111055;0.04553560321266046;0.11995200803608387;0.04501471469753604;0.10828853060313173;0.1230519346489065;0.13987295387324988;0.05862898412311212;0.09327613723208494;0.281907871749491;0.008879862233165052;0.08386659775666438;0.0705419209293323;0.3099671871687817;0.019808087020628952;0.06410423053880288;0.38180319150729036;0.652133028449876;0.6390921094856487;0.0058989351521852255;0.4015248225924249;0.7985633489328456;0.031208588538982403;0.061028138123484406;0.057027788754142675;0.0;0.4548621579184954;0.5303627073690456;0.6182265126278949;0.5984964087324436;0.34738182299762516;0.588421217650308;0.6323456114921869;0.5509080136235012;0.5352034694678961;0.6858030511313635;0.6266055831489771;0.48535445081528583;0.7485569371910147;0.5166861796764897;0.6407771428376594;0.6748605683304579;0.07464334677348719;0.7864858251056877;0.8530045042277199;0.1607662006612601;0.08047182312078087;0.16478041082215622;0.07899184049651146;0.5917595166493103;0.44791140556978043;0.2665220897940593;0.19274262472299436;0.35509066264630773;0.44623433453343736;0.23074068327305114;0.08544579337841483;0.08106766761825668;0.2978236435261861;0.09125610372787663;0.03450780896013689;0.6396352916058452;0.5731505926702967;0.4393496216507085;0.5089843931709295;0.4164532450981318;0.43713068755818335;0.27583781003320806;0.2646480591308517;0.26765440282917763;0.3745295064281287;0.3658515536199922;0.19552192215072714;0.3302943017729355;0.21063503123701627;0.2636044092425676;0.27632012841569165;0.31235738966158727;0.30909595150630964;0.4711716012710448;0.11574995128494646;0.1203957538327657;0.061805630389738284;0.09158527419479408;0.22793877792511213;0.043191188899034796;0.18895020834172255;0.05328630282717258;0.1854444117400731;0.18701332211244287;0.09285012711475389;0.6759166488829566;0.1770130353944993;0.13434121359244727;0.16906236393708685;0.42103358598864005;0.0757345441897016;0.3398960884849855;0.07186020336829525;0.29643907095268246;0.009536538126317586;0.29180933964805816;0.11717343700427621;0.20601886693875004;0.413290904012409;0.5024072382887352;0.4650790722642566;0.15444370264987922;0.07000518322278856;0.05748883412411354;0.23248300103785494;0.8476519446119907;0.06569711505449469;0.333749065875852;0.06636185048555507;0.2004149188418576;0.2575172833290472;0.1837633027021582;0.0247577902872693;0.14217296961615955;0.0716777305537883;0.7309314008166855;0.20169753647028626;0.11158960170130823;0.00951700039451863;0.29810936125849385;0.0;0.12190552140702414;0.07095892380582253;0.12620078158248524;0.08270486291163023;0.13493725812568708;0.1753791527054719;0.2168765056271691;0.2916308157667403;0.3295359001640642;0.13016321038304385;0.3423689628005316;0.16252714068391544;0.12435128154217859;0.3905391045584201;0.06391621697361557;0.25009103102625735;0.0394049773042975;0.15208295303644545;0.11778325730127522;0.15994309651901667;0.010499714390698248;0.11231261203145924;0.047934256815734884;0.0006689924902776262;0.005981603222063114;0.32232927034431924;0.4408712409056;0.6989548543040333;0.21491413348326735;0.1781092046339633;0.02485946254940967;0.040626747655744304;0.1919085721922197;0.20188267652096534;0.3206923829002066;0.2877719636467071;0.2927464761352254;0.0596085433687332;0.021165077862274864;0.1089326035769006;0.3174822997487343;0.05970028286083383;0.5431974608935548;0.1346783051431107;0.1412458084933639;0.1806438173955466;0.2716256315024367;0.08263001384837283;0.13416060682055359;0.5671604912686314;0.6909122850870596;0.8284987795480621;0.37777849558814125;0.2684545373314134;0.0055962578886088;0.009605677660092972;0.023434608529189317;0.0219415864871392;0.011140813839602146;0.0920234925292785;0.047947982241575475;0.011745647722522602;0.008363437132536131;0.03489027364152387;0.05071276106516523;0.23033389690355624;0.0987919322509552;0.0013297443659449407;0.0624959321214167;0.3246304834804551;0.03125952276884513;0.15774464293210994;0.1420982226088786;0.2406608986376087;0.05043611419605048;0.023948999628986396;0.08831953550513597;0.014268456212886341;0.014190191481117862;0.048817962009695;0.08903256913023938;0.0777142347052071;0.04938384056944682;0.1358116419099249;0.7557241733381401;0.019413827083754397;0.027168031097383253;0.11435328700794328;0.06395875397809032;0.3572594415440165;0.30916275445563374;0.3176698739122541;0.09430171691694615;0.7673649457646923;0.7667954145257119;0.47403178511061145;0.4652433480408812
+4-Methoxybenzyl alcohol;0.31811147478105495;0.3180126934068137;0.3288940663693256;0.33953752175653495;0.3456094528406039;0.38516231611370694;0.40730259493456783;0.3443471397797852;0.3494407041293602;0.3540847248959386;0.2770761937444345;0.3500087769606139;0.4638822441302306;0.3368894109084337;0.3333964857599999;0.34634962836550176;0.3159141294305839;0.3182701346717235;0.3266854484287278;0.3271956960630569;0.3304495490740634;0.33029660507525244;0.35203410423768905;0.31758961600934066;0.3005855073416149;0.028348207378095142;0.4948974798812715;0.4711363253063896;0.18683671517592135;0.186424425964302;0.20228842975041983;0.12471902814643127;0.18395451225147724;0.455574142266594;0.24987761640659112;0.4308439315544279;0.2192652565231143;0.09235868463754111;0.023798212983498077;0.24223368566345346;0.14251224610211488;0.20759824124184642;0.047927897314104656;0.0014497535756796852;0.0157255471250992;0.013684125617430886;0.02443804492634006;0.012165694118359069;0.017216063865630273;0.1709999407338998;0.17088721560425527;0.05412307669989599;0.011585978762133827;0.01375759235749911;0.19038538005099254;0.20075075849001217;0.16712896335333477;0.15964034578285302;0.15229673057571833;0.06905419440140455;0.13030250381070194;0.1728322211993869;0.1775983382941308;0.17128269875790944;0.17826911956555996;0.15437217274605505;0.1601327702565729;0.14053293410622555;0.1384493800028673;0.14073098828546549;0.12954560036812607;0.08730364418230846;0.1750467940294763;0.19873356270137077;0.08632365913732351;0.0744782536204754;0.06783287855161015;0.0911354256671156;0.003557234137193933;0.03855669665074181;0.09722430722629749;0.09018831758409589;0.1421552683182378;0.13799186083683834;0.06382570445365372;0.03388580922791006;0.024434097973445385;0.05254612054192721;0.10018389261688859;0.18031955638659125;0.02233566551186429;0.018194358599166773;0.0979750088017435;0.028946055274144983;0.04311596924376153;0.20812043587843043;0.20997237629938886;0.12330445394600234;0.10074357711234123;0.09648183254492776;0.17549512305362577;0.06454578219878722;0.10507852235232779;0.08258501439637174;0.03909657810189189;0.27829101518251376;0.23478024588350524;0.2443410829365334;0.23929678067766486;0.26786651052090005;0.2562661745500475;0.24393439478496676;0.273659080559625;0.28446500547952225;0.2864680071621794;0.2196344396004497;0.17802350543577006;0.17325929900616505;0.19057690264764987;0.1035944409227391;0.01962746142115632;0.2459421760435674;0.18084830038810926;0.0419116423143361;0.07035557146815544;0.027288925372993298;0.026457099882169655;0.17215488953989216;0.17149519436381067;0.20489530910161471;0.18167030904690826;0.0747227969331656;0.5999502125808782;0.5398801878440175;0.3267139506174829;0.061498559249545684;0.09621827861516107;0.10992627052912128;0.5392945165644909;0.47928360132045145;1.0;0.3911494833488706;0.3679872095901682;0.8684327230113534;0.602656783041855;0.26665286141974837;0.14710907568359027;0.1352797746339413;0.3777272846458121;0.43882568215111933;0.19775228708847514;0.463597639581422;0.21982609878344012;0.14969346683150755;0.46943138976987053;0.38033051016964803;0.15244475267267754;0.0809095660441736;0.09920576710600695;0.15441544488540324;0.116970707213338;0.06657511414658265;0.022735946991458648;0.03731074755854537;0.06139615995052661;0.0348750797225738;0.07323019249372117;0.07500712055490126;0.08298729896021506;0.06921541933319426;0.07816564727875325;0.15909168941986218;0.0013285037256911267;0.015561995467009723;0.014707769077306303;0.08637965545827864;0.012045955646898494;0.05700000371525184;0.18875738108989434;0.4420456683485849;0.4692156699023781;0.04529205235734977;0.17673158528539362;0.37151751062497146;0.013826488786050594;0.057808401143216545;0.015733348577019256;0.0;0.44176434376933676;0.3271516715345898;0.3214914520792633;0.7021918756224043;0.29001400638318814;0.29056415652994394;0.28665707973569715;0.44184706261538764;0.43502655661092865;0.3570170348424375;0.28504610830116983;0.20514726359210403;0.3865259845702013;0.2211139001184865;0.3215454417320041;0.39176526600112405;0.19356923014764663;0.340563215926912;0.4749828889582674;0.27714839544391356;0.03267491620034794;0.07604279551582231;0.07734165459739889;0.22005181282455785;0.17531143004460836;0.1368494524312866;0.11985895099218284;0.12997875804242964;0.5125580825432401;0.5965230011828722;0.0186502525584128;0.07265101981378563;0.11578515304802953;0.3934879066425512;0.08263843881722747;0.29159901952976114;0.23271910613485328;0.1920928561592491;0.2122360603085211;0.1945560666778145;0.1849986942265901;0.15585596570056903;0.13563681079493883;0.15462294619043837;0.19839168652926054;0.1731437925344464;0.15518323072881157;0.1910024184278532;0.09739593461143602;0.16759616355994597;0.13523754608598354;0.17428570452841632;0.087545865936712;0.07751814646499466;0.10383143127361928;0.2721486851287778;0.20489429529261907;0.0017446892395189424;0.1376844947306122;0.062430906168480134;0.14085175387209445;0.03775751016875511;0.060744348357803506;0.0607219048521075;0.09429903109769569;0.33496588545767797;0.10309921741231966;0.24472761464090212;0.11121937822579556;0.4955074821332975;0.2135398808079379;0.09220626136745835;0.02598352506663634;0.2901234348118195;0.07369393269830078;0.011520779186981451;0.05602503669360847;0.3146661366992674;0.2477608723246497;0.22995799875190295;0.20952181349112212;0.09031144992733856;0.03717624843996492;0.010554502547085594;0.08406141016344078;0.0871591686055425;0.16842588674453635;0.13230429625722567;0.3213660377068327;0.30272205695868865;0.2640953256427457;0.13632196368125776;0.03792382893009656;0.03003159930359654;0.026702439914592223;0.29385391032683905;0.15948394337051786;0.05528864032288988;0.0029639280772964724;0.14110536318557515;0.0;0.052932223182488365;0.02770989555147443;0.05265381691465931;0.031913931528226074;0.15155041519344584;0.050199823158010526;0.37896305464541036;0.12398590817154491;0.08902194162197968;0.05716307829672438;0.11261765670778576;0.04707402866353497;0.023176652236125733;0.15470682861507645;0.04634182095994122;0.388359409213096;0.06109286923072023;0.06594785100320322;0.013349414988430331;0.016631770815725366;0.0781658442787529;0.6766491099004386;0.008630147066570884;0.0;0.000943112334529101;0.1790605832592232;0.14770327275466436;0.2808317284170738;0.05051902518656447;0.12102856388007414;0.03282942406416737;0.09393294287711551;0.14982635986538712;0.14850330850830226;0.16263335810452803;0.25482604081586097;0.1101103876912274;0.014270747952747857;0.15737130273892366;0.12028569426095524;0.1129340094031331;0.07597788451161132;0.21238633135105045;0.16200240703179877;0.15564984114386002;0.24098704478625876;0.08632546006284773;0.08492639725489765;0.040637530623709374;0.2155858719348047;0.3333943427771091;0.3624973273596282;0.187834094308881;0.06968254076109787;0.0004867559595816859;0.0012732491825460243;0.07808847418113381;0.06891903189005412;0.025828421375218395;0.12195999471350671;0.022979891754899957;0.020469597495454357;0.025060347973736463;0.016693743541712516;0.16899782784428158;0.33128134868656733;0.09891660170932871;0.020971240396325478;0.05179016549116981;0.05807936972325167;0.02778912726563786;0.12910304410392687;0.09327645908196903;0.13653944535924256;0.043157217436537255;0.0943734505134234;0.25732308906613216;0.0232034786739917;0.006938510073655581;0.026723455471280914;0.09188297715873853;0.02655496722273924;0.018546078160208174;0.08984307209985593;0.5215991137063115;0.00812413439406251;0.016573301977090844;0.16060366584398073;0.01913003231704678;0.11234752513593138;0.11223017579132152;0.08747049055184226;0.12645272875406507;0.3072825033746112;0.32431269388391953;0.3554905920945987;0.4380094584305785
+Methyleugenol;0.6063868648019652;0.6044126190065386;0.6271476398998502;0.617319983649535;0.6272851544433369;0.688700209327455;0.3455087877251624;0.6249968279587365;0.6235044117381211;0.6495845482710388;0.5636083504843654;0.6540745568685646;0.39021353023083044;0.6147505370598264;0.6082759618538357;0.5832518755698971;0.6322535737204609;0.6211540714255347;0.6024024067394103;0.6175219671905801;0.6235486248319116;0.6140221304635431;0.6174281281024665;0.6294673471554495;0.6330077601058385;0.05317383952812797;0.44577674870128353;0.519851379557261;0.5328517660364096;0.40626000042250293;0.3935827672760054;0.2024707582416094;0.29009370460199124;0.4958280400454224;0.39395840447526054;0.6960201590945155;0.5278743751430307;0.42436881320784664;0.36661737269844075;0.39195110528386173;0.17886805500481462;0.3981011302503323;0.06334106613647067;0.0014609874205067477;0.03842248154707159;0.05275573540243733;0.0514095042249987;0.05087957914543447;0.05467899192219071;0.30881729746031267;0.2619775806868486;0.09555706417782878;0.0998169121067088;0.02990134738887263;0.24210749582229948;0.4069736552492941;0.2260093614659566;0.27643993118494137;0.21011440411395763;0.037132590482896494;0.18128736104586204;0.27453542601228864;0.32864755918531274;0.32350862985634243;0.2364617527540967;0.2620633440697435;0.27331023151944467;0.20748354710604952;0.2018184470026981;0.2036065770398191;0.19062211260108156;0.14209723859886533;0.16891256796802664;0.17594252944426791;0.10655078169397846;0.11401960768367589;0.09859820978500716;0.14334599718120633;0.053950249536949185;0.06107967137048545;0.07824382550826044;0.07416976025747343;0.09545458085301642;0.09355938249924109;0.13083084823320085;0.09598232000168382;0.06220317092676122;0.06741193772009281;0.15888391763900483;0.02365106476286499;0.040587224087970275;0.08828620339219517;0.36642443284542614;0.0902575570545838;0.11465855223105939;0.17858064949954675;0.20457771145442727;0.14603388708647688;0.24685823475807062;0.1812570620809559;0.31652229330873843;0.23179806634867683;0.22960046701892617;0.2387892421876125;0.10455576467637916;0.45908072617688656;0.3910889698888448;0.4107663196191693;0.41390461162063247;0.48846354353667476;0.4613837878278981;0.42824241246346884;0.490033084907435;0.49827562186214197;0.4877484961531751;0.06656883227774343;0.05874990813626671;0.08362949286963965;0.3756584018157397;0.07039489836155156;0.03388990397817452;0.0845729827589662;0.3408527239883082;0.03057265594413441;0.057268387565350715;0.037974731989944284;0.03854907677343479;0.14938089469828558;0.16404356171613513;0.1632443577541028;0.3921813767163754;0.3060003512249402;0.27095655183477185;0.3932768005725841;0.6828844079724452;0.2516319927249141;0.5217717346884863;0.5186714725648259;0.8718505338780025;0.8721501657095614;0.3911494833488706;1.0;0.4501212997802129;0.500791448916521;0.8454931833350786;0.2907828880180054;0.44679048234067453;0.3881176689455577;0.30315710147864383;0.40626896453975236;0.34205002441320337;0.4400241080533308;0.4752750669997564;0.11132110711995806;0.7553346066059072;0.7088905275056298;0.6197770815549588;0.40967231707208707;0.5068505686427609;0.06192503937150623;0.47012240029952745;0.09434016807643686;0.030507846802742527;0.05558560229554136;0.05073433611875832;0.025447296806296073;0.08487143729805847;0.05589981904498038;0.0649298156533995;0.04807394441623007;0.09523614367517673;0.10914144321527142;0.012663387932139248;0.046596940052815755;0.02544435300987011;0.37786404198002976;0.03894086144796859;0.02860186027995089;0.3770768143235856;0.5574588254497296;0.5636489423953511;0.004727696878223706;0.4223797424827163;0.6991349082592833;0.009284127447548399;0.05522704846096277;0.0653055743805508;0.0;0.3654209168728275;0.43827197475583957;0.5211845525505846;0.5632750956834754;0.4097918706283328;0.4906130864902831;0.4589359175996749;0.4701364832823853;0.4603496782821984;0.6359938746938805;0.6607035279680453;0.5163884488237473;0.6624692949267722;0.5241871743352495;0.6085385810827423;0.5893378978790638;0.0637627238542174;0.6596971092258879;0.8000200017759425;0.19787769472493721;0.08035632310796299;0.11709764595886694;0.04025112380386308;0.48844759156520223;0.4395600275840193;0.24423944775860112;0.05814593566169946;0.3249264586128795;0.3774346865265932;0.18737595984259062;0.014582298637322518;0.055873783309426925;0.34353287389785114;0.35137515373300454;0.03822222380431058;0.5402129239642641;0.47316845342855973;0.3166240273820039;0.41068930586154034;0.28842237460508113;0.3488380457328736;0.19908805076723934;0.18786106453335308;0.19036589847248633;0.26316441742152025;0.28186056624039496;0.15861143517418447;0.23346135317864067;0.1785614841532473;0.23635259403855732;0.23860084732507633;0.22141952758059594;0.2198172237036873;0.16592623049594318;0.17289653849714245;0.10811400982522228;0.08837206097510658;0.10194588245114655;0.02722091261382344;0.016870746221025027;0.13163610682777804;0.04280350693956602;0.16583992754992846;0.16767916742423936;0.03378310753656987;0.5478364899991537;0.11425378557290536;0.36927680556290715;0.392247741515614;0.4484917916685788;0.08833590812654762;0.382176919752528;0.1099824016342929;0.2323695739842098;0.004916405473964389;0.04141142898054592;0.08774120153116968;0.12053698512755932;0.3313319562631343;0.4453475590569912;0.37633800315913746;0.15116378116141174;0.02239709720704411;0.12105442335679067;0.2380768505006849;0.18537715319865913;0.1190749795753589;0.40691237825435883;0.017792789828529196;0.12052209703226281;0.07041696332894465;0.2238196405164323;0.04778982296664314;0.08688714479037794;0.10927627839397783;0.6678098530973846;0.2023878075921135;0.14811439385650998;0.003112597102229542;0.24218068969803955;0.0;0.12145150918324488;0.16970672177082682;0.08490091699614469;0.07521110979025816;0.09970144911514837;0.12871623693831505;0.16190323766502415;0.2849182468641405;0.2327814395279332;0.13722987772409176;0.3068370708267159;0.15472730328470893;0.14357692918895595;0.3821849589349315;0.0831748247445049;0.18942288670565374;0.047510953157934604;0.10725409294644413;0.01494966563448596;0.0965943438321149;0.007592235391070612;0.1834260828475758;0.06952551149001127;0.00021785686933863178;0.0016498930359517732;0.3702965241197717;0.41928840746005275;0.5735759212619151;0.34916435651519234;0.1561816126469345;0.01887462506085419;0.1358634839180483;0.1595404920906988;0.16769349248679952;0.26184281118177716;0.2678496149014819;0.21998614822383927;0.05366116124299196;0.05508728264390627;0.11633556385642951;0.47177418463641435;0.07814795969924372;0.49725901671933126;0.2761590975262041;0.29038960345683373;0.15547781136042652;0.244497165858987;0.07260220369005119;0.42418056832743;0.5297832732680248;0.6405545618048726;0.6793631603893484;0.2793443289559803;0.4156356444136307;0.028301065824731984;0.010995187544061265;0.04564837862772648;0.04049499155796877;0.011787533256623328;0.05674124858419293;0.0318130117089715;0.0049868699411533424;0.0061928005478439985;0.04271959322636287;0.057434354776162475;0.24711338329709243;0.17286369985590122;0.00749676580627324;0.053829740005260925;0.030887179997587853;0.036885187913848566;0.22009236566363705;0.09021353419580572;0.11870258135208983;0.07029405837835755;0.0362984577366524;0.09080809810909066;0.01220957187525403;0.017696680714875318;0.03706949742501875;0.14656790245542117;0.026757275932480225;0.09127980074613946;0.11604513177411695;0.6175821270212188;0.021730943729670448;0.028604930823101227;0.05955561159194322;0.07048357197791796;0.4157400212708574;0.2653928209775937;0.38579611732010266;0.3819879967735837;0.6412414871523048;0.652096402501572;0.4939349918437435;0.5116812498317872
+Cinnamyl alcohol;0.10595790569365181;0.09159901714028146;0.12133902790580944;0.10082878845219638;0.10865291874927273;0.22107746629715255;0.11886812249315731;0.0986760806886272;0.09977534599763863;0.11476379072230534;0.19816677027715202;0.11286463026660422;0.1317656781480205;0.09630656711996326;0.09641937936506313;0.10102943708554563;0.09060115234987619;0.09169345731585435;0.09423699615602373;0.0942657190510195;0.09195006885196562;0.09223676054342254;0.11198450653883922;0.08973220591906964;0.08632583507859558;0.025506070044968212;0.2663151879442377;0.550303965900526;0.262736276574409;0.33762910937464197;0.21898801476316984;0.12292392352289355;0.08304438418821178;0.14876222792233576;0.13167262236987828;0.23805768623005644;0.34110326278105774;0.06791354828825137;0.045011828343543496;0.04848001409742598;0.05564283122620514;0.06890401474258485;0.016787507696602436;0.0005105880311826771;0.010847790866796948;0.01258652847327456;0.010455924443126544;0.007444982873492963;0.015905873201538027;0.04978385773501246;0.053976450512271894;0.0230516009365972;0.0029794866330292735;0.005796454888383604;0.058247205981757366;0.06263641023921791;0.06162454621875093;0.0554670942278139;0.04313513848820273;0.12463397907758444;0.04785447030211277;0.07436969872910767;0.07146700538220216;0.07219006940898537;0.07056255997794356;0.05469939104586884;0.05506440619967463;0.03614838833169727;0.031138633941034475;0.03431611759705637;0.025950222373466822;0.02845165853114621;0.22544812194047695;0.2240340086944857;0.17042806756602694;0.17444583805790992;0.05461320416328627;0.07520623401216037;0.013503192094508893;0.05548523802394524;0.1078924499623021;0.10582291879409166;0.11404449868306195;0.10793513082579127;0.07055955264696023;0.03960566317991341;0.06670506820093511;0.06729749687582827;0.2258295136055203;0.019909485517428722;0.04619535355332016;0.01961992742159033;0.24943066006503123;0.09999277803089968;0.13369488000912;0.22342841667915667;0.2797816492553715;0.1490097639440905;0.2659909260907591;0.15460853370058472;0.3040306776463659;0.2399513880785454;0.23664478485045073;0.21678595180021262;0.04670630676335059;0.06598227570673496;0.06241867972902179;0.06426309509454028;0.06471228350404608;0.07109731078360525;0.06594026278348547;0.06269937115569606;0.07648917061353913;0.08301565590271591;0.07306958188797101;0.06627560052792227;0.055675820525074464;0.08117568087240638;0.10017053772187484;0.2142816174139706;0.013447166073313024;0.08504152076275587;0.05325519087870755;0.021565727298206622;0.07332370341343217;0.05558451348649232;0.0490075589757258;0.1984265171863857;0.19792829493634637;0.2467410983707208;0.42626510238702353;0.4736657290680904;0.21441590742104044;0.34110104891643955;0.08892363470612465;0.42290155673454316;0.3411686551962662;0.6432574961248536;0.42527825773928185;0.37148271741319794;0.3679872095901682;0.4501212997802129;1.0;0.3377046891165502;0.5018539179932642;0.47060948714716416;0.4680997203820151;0.5975643379678197;0.2911327943775563;0.27785809706401554;0.20148835768900683;0.7259607901801927;0.2608948970802822;0.11843407087016275;0.27859024952617145;0.4133557657066101;0.12346006325526629;0.06905605775073047;0.15352182787385232;0.08916600631057316;0.07084886270077248;0.14394171760451155;0.0243793198976747;0.022684322739640383;0.044762766342325136;0.01814725446221937;0.05300116573145114;0.045054314923459286;0.043922476813556516;0.04919186764509276;0.06138100093898945;0.0693031593431991;0.010988922713373669;0.006149344009634005;0.007832475789805107;0.05818009494259071;0.011580453776675168;0.03736378232994502;0.18529431076949243;0.19839330742960315;0.20060206639212552;0.004816850218615448;0.27997804448719527;0.20141252123208417;0.02542604433811796;0.08660898376875296;0.0045710476695893665;0.0;0.13046309493172598;0.25286856637372207;0.2755741783962673;0.22567514540491096;0.3484891762420453;0.19505063953442903;0.2647711494308294;0.2162443035945024;0.21985564854584863;0.1538785878448074;0.13587482040317378;0.11911960202872995;0.1658108572643937;0.13592850479489138;0.1554306330812191;0.11406536551463303;0.059962201188550904;0.13387904267646908;0.41759004034863156;0.05554043264735979;0.12881771572558218;0.10066663780245008;0.07145931120165593;0.046591922425821004;0.31091538532120927;0.12578425673016788;0.1020020936917682;0.06766239093050054;0.13612413527484082;0.22978877955662697;0.030951834846628452;0.19299776925784334;0.16357182846055263;0.11273016230825784;0.024561590599146206;0.08589825926789649;0.08024956858149691;0.06716266417061284;0.07343400262266755;0.1007200969222591;0.08768094236618533;0.05794105754380148;0.05020215573294962;0.0578822872547646;0.08462111921977378;0.05609207735369935;0.060315216498483704;0.06299069640505886;0.1313542349453971;0.1691993649329349;0.1713586955770998;0.05406062764722477;0.10809983387918258;0.22332194683314266;0.18883566925624604;0.14460506005570137;0.06752625738164415;0.313161991178185;0.02307206829556842;0.02206866351392526;0.10159623347471461;0.0869911078144012;0.015379917440493133;0.015551809575240251;0.04157478539192236;0.11553122633206914;0.16085987069725804;0.08779100308953773;0.10807836602563363;0.2266611836926167;0.21416444693841302;0.056891510175261145;0.2272937708716179;0.4141629290182294;0.21570428514633994;0.027360182644264028;0.022154999872551404;0.17449600959549874;0.05747553396636224;0.2640396888268963;0.1016427920915876;0.014545423571730434;0.06845544649676104;0.06796628170262273;0.3075875402253412;0.2207183187957275;0.09769073944867453;0.3829199961236631;0.04503118082986384;0.2617964569773405;0.047509387101316955;0.1454007550997676;0.1045734607409137;0.0409740925360021;0.22566618513510867;0.3778184346522986;0.12787438368459822;0.13697979040939254;0.005037561907959831;0.03696303391303112;0.0;0.14898155739619692;0.02568054278385188;0.024057608528403492;0.18493046045816222;0.06776405461130544;0.20070834122637918;0.11692499605850482;0.27375127784917974;0.1164458599240892;0.11716884939855618;0.3508553117612061;0.15005654453924888;0.06388368060427414;0.438532804054501;0.01783882114392625;0.12080328893324474;0.06458772488640098;0.01592117161083085;0.011437768456804437;0.1283748265948277;0.1126114706061623;0.25252965327760096;0.05947762578126646;0.0;0.004272333381751976;0.10737865467334733;0.1887810113685296;0.08669217472821722;0.1809017775600004;0.04607494348129104;0.02477457645194574;0.027345396480547977;0.2745544871315571;0.26080193630429194;0.06534285152592552;0.17938199852692804;0.48727056203818964;0.23248368580492854;0.016385053523945342;0.1340479368549183;0.057307360683982865;0.07178100187524097;0.34578619287819967;0.09491442267368586;0.1214166357094253;0.21467734068235272;0.05876111252102439;0.06324288950927673;0.12724627546489709;0.09250530011514635;0.13475704329518767;0.2662894439775441;0.06223164150207525;0.1845084043588815;0.019149442122296412;0.02061712584512755;0.03435181291024564;0.020011696245355908;0.05675557983556078;0.07380323363575714;0.20522720428051838;0.0017838324293814026;0.006234402509704179;0.4992104103430208;0.024630434270671932;0.2023595838133546;0.027346769427179292;0.001602058711871349;0.024851887330897778;0.0025294331352031184;0.008635173276504355;0.036656670731577023;0.19340567785198495;0.04573462829544783;0.01258528712904904;0.04147040098937021;0.21660226528154075;0.00788716690408023;0.006340651013667481;0.03862482907849191;0.09910859959396691;0.025602658002024062;0.10355790441267737;0.09627325246974722;0.20349941541971403;0.01186000699831929;0.028242312706732203;0.2001212126718804;0.08463985658642668;0.17026836687797173;0.16011571117015538;0.07601695547749297;0.06508647611167612;0.21699108841983022;0.18764956588383994;0.5239466508472314;0.5147029877711671
+Benzyl alcohol;0.2502859797901205;0.24999201038575955;0.25178408891993065;0.27031446316945146;0.2788637753938031;0.2920734462331347;0.3169663009603964;0.2709442561189226;0.27481074424421864;0.2814513156695292;0.2748919563237827;0.265537967277907;0.37261287393457027;0.2645506271169641;0.2651829388106991;0.2714590940225339;0.2540046215525428;0.25160446399325576;0.2600682341461683;0.26197823255609093;0.2556262524564569;0.25506977022076643;0.24787615064377982;0.2497060329843271;0.23553010059618618;0.04805081927344057;0.41502555176210926;0.17112908434874585;0.09897038280613617;0.19919067477713065;0.12563612244630118;0.1365935372271433;0.1910372150585726;0.3641317243891339;0.2052572702861326;0.373123330468533;0.16213411509007417;0.06903536981238888;0.034590628155973614;0.1364217137758891;0.15257061430241553;0.1544664551495034;0.05188407800359347;0.0007502731630873488;0.01650583863662892;0.014217657912671489;0.016779021616205904;0.012336206653038561;0.015761527822324945;0.13910199636123047;0.16020747513124506;0.03759247953408891;0.0002805352958730381;0.0010005652500339611;0.08354162837256188;0.15564439889181528;0.1212385875430642;0.10471008175085326;0.11729134181004235;0.0069887085471622215;0.1328692544436458;0.1265766778382539;0.12863764172477538;0.1288743285887272;0.13704454972296595;0.09873995745346988;0.10363888089497829;0.09374803672959416;0.08876658843995681;0.08910934458749217;0.07182597638807584;0.0718608651388455;0.34165490163931467;0.37658787410913336;0.11266871101379677;0.1121103413969666;0.06654179506098147;0.20544674197707155;0.0038775641485335466;0.07494770326672986;0.14388390212216812;0.15163246888681717;0.18649786516096278;0.1790167078218583;0.09760819535922519;0.06287305508829416;0.03269158991297842;0.04903678972237041;0.09907990623184193;0.030902033850010453;0.026015582120411794;0.012145059647776891;0.07764479086180327;0.03983436058073096;0.04149369933426514;0.4492992859775107;0.46901593458345336;0.21626751665977784;0.08411058473097004;0.09962231564943232;0.15561439226885965;0.04587861054973555;0.08387526876440857;0.07240448104932128;0.0648689054803597;0.17574688642823294;0.15839941419209239;0.16584225123369026;0.1659603133212955;0.1926890063275296;0.17907041085037076;0.16348534280512025;0.1985845931167147;0.1982053111032716;0.18625853500250306;0.1583002018845034;0.13797567816329032;0.13381099230388033;0.1509405686328854;0.06028285091073476;0.024212288493990094;0.20781589451508758;0.14133517316166833;0.01891203107518102;0.3608335368284115;0.08277397397956118;0.09316111264512389;0.35319388683236425;0.3552560401310196;0.4839270485491585;0.21186090473225394;0.09005197515134754;0.5907990493065042;0.46080020971607555;0.251238560955016;0.048748157208039086;0.06302949090137025;0.0930188013436314;0.3532668064306432;0.40393277292752566;0.8684327230113534;0.500791448916521;0.3377046891165502;1.0;0.4723769237574455;0.22235055049275831;0.1355354092266741;0.1074201074313298;0.2700544760068081;0.31747109338611196;0.2031871170748782;0.5399855710229038;0.255438459080669;0.12937459238248972;0.4311833891420358;0.2772771699769644;0.09703414267760033;0.03589350989738481;0.05213852793418587;0.035804106422075696;0.0501064814948213;0.12817161920447812;0.042898646418529626;0.010644317095182803;0.03246968849067092;0.023222759216300307;0.07964061799151798;0.05383153482487884;0.055070342081252305;0.05198793723493669;0.10180964901131362;0.10451329775693757;0.0010330002443442068;0.004534437318107634;0.0010487518433983712;0.04968689200043223;0.005884153856636811;0.05792021923852137;0.1997352951156656;0.3769318324145183;0.4166543483796207;0.010646498228761127;0.15606873052325937;0.337686021603569;0.006682104289160231;0.053467159771267043;0.0119350197445918;0.0;0.34738088435591113;0.27517048857085885;0.2588488238809889;0.7816243721430528;0.18626195106036372;0.24130781938022586;0.24579874580854252;0.35419613913586984;0.3520519562766293;0.268713230749518;0.21454464183931576;0.14661824262640377;0.2977525185918151;0.1566320397754817;0.24070801547075438;0.2547878669180298;0.08525204979341165;0.2707622461697276;0.2631896679078726;0.044448826978428536;0.05657910330959084;0.06573210489450418;0.011603715590878277;0.12877501172428552;0.1299868714434565;0.1601816038459357;0.06758165161761083;0.11089859189061607;0.4475786285048832;0.6756122389278719;0.030099246733775366;0.02746414993385764;0.04982535694500802;0.4551242499237566;0.05519579186605737;0.20707160546206596;0.17887254365183625;0.12666335663694103;0.15840228517750093;0.1328604499854665;0.13272626630328818;0.16475034575882902;0.13634163096947;0.16408719909149808;0.1427876265843815;0.1113825299545393;0.1926572597763823;0.17421064776063555;0.06882957434639612;0.08826268240096653;0.09187336171000664;0.15011720478478696;0.08114565735977206;0.05660269234819028;0.07165201330813398;0.013270379155623149;0.051680715492782504;0.0034353529732742472;0.05167086774717612;0.022610287951399282;0.0773598897676509;0.1530579458099554;0.04422323549013375;0.0447441418521524;0.15241813576677052;0.32988554471991993;0.05721585413456122;0.39151781049092704;0.11223930691263352;0.5068140545486324;0.04097365458135459;0.055901209547451064;0.018438998568114044;0.07084826569631535;0.013459535638645876;0.015997078655621288;0.04325733083062277;0.03981936474432786;0.11299848966824119;0.13188266595017745;0.127376649975346;0.03749714793715456;0.003673411060125587;0.02729551066439678;0.06684438787357246;0.04552521246826137;0.1403062231758513;0.11812501172235816;0.12129337007508005;0.05548963838152191;0.05224818155602351;0.07771487046901857;0.02632089568621125;0.019937958106916422;0.024251516920686906;0.19963650945069855;0.048185706996301425;0.048242844768968084;0.004473396118525918;0.09410355259499377;0.0;0.031699556344093;0.015794802670581278;0.10036778798273494;0.025203397453200372;0.07039663927721711;0.07074747873066611;0.2936410710407754;0.07613254883537175;0.0949199924440948;0.009410075761950253;0.12777500189714966;0.030474365570582404;0.031220123944603877;0.09740768979433563;0.09867528420210334;0.3056136315838728;0.043927899189372156;0.0350141091233535;0.0016588286806299385;0.021539650852647193;0.003374717365991741;0.7909373321454795;0.0053719068739548825;0.0;0.0;0.11441592351577858;0.09994619411815643;0.22705559298889857;0.023257838500260242;0.06299564194679488;0.005608183282137818;0.08785539517923519;0.03750148850635488;0.10361741964288257;0.11484857265803543;0.15375796299940256;0.055812565100921765;0.010086619751433849;0.012241544528534267;0.09465638544151653;0.07636369532554332;0.03073945805563808;0.14993230908431382;0.1317526482750185;0.15262468217543212;0.3437383766785132;0.219361529849136;0.08051942090131813;0.0208355179708519;0.18118441833377327;0.24441678240065418;0.2535081022289004;0.1086528833364278;0.042027339853797474;0.0;0.004404173503623299;0.0006523405709956264;0.0009006258324519243;0.010783732662508398;0.011009265314422522;0.0018587819458472797;0.007721251615261428;0.0053333564604840875;0.0005666968145623816;0.04553602418935851;0.31219562144913016;0.15907463894733967;0.022427923272743518;0.034770004362962285;0.004890285533358342;0.0067645548122950185;0.18783468568377237;0.015406245468203251;0.08155333489694719;0.006463004146317811;0.001264278136467035;0.023928088027371335;0.0014226292417816372;0.01738359820296617;0.025473753754559344;0.0777279053512433;0.0014287871908969473;0.02608003591466754;0.06920483293707383;0.4954834790534462;0.004633900455462378;0.006763368600770728;0.0233740636787926;0.015847177098609926;0.0866361102383713;0.11824701864698119;0.05059783919499109;0.122487731060689;0.25640570841863747;0.2581356350703815;0.3130445179504719;0.3854354836533068
+Estragole;0.5224362793568538;0.5136676678670233;0.5028728930910374;0.5621487227275199;0.5598297512906455;0.6143015358898606;0.6950944893003561;0.5615944510733213;0.5710368588794402;0.5684643820084551;0.4186013047354404;0.5795394684594078;0.7538495334960958;0.5481004033073106;0.5311598124446197;0.5662930160060071;0.5023290373700937;0.5177524537111984;0.5198685733760275;0.5244922753065274;0.5247982528257149;0.5275790591944138;0.5179744980499644;0.5118672640227828;0.4928263479924124;0.027076805145006162;0.6329981134340832;0.4020962797646359;0.3484463962964977;0.4461273534860823;0.2921908277608361;0.14665167498409568;0.23111425025487986;0.729543124117331;0.35532125778205076;0.6302912587011871;0.3879076359358795;0.22652993328180498;0.18589516663854003;0.2852800591822425;0.2281891706828999;0.3271024764011448;0.05622655366856776;0.0;0.005703459249675173;0.0071311936304342535;0.005998670120287134;0.005415438440510908;0.010725777942572439;0.27429072402030064;0.26300901404018107;0.08807138296729812;0.0011879094540716492;0.0041531641916439715;0.2082563672964303;0.3208659335484515;0.24590886039042895;0.22592556704080774;0.21373810653431957;0.07380677429555692;0.19731521209559647;0.28926926321768465;0.2776969118151933;0.2816591838386769;0.2741861776261611;0.21528046432486145;0.22116001599282217;0.19666858708062432;0.18518544042181906;0.18871432975996225;0.16431580801307252;0.1317580251882023;0.14921219646895073;0.15078007942599794;0.12361311367891122;0.1353810810669393;0.040246380694445125;0.04474694276267033;0.00968955249296145;0.04875854973609749;0.08567155746674113;0.07214340957141246;0.09764097062583255;0.09731145482579619;0.06916787974010552;0.03436620892161537;0.0803962570815917;0.08432719464473212;0.15409200550258703;0.012190741455348183;0.032069065366876495;0.011454541805931112;0.14479381201954286;0.0626110088702624;0.07847558024070367;0.1348289997518524;0.15390368918538086;0.09119195524241136;0.14674435270028796;0.0961902720276264;0.21353591764951094;0.1215273556108369;0.13245824476197054;0.1514577089771686;0.04558239222185214;0.36967219471644475;0.33192971197752824;0.3441817596664935;0.345890182373919;0.40111848511877746;0.3743852145208513;0.3454700771153756;0.4112548228114622;0.40677712262589444;0.390218005141856;0.3447881189561135;0.291539591885297;0.276505670950565;0.31650859537065285;0.17496887592998595;0.032247855144983587;0.39492103576768045;0.2845150737891316;0.02203343611195741;0.03998294750474018;0.03250584197566144;0.028324486927528883;0.14589728168962385;0.1466553295172714;0.17312386010105976;0.21608382196118725;0.42939015352760257;0.680251559593249;0.2725322500224075;0.5628220394226513;0.39721300194231696;0.5331957111351276;0.5015168059635938;0.7680904608014384;0.7535838123813297;0.602656783041855;0.8454931833350786;0.5018539179932642;0.4723769237574455;1.0;0.33984984523916917;0.3215955811814835;0.32236280527007843;0.386566378711759;0.2263476414418829;0.4149101059945954;0.3961006904745522;0.26891194899943793;0.09585325544721882;0.757676398416433;0.5642811821895076;0.3614983892401889;0.2349244008248154;0.26148305385061643;0.1528500635516258;0.2494820811872824;0.12352804517593523;0.021839137278289397;0.027650649497361315;0.1084759897703721;0.05441262844281991;0.040494516072816976;0.12570704450853482;0.13210955064635643;0.07011800237821358;0.06781422184670668;0.23809045574295676;0.0095530254144149;0.005290316785463247;0.005717410782530319;0.19651679938711233;0.03110825713976829;0.026409018173419098;0.28023188086914036;0.7503352625154147;0.7612858491465034;0.0038919939516821505;0.5101623143071117;0.5959304984127161;0.045533731250420664;0.0792818004406663;0.09993500949840003;0.0;0.725330318194833;0.5368154189627402;0.523567855741738;0.4862063508149843;0.4595587980763828;0.5203498489481488;0.45052820391873366;0.8124572782790853;0.8136826373145265;0.5975103506113639;0.5005341226363221;0.38341977740901473;0.6387641289921545;0.42270966038156443;0.5455108758717422;0.4851130912653471;0.21333662627764255;0.5375503165295681;0.6884590840655647;0.10080140134004856;0.22630286680256045;0.2240583198626585;0.042400646364255154;0.3002769931215859;0.3105844781159269;0.19239693552458303;0.15673894246230807;0.2585042747458191;0.28610488259046407;0.21650027941128713;0.02526751475043693;0.2897042402935949;0.22184705859095802;0.169641664576277;0.0809806965756862;0.4192047824989008;0.36722322602257296;0.29518012017241807;0.3225626731361149;0.31184422345438556;0.2807101701386906;0.2206392417395965;0.2004614052897571;0.22114735512460104;0.28343340118744725;0.23491409164666568;0.17571132833837103;0.286272282748285;0.141475067622864;0.1806550946072033;0.2064864562732383;0.24784406861707647;0.22997946637789782;0.299339423407749;0.28518411178880376;0.12471432305659771;0.14695500743909057;0.4126246509352719;0.027277686547705255;0.01793499166003621;0.10123556700605132;0.024649059955460847;0.09075697068721043;0.0917504449371509;0.034036703349160195;0.43460642187468246;0.25648397004578655;0.18203960177732664;0.1193665638243545;0.40554419628952987;0.26403800295403324;0.18395742689875172;0.18621640923064306;0.1568592025613326;0.03428302363472897;0.04281988287425794;0.09457238530111982;0.2832389345140139;0.19289530176054168;0.3218577137610753;0.2605320358468869;0.10077823942339295;0.008934764677109273;0.13888849260880634;0.15848022390143085;0.398198231134433;0.09185572201760275;0.2555936631507339;0.13373548695336382;0.2693421275433735;0.2517221925108362;0.14681289842314577;0.10671575501745603;0.06517916017166205;0.18529360476447027;0.5913748509414819;0.15207221010570499;0.5800708375119387;0.004936316859147722;0.19742089615646416;0.0;0.09558260125601088;0.04033967235446564;0.09223686846055501;0.05575249968959738;0.08069145031971076;0.2307483340279823;0.6642617887890396;0.240500737092095;0.23448064969407825;0.0570862467267195;0.2792448717503815;0.20725496430373028;0.14737439281428127;0.45186775774120896;0.03916604698023152;0.6895662665748041;0.07975040052735483;0.12200363981463469;0.01524311395130223;0.17544346188466575;0.01340350958857835;0.14822125500288463;0.11074087628587807;0.0;0.0029775650332475685;0.5228846281223701;0.3970479896279196;0.45997200033685065;0.2027926312464878;0.1319219339632377;0.020976820456819284;0.03177122373029538;0.14989085632092028;0.21746544228795261;0.2153266066650346;0.22902711838953357;0.1917369772194412;0.2457842765664913;0.015244183016068022;0.12956858073938646;0.2110260717140888;0.0854244162305283;0.5637767606082809;0.11156865033515335;0.1262184970953683;0.16157858514495718;0.14568468776657006;0.06677120673445956;0.7133131429322493;0.526359120343845;0.526310971498889;0.5893615041007756;0.25307908794463363;0.24138940848814716;0.017001119563023255;0.018355592992553436;0.03277369481813865;0.01988279694722461;0.018684400237761214;0.11967896501898864;0.21672745570362892;0.001075671930208082;0.00816958828134252;0.015337726297799309;0.030456605635377502;0.24150983695475464;0.05496574592571464;0.00016602369180804722;0.07644698788197186;0.0;0.006479421070342802;0.08574380283304778;0.14328814128131595;0.2731302775568894;0.10316384815530123;0.03787464354932309;0.058043392641555405;0.007693507134398361;0.008682907262407676;0.038040426002930866;0.12928528063927558;0.023458840202290627;0.09544186916091038;0.12190302538145126;0.5806710494725035;0.022103266670514196;0.04072592717213615;0.06322783722527374;0.0752703465855877;0.3041579844164441;0.24472682410845098;0.1921487001273945;0.16870867643649265;0.5560896048714981;0.5453651041111699;0.44783037370737067;0.49619916134098563
+Benzyl benzoate;0.04818827017290713;0.046378330906224646;0.04964275303215856;0.05158016348280211;0.05694636608745642;0.1079975931259374;0.03381776149278102;0.047710155276232236;0.04749158195724422;0.04959369577834161;0.06100575895884929;0.07294301098935232;0.03197386234468298;0.047965415263645714;0.046466386536492536;0.04455629426956556;0.0484220825254221;0.047539610128128;0.04604567968280028;0.047216683232486484;0.0478645086107941;0.04681564377590532;0.06464039349174558;0.04819025422239656;0.057795072383560485;0.004907006854645211;0.6581391544035045;0.13682011003309463;0.10204043679970116;0.16627866311708936;0.2477759579210914;0.05535461984182641;0.06292324104880966;0.046366115120423636;0.03733587463361336;0.11976691936676843;0.2309889254301466;0.06668343334513908;0.0706080928417685;0.02738383098997762;0.011678973845220273;0.03107906962135974;0.023631539007060096;0.0006514823522946702;0.0173020369853737;0.03466729083157842;0.03682875300421143;0.033768652572069666;0.058624858033459876;0.024269454165209505;0.019137569659486132;0.047995920119665546;0.04027154794309693;0.03978983676248904;0.042047742692741856;0.03163169649715707;0.015430791367956562;0.02133117644711296;0.01609026605535167;0.021056084675656637;0.013667985815815938;0.01955809460776292;0.02541790098392387;0.02498152015395465;0.015156555288090338;0.020372635966190766;0.021125126513786435;0.01723754182527688;0.01920143141270013;0.01677064405105136;0.01388602877673989;0.013004605830488524;0.2425640696478925;0.2367666497953298;0.08406591930965311;0.08190335006625629;0.07899185933584711;0.07184976125176491;0.0508582670654937;0.03169161383027284;0.09009892601436455;0.08562254809054694;0.0948385778465626;0.09253140720250162;0.05653717222718324;0.0141249968005205;0.057063331962785895;0.07450649715801709;0.16163611913060866;0.08214607610183758;0.02886556153815939;0.016963016509227314;0.17332331535397866;0.08347246645100646;0.09843539347091296;0.19139857487979647;0.21977743384179177;0.09333014161809197;0.19833507914183532;0.11817958535414251;0.2321699047662509;0.15804493576386947;0.18255766522739095;0.14361067547991402;0.058154506315188724;0.03177436972235885;0.027998692989380035;0.02985963582483555;0.0300370850272759;0.035901187321917216;0.033843816593546135;0.03153879271219883;0.03876119074136412;0.0426210184657113;0.035109772263945474;0.0021616174883159265;0.0027225491157989554;0.08498188444114682;0.058936663092051984;0.06547733346758133;0.16634512548913238;0.039107798457090365;0.029387109123428456;0.0444802441891419;0.022917157763808756;0.04483442745877377;0.04035806018582331;0.5692911816013335;0.566176369613054;0.6534115956034965;0.33804044680884027;0.18485653698754992;0.061960447440545525;0.17033963379087314;0.051428687507315635;0.16986411842602514;0.197440715037687;0.37915411235769664;0.2906130066318875;0.2931850141017059;0.26665286141974837;0.2907828880180054;0.47060948714716416;0.22235055049275831;0.33984984523916917;1.0;0.707810764310332;0.4315806509702688;0.08161714719759931;0.11817501963478562;0.06746271576615197;0.311282641888339;0.22610970505419153;0.09775446136092755;0.1637314603541301;0.27732542298295776;0.03385248503377456;0.01935922048349979;0.07566985621190117;0.022460815761680287;0.08507429666579527;0.03738990307790434;0.0033584265459058924;0.047180918077941385;0.009324253311077136;0.002194765150604763;0.03582880151288555;0.004571107557123151;0.0050170098805669035;0.023405336566412662;0.041707681669585356;0.07315168344687763;0.009157980002461829;0.02872679122096413;0.04241437120074812;0.03938155775201397;0.0;0.075525116314872;0.2131468638196727;0.19578243763989986;0.18788290109655373;0.00844347145591835;0.154001844699877;0.17375956906765927;0.0013622300551856985;0.00969402425122855;0.004650542632345433;0.0;0.0476764893662537;0.0340427021510685;0.05919163120987162;0.041224985723003274;0.17298392057181675;0.08111629398801795;0.10853514750513105;0.03514163047891206;0.03398072334141939;0.046766754539917896;0.03824817337436669;0.025290728474459602;0.054200451986506956;0.03127726077976174;0.044020583147883714;0.06304639209838754;0.01157888403573513;0.08352191024771856;0.16206165300287403;0.041740447678112136;0.12454821535346475;0.16553001096458672;0.26121122366585664;0.032880874376387904;0.09190350605172636;0.028322934201249095;0.019692975862089707;0.11031082557122582;0.06252544191274004;0.14609127160989058;0.043481809583529915;0.026670664234473396;0.03496641308123234;0.05884833592749318;0.005724109998250437;0.05381010732356242;0.049079665274748094;0.023686080767979876;0.03212973565573806;0.020988237941034996;0.027539345044437835;0.015047764326838433;0.015579672092270397;0.013742015712349285;0.020414749314093192;0.021699304905045187;0.011120168035630318;0.01638425485193831;0.06584915223722476;0.05438605885046204;0.03959548835987099;0.015892094288050794;0.05905358392152326;0.09005064160548404;0.05506799616706659;0.03162184352606214;0.029029766239553768;0.0034924523808329325;0.007265338202611736;0.018991071353671018;0.08874896225349965;0.031310151666290295;0.03768709515836728;0.036975623624874165;0.04947030364233357;0.04762024457062289;0.3663248931786737;0.0631723878322949;0.2071311909475734;0.06631591299392713;0.07631103043680769;0.014910264733113007;0.06579336699383542;0.03778144640609378;0.0016983409133190254;0.017047460479476625;0.01785938618904672;0.0850854007780768;0.0950070767921617;0.17500359433843327;0.08830562844205907;0.041926141181042265;0.0026235105123063956;0.015291592182395142;0.0550659204645115;0.057207660873571556;0.03688852233701651;0.038834290256285715;0.05287466754896796;0.06323490839402311;0.08054215773701615;0.1886370551210891;0.033956530803992094;0.02810673391022616;0.06554838774744776;0.04800613533673637;0.018771527725423044;0.11018763075350467;0.003990222673674637;0.04107667309773705;0.0;0.07291856550614566;0.1183749801124431;0.03616036623231988;0.005115884335157112;0.05544896907130511;0.08983487209275191;0.01776119070391119;0.15064950987989204;0.15418781635638484;0.2090825956829921;0.3819694213518012;0.04135740789560416;0.046726453755873386;0.048773800100996516;0.016998718093960547;0.030159435668355588;0.014042594720808196;0.006681739403731796;0.02191470321182474;0.030604399577575207;0.010660384787601548;0.013813150269692659;0.034909409622292414;0.0;0.0;0.07869049079340018;0.06486559679055445;0.1855792738185917;0.014547506975992702;0.035142679835451336;0.27721148793919453;0.022634689402045764;0.1524804846254942;0.4699247326049336;0.03718724250748999;0.2579126373060328;0.10645529606004685;0.006857572121732978;0.012564103487427376;0.22117071698545498;0.04770776292547651;0.008950024757575432;0.035190293077794345;0.0757784039725313;0.09490283899909566;0.2877144808220934;0.12584655191140434;0.0780198052931851;0.149051699080394;0.04044709814926361;0.05422937388806373;0.05557217690487644;0.02774971193192261;0.008959042359413109;0.00489285106334128;0.008220167498291069;0.015771481164172232;0.03604425043962788;0.010911338893958395;0.012142298386887494;0.010819258594093188;0.015587622249484337;0.011528679159229196;0.014781091939728758;0.15563482714794402;0.10215706578256822;0.040449079621169816;0.0;0.027925990810783605;0.0026688914116584713;0.040656569642542224;0.11213603892308399;0.13685554655369114;0.06809090747729198;0.00895496920085477;0.06278871635501512;0.05207444066252194;0.001837449226299252;0.02571033348664794;0.056355741003573594;0.0642950727855183;0.0175750457853721;0.052885154073331116;0.07986428660352833;0.06504634420510226;0.008058497887594529;0.021007030528817756;0.017885761288549996;0.056360202774269265;0.07599693864429052;0.10774928511280472;0.05747530240566716;0.0426773143075709;0.11861791562554613;0.1333203130754468;0.37158702090662;0.4406153437706522
+Benzyl cinnamate;0.028427439372457435;0.013346063190343675;0.017129767835460455;0.12290727186022911;0.13009072978906874;0.08985275748987775;0.009444307902358912;0.01557473042820136;0.015384055298390474;0.021292763024076802;0.12192075917393644;0.08196645188665577;0.008356861595098864;0.014200399587411849;0.01345081180433163;0.012821744707706998;0.013934183498302315;0.013680238775672367;0.013250337790972507;0.013587311698072108;0.014094869381331178;0.013471906554662023;0.04857906018644082;0.013867471412700422;0.028574337330100393;0.012152614147509741;0.08688566918083172;0.10671518213641068;0.08549420034983128;0.21224328465584896;0.16637510692567403;0.050680208725983326;0.11096073796962473;0.46476366734164826;0.05929973078459802;0.058478601105662206;0.1734146037163809;0.04708528868683116;0.023127082145451897;0.013392247734085835;0.0075905986370754545;0.017143500304035518;0.02577461758272533;0.0003980736906024433;0.035774847633798706;0.05390376384732075;0.05878043950104751;0.0525491948642404;0.0631896612771517;0.007668329551630089;0.0066155981708277195;0.00841825717544142;0.050461328173389816;0.012857333895201061;0.029535960177515905;0.012118498230604737;0.0075540157492461546;0.007710006377464255;0.008356729495594191;0.039549066910246435;0.008940590853889966;0.00956034511241037;0.009517512264423211;0.009706026420879662;0.00803921935627544;0.008028227011045698;0.007631657059553895;0.009217758863198868;0.00934753823705331;0.00870067314087381;0.005151089863657199;0.008228766589111444;0.1564894305208844;0.15225657933969647;0.11270219215876992;0.11393806658570584;0.051158690871789474;0.04496488056166533;0.02861747048284311;0.04731340796603114;0.07927836468639327;0.06755103170054327;0.06827114713660355;0.06908920861862901;0.05509460945681076;0.019579829367297526;0.05318898771491722;0.05893349228607063;0.1771745713763069;0.06760670156060565;0.041200857921752605;0.027227308959283623;0.19853309701783137;0.08725799162365165;0.10812875552386476;0.12332938471009881;0.16815843861209662;0.07806112506756312;0.211539093721963;0.14135443256883548;0.22421051706900993;0.1852993897867039;0.18828942512862754;0.17312670352277512;0.047725972323851285;0.015496600691130112;0.011351362400638347;0.012733049931187249;0.013336253139106878;0.012389632309408385;0.013100261101056741;0.014616590105634457;0.017308298083373613;0.019864549720458695;0.017490590871209494;0.0007845876141745452;0.0011181289120078008;0.019731638829102366;0.05496015777253667;0.0871620845094507;0.015382636939822706;0.004596321287239871;0.009009546015606822;0.014739048045225389;0.025083596780036004;0.028281940151001154;0.030494605855719618;0.050042285892570565;0.05173114078970636;0.07581873928263524;0.2598796887244051;0.41567435566441485;0.5287158573241456;0.16588011663710084;0.02894317610896334;0.372588958693117;0.37602623444034905;0.4103201355463173;0.43618521800823784;0.4035575235239435;0.14710907568359027;0.44679048234067453;0.4680997203820151;0.1355354092266741;0.3215955811814835;0.707810764310332;1.0;0.4863213213099444;0.09439409707761202;0.20450514067368675;0.04006349144199733;0.2669634998790272;0.1606704747510292;0.2081006675394605;0.41282448633476826;0.31267554279532256;0.0701845843101151;0.04367215792629951;0.09240912136347296;0.23221774400561881;0.14670233563724028;0.03960556062198824;0.057421114122718823;0.0760429826163434;0.022136783540657762;0.12232950266971472;0.04551804831837551;0.02007449938661338;0.022623454989048383;0.0328542801794755;0.06634954276356099;0.020639015936070128;0.029351710495833662;0.014585132050975122;0.008163409308243726;0.04068708065742038;9.253089452363147e-05;0.02323637849853322;0.2080080984265149;0.13502654543572132;0.12202697863678201;0.004932674514968245;0.21384595491369895;0.26783888179114285;0.0009315834259625112;0.02864077698409042;0.016814414048972125;0.0;0.024086865715669502;0.02275255016134973;0.05330601734371134;0.020647480343020688;0.397875257622602;0.023362053906132343;0.2517033905590364;0.06345807922831075;0.0657760160900921;0.043903700726398556;0.07519664309622676;0.0452430821510628;0.05052997530838302;0.05363133227179742;0.04976391788043071;0.026094981495528795;0.00945397764702005;0.026246306101051855;0.33980905568311454;0.045248998222693966;0.09316103378501024;0.1555482529149794;0.16293808412828528;0.03016954427042679;0.050895426397695745;0.24812901125042988;0.07966303385530629;0.05578501411906706;0.06435536880518777;0.25025807975691233;0.026069513382712312;0.060356858956313486;0.05967033082853005;0.07505442981299809;0.014983185237756663;0.025122480170500682;0.04906573440020151;0.01824783150805106;0.016479383875860495;0.01179203352963365;0.011088689662639031;0.010099422160394335;0.010489343353400417;0.00964513062575649;0.011936301947566586;0.007796949260636008;0.01001863696269461;0.01127772355943416;0.05030248778720928;0.14561449787846378;0.04960203403986957;0.010118238471223052;0.13801617563470286;0.061999446626305035;0.03423062825325305;0.0380399110744819;0.3580359165633771;0.09223332799717363;0.12678530028304225;0.03297275684842861;0.14047759481358993;0.04377166124674899;0.01350335806769956;0.012946873279136035;0.015409219845820138;0.022496716120830703;0.06430193062137468;0.03537610223695961;0.08135389233006426;0.02728744094587167;0.050909193308089844;0.006699236324622826;0.10899827739090948;0.046287169750895786;0.0;0.061633496444350955;0.013321675203586052;0.10256541049121677;0.10739146235598075;0.21025034330263473;0.06628522902856876;0.010981837278922;0.07033039853833029;0.0012404979686170118;0.21093950928323857;0.1548953932595647;0.029975284982952877;0.021163022195202746;0.01869400462119814;0.08441125206728138;0.049077358804774075;0.3385334673453752;0.14334660927873438;0.07590750622467932;0.10814600288041323;0.028221289543571212;0.05848791098255363;0.13107015229317906;0.09424789642970369;0.010201707046029242;0.017709694889237636;0.0717114438915099;0.023082415588166504;0.0347315900658865;0.005196762019440428;0.09231923409990986;0.2788056365542694;0.01172893501095201;0.1812331465068853;0.43721416586995393;0.21499934496467987;0.35461223295814503;0.1824545636663668;0.162028843391808;0.01615115403194929;0.011535946949710777;0.016773623035861673;0.05396060768877995;0.008308587457953;0.006697395241640578;0.2523447426070104;0.01424293580237894;0.006631055287989498;0.09996569884739724;0.0;0.002434588895070565;0.20041592800899635;0.14998804036211805;0.03471748510459713;0.010416114926684051;0.5436754858705424;0.19471605273580178;0.013098412703161973;0.2408708341294579;0.20038268834209982;0.033836050266424646;0.2193366165400514;0.11287599873633117;0.019822067158798386;0.010831367628411337;0.6118237069499973;0.09481687605729808;0.027228039419277126;0.022484575211644466;0.08641339786828421;0.09640411538016594;0.13509477677381881;0.16819902942901854;0.047945079851370066;0.10787679313894373;0.031324035888665766;0.033124389639908096;0.05406759345039641;0.043134908322597906;0.008197383059250664;0.011370838801556817;0.012827828042782229;0.05661675091308322;0.08636547612823164;0.02145747957150038;0.04854200694723973;0.015634552044690355;0.024138904612701743;0.002849621488671589;0.028538881475895124;0.46717686414077886;0.15898637417348563;0.0793042569778363;0.0;0.030033019626300988;0.018710170746427817;0.0457512824865692;0.07066896402539122;0.29131451306493666;0.0662592817085133;0.02452970909144509;0.18125274616891862;0.07826455136393887;0.006970039268422573;0.011101324562323218;0.048850446095416986;0.11965375894460414;0.07471739603971232;0.09334695822828087;0.09340409700889672;0.03918825768797283;0.016802538032965966;0.027803765495059498;0.030837081336848645;0.13236294730162143;0.1744213498082034;0.19465973768581285;0.06151593246143016;0.04262510557187158;0.14582935584577317;0.16481547130176438;0.3379352201569602;0.35064460033241845
+Benzyl salicylate;0.027567165755113796;0.024795522969910378;0.027859318660813735;0.0249580897633671;0.03665356126969644;0.16115757390665306;0.012960388905483494;0.024606542964879255;0.024493813636426744;0.02473783239985171;0.017904800697529654;0.03537562570905009;0.01445840951754439;0.02432454516108158;0.023965068445343896;0.022979937142356154;0.02583597775972618;0.025517362516910176;0.024993858571590005;0.0258823035998356;0.026411993710302277;0.02654456206584445;0.046083037488032386;0.026074553920463994;0.03966643632851022;0.001675396586027419;0.015849348162105984;0.09874780205696164;0.07882991129047219;0.21679671635425363;0.2624974428594075;0.08905044021058603;0.010811112989348627;0.01847818278067931;0.017879340315896806;0.08885216469728074;0.12247730744936851;0.048465009749379784;0.026780128340490393;0.01454968358468093;0.009380760046219353;0.016564762868469293;0.0018603955278649568;0.0;0.011965059421329211;0.00853728282458001;0.0025138787929298184;0.001941275381174976;0.010344300841159858;0.011829279575484271;0.008812732566293757;0.005317549484605981;0.08349923923863099;0.0006627170756233416;0.011028428975150363;0.016877388791469286;0.01051879131329567;0.013136653233685904;0.013011292243792966;0.006308333660843742;0.01315726063514832;0.01353089681703301;0.01643035434858887;0.016014790981589182;0.010684864244876172;0.012823602959636507;0.013034271518868434;0.014051199403877083;0.007707010173003753;0.013262490211152637;0.007161728184033351;0.012646783780539511;0.12324396489727076;0.12691163353542903;0.13284920738330627;0.14154358389993157;0.05603688118038892;0.05684087503790095;0.013466228803578803;0.02338439653352127;0.07123588328883741;0.07175572559528502;0.07787560658136179;0.07831217572245507;0.046508766920813044;0.0016055499577961358;0.02569528881282624;0.04704093880040306;0.24279606398549508;0.14243416867783001;0.04303518458082258;0.030747554561805317;0.38595662453932644;0.13821680757257085;0.17290604164633644;0.1692966277884437;0.27272431404579206;0.059352409281455853;0.38894240105008476;0.17238307395489885;0.356096046908762;0.36992099884592416;0.36268611946960927;0.2822724849145207;0.002251114623367068;0.016193636553305888;0.014461957604900723;0.015139126243364947;0.015417482551832265;0.0190383146779987;0.017369530425006083;0.016039201908809926;0.01934046815404121;0.03054175592800591;0.01783905920473074;0.001853756625030371;0.0008301945783384179;0.02380670779169589;0.08528638602685565;0.039456528414869345;0.006170451474727286;0.0015329895384992467;0.013736463861151502;0.0020456982894000524;0.005002905253946656;0.04221677912302391;0.04322547047951879;0.004894966961939319;0.004969268311457903;0.007401285204659022;0.4882168894285376;0.3371083530998291;0.016508419782425548;0.20522747198622115;0.02551514540025994;0.3385323290864245;0.2552818878096359;0.5065028897322557;0.28575131889181005;0.27208047042099004;0.1352797746339413;0.3881176689455577;0.5975643379678197;0.1074201074313298;0.32236280527007843;0.4315806509702688;0.4863213213099444;1.0;0.08091147690289986;0.11119680185729867;0.039258384101073275;0.4530873981544439;0.2652365225560274;0.08606292112457474;0.07756013962579471;0.3094786327482988;0.015762486196439104;0.003468979438414065;0.1316616601643658;0.00024264316950861525;0.004505928624059861;0.016259387056650622;0.001335357221214855;0.27275700888856486;0.0034591351523696767;0.014981244431310593;0.004708514239619116;0.018337031334675975;0.0178873842983286;0.009246407714631687;0.04419542018664646;0.003945027198100732;0.004374072901370993;0.0002663460288535916;0.0006202152204503765;0.04871988074205079;0.0;0.0044234635527995135;0.20741984956290402;0.1315704736162889;0.11324108373824651;0.0002801780727977182;0.2635446074595132;0.12672930790880918;0.0;0.01924732808589091;0.01054715808538239;0.0;0.014309497169300906;0.016941786007171042;0.05507861459228527;0.05421472160567456;0.032857777295472554;0.019346188382990667;0.015068111027592292;0.01746581914300492;0.0169964476924678;0.017611236725209;0.01315484984510196;0.010014907157432586;0.01928359105909487;0.010876042611878326;0.015842335055507167;0.03975858737525907;0.013081528541095257;0.027928395088507505;0.16471214136944506;0.04186557844214265;0.004552134617485723;0.21996377716070706;0.01319817418858804;0.01361998999611499;0.010358804836038002;0.007259803802936762;0.0043395799142537834;0.012335690689037615;0.07526794852169032;0.07242893825336166;0.0006531104736638134;0.0015393116959396655;0.04388937147145366;0.021798611605933264;0.009273001029633382;0.02909692368526618;0.033209182568076145;0.01392322865699095;0.018147176586585743;0.0171758241292453;0.019113750624797532;0.016226923544308974;0.016848500192227354;0.01480510789270319;0.01958822441366404;0.013166582356301963;0.011693472382861433;0.016585892645865043;0.020396719307609456;0.020626415455666767;0.020334721340784814;0.01458204850627245;0.03210739616497359;0.08012356640563441;0.040298989774114544;0.046903381561984835;0.0021576982523224177;0.0010440530882096673;0.0005230185093166887;0.0005284512627213297;0.09226086707755173;0.06220296791013134;0.004686465967179991;0.004767980856780181;0.003457952140769787;0.022441209348970145;0.0027274211699157367;0.015569684122621498;0.06649648288024469;0.046969802188829526;0.10096787750909213;0.006463041052874782;0.13928885728641302;0.05366600593602599;0.0;0.0003962687339717531;0.007239078670574511;0.17910129467506303;0.03930465266891468;0.38300920865759697;0.07424577844291771;0.0038730201396835564;0.023922088145433305;0.0007477903473675833;0.020390009910462893;0.07917633807947816;0.00949737416608481;0.009762323549765374;0.0002791355374302956;0.14325169746607286;0.033047767860351636;0.11223336080919284;0.014728817185076341;0.0011342233862018573;0.13650073215197148;0.01865697686150116;0.001597483342751406;0.20287009910592668;0.00012527280341651588;0.021297826742069214;0.0;0.12658856960742426;0.0031930986713527005;0.003455139223921525;0.0034809077579776347;0.02054829073031856;0.0869750681254259;0.016153852602969702;0.3580958900642823;0.06643522827966525;0.09455061950668919;0.3363082129343383;0.04924396926104951;0.07061411207970453;0.019560817357408746;0.0023302107028271304;0.022130773093119515;0.012238261401783822;0.004682048659752276;0.016235200333906682;0.002904020291237107;0.0007835580094475935;0.00662896317439019;0.05831361070886543;0.0;0.0007027671136980052;0.05170989748827512;0.08548134957369947;0.0326496962349718;0.0159097976757728;0.021216047036488536;0.15475863254253447;0.0012715157671517663;0.00940037112211496;0.055407416931743336;0.02168293168687753;0.10239810134828306;0.10559733069435778;0.0002780205288704639;0.008678268570935777;0.13515279724840898;0.009424247731961918;0.0010466339071382614;0.025892141183768657;0.08361346404425768;0.11609302125380622;0.068438376524257;0.009329984339526974;0.004640076669832821;0.07324187587495155;0.029883596329847557;0.025150548314500608;0.023340119221046056;0.012459007135525153;0.003972488896269274;0.0;0.0;0.0;0.0;0.009453864523472291;0.014264238187765774;0.0005649105189387774;0.42852536077791514;7.023492339100486e-05;0.033985041363549934;0.07860281097566155;0.09454585821968028;0.03976291909204989;0.0;0.02754823104740353;0.0;0.0016638167781430255;0.009422302721539362;0.018804798648947116;0.0008468722575425507;0.017717939412039328;0.0;0.018454073406711003;0.000432357450548626;0.0012007580661483332;0.037213464342553945;0.052402238150029784;0.2078294265948532;0.023075982302274374;0.05577915173379558;0.03681835634499125;0.018794350720261886;0.030136817350877417;0.00045273513341227586;0.08125119093009978;0.08487329455340697;0.15948262329892107;0.09806338825726588;0.06565121135339384;0.10254346285190341;0.09358881986580649;0.3445424701379335;0.4253464991669202
+Camphor;0.06859704589512808;0.0683609842391469;0.07573776721516912;0.06918339441166538;0.07070808848337366;0.09082596655017072;0.0430119206469812;0.0700485325719505;0.06970902423850457;0.07285805131121437;0.11117094020594336;0.0914150835738091;0.05599636932371214;0.06947577507255107;0.06863765986540202;0.0656096383813634;0.07146783019198254;0.07019107318816309;0.06794436089065516;0.0695899285667333;0.08768738436225153;0.07265663844964602;0.07979327205882106;0.07293293544987607;0.0752583430275991;0.023375102988430197;0.14017481868820122;0.2628308720850071;0.1617881477818117;0.14218059716189577;0.10685010384400427;0.12465874388415736;0.11198717183168687;0.0704312657097249;0.06005822255087347;0.30160672195067617;0.2615886382834071;0.11761023260889089;0.3939211731701036;0.07060561408980541;0.016621750154396982;0.05995831423958223;0.010544764203305829;0.0;0.0014832564311586234;0.005406201543181381;0.012203410457239963;0.006621446072781328;0.017103762018192387;0.034000875768451434;0.02440020369205013;0.014042424565982911;0.002057472944180037;0.006775253469493473;0.07169591187442159;0.0555095727355122;0.025786323738965323;0.03417771030053367;0.02213473752063918;0.03931772077870149;0.020141117008940636;0.033222108085275606;0.04119163380935115;0.04038658805637995;0.025747943698388353;0.03247351178552942;0.03355021515160241;0.02340597429984873;0.023327615240481114;0.02303793791156074;0.02008939872395989;0.019080651432439522;0.4224862756484036;0.44481025715137;0.2476986293204004;0.24189540778084168;0.06878061871805444;0.1728653556648599;0.004672912459353479;0.10251919778874904;0.2856177620358514;0.28782500403103006;0.39488575632411166;0.38847151275612357;0.04412848071766722;0.035581091395104826;0.018912303366777038;0.03064410143803925;0.07660351003431962;0.05803527979828064;0.027177660748420013;0.00707969618386527;0.06765488976619788;0.01797726489301262;0.03718259669438212;0.4937493323937909;0.47652793694911744;0.12026152436561256;0.08205573089141321;0.04462566661792532;0.13543649579179984;0.04106141288430828;0.07387963181495744;0.035278804194006745;0.04862822919673865;0.07590316440354793;0.05107701821570549;0.05680010252175496;0.055148649832862454;0.06105351865729533;0.06317037856483154;0.07538686715273091;0.05668258215826234;0.05803967040437664;0.06594908095439024;0.006357622168444421;0.005951701716322259;0.007766039647481847;0.04418579149848138;0.08663623740070857;0.005690046525934011;0.011891899737891046;0.038740365025188996;0.03836311990781907;0.12183075647985603;0.0420936883953088;0.03488339682034901;0.08739967783462191;0.08874089858461755;0.09204690053725834;0.09753515008480829;0.17625685678073508;0.04774127940396136;0.40306983159969134;0.08349121933180058;0.048801268085498346;0.3789139953426023;0.21910794287073154;0.24129019902420187;0.22633650314912318;0.3777272846458121;0.30315710147864383;0.2911327943775563;0.2700544760068081;0.386566378711759;0.08161714719759931;0.09439409707761202;0.08091147690289986;1.0;0.540168470347217;0.3390560830768541;0.6460973722158196;0.42565583534749585;0.0753649311908841;0.21143955763594005;0.3409035046348314;0.24898435831766164;0.22079876858735645;0.27281129701971585;0.09280131873830993;0.1408046233011013;0.09806414448187484;0.020870218386118324;0.0014093003441305806;0.09124066602233678;0.0011096359313263297;0.03185843597191244;0.0016755957247000703;0.0028897520384208535;0.023918783243960705;0.1362402285684554;0.008472165918991087;0.004723155411205599;0.008666405116587604;0.0038338173469601175;0.06631696247759056;0.055088533353302827;0.02304472493885032;0.06529925139981413;0.0796860063556876;0.09703615932584574;0.01850883175815576;0.08861011503160851;0.09302984913856133;0.1222162503491648;0.05536405841946769;0.015974919863622865;0.0007483066478777008;0.050057111337935264;0.25007284875781377;0.26741208867138916;0.09975233077642914;0.21399794179458484;0.39736853723047233;0.09890061462085427;0.0535320982950932;0.04653720650093048;0.08947623863158156;0.28831824584766436;0.0738110131539364;0.12068524961320272;0.06355858954420986;0.07822123984623873;0.0707057033519388;0.09524972312060807;0.08073573310719599;0.252875237451039;0.0981579960984851;0.007467608570395569;0.021081272117866156;0.0400022700116258;0.2585390350375102;0.18569639198859506;0.1588768550636035;0.18173587966091168;0.03812036602447675;0.19390399952689202;0.11122128697108229;0.01985645648509401;0.6554406980364857;0.23659569094497981;0.323538391429583;0.05050601802724822;0.06311363107760208;0.07785648866368343;0.060762232015696;0.06527762621858745;0.037129168276985154;0.04472020865287158;0.019761840463886033;0.022377951145068836;0.019984841185988575;0.028758617378059157;0.03416751874431953;0.011708814688398681;0.018821691917658905;0.05100322664692775;0.09869089139990361;0.06289060754698925;0.01921671451027224;0.03541064336796337;0.6048564164727785;0.6545949816490578;0.08625103812380815;0.02546728127344785;0.6594664407324393;0.047363248615229676;0.034884109516203216;0.08589235348429808;0.10028907485722113;0.013628687478666962;0.013700321092275862;0.04343938430847864;0.1468026935191752;0.3454443059679888;0.09288387160309368;0.13278491250637575;0.12871919579913615;0.7480669489618988;0.04942239794114795;0.017256518052668174;0.21915007545500437;0.1059966017421052;0.002091935379144525;0.008261552323502116;0.09952960396971981;0.12965823078151137;0.10779376834257103;0.06230405911579286;0.13420455758873182;0.22359856822907329;0.3983665538331072;0.04263342894090152;0.6879779618682075;0.16823029721730418;0.17436395552144687;0.014032965034181116;0.052598812956074464;0.018953288759528515;0.06476976181258595;0.014847005737565335;0.024376312229778194;0.01696697729444229;0.36903554366698965;0.277956737274269;0.04172889485477747;0.0005949791522526881;0.03640352040579617;0.0006117482711000906;0.08220668086625921;0.008583880874636862;0.030505330109446217;0.023901175438616803;0.7789129450910605;0.01274421826322737;0.01772398718244185;0.09077408001960717;0.12448855376989572;0.05855349552058811;0.052614430102631816;0.007606240400651064;0.010595002206998013;0.5702767311278941;0.013395462639215285;0.022953322836912527;0.026470593507764886;0.014405867591643013;0.04173963868175409;0.012504843464796384;0.08589002785084911;0.1467993572645543;0.00461138180798135;0.0;0.0;0.038280679548909596;0.3134931167017374;0.06571093828083807;0.2995058683238002;0.1535978298864068;0.022864751991262318;0.11999192760374254;0.12830651417913885;0.0964688333138993;0.035998632699110036;0.07238377752959269;0.22326315341783473;0.6375864968324377;0.07511055785679971;0.033777453386342124;0.20924159382146262;0.03368685669849269;0.6227346233933524;0.08747611897457862;0.10994847762088368;0.2195503145641222;0.332903565777581;0.0741174678820042;0.010905595239018656;0.09299516792118011;0.11861859871347831;0.16949945928265914;0.03171107837305477;0.3217691946175601;0.0038781399026807514;0.01570497849448822;0.014015246939777489;0.012476625821818445;0.01257784377151285;0.39621208602873836;0.5303863402562948;0.026190436967639414;0.018322219035799923;0.0249900019558578;0.05365553581453713;0.2550969277466366;0.03309015144757163;0.03518820569463961;0.01239873624338988;0.07489411929133342;0.03390680712777982;0.0681170545517189;0.08346159141905844;0.004541824882388644;0.048816481717285594;0.02484229978515655;0.27544530902650216;0.002015814696355243;0.011131853538431675;0.03943229821560932;0.07103714153053611;0.06335185137336201;0.06103162182527294;0.10657248439317941;0.07163029313454791;0.003479293548095601;0.007130161162600695;0.12231195909687247;0.0319908091793342;0.103799669635482;0.07195946305163527;0.05816601616305305;0.4255175510530438;0.2316812113573538;0.17709222395116397;0.27088142326980247;0.3231148814135064
+Eucalyptol;0.07102551936070103;0.08824375619911551;0.08042006775926491;0.07216296646943848;0.07604027056763381;0.1682083416376207;0.03813218264857851;0.07249011014253735;0.07207425000443415;0.11053445946783402;0.45474654839794226;0.09315253885010609;0.05566860670927446;0.07576519888211686;0.07387808131219645;0.06882009176488973;0.07680542996470952;0.08318437541521355;0.08669994891015569;0.08312850481920876;0.0808901018551935;0.08030100001408233;0.08983873034214138;0.1079044842706473;0.09689485595872331;0.01652071543931957;0.1038048654082291;0.5363466923617807;0.6035046783737658;0.20940438891931934;0.34963951092748907;0.21132739395569886;0.13091620736586113;0.07407093197474379;0.07312720975093648;0.18910947461383984;0.3292277616492002;0.496300415615024;0.10056270453434726;0.1695401867656707;0.03974994737491879;0.07579022815375946;0.018514252673712997;0.0;0.007744771985730538;0.031221222960822904;0.041623158554953674;0.03926452488883632;0.041409095675684474;0.041204780966866195;0.04518471140063003;0.017214247803190343;0.014452976059689426;0.006788746188026315;0.1482192490574381;0.07803707292278932;0.0473535698685578;0.03836223307176427;0.03363536348048438;0.047353056669038156;0.03379042630608716;0.06485461493134387;0.05576810171497893;0.05595470727471358;0.0511751999460478;0.03661473248624826;0.03909275304639817;0.02996238387271228;0.02565497521086735;0.02874252401317816;0.023520462071165114;0.02064861907396296;0.36230196674334325;0.3677634317137864;0.21111897822178338;0.20335029114316977;0.06519052459014568;0.1723739351233464;0.006417649828259109;0.1016368612321052;0.24579241178538147;0.23743546400930376;0.3372984001504968;0.3310332916417467;0.04287440524561447;0.024284333295422657;0.17295593476486237;0.215880664687835;0.1556749210205976;0.029488686363555765;0.025114807939974153;0.015567170953576483;0.08633008025190596;0.028657778201422415;0.04932120072237723;0.477672478398965;0.47147686321875565;0.16026786456613845;0.09970865990294187;0.07738215415787694;0.13914447296820712;0.07479762388266359;0.09509777714887509;0.06633706091745223;0.039621228620276075;0.15473615384846356;0.09736428080922654;0.10426550936158237;0.09520018979759617;0.09776898437743597;0.11012407816055962;0.12494789479052229;0.08418914119506891;0.10332347909237853;0.13126512518125208;0.012396229751370048;0.01303450199708276;0.0632879653695855;0.050066898650595174;0.08318531000025416;0.008457191852814842;0.01975037148327499;0.044345349562830746;0.055902678754392136;0.1920459469606895;0.04830742410249237;0.049293288279894064;0.12148620507430115;0.12964571394480845;0.1412837231369965;0.1540085566630876;0.17024613370075356;0.0930860849408784;0.7195779456690605;0.0983958175982239;0.046062941480877195;0.5690978726380107;0.21779211346886537;0.5972077085737966;0.540502894533224;0.43882568215111933;0.40626896453975236;0.27785809706401554;0.31747109338611196;0.2263476414418829;0.11817501963478562;0.20450514067368675;0.11119680185729867;0.540168470347217;1.0;0.053836760794316714;0.6948711152468171;0.24018470577252737;0.12892816218321385;0.15765812356340192;0.6423680459206986;0.4991638392198373;0.5253639134038894;0.5145187404523635;0.07636356176426337;0.5124211083184872;0.17989412079923336;0.03434910435423119;0.010215991298819505;0.09135394879962937;0.013264527348621411;0.17128865333539572;0.027728904118553402;0.02728583973893665;0.08792922299062142;0.17716256706087508;0.01516647618448463;0.009728011899905293;0.01588535189910166;0.01338115226881029;0.4941647252992551;0.03038764315060659;0.05014941007188862;0.09343911611731312;0.09440542494336666;0.1009056976815119;0.012308049974551396;0.09564028060442317;0.19549193139247334;0.1758366756558599;0.10173166536906225;0.18028196322308299;0.004496289511675518;0.05540728377471305;0.10019437302358528;0.1766713352641771;0.1926344321847634;0.2383517482266148;0.29833397486831686;0.08416877796709944;0.10055919483833292;0.0938437321516282;0.395158081906529;0.5147616862464279;0.4784713759196292;0.39517704405607335;0.4711112886514215;0.41489232254387026;0.31735219199391757;0.03678765841216486;0.11433834307526422;0.6205554320426818;0.1252163561264206;0.01886247263613025;0.07510481311120665;0.0735896802280857;0.32546315360652267;0.5330018974835125;0.4822659636821068;0.16957334551998887;0.05457752129600911;0.23640146267550838;0.2731432085202184;0.04838969416158694;0.05792348884598252;0.45573427216508505;0.1955877944075619;0.03033882308320172;0.08572237145089523;0.12383539744926951;0.1285181368409775;0.10761302434391767;0.08055727767051449;0.06627770012564266;0.04195711770439828;0.03615832018351367;0.04137033065285913;0.05323583390705662;0.0413250972379113;0.04177649458031804;0.04782557129775882;0.09768000130454853;0.18694419176649382;0.10925874884071671;0.04099447263691554;0.03396881016564506;0.12357906533524701;0.13492741323601826;0.1466199750739658;0.168052777963756;0.011085418085887956;0.04010347985857617;0.044891542318400104;0.10818410911274579;0.2222205462127309;0.023059064047337964;0.023042260527138664;0.051900140553362825;0.2496560901152228;0.09323052950565322;0.19049662366594822;0.05787693166141257;0.1691892624920392;0.05737224465397663;0.5001773606661228;0.03061072912154137;0.5441160678780076;0.0541629682031401;0.007391739391522915;0.07845031475379777;0.17691916530574714;0.3045490955443229;0.22826946743968976;0.2318705173853079;0.04463360781527217;0.6029835400775678;0.04562754980043563;0.11227281074921916;0.08977625118649771;0.06516345238807143;0.14505764703033308;0.02028882204016586;0.1637206126387728;0.08048119047913742;0.14258369878317262;0.04213812907757665;0.01861038383684727;0.0292509690141482;0.39903454537921645;0.3056204099394754;0.042503482370539226;0.0014365521723002372;0.07874683361705383;0.0002731334533257752;0.1820581930840365;0.037305168120852446;0.03866515728092906;0.017906440098783543;0.12088468033135631;0.03755249045769119;0.03153410328361677;0.07740088460270886;0.21573237766719525;0.10584530033566912;0.09008639792822594;0.017990748979065607;0.019708258611945518;0.3410615461051785;0.21952070733348364;0.0319252838234207;0.08776581308253573;0.021789046302973316;0.03595519322142598;0.01410958684890329;0.018847001685447853;0.32998227712558936;0.006144214023282708;0.004951038893763305;0.007743513819157697;0.0716748980936253;0.28985781258878923;0.06854733640165127;0.38857355810518357;0.07323386560287401;0.03839949427896678;0.07467560785768518;0.17261125304717784;0.10428761891166978;0.04902181038914565;0.07004420431369443;0.3938767820886828;0.0363596076827576;0.06102770296451536;0.04476315954109037;0.5762860271688005;0.13279795450766496;0.28051349628368594;0.11094800894496198;0.130423045893175;0.09868910074215195;0.1870649805932689;0.0739413960738938;0.01249583945938881;0.06612307118314452;0.08901982540024143;0.29277296471213227;0.04754034416125598;0.35323348407143673;0.009633048274875723;0.028484128758668008;0.04210629216078012;0.039750569068690164;0.06846698149711236;0.15976926501115019;0.017569544362219268;0.04107966567798737;0.028860196499430724;0.031613219228735626;0.07187546569070548;0.2135786088420221;0.08269481925528448;0.02058862104184092;0.02819252564738283;0.04621208325898715;0.06561832062059596;0.0851802041172982;0.2389097285120173;0.06476058980650573;0.0778290883234735;0.052806667514375634;0.19294176122097198;0.010476994648379326;0.03691002465939717;0.058609371532539166;0.2484787002790096;0.05621114133559416;0.09336460704947992;0.3102647936266681;0.12359066223716154;0.003546682335662912;0.008833772412865029;0.2421271739080777;0.018331749254464673;0.1635929020155083;0.13865293319697403;0.5268384278349465;0.1235805533153419;0.13014745523839855;0.17687931545062216;0.38821252439718296;0.35716088302502014
+Coumarin;0.46072927580809186;0.43998974086859594;0.5541543481033144;0.4841975366827674;0.4902087872138159;0.43544695786282783;0.24582422969037854;0.45256997928613935;0.44765748608015693;0.487959587989267;0.17919644550289118;0.43396977707618795;0.27096460524644145;0.44073929407486934;0.45258302210710255;0.43402651634338885;0.4699186733460053;0.46111419140268145;0.44298897173029567;0.4578700861616162;0.4490086780544448;0.4357238818282236;0.4342673504159312;0.45752905520384723;0.43130770115417;0.0018477118015383202;0.22150398910654767;0.15579671058758968;0.11608460077857094;0.17018690598861003;0.13745944836726598;0.11922526394311671;0.44638237009114107;0.3555156626294783;0.26063054866823787;0.5243247214591424;0.23669194466195426;0.07268512613559944;0.006880844882389701;0.24321778967422983;0.07987087991968017;0.26999893655219714;0.031222659020528773;0.0007575730035525618;0.05069227086844159;0.04679948773225176;0.050896364845435686;0.04666749268722261;0.05711437064830403;0.20719855065255213;0.15262444104611186;0.05764786500016179;0.00034760513575291305;0.0001848198696026544;0.12628542653936073;0.2798075619053385;0.13288904140302044;0.18696644513311564;0.122964678939586;0.03333030082820868;0.09910611237109948;0.16797225825968;0.22162475335734944;0.21728267250725328;0.1300115318526241;0.17682236130720738;0.18501510133363555;0.13257583001915216;0.13133989970553522;0.1308571103007899;0.12480777362389436;0.08929176605633819;0.004064485680179482;0.019597052704855192;0.015543622203724574;0.013819555935719513;0.0012851453746853011;0.0010187912149118167;0.0002533511544781355;0.011455325488126005;0.028660521163765315;0.02566461886786633;0.005252864096006668;0.00199787716259473;0.02356399291222232;0.005407770420462123;0.03810380549324063;0.03832540164876636;0.025984225230302558;0.05918239335763337;0.004312086130419905;0.0005790102794589999;0.01512538764663055;0.025624045792510625;0.02914465913034754;0.0174823554245098;0.006506242994820225;0.008525971754756705;0.014944452717391418;0.02271100520516302;0.05891405326582131;0.015097938101715589;0.011609082343790699;0.02263211009430676;0.036611375598431445;0.28536645224597806;0.24887535958686396;0.26385322627649566;0.2690447454066712;0.32180749980533674;0.30292977595747367;0.2827169634210096;0.327745789426101;0.31722157967564496;0.31131600922286107;0.03778551500271948;0.03374593444799134;0.04919269379297544;0.26305466009894607;0.03420414843635511;0.024533226080330223;0.05099154010861807;0.24741101323540218;0.0043528111287081915;0.0010113102073895314;0.0010900946313459547;0.0032243110837899378;0.0018738871983677245;0.0019573440969900854;0.003613353710260879;0.021106466698134162;0.13496243959714255;0.15226963576460983;0.1150625858712958;0.4440481558797047;0.06923434390981657;0.18440382277693662;0.04987814987544554;0.3370772362446078;0.37208929774029603;0.19775228708847514;0.34205002441320337;0.20148835768900683;0.2031871170748782;0.4149101059945954;0.06746271576615197;0.04006349144199733;0.039258384101073275;0.3390560830768541;0.053836760794316714;1.0;0.2261138441153711;0.06347726506106727;0.032923033032020814;0.32448328772521695;0.21761580884535492;0.18549470041232966;0.12427234021042217;0.12117394149277547;0.004645215470020153;0.08492873661697972;0.00825437078133752;0.0033169495699333757;0.007583170145839763;0.01690092170796104;0.004884548985341014;0.025838037492615575;0.0046977151532818315;0.008355356662594597;0.01616695453723293;0.016324860451025904;0.031035679506019175;0.005493825786858044;0.003363448553249558;0.0001458573979590298;0.0572613847511679;0.023203688639478453;0.0008950560933039944;0.21881897151148466;0.366773270891909;0.3530906649025192;0.0;0.5689770997096871;0.39142027334004564;0.05480837775053475;0.10306045189099136;0.013810475946052623;0.0;0.23253944656226275;0.7608127955174696;0.7478259543023472;0.48784219904148074;0.3532729171185303;0.9158155415077944;0.6503777554501466;0.3250008970867468;0.3225273038406354;0.3820131267249967;0.2894655525097677;0.2573368998063552;0.39473028016145134;0.25284759007045643;0.3355922667863564;0.3251222091539485;0.06960180219308905;0.48380129930565563;0.3616614105895363;0.17082791716687468;0.0645167031273076;0.21632363335643634;0.02456430250736897;0.23013430724440376;0.15744889906356338;0.17115800879037557;0.022695450398080737;0.19911483554600892;0.21226436487442973;0.15372507132053634;0.0;0.3180382258506222;0.2034662952327958;0.05263203159097748;0.011288195919011763;0.35926260331714227;0.31722250804174673;0.20417733114438966;0.28204305247719863;0.17434698005737215;0.23614548698726132;0.09573548561250031;0.10396014355782625;0.0936564086726074;0.15134174690915128;0.19048365281811466;0.07308358096902057;0.11748308348023202;0.09487005963388627;0.11059319735282076;0.12351064789428744;0.11918815596406065;0.11439707662064681;0.31120331888714337;0.3225514871159392;0.014136712545669785;0.011907819312972405;0.3349957170371661;0.002946404172661357;0.005452202044176161;0.04417188825450118;0.017996595494982934;0.08007855296885065;0.08095585808986286;0.05375044090171406;0.3631128300401602;0.17881601748981954;0.009556114109752493;0.07519830727043289;0.8441555416772573;0.3329566554615741;0.11279133821694637;0.07761243482592417;0.11631122156578846;0.26982133573546097;0.0;0.13515629858334044;0.007487573197124697;0.18511995671813447;0.21905087740778792;0.26458335099276625;0.07741511093488897;0.008072457668385326;0.162130809225543;0.11133044786310682;0.38594137085334;0.17295146063260705;0.1654945796403202;0.004802325628444501;0.023198807787956945;0.0005638981072388609;0.0124066733108297;0.01216387684882706;0.06628027800371301;0.07835041563570334;0.46309601227890723;0.025881859472072423;0.047462662544071596;0.0;0.16378830668993125;0.0;0.07310729205690306;0.013347673951918045;0.05205662779855809;0.04508495687330884;0.06116837997687492;0.1679274954754651;0.09284415173469902;0.16503074165818654;0.18028741626767844;0.01193554257159468;0.187887059584797;0.13567420741384825;0.13501060870348325;0.39694328521351746;0.02858465948210821;0.1199936120394607;0.013780646922883853;0.06304109834329673;0.0290128655062461;0.19405434270640118;0.01382739301750921;0.225253773850605;0.08014971067288512;0.0;0.00011414695060087639;0.1942455068960804;0.2854189437297873;0.39459638725362006;0.23723332848918818;0.06800062708736587;0.012735903796658381;0.009098365147077824;0.06441434734858087;0.099445149258398;0.17806286120579964;0.08594521824416511;0.043095283892126766;0.32303880429190157;0.0024025545367032017;0.05013128068304532;0.030400819096477304;0.01370947308672306;0.5255445732080273;0.04282054590846646;0.041618103904459934;0.039262336287448005;0.10023844081233635;0.017179707531463643;0.08915755540876741;0.37693712383616035;0.726187328629306;0.5192498971523051;0.17503563875354383;0.25109342728922457;0.0;0.0;0.00043077006110018424;0.0;0.018018841524638483;0.1057589604641311;0.27910459934588017;0.0;0.0;0.0031817959280711875;0.03337073352326709;0.18589555276710612;0.030914333088840774;0.0;0.023561139428944028;0.0;0.010482077531992836;0.06113069235766088;0.03203049635437164;0.007227471035082266;0.027570945052642612;0.0014294139151603217;0.0315362147481223;0.007565997449109989;0.0004607712195049109;0.01018402685980832;0.06346414946220155;0.026494370149912;0.013369482415721133;0.05145158452135571;0.6112938762779853;0.006809567877137704;0.008026969062136218;0.012867240935137875;0.009903766387773445;0.1543794862193369;0.12345551030977718;0.0530495865829233;0.0038743624625135176;0.432384330128685;0.3874727663888808;0.12411478132215294;0.15211351509528942
+Limonene;0.042915197491723685;0.01619384606926656;0.04635651109277283;0.017650647796345207;0.02398438637559751;0.11673817723389453;0.009708619263484621;0.01653094861385413;0.016361459215164312;0.03184377798833465;0.30518479673930643;0.06317829953865127;0.015835013310676407;0.01626175626964584;0.018847434813324074;0.016924778890950846;0.018650018035573566;0.016841900121692423;0.017663122146286892;0.018400358001525497;0.017927897804840658;0.015965206224305348;0.033016355668789056;0.016825180191525978;0.029237963773100294;0.029682759769195537;0.15267064638125327;0.6707123222007447;0.3902180537634023;0.3953713301321029;0.25033443826472596;0.2502878851194699;0.08675160869302298;0.02407519614295312;0.05470060931427136;0.2340171385298112;0.30975837185117167;0.18735429500620687;0.030691688630051533;0.012611993392966262;0.03486347253242643;0.03630115565605303;0.011976466935869486;0.0;0.00652764371549362;0.013817747909305586;0.014539215753168806;0.005915632362092254;0.01977485540982368;0.013275106531299645;0.023195194757196485;0.006829968731602581;0.0004836061224236146;0.0037927669426383623;0.034130778862038365;0.037862698426994155;0.03169057754143114;0.019478753271841467;0.01954432927948231;0.12859346149682896;0.02524857415142503;0.036808770409518396;0.02887877349119184;0.028047088493370457;0.035483927122683986;0.019156345074853025;0.01870834808133067;0.013569112468943932;0.009710069392717806;0.012447899319084917;0.0054824347879395795;0.012816067961594225;0.330265232470571;0.33534736590605546;0.1588725859960341;0.1644284479554014;0.09240549192522626;0.18786625865585377;0.007357909072618387;0.06852815437129313;0.16204145238670262;0.15404288187609913;0.22974735400100368;0.2222462008085582;0.07805966362946762;0.04071554905959242;0.02432956830823453;0.05902800347789268;0.25362674499546867;0.019700906341054387;0.03593162721979569;0.025890049577184583;0.21409957149022357;0.07162071324667318;0.10070269107219586;0.44866416014465543;0.4932290431002189;0.2648151883988446;0.22259407037593634;0.14122317743478463;0.2764072505258876;0.1999810999158572;0.21412860343232998;0.1585434294714988;0.04217093093870154;0.013738068306041852;0.01095134459867695;0.010569065884092616;0.009884495440028333;0.012446760765330396;0.011294377406508257;0.010501308757394101;0.020268591542628646;0.020506880444379337;0.013389789018064271;0.001227649428119201;0.0015229314747092402;0.019785823429473624;0.03946157004460767;0.14614882981295613;0.01079722653101839;0.018779604244530578;0.009822994215753847;0.02073188286721903;0.20591695377868308;0.07590530350749712;0.07787085645565807;0.2312019496822119;0.23197650614231818;0.30406443011775475;0.3801559513749756;0.24530779272453573;0.09880127020906837;0.6529741834657955;0.02480835518993839;0.1679048513898786;0.3987568998145955;0.29845858260859215;0.40344232412987874;0.35379242019849727;0.463597639581422;0.4400241080533308;0.7259607901801927;0.5399855710229038;0.3961006904745522;0.311282641888339;0.2669634998790272;0.4530873981544439;0.6460973722158196;0.6948711152468171;0.2261138441153711;1.0;0.30103111183438674;0.14068233454108764;0.19249387444502625;0.6274988405921578;0.1799948188079329;0.23771446562037113;0.2625808195775354;0.1007310224955488;0.30545774072211357;0.14386617020459566;0.03839702376768406;0.004758660195809659;0.03414897028496307;0.0072791309881571195;0.04902037274966627;0.033992815868536065;0.03344274449749188;0.05142376543679571;0.08035237226592873;0.011655418317126607;0.0011190342901345077;0.003104600598825801;0.009800227625204092;0.16995003930126423;0.028388395168235714;0.033580018349502756;0.14843376410056916;0.09042477804648628;0.10872039247956684;0.043123894939903214;0.21910586604419965;0.14742281473966945;0.06256091462107469;0.0581771001762246;0.009640613260853866;0.0;0.043187908951556025;0.1894448622948561;0.20126987139034574;0.1451452048964515;0.19423797126359435;0.23706902254584925;0.13244909033127775;0.019357832438725606;0.017586654943541696;0.1400191102539849;0.19532884994128702;0.1621490254676084;0.12964680095653197;0.1744158052134222;0.14878839926308945;0.10884059451665863;0.06708060310322271;0.06429313481548952;0.4273950340015264;0.07439399268257574;0.03474960280906263;0.10084505828599213;0.042986818626874104;0.06436559196683496;0.35787628079482653;0.3910767070186868;0.14941701716923037;0.04293196882276283;0.2611838020054731;0.1972924956944122;0.05961414370156148;0.4203933581918233;0.26980725777734577;0.12081759021875994;0.038348577874491696;0.05407401081847095;0.07529095951669136;0.09432186386895311;0.06991281633687044;0.0553712596837626;0.037472403143129274;0.03194048970883844;0.0270435089879551;0.033399301375246236;0.04383772658899342;0.022303925845973707;0.03655090384278267;0.035059873893060645;0.14958630952859997;0.2175668088189652;0.18240952852020792;0.028292149839630732;0.03370596763023333;0.3876423325790127;0.4050356112329815;0.24955713360657575;0.13894121119444702;0.38564405997395335;0.02637407076756278;0.05151937662695584;0.12897233178604398;0.2688607027584757;0.0029152691094613227;0.0029510798018092897;0.08535425893241497;0.22232404770313358;0.22489993763130664;0.2101955518064364;0.15562051715102218;0.12353260600716998;0.4261135496488859;0.16489667506655595;0.08572501971381091;0.7279741938880236;0.10134790329311892;0.008698690669835947;0.010236775719450107;0.3064654175888556;0.06608879744740678;0.21694524906729848;0.058847837695494405;0.013954356081163997;0.6198534891720012;0.16426309218402793;0.13760317446627346;0.4533844416324392;0.11832104757382751;0.19219299530413478;0.04570443403190874;0.28919315820457714;0.17292687899687714;0.2616057091121355;0.035663240662355385;0.01585066169684648;0.08451709683329899;0.40770403798019733;0.32639690370050733;0.12429757145226035;0.0025271337341276866;0.02433659611893157;0.0;0.26120665328196;0.02017469674735141;0.05022554689719392;0.0888513847043486;0.18541293137418977;0.0662561174484653;0.018394940159189323;0.2433562136443514;0.145907333064538;0.10162925871784335;0.24287216785319202;0.043341345566327856;0.05116868898778549;0.54385381673723;0.04650310604017727;0.028897026339668317;0.04339898835192008;0.004838558168081313;0.022433791557546653;0.007858059408487016;0.1149853605221091;0.258133133905441;0.026704318259503198;0.0;0.0001226354081377185;0.12705772336676363;0.2841322213206651;0.02217793063048771;0.222870121602338;0.07137627329355464;0.014604971410285182;0.06917374765638311;0.2898701920144412;0.1644568333783066;0.035808035592774075;0.12083537960251056;0.5378894028617509;0.3837101361071175;0.027598678420403207;0.12014463667615842;0.28791116572077036;0.07502355820584636;0.48344070688464685;0.11499860476880942;0.1474059003983618;0.22684018636920428;0.03140428235449034;0.07698575725178536;0.05758868119256456;0.020756116512530884;0.054965523242071795;0.23125018345822648;0.02019617169688596;0.19203199405266447;0.0007244909927509281;0.004771857381328369;0.08843334875775602;0.07313638399460248;0.08297395121796122;0.2838654845888691;0.0005374775906565543;0.006373951018176368;0.004798745883936175;0.24701048821950736;0.03175984069523599;0.2582108640071316;0.08786173674783974;0.006540968127538987;0.0196516638938324;0.01041970051042304;0.004831833992552622;0.09895963351057636;0.45087335983718385;0.016622445349359402;0.01885893002622048;0.14580994693427413;0.2996385147207538;0.00036017674477615414;0.013327144457923488;0.03364942458406782;0.06521035917495077;0.04761110093162566;0.031014600924190974;0.10403398918231915;0.07946226739300963;0.008056002307317263;0.01390121196425468;0.23023350351913868;0.03914279891486658;0.09522848957879848;0.09664616097953403;0.20060293368268567;0.09711927238088609;0.15480055054868777;0.14122558785207603;0.5068587484670869;0.556751138386835
+Isomethyl-alpha-ionone;0.013703448270627881;0.022820974262145254;0.014251520337733584;0.023774082960367118;0.026827173573509916;0.07946254411771411;0.018090641412785408;0.027790008678107346;0.02623681045202389;0.028752117728250877;0.08505366477309853;0.04138021601231626;0.014175837715811877;0.022235150084974935;0.028950839934337863;0.03906045881436143;0.013412826148245745;0.018829635294156433;0.02218460629089865;0.01912642385101662;0.015553813492797594;0.024788275356279848;0.05045664055268215;0.013011301340363702;0.04492062422073998;0.03276275011964457;0.1160635290707896;0.18724915241520065;0.18924119553246255;0.1341084349365948;0.1517565807724975;0.08019602971755008;0.08351325402094295;0.0576095967604792;0.025079932757461686;0.1440665541694159;0.4867617630259356;0.2208311078004459;0.8527176340394745;0.025689743737718505;0.0056933381532992735;0.03485057222549639;0.004029792632596092;0.0005019505022497494;0.013407767246753782;0.06488291980442681;0.06375958388951222;0.06210371164891556;0.0692966830547502;0.006655901545879662;0.005036560704811663;0.016271270553103657;0.04595900376424968;0.010063051994530269;0.01658382405211261;0.03214558235360686;0.009851040548459764;0.010295131948223037;0.008613839330711024;0.013723716661169706;0.005770958321391618;0.036931720499408696;0.031806912223340214;0.029598401227283532;0.01524404016798714;0.01075840136297118;0.010623594447638003;0.014117633730412391;0.006104627925475919;0.014600000031800212;0.010841358577169242;0.005790753853945992;0.216549416331026;0.21842563223884714;0.11057265965030971;0.11921379346833336;0.15356525315660252;0.2289763960037879;0.004314035296306281;0.02574646401800238;0.1246828591744144;0.13438846987632608;0.14962575817994972;0.14932793612957243;0.11152435611506187;0.09522196304571096;0.013906043413197643;0.02248784665360574;0.10773832822948519;0.03743035653445193;0.01639061725146632;0.01675679208593289;0.111292441918809;0.040398146222361014;0.05158557892849377;0.2525981768193448;0.27438226110309555;0.08137985183995895;0.11610081746427514;0.06881067173724864;0.20208597581108398;0.1169630609030974;0.11955149508274546;0.09820391825396248;0.03791766815675687;0.010722694865437025;0.00853427774064173;0.00939628915466417;0.008895205568081151;0.025150433755690794;0.01012626321100402;0.009781732968031349;0.020253187265724438;0.014727080391030664;0.011198735051941041;0.0038336621299238463;0.0006729297402153862;0.007617351348700823;0.02617757297050814;0.033886221478423594;0.0038966305252203393;0.011622811565215625;0.007450057946092934;0.019887179381809082;0.05398323234823586;0.03240787151064608;0.03534296025680999;0.1807534965205688;0.18001303063533286;0.19284175885323254;0.36160419310948605;0.26433424301690944;0.03279103057327293;0.39330858816377834;0.025209951954654933;0.12521299350613532;0.2524255816321817;0.5212166100483148;0.21577619330963654;0.20130502653768625;0.21982609878344012;0.4752750669997564;0.2608948970802822;0.255438459080669;0.26891194899943793;0.22610970505419153;0.1606704747510292;0.2652365225560274;0.42565583534749585;0.24018470577252737;0.06347726506106727;0.30103111183438674;1.0;0.18336514203811452;0.22627576694056492;0.42870448010106504;0.42631878673155543;0.20420919297575926;0.36564197190668424;0.00857841245636747;0.18041133833195674;0.10281316464187064;0.03879790304975152;0.034827412094915446;0.006285531420049866;0.01166398357853288;0.027913069477605933;0.002006010490291584;0.0032227160754718094;0.06035250856197429;0.05740238440637551;0.02233472338140744;0.001475622998447933;0.007772310380463818;0.01282003696121552;0.1616566717492045;0.058700306863356394;0.021964463153293867;0.12491920414758662;0.06486439650897126;0.0907257528125465;0.014294305117304418;0.12442435552849072;0.08465467268697913;0.019564513946761005;0.03426601857884503;0.011999860315159613;0.0;0.030182756826517665;0.09470657758810087;0.11014546218794306;0.030785916338770973;0.11245821992455457;0.05295375766859372;0.11487841397672617;0.017236492662354462;0.016788317578718903;0.08410953946696795;0.3463570640906744;0.11173986816617716;0.08135346133621964;0.07962970056608301;0.08347685885095117;0.051283433645247775;0.13742629648597654;0.018856807270477463;0.23086597860813815;0.1315883504987297;0.10551247364391492;0.042156838656067494;0.007070603845961328;0.26439481215437627;0.1463975223239281;0.05865597524429983;0.04146230754123674;0.018190954125690287;0.09718752200815715;0.0802902863362873;0.012997515619086474;0.05927614552603456;0.2362678344838967;0.679917746142919;0.05696465828067392;0.02981196205569578;0.03563516347184572;0.04431588031175673;0.03616341460241547;0.04271284810527547;0.033573993356705;0.006583027984667215;0.007048853170716918;0.00636972845490962;0.013472074414944659;0.011228420262121293;0.0048198051586477286;0.009875373489346135;0.0197432984444261;0.06451254026608078;0.040735240591080746;0.009060756078478453;0.06872474312241833;0.2211594930160449;0.21856373058097073;0.09281173799245344;0.10586809093074959;0.053204938221361256;0.08241469115430422;0.008580229119626716;0.080234737298336;0.04111651961600244;0.022898405727585756;0.022686970877901842;0.029208820414189592;0.042064740764441305;0.08399987549314168;0.4221155113665315;0.6758116565538091;0.3591781455758672;0.1380720643363399;0.08964715198206388;0.11286373321361749;0.05421024067091925;0.15319266080031166;0.0032089976906472;0.004125793380784427;0.18177844532348666;0.10751617326754183;0.12274875902459322;0.134667887118249;0.11641086320167729;0.06818623306533288;0.1236971841320011;0.05527323194079179;0.19090755045923458;0.19782170863157286;0.44480882608062167;0.0015658076341542421;0.12742469732818926;0.08136794743380647;0.877948457287922;0.10431956127015377;0.10891335473155604;0.11193927795632175;0.1258725956783642;0.029603313344837946;0.06896023573175235;0.0012026431672166353;0.0077895032477728185;0.0;0.09684543987064376;0.07483719765555505;0.0050635157202322655;0.003897370024064025;0.03722808625963573;0.05442978828552646;0.008304560754303828;0.1172068179623367;0.06353969384466455;0.06663266352503748;0.15096804214286194;0.04443898792952997;0.08933011161002191;0.14220381266257412;0.052927964860082125;0.009531060625304;0.0775326734796467;0.016852575249422488;0.05915115539658808;0.016954104875683128;0.244898536443397;0.19469775769516162;0.031292176463504906;0.0009358484089258628;0.0009334660442736476;0.05770748092320112;0.09589011432755892;0.015390990134349615;0.4922599691591749;0.08331817956147897;0.023677521958300116;0.3476307534929427;0.044296214895258285;0.1503249268111164;0.012599973992670169;0.11543160615907527;0.06691369264471198;0.08720471626594735;0.11082999371447132;0.10344429311073841;0.21503100320817134;0.03613185132579759;0.09852707761730876;0.8842087798540977;0.9019798072938907;0.07955644206186649;0.03728517644477195;0.05467678850517414;0.061854131516566574;0.014220337061353854;0.15046793614500656;0.05458905429380898;0.04755568940096673;0.5676053866733537;0.08028814855991628;0.002060006642404735;0.007810422300638059;0.004231942155767714;0.009597449492155304;0.02655784830379972;0.008241651489329023;0.0025209986352273087;0.012613821016476167;0.02401859395422466;0.07709814427939454;0.10849066142516309;0.14260093192485093;0.004052763993402796;0.02438568073200207;0.10533993389550711;0.004162706995744988;0.1929322315088956;0.019647006146308144;0.010729436171486707;0.04767079957862547;0.08092314779189906;0.01971218929428324;0.011847314692710977;0.013431162707530137;0.03725961874027757;0.1052449314605204;0.07037546044930745;0.09791331593788642;0.06787900132709479;0.026009848892048455;0.005180618710727059;0.011331248919644479;0.033176595207379665;0.06359697937282853;0.06095443020699659;0.18706113813781486;0.13115330953272145;0.9325525162700331;0.1732999181211795;0.1444575902252467;0.3160871070685338;0.328204149795739
+delta-Iraldeine;0.0016837981370161478;0.003685936701599386;0.00924543904076178;0.02916594542796031;0.029283805283393787;0.01725637843217204;0.0018581951072652678;0.006046976626101329;0.003577258091238829;0.015183331624544232;0.16659567432722833;0.005053015378888968;0.0054839720159829825;0.00732725140745935;0.0026699924955682908;0.003842039587224738;0.0041651780552730555;0.0031523562001945257;0.00438436084105738;0.004583190640267117;0.00326668412222447;0.0041395033811407475;0.01137524410600347;0.0018212916476272245;0.013763540517740242;0.01593576703598862;0.06913007485184985;0.08847441094397988;0.16467741636131633;0.27606155235501023;0.12611845230225055;0.02206449178719061;0.055152007493014736;0.6549810686576728;0.009362999993566193;0.028948305156207135;0.10992787589254777;0.2248412432035047;0.01708177154193694;0.003081537464847866;0.009002811298788533;0.005324422483481503;0.01835005860524532;0.0;0.0360701834326502;0.0723288958190394;0.07109267009654796;0.07025337130402225;0.07333270702343993;0.001443291704977514;0.004361535023820564;0.030001996775212945;0.02050130156818009;0.018731569392445257;0.007577370372800255;0.004420403204619023;0.007507741521401749;0.003835876790047965;0.005988284868606551;0.004422021180312101;0.007631790602352135;0.008399360801065712;0.011209893437481916;0.005947328499429111;0.009268885286247277;0.0043315941803174374;0.004104579174789321;0.004180698883192862;0.0031830476032795115;0.003928825325189159;0.001966627018936052;0.0036400439597787998;0.07333149870760772;0.0751504390188736;0.04530526357437084;0.049001114003794186;0.022680230769320374;0.034861984662480285;0.0027918347479001337;0.018562415585771274;0.04358329732186753;0.04590254990925749;0.0549124543091217;0.05526098931503478;0.020294609758129127;0.012760228145861861;0.007260166844800916;0.011528828505457566;0.06431858871007463;0.014960078993656117;0.012754858349074645;0.02625680524651537;0.059739452187712136;0.014538535926011635;0.019399938261374858;0.07950115724899218;0.0869408208582158;0.024243491589085165;0.041134699742965394;0.02690516302060688;0.07047512638552496;0.0358913172391037;0.04071722673691982;0.03365679856831108;0.02702400410165945;0.000686164166215346;0.000244711588667463;0.0003246715263648407;0.00046630997144043974;0.00102870099535552;0.0004861518556033542;0.0009626027391263819;0.0015483728755762796;0.002001763060966556;0.000886099332187487;0.001554969393990795;0.00014420919027669407;0.40954450514442176;0.006106292467852149;0.04574698004408617;0.0015082982331010293;0.003898631371541636;0.00015668512567423515;0.09331929796819424;0.014771235425346682;0.011530895549398294;0.011096519156461307;0.059657171958764764;0.06341091067398948;0.06864110307923868;0.0761352579126794;0.10888687335803254;0.06384178314881303;0.14919872916662982;0.002682016349477;0.05911722931818704;0.15705204873312;0.09634611859138215;0.11197130924686409;0.08113835558025542;0.14969346683150755;0.11132110711995806;0.11843407087016275;0.12937459238248972;0.09585325544721882;0.09775446136092755;0.2081006675394605;0.08606292112457474;0.0753649311908841;0.12892816218321385;0.032923033032020814;0.14068233454108764;0.18336514203811452;1.0;0.07137699298935345;0.692787743590226;0.15603225482909175;0.16922202050914403;0.17500670090739318;0.023678661793116926;0.1630400263185394;0.05758650238852203;0.022915558599744094;0.038667100202830304;0.006934111491110175;0.00461812674736256;0.01806667533434134;0.003258060113599964;0.0044476599380206296;0.04066776081883186;0.0638304609698626;0.028262118542065447;0.0006761429694424838;0.014079483765249022;0.017425075587557137;0.3033081894835285;0.00042142887063926414;0.1502156158095657;0.03564562833108864;0.013091103003357894;0.015646664264004274;0.046929190909909935;0.049119133049392555;0.06970172483925323;0.0018557035723502585;0.03868249390610906;0.06487987196713622;0.0;0.008694558968975885;0.05067708579568858;0.0516898511353774;0.07708752525662954;0.06236003192541827;0.02456815311143817;0.06755708192046968;0.00890516398873039;0.008668659068291257;0.08463802668425914;0.09214396782476993;0.1052318473604275;0.07877056986255428;0.10897259399847452;0.09162165227451653;0.10542476973084978;0.02873184813847743;0.00350661162052674;0.1400599554966243;0.027905874180362455;0.07217178419495578;0.028906483445617498;0.03458102572516224;0.02492135982480705;0.1241919916949697;0.06746479554722463;0.032119823117454795;0.011271719182884424;0.03125928670992914;0.28611534675262906;0.013265205141024633;0.012565721649158196;0.14538693782165896;0.06701219608329674;0.04574972134511803;0.006129306998906526;0.005572087392098458;0.009197306512218463;0.00509599701374374;0.008812845739606038;0.00585125029665115;0.00964014931137777;0.008092090578870554;0.010400697700743582;0.009408851048619996;0.004407921493884459;0.014442216447199688;0.01077341542060058;0.024107169183962707;0.06346788022951692;0.013149609502566837;0.008530111086256283;0.021934166839209897;0.049820925397671655;0.049306342412023536;0.057734444971324676;0.040420489977464134;0.019069044377685536;0.011171923120700599;0.03921078590447166;0.04999338667818075;0.0210528669903445;0.04136989594489661;0.04159635363362313;0.011038552855504237;0.0146153608298432;0.0728397311908552;0.04209863464601463;0.07471446639635547;0.08915958119106414;0.03560792950225797;0.08071600298266421;0.028986290068966067;0.04205765801066806;0.17858684013425027;0.002702240539479315;0.002799382438273744;0.06964981164813487;0.02794116451167057;0.054198658900521654;0.0533170429264403;0.026630763614277814;0.031244075209191428;0.022535641821179137;0.020550417236816575;0.06719661552010009;0.049231443917766564;0.039925218603998065;0.0022043735920162077;0.060143931885794394;0.05211954554560692;0.07355689112896431;0.010214019881746457;0.03093969118396756;0.028528131522646487;0.06888608717024622;0.061153046127692526;0.05547171630394924;0.0014115713096720373;0.0026094023434726785;0.0;0.045054320465805396;0.008927373833656882;0.002375864203855022;0.010314122443621924;0.03875901924810234;0.027332787705136773;0.001540113072576618;0.05644111503974894;0.09026660142756691;0.029254719474319475;0.06665308366563275;0.033921827764262426;0.164569249274203;0.099777771589187;0.005282254667185838;0.0020070165450611255;0.04762413120825239;0.005904419848591714;0.02066590180499191;0.04268887644344763;0.025363399419878294;0.15058414163151748;0.023879906930758456;0.001003894801482334;0.00022421129400380918;0.0458655769692225;0.1307192478389961;0.00185642920288797;0.1293222805394799;0.5969798747902872;0.00975293159529603;0.037934454932246967;0.0202033300115365;0.09293340133853886;0.0033907380519925053;0.0713063326726665;0.04040007990978062;0.015192691056096466;0.039377583013375135;0.03835899738341428;0.09145476767040633;0.05515902361721968;0.058612967863461804;0.08764882896533567;0.08017698425689793;0.06510666943349852;0.015184351012532557;0.05500635158759406;0.041011016559188075;0.010311658441684407;0.03521380426693122;0.015630742065270292;0.0014145984506040658;0.08383430029300792;0.042940016221589244;0.0019346861989294345;0.005406317151089964;0.003227431217674774;0.00281303680274604;0.006073197284557334;0.004809528929163668;0.0022284995059440086;0.0042494598341747385;0.02735829145695227;0.01616389634672587;0.08764432062411653;0.019277926886688522;0.0009483587191026111;0.04822033728456278;0.04182252588965309;0.0033811109252231946;0.035043415615829014;0.034552524362258336;0.007056816078230129;0.029254250015459365;0.006685447992154674;0.04197128706532584;0.006704296820912249;0.009280834496627545;0.028679245153113923;0.045322852627335625;0.019689439232457744;0.05708098872817541;0.051881214258896365;0.03722947417952484;0.01185868413755768;0.015398443408047972;0.020070392625085778;0.036494974085195746;0.030549589976144972;0.040331627802906334;0.16377585276853376;0.0675835995579223;0.05069814436314278;0.04166446751717046;0.3405066130419798;0.13216741055553896
+Safrole;0.6041168098445956;0.590111517911382;0.6056645054701193;0.6172021572963464;0.6194413522955384;0.6473636452269149;0.47528244372107115;0.6148793084422427;0.6162420900811575;0.6228427778707375;0.44153835685667847;0.6285991587953862;0.5292579461721925;0.6062644731536331;0.597698378910418;0.5956748605345433;0.6055174613906059;0.603266514566639;0.5926367092737218;0.6052340829406713;0.6041375366781342;0.6021245655365848;0.5938366150619725;0.6064445073420602;0.5863706282162826;0.028090876219209457;0.5135560272470894;0.2649134049021454;0.2127138934395745;0.2741897499015784;0.17883297401759754;0.13921716502568401;0.4174421667299253;0.5988748150170327;0.3566037053456256;0.6714518448318413;0.35785864760694286;0.12180467867663228;0.08570746356215454;0.35466733699788855;0.19467362216961934;0.37618178726742585;0.06356504728899502;0.000585909363019179;0.026873954537175542;0.012148845428348633;0.013579141724643067;0.0185441106218514;0.01258444721066963;0.2978700826845315;0.26034497265630896;0.09629977879317275;0.004709600120887857;0.01065615052482628;0.234178266377878;0.3856379385154958;0.2248069369560759;0.2580019923449998;0.21054533751281582;0.009794206566120898;0.18754599575598807;0.26891832717868996;0.3114583672461902;0.30967998474456915;0.2398988406274386;0.24677536462273347;0.25524023257896516;0.20296230531656928;0.20201321097443675;0.1983449121287134;0.17600508049674787;0.14089721815805054;0.12120014316114078;0.13002627596719074;0.03120923416855369;0.031031430147908594;0.04281606554619903;0.042663800752467326;0.002821481060061956;0.06430766210232176;0.030404196979803556;0.02389745058366375;0.02951263371320945;0.029548885784164133;0.04390059684693086;0.011731368856349947;0.03731425989350043;0.04483795487449146;0.06402371703680192;0.030808658753054573;0.03718497712648766;0.025564594910136247;0.09377180451812021;0.026561288153997498;0.029644956642929585;0.06817530598650978;0.05652564985700321;0.05090472827006466;0.06025707178092777;0.08088642587788147;0.10488302170077232;0.05284295909726815;0.06069312157379824;0.1085773252518662;0.06187107474721063;0.4189427808615821;0.363517409366064;0.3852251911747125;0.3961180358835554;0.4593788739777383;0.43571620880436257;0.4088847366631326;0.46430472917652776;0.44699671528172763;0.44068036017320933;0.16388887123088425;0.1438191743756519;0.1275666162051834;0.3506506630427168;0.13525281464157815;0.03482569773529974;0.19259244298987116;0.3290812070783016;0.02664867625517526;0.005329069855352258;0.01644897119871351;0.015701394350584652;0.1046968471472582;0.07711982687597654;0.09462451811570328;0.08041699762708163;0.25784930017918295;0.7049671636065861;0.18973219104927422;0.6173769524112825;0.16484712334123558;0.370628649903536;0.16810542045287324;0.8514651459629106;0.814968231192054;0.46943138976987053;0.7553346066059072;0.27859024952617145;0.4311833891420358;0.757676398416433;0.1637314603541301;0.41282448633476826;0.07756013962579471;0.21143955763594005;0.15765812356340192;0.32448328772521695;0.19249387444502625;0.22627576694056492;0.07137699298935345;1.0;0.408473381820732;0.3199646506529008;0.14731866676904515;0.1492368552911948;0.10599675351177072;0.1448566820652809;0.05465624451072406;0.034843308014400574;0.04258869771918724;0.040321644016208726;0.03903404354883208;0.06892840526249158;0.06271672632588429;0.07338540718719547;0.05890798387954396;0.08166560347634678;0.1621862068474699;0.003774725214393002;0.008635105362842056;0.0061942167315712235;0.09434467870130181;0.012291239598441297;0.026283312036945145;0.25409588902519525;0.5971986310170212;0.6003964099554142;0.005859699422973893;0.2971592887107754;0.6256607023379888;0.013391365962847278;0.22197257793152705;0.006698173240941871;0.0;0.5000907746157132;0.5790148983558321;0.5923699031234974;0.5703739139895064;0.5251753617854779;0.5106526739452328;0.6755886652842122;0.6065021765234001;0.600661027819188;0.4815847396661882;0.4898664864204896;0.2710565600095089;0.528729343813879;0.3008935116631079;0.4344418755538792;0.4658785839248121;0.11389558340794702;0.6129114774837638;0.6631502824806195;0.11429141390443849;0.15378459687989005;0.2219651960390886;0.050493418314962485;0.33706666021962994;0.27282968759282;0.21580267573240952;0.17594631657416465;0.6173301728367829;0.32010682934919144;0.35924704920002887;0.05180414944626319;0.10315159652719809;0.1608202476166374;0.08514765759910793;0.05379942767753236;0.4958574412138867;0.4433905256691501;0.29803057779259867;0.388218008082022;0.281215431130558;0.32526624969113666;0.20910405886358707;0.19320723164557127;0.20077901326450845;0.26138838473973;0.2674166523718972;0.16826179553406928;0.2418887828716379;0.1401200619611905;0.1736232896828179;0.19646652992622907;0.22701178218582002;0.38502099307788273;0.2657929844791138;0.260828315017867;0.11188174800547997;0.1469632705262791;0.14560225106365637;0.03216483096752744;0.008359937330909053;0.15553271606028815;0.02400563233910979;0.20329746947505287;0.20519898787699267;0.005054247763222052;0.5026192308255333;0.06415986250481863;0.09887511257320922;0.21837015219132805;0.44408969584375296;0.06846083691469133;0.12462410559587513;0.05132466398604461;0.2441869580768217;0.027394234269614657;0.27120559580553805;0.09468993605710872;0.04254902327604109;0.353295020588905;0.35677554515022425;0.32589033922675364;0.09868655863594909;0.015526030209933279;0.04224525124523155;0.16319294788903677;0.18885851874342383;0.05760327786731275;0.2518865029987228;0.037787668637817254;0.04695488771139884;0.03496384350749528;0.22672375951237395;0.03160335639079627;0.06688420759436722;0.05087376242159175;0.5038704238015589;0.4328131315030299;0.07872832932777693;0.002841749108766973;0.22590304276089218;0.0;0.0474684484008146;0.04820680380031955;0.07849510357993136;0.06165102346897194;0.2277883741369775;0.3003623244530458;0.33622492405279103;0.21907919936517528;0.33120776152544495;0.02596812840246228;0.3656778058616787;0.15387781019049945;0.12302236534300896;0.27534044362726345;0.042485615278456124;0.36443144991059767;0.0669298418203618;0.11013121684949763;0.17859289414873297;0.3327854152302695;0.013548130763885486;0.11424108120494475;0.0316865884806303;0.0;0.005927618990180585;0.5339652979343846;0.30284815520290487;0.547468963152351;0.10523995297996479;0.13837349712152333;0.03420764842700739;0.07244564750554436;0.09664257214364165;0.2368811407831821;0.2528195675112848;0.3073670065791927;0.13242985658736786;0.06893363931649499;0.01541648604159128;0.06181585290045294;0.21999800342482598;0.021953745948762638;0.4102416564727381;0.28474005540467906;0.2834415178451;0.30748988603336674;0.24083668670927016;0.06547703875901131;0.0841941319385251;0.5828988828958878;0.6883415849707998;0.666727752622582;0.2508001630530111;0.154861863584794;0.0019499987280235799;0.007317628051456622;0.025037409640596895;0.04242553937090159;0.007782057890376686;0.2964769164043128;0.13177695557214375;0.0012934413962249675;0.005208448665534149;0.016515808358601603;0.0310637647901036;0.31575735401905086;0.04636365913264966;0.011063492636534474;0.04744032046228551;0.0018606797029507348;0.04679840539850155;0.09668645712670626;0.07395304368366055;0.20611588502710276;0.020341725133645065;0.02002315149565766;0.05174663957312925;0.018151665340730296;0.0088040213384354;0.03958978948159888;0.06239062075417916;0.08658879654001725;0.023724251079001012;0.06798689348327462;0.6318498851587183;0.016384303271258407;0.023123239090570603;0.06418872668189922;0.05462747932348195;0.26180682755148477;0.2300502938981678;0.09861956140431256;0.20869670633248852;0.6525964598110658;0.6996115502726872;0.33801172675927166;0.3261323455403189
+Cashmeran;0.32276804924110536;0.32427921082007694;0.3308186704125537;0.3348865117132469;0.3416287109157872;0.37654142179279354;0.17100084794478923;0.3402431959013072;0.3369687083187887;0.3796534251653299;0.6516713586523991;0.35026816244713427;0.2017156438693044;0.33751111754128293;0.33400151368189485;0.332962438190723;0.33123855181303025;0.32937119657895114;0.322507526206499;0.3273718800137147;0.3265248808689132;0.32229289011332096;0.3365777684682061;0.3290425270672231;0.368563785224341;0.07130836183839721;0.290185419451932;0.8199732856912589;0.8453212603108279;0.4380544748797012;0.5464484672872902;0.1526954108609135;0.17897158976656444;0.6063363091611592;0.21992812669710352;0.4142819821762249;0.679954919326941;0.6779636520116292;0.2102336618316028;0.20138277505467442;0.09332517648680637;0.21739197697766754;0.04705429310209864;0.000542771877291678;0.03995344176758682;0.04651335754412073;0.04638829655517756;0.045545235811841646;0.05141122945070205;0.16166689775427603;0.13876992589634105;0.07052706399735563;0.07617536273202706;0.040167752996555145;0.1511248114584667;0.21960709905299203;0.13562348598330382;0.1482391630752426;0.11596213922654645;0.08409923886429321;0.09569232623028469;0.17070123274061366;0.19369984770069257;0.18352484718789233;0.1424534675002754;0.14230262760339468;0.14591157109073283;0.11313016208682243;0.1072164325790989;0.11038823533728191;0.09650597854313707;0.0765585645297964;0.1746347108420062;0.18288577854011848;0.12027451029242155;0.12506083458666664;0.16316985954926125;0.20297221295896514;0.01004613882987389;0.055528246747721506;0.09735231207570448;0.098024850014379;0.13580161837729568;0.1352176101031814;0.09976624723750284;0.07422366872514508;0.026397198416031407;0.04236153430529959;0.13098826682097867;0.03604537235435135;0.02384063392170261;0.07567748965442465;0.4750327032001004;0.048407573920851404;0.06412135539810396;0.21004146115967323;0.22893088101334705;0.08330454291088402;0.1401085148024148;0.09279265291476199;0.21753575541740278;0.1299195715515355;0.14270829086984366;0.1236664700351113;0.049453686672158985;0.2298747972631216;0.19387706583762357;0.20541269875762205;0.2069096509761572;0.24968263660083476;0.234956134637997;0.2201993978494201;0.2516804666899337;0.2465072689132672;0.2428602016598397;0.03678004936326461;0.03386232689377638;0.09065489398357796;0.19883755745474216;0.09004117422800238;0.018997391023376328;0.05296764162967644;0.17679494761198605;0.06935008889927691;0.05560494983162759;0.03501862412926773;0.03526675889327305;0.1633205542001644;0.17109084139561612;0.18033082414219806;0.31729040616498105;0.2735719623460951;0.14760281268777237;0.5667995576404518;0.347121052952458;0.191380221099694;0.7171326126458725;0.35834008056708155;0.7080102307022819;0.6621679356702147;0.38033051016964803;0.7088905275056298;0.4133557657066101;0.2772771699769644;0.5642811821895076;0.27732542298295776;0.31267554279532256;0.3094786327482988;0.3409035046348314;0.6423680459206986;0.21761580884535492;0.6274988405921578;0.42870448010106504;0.692787743590226;0.408473381820732;1.0;0.7616639888636331;0.7221868457265334;0.7392211949539383;0.07344968908228502;0.7037049983147998;0.08605699345532007;0.04660653574478906;0.03778698335229557;0.043688863347133455;0.016657405515891996;0.043074754375760874;0.04691285085695553;0.04845988752468063;0.0817523835647179;0.09189519666650858;0.05087753472150561;0.004137915873736191;0.03606304539676677;0.03740172369955129;0.672247322361299;0.12102531442094881;0.0374094025082179;0.2560972268593161;0.3189731731384502;0.31451679519712544;0.04457964449115006;0.31830681224756263;0.47283347674323956;0.035816572164287755;0.03170950360576122;0.047487630375459354;0.0;0.19598216643235697;0.2646263017078261;0.3274109741751237;0.3090792236293559;0.23824269305500465;0.3054957096661893;0.26503402784235547;0.2306210015247789;0.22472638580289162;0.6388246805916334;0.7019042303229239;0.6761252972074908;0.6056705095655277;0.6778434658767921;0.6505262357329452;0.5534709887014632;0.18182257523701123;0.3843141402112816;0.7976834118544088;0.14873212777280823;0.08266603177179244;0.1307968773210163;0.0356610853787786;0.33942144584159417;0.7466891422741798;0.2277385923237473;0.11926328185442696;0.20485567119244824;0.23450675754100495;0.2946229207248626;0.029690234463935684;0.15772758068714277;0.6490926730121049;0.2010013623518039;0.060726555710104886;0.2853769935764895;0.25507435625144836;0.19655006996135557;0.22424262084844288;0.18299713729703707;0.19205608198313784;0.10344993158223353;0.10039733053406925;0.10042845495558077;0.1566740631739712;0.1524800069292528;0.0699871524264971;0.13025554378401627;0.17851167125599804;0.27568351375204464;0.22646817702456096;0.12103535814486677;0.18233608840874985;0.23282275011155681;0.18273912288318497;0.19657793219968736;0.06570222587908771;0.19498326142349065;0.09005198991301365;0.026001219527921834;0.1304539783344818;0.05935676609195427;0.14625049229218318;0.1484147073390586;0.04207238872087443;0.3129591887813826;0.16545607029014367;0.2707067783305047;0.48719757789242335;0.33440795249664335;0.15519987616008155;0.6557317545285716;0.12306942119401688;0.2446678458685876;0.04709612227554812;0.0396107701375061;0.05422575440212882;0.3028335263900597;0.29133877812627823;0.32979753944813406;0.3478817406284941;0.10770704714108838;0.10778721372727164;0.09369848543274363;0.18622032244003986;0.23896538248634797;0.14507841568636345;0.35853090574674823;0.006436263799701745;0.30271774272118745;0.25568057640391856;0.25771144102264437;0.12086380868583158;0.08341685083844562;0.121269202390044;0.7101466182492742;0.28352007002238766;0.18466185438306143;0.002859045958082667;0.13866675850510268;0.0;0.203596129180433;0.09471506518682576;0.05992478019276168;0.07195625410938099;0.09556520411812014;0.16527809003325425;0.09413378768570152;0.29100590700378626;0.3116493087252259;0.12414215824296534;0.3000768343309557;0.12687697591973524;0.16010887799267062;0.6094693274311995;0.05579005677532445;0.1043572050621578;0.06559547083527072;0.07183295581315247;0.22647990976413046;0.084755179952081;0.31132477555750887;0.2929227294554044;0.0848192805991142;0.0008807513275196472;0.007612223281664237;0.2635429894455828;0.501275394208701;0.3015248703236641;0.5562013542520103;0.4767074027416871;0.028977471736000508;0.13561135048639109;0.27957445655607627;0.1959513856073599;0.15509665033574885;0.2565657180548409;0.47351416574781363;0.10319923737696172;0.036788043227092136;0.09561394437700942;0.6643541881414188;0.13166165664139073;0.5542294402172302;0.3458972818201764;0.3439580661692473;0.14104192610269323;0.1252785040803601;0.09955228561726408;0.14824597782569368;0.2332042428456816;0.35551894911228066;0.5295196306444322;0.18298947081469674;0.5188429104888704;0.05866431206453811;0.004431493275524167;0.027701347796402917;0.01935013900784764;0.013874396310633233;0.09150282396020322;0.004773101565783071;0.009377020083602928;0.010263087430637263;0.08235206935854303;0.0691028861886825;0.27068936258951704;0.1376510187684681;0.009847517303302742;0.062127833127779995;0.0725810995411387;0.012537610860758785;0.16808181384547474;0.15452599056935876;0.105902219330921;0.04391174910176681;0.1253021127555931;0.10184939413461723;0.00579553876741959;0.022402220127040032;0.06343376939844335;0.13939436074129657;0.08392969446358207;0.12270123314523528;0.13719650574549533;0.3323749703049452;0.028911708887553324;0.04203695666044176;0.15355926313063792;0.07670697456758273;0.24514207306341917;0.23211823596689846;0.6843067032301684;0.2700887361775854;0.5091287394272673;0.4544265534819415;0.6282531472747006;0.48491808264355013
+Celestolide;0.35407437673832676;0.35015211689567355;0.3623428966323317;0.36103373290587865;0.36451124984298366;0.3638329415785394;0.2159591091920261;0.3657113949150246;0.36449849864241884;0.44584388863129626;0.7640620147027961;0.3736136369800594;0.21103030694252148;0.36361172638473727;0.515221729632661;0.4774729454353636;0.3651981330579327;0.3592790745810608;0.3483650629673552;0.35623738320337955;0.3621878718482843;0.356067361990811;0.35551856268176957;0.3652873023592257;0.38629352129936334;0.020683869481132974;0.18446285872719045;0.5810945845327649;0.8751873212541534;0.16748928728542836;0.4596480161972774;0.08382401811265167;0.16776493632924533;0.27150894119705443;0.22045978141525457;0.4138627452180001;0.5078247564773979;0.8769921636480547;0.3772450517693258;0.21680436430636;0.05836319646818166;0.23089123174320508;0.038039889544466084;0.0;0.03144407212334432;0.006037383025982519;0.007170969990514792;0.007137369648253854;0.007198154502748608;0.16492501589407044;0.12310449270833164;0.0513141689782156;0.026174960492248326;0.008820903174934008;0.1122336004798284;0.23790127872636255;0.1209786289616061;0.16275475127902295;0.10259501324400767;0.004817508399586848;0.07725452097784309;0.14486496973723875;0.1889241602838226;0.18477298935617642;0.11927306846770704;0.15460628322805356;0.1617608371487838;0.11064509355278192;0.1100444558464931;0.10939135860106419;0.10238300099913639;0.0735408257036883;0.0138501454463496;0.01711705172724528;0.12368429185139088;0.12107025960014249;0.0066851520878773545;0.004223520423154259;0.014062413535584142;0.05895893660980365;0.03975515352132397;0.036712662012472266;0.016535626486326817;0.01578856273649822;0.055254565743877854;0.039293666898010386;0.03556754338264188;0.03462276115152961;0.024410225551330565;0.01260794285002458;0.03666661439638465;0.024342340559912055;0.030258403120985367;0.041274516789317844;0.04832302678130299;0.01978632818549782;0.008600539052446201;0.06379713413966384;0.043298049996388775;0.04586585089632985;0.07663104627250172;0.02300687426951028;0.03129687071435516;0.02473918986585891;0.05100967638496291;0.23269776167682296;0.20476015215475174;0.2169397296808014;0.22140967481949733;0.26465679489561483;0.249281267645533;0.22860576867712767;0.27572485954180515;0.2616614491541619;0.2542809228010836;0.04284274769961367;0.04030025740207595;0.12061031027015251;0.19658892163895839;0.04662542868139495;0.01613944906048867;0.05252550448198059;0.19404897898058934;0.05367961459939919;0.0012851100068276727;0.0022022842825793975;0.00234014139769357;0.008884669802216588;0.009706410876625594;0.01000156284985371;0.033715622632912744;0.1684406531739238;0.15761112349471867;0.4306656550525657;0.37746709269757656;0.15772790774745318;0.6837784707593347;0.28529749478440236;0.5530702832320485;0.5245189095140805;0.15244475267267754;0.6197770815549588;0.12346006325526629;0.09703414267760033;0.3614983892401889;0.03385248503377456;0.0701845843101151;0.015762486196439104;0.24898435831766164;0.4991638392198373;0.18549470041232966;0.1799948188079329;0.42631878673155543;0.15603225482909175;0.3199646506529008;0.7616639888636331;1.0;0.8923326189541358;0.9341374499274937;0.1596542719969471;0.8329068706570405;0.05143837774936396;0.02420008866128009;0.02344775778475203;0.010647648322580978;0.00300863524794812;0.0462814012470236;0.00590419435090764;0.008733773121811728;0.09288303896205406;0.0721837803403452;0.03419887746914791;0.018376787761000758;0.007468877529432281;0.006884671170022298;0.8609536983591328;0.10934768976164443;0.039947138844536066;0.18113306926341333;0.3052511413299625;0.278567607661598;0.02850469361019079;0.166285493714676;0.4776868674968227;0.03117978896690523;0.008270515563992038;0.023689617031887628;0.0;0.22628446735038188;0.3507348208156471;0.3782179928280988;0.27057622085331245;0.21707556557828814;0.29315580664268237;0.2716417948008997;0.30721929536851283;0.3020778058422315;0.8310779905630802;0.8970550902997176;0.9110986621847581;0.762597963855873;0.8924775578406876;0.8502183733485076;0.6738929810040448;0.12429963879349093;0.4141872115586295;0.731507833582482;0.11160866979607466;0.01910254247688492;0.062087753740554016;0.01279953410674332;0.3093027981616742;0.8561499025226897;0.20553729479240146;0.020553296439184163;0.16110135511497722;0.1926810598885852;0.06550234496423639;0.003166001881248636;0.06538693704374378;0.8396787632243286;0.32115414729999864;0.012677926426590741;0.3187027911991147;0.2823545875723419;0.1823728664379383;0.24236613654837114;0.15360141678963476;0.20224171536403945;0.0762046259046555;0.07933031795300662;0.06967834450448325;0.13987468282339416;0.167686252052489;0.04184164904553543;0.09240456911028061;0.12562311084928438;0.22301712804450025;0.1320140430304048;0.0951747205012758;0.17318538098059344;0.09815334783108055;0.08181033742564008;0.030287417180425533;0.052946500901871064;0.07060318053509848;0.02527333635694644;0.020896032887888442;0.06751737350125768;0.018956958849269474;0.08895805492186017;0.08973441022404959;0.0124212025488333;0.3107303079986691;0.0821370109974731;0.014736820461753812;0.02157076556788794;0.19202197410725944;0.0690723958095713;0.8621400491272064;0.016850650591129973;0.11184637229402834;0.03016976952144856;0.010660217015798034;0.04410921204897937;0.06534501293702463;0.18444257766055638;0.19366536241016305;0.2586451517597627;0.10191490985858076;0.026581943995596814;0.05605640026365846;0.1758028421941302;0.08466258632922306;0.08619350211578142;0.2756621614524917;0.0761878623430457;0.008953993811755887;0.01572116562282943;0.016715633296699058;0.05139805712560752;0.030496023782715473;0.016703503640064746;0.7431380299386671;0.2576932196544533;0.014638970219979206;0.012417825086045397;0.16086150338041563;0.00011001393539658909;0.06115789329646935;0.032239952938236706;0.0469966644935382;0.3876892940837866;0.03734086642625361;0.0663801223732371;0.09930977066114435;0.07604752766279055;0.07969180582399048;0.04754091724008967;0.05123478467610394;0.12700423169430514;0.01723732570218313;0.6126105660525888;0.04867767992582214;0.10610579909861138;0.042929568525940806;0.05074934905690494;0.07855824158836823;0.0870122529074753;0.11522549847695263;0.29173940052885894;0.04296062276837833;0.0021886261956984817;0.001713471973297206;0.08631337177032526;0.65651783972348;0.3416201690013366;0.7165448092914788;0.06569751010198632;0.007519954353473538;0.013580820987175467;0.09158345571486075;0.08050550851944144;0.18719400854525212;0.07706580725115285;0.04302277438344468;0.05543356743428199;0.034533654645804567;0.004297592634929092;0.7892920945498169;0.1274089750715922;0.5498534613362481;0.17387163904056427;0.1393421226483579;0.023779856295609195;0.08995180697102652;0.04181149952822635;0.026569677012052637;0.30051672061784973;0.31104148370457074;0.4803309645172185;0.15218811209428815;0.7246638202549558;0.022290637178318175;0.01822138107044383;0.01067023542002638;0.00031694281550099384;0.025996890287949985;0.05956613708295234;0.0325802779220494;0.01064819019416236;0.012391640107089456;0.0037780414422710056;0.0275830417687398;0.20780980914949493;0.0637378326948067;0.0;0.06344486504590968;0.002859459722788849;0.00569524229030731;0.0824853880502181;0.021399989499013297;0.009016207841297282;0.04867276307533703;0.04223386940578314;0.025894923829223156;0.003157113050391189;0.06233489804167851;0.06949544113703637;0.08575395832742945;0.03184383851786119;0.08567162245978159;0.10144488274402522;0.3734423851836732;0.1117943716203368;0.12506991993136268;0.017533805768064775;0.1101477865468474;0.22725438402468684;0.15211750163820295;0.8393964473082719;0.36793087647173683;0.39627945811730647;0.39126052234774655;0.475795519715351;0.19105928281573614
+Phantolide;0.11984010847792885;0.1175105696985721;0.12607263464840296;0.12734091332085384;0.12940334238356746;0.12479910111063564;0.10170892072399822;0.1255646191101904;0.12600638240388834;0.2529597425559766;0.771287139859645;0.13393180337321015;0.07857712912500728;0.12234480372412015;0.3161577617067771;0.28189194005616197;0.12184455604132746;0.12022498470922538;0.11696471222085882;0.11941839244579473;0.12034362192533693;0.11838601205493894;0.11915294715220535;0.12145431253826344;0.144977721601314;0.022281015904951;0.07491388591307437;0.5379336544464827;0.9168800667854895;0.10186066812617005;0.48371376407051103;0.02708685937828789;0.07507697296411825;0.09793532621046543;0.08470071763499476;0.16668123287946737;0.421406363562373;0.9131314005671725;0.06642558565413448;0.07321109233409559;0.023221075274752118;0.07453985076192766;0.033440654365317186;0.0;0.05082878478630345;0.016454199475441064;0.017387246686649725;0.017005494153368626;0.017804644943366116;0.05535566978819097;0.04247320327087129;0.01744771550285643;0.033366609279273665;0.006632545620026097;0.04734122138390884;0.07710553285734499;0.04391152221846135;0.05554676111819898;0.03596122230517992;0.0014575212076753438;0.028289140960692762;0.048684126215840055;0.06275096365922861;0.06125463597163775;0.04367174373694116;0.0532054377062556;0.055562635166445905;0.0379580678659295;0.036881232472009584;0.037546713617653306;0.03502921237330513;0.0267602646919947;0.010479297509362022;0.011381431742519594;0.11731938461481645;0.11320189461010072;0.005340920703995519;0.002345804244871698;0.01298394929043746;0.062236778544365136;0.03953393673884462;0.03656143838214111;0.016329062953910796;0.015478144897062314;0.05713638981067776;0.05283958688871415;0.028485118644833295;0.025805785782509815;0.020855421097101215;0.013641123443945257;0.046488463000137904;0.03080199058845315;0.01942193802671268;0.03640990966089965;0.041617331108605445;0.0085694119243511;0.004727513225597683;0.03220982340601608;0.029673735532634582;0.028827751269278487;0.06705795156514738;0.017033840159818618;0.02723643545740352;0.011328111383144076;0.04113051624206832;0.08205118405364702;0.06926914709910137;0.07397527259390463;0.07509461454688547;0.08903586052257162;0.08485339139168865;0.08128252878926408;0.09016953134003441;0.08779685441259936;0.08713494309237782;0.014857847662097282;0.014120275608140125;0.10903941118618232;0.06592573273899129;0.0170141338201592;0.00609161571138023;0.018387281588605683;0.0647917505818276;0.06492935247814545;0.0008954665552858551;0.0019040316768877841;0.0019277640368932597;0.0074736604469334235;0.014096862071643599;0.008510039829202938;0.0119499987249166;0.1282541316140594;0.06673122538291518;0.44441689448971583;0.12709349358626504;0.12372840815212306;0.7900184200970749;0.15988975793406765;0.39787426326289377;0.34426677880276796;0.0809095660441736;0.40967231707208707;0.06905605775073047;0.03589350989738481;0.2349244008248154;0.01935922048349979;0.04367215792629951;0.003468979438414065;0.22079876858735645;0.5253639134038894;0.12427234021042217;0.23771446562037113;0.20420919297575926;0.16922202050914403;0.14731866676904515;0.7221868457265334;0.8923326189541358;1.0;0.971372333631713;0.09334587642709183;0.9085048138728933;0.01486710997012365;0.020134334774247118;0.03909513045947262;0.009336968676819643;0.002259398736375809;0.012266864792191938;0.0037522149672627545;0.004659700037788118;0.04039367578757632;0.06214176756587994;0.012971238949824547;0.021072834778075665;0.006478372511381782;0.005546710342593609;0.9345032886096483;0.0617956787409955;0.046463996907956634;0.10052426807341043;0.12093637061418748;0.09681212886234677;0.014166041738141302;0.08776966758641945;0.28074574001436464;0.05751703689233068;0.022613676174801436;0.023232948978762713;0.0;0.10979819710124838;0.243643433031435;0.23555316822204994;0.09882569253001511;0.16294357561065972;0.1700915109318727;0.1206876870303623;0.1603153343480608;0.1597464060137424;0.7457995521287437;0.7800569068988764;0.9164202441097739;0.6581118621880914;0.9012551981002862;0.7925200013050491;0.5666024353906514;0.10666851704965075;0.17401500547192097;0.6103437119211725;0.08158189693948248;0.0160074315028649;0.047468967022809776;0.014101799428642708;0.14054539075502623;0.8411621118397388;0.1667724457947911;0.01573427428198914;0.05999715467543784;0.07263127229458562;0.05220197876781731;0.0014242941788156875;0.1651045362388094;0.8304398363552952;0.07393672244993157;0.004207728432424571;0.12150418925663233;0.10827553834570612;0.05835118118234971;0.0789845281832249;0.05142674749712092;0.06652004866697628;0.02775395072464147;0.02812000605933298;0.02551514131107442;0.05099665982686829;0.05841674300250712;0.017407877174519765;0.03336648512774136;0.08335819635905582;0.18293185461841835;0.06799846589029647;0.033685457273079915;0.10171434860599149;0.19233716664170505;0.1879404341575477;0.02493819243747701;0.061667149835470385;0.1832401014588121;0.012235977441445663;0.008208512878121252;0.0555596145556021;0.014174962560314974;0.03964257044568273;0.03990689384333465;0.025100210198502355;0.10904143394245518;0.1519468691271853;0.010307679411080019;0.03911167386959848;0.06975288236451037;0.1645628867009355;0.939685737697947;0.01234888618145691;0.049786199580798045;0.047470271764692214;0.0015983666330821244;0.015393686973835762;0.01617326938135842;0.11658635090929782;0.11626259588454703;0.15982331492761534;0.04391581555292405;0.01332139681468785;0.08027079513237607;0.13107984382009175;0.17843582270663672;0.0609211548432744;0.12291371172808314;0.09791847235258593;0.014578658832307146;0.009426370953273956;0.03199586982352438;0.04588703795142451;0.022968766392543225;0.012384292918917881;0.6696462443064563;0.3232824753609217;0.012618758420110196;0.02664580072886171;0.07782748725395396;0.00010181815451741643;0.02347620746375707;0.024949109837873466;0.017502722677603836;0.09689377559630964;0.045762322999470174;0.03369002244238656;0.051859016985090885;0.03594269233491073;0.087493401547465;0.034828434010190625;0.03139718458469458;0.1236719826169683;0.017282489940523955;0.6804619953628944;0.033482158681556906;0.0464722506337481;0.050669472316999545;0.017064997550988132;0.0646834900236209;0.0676475803867532;0.0616190930822921;0.2825168436608061;0.11667747612888568;0.0003484109687353119;0.002230996325132439;0.04596200363536731;0.6525953698411676;0.12209027493495751;0.7077717691138634;0.022621212772982322;0.0062431845837595135;0.011325870695117115;0.04475987465762173;0.07655532186675502;0.09531946194886359;0.031759556610353866;0.05075177209906512;0.14299002344813616;0.006436757206079643;0.00192925435222325;0.8884741829327065;0.14499997177886087;0.5650793263084315;0.0797162781191209;0.05751233946395022;0.02060316235877497;0.03763071663247406;0.03110428799409529;0.016718967182252437;0.08983300288472983;0.10652951207311596;0.2846353422900564;0.06225582426294586;0.6379836132185797;0.05623565899937298;0.05013618431359071;0.0106957269494117;0.002228337393378427;0.020895430780833422;0.11652309199276384;0.1180396989720112;0.0020234288451516052;0.0029477848281556983;0.0034334879480787126;0.023725067950677674;0.262565190476965;0.04724790346655739;0.00030612978708888884;0.05921788854588329;0.0024989773790957803;0.005085852767886242;0.0476211107219266;0.0207308073870406;0.010738125559369743;0.02569415288364673;0.02829222354522999;0.023366585158281286;0.002529373347556411;0.04980011552243004;0.05461562499396905;0.07741300496089314;0.04283519946296593;0.08615955728980344;0.0851476978921417;0.15485887158704761;0.08313361483697858;0.0894375804810095;0.01793297237972538;0.10336531810569499;0.19554690251493678;0.11902798120231746;0.9397050501512221;0.100919258698789;0.22349807402980124;0.2026888900461019;0.45748812493633;0.14040670983453846
+Tonalide;0.14855655812129884;0.1419018011085512;0.14994285878366453;0.14788424576241077;0.1504001868550684;0.16519189916784996;0.11542980102890912;0.16914945244150337;0.1719566348128597;0.21486716233138306;0.7518779394880539;0.1686602795125243;0.09652186930751283;0.17561918089246392;0.15256506752629767;0.15867652566065496;0.14596202094951105;0.1446704390262411;0.141006382213159;0.14340653262430017;0.14384709360885586;0.14137934449409492;0.14819355609808732;0.14666749301049245;0.16650677052791682;0.017449326158435856;0.09698433087011987;0.5422987050884308;0.9004232982196549;0.13682348861263444;0.49606295560873315;0.04390796322024713;0.08339017001926839;0.1213536630017681;0.09847843668568663;0.2148857045388571;0.46252242615211947;0.9096620978047695;0.28756069821627533;0.08236430630700783;0.026038569367913638;0.1137117455757441;0.03556725149742743;0.0;0.021047845816956724;0.014063681693473953;0.013581937731259121;0.012921166248736519;0.0152515462900207;0.06630951711836755;0.05051283517858535;0.020525801563222874;0.03814652117183323;0.014563236107184173;0.05112388071783165;0.11401720481234304;0.05212966732291187;0.0671667075932556;0.04303027272938159;0.0019829550461378897;0.033208168693734094;0.06390172327202817;0.08034190843176221;0.07978019526366831;0.051960284833859706;0.06395987257347654;0.06678084800987592;0.045882092180385685;0.044551444252943696;0.045211383798997806;0.04135094783769917;0.031685678607212574;0.025568208904986237;0.026829896939958357;0.1290944896159198;0.12595423665358024;0.013537769901365758;0.009643699216952581;0.01573210264462061;0.07459963816943531;0.0502903852010014;0.04810873488186649;0.02723983780996673;0.023806857452220404;0.09371317597665077;0.08980987645807398;0.03039521573992544;0.029897073388258536;0.052572430596649955;0.007904840414809254;0.04370116720810447;0.029861716307508734;0.08507112928184084;0.05730655250622217;0.06663979869198242;0.030247036630420148;0.03868954737825513;0.03447888243814643;0.07983802848624921;0.05130796654789742;0.11892404952112358;0.07131385671401362;0.08193898065871462;0.049184612375857;0.04972039520041141;0.09582045530587757;0.08247902133618477;0.08766619734205841;0.0892490236771004;0.10633873935587185;0.1007052440311825;0.09446664066439424;0.1062973525465896;0.10673953229770522;0.10321925133671749;0.018213361768654502;0.017326400312181175;0.11108294319812986;0.08798851262589069;0.02630089736347197;0.007150152987161468;0.022656323657670646;0.07773700737099845;0.06334402481538152;0.0009652888786998228;0.007828924907189103;0.008028787529133073;0.009187730816903475;0.012990277065220887;0.010457633645539564;0.07898730004842495;0.19280756523826095;0.05416894440694578;0.47191051834729875;0.15463156328924152;0.1827486115738278;0.7488850635738216;0.25182996584857187;0.4180957406508189;0.3695179752273432;0.09920576710600695;0.5068505686427609;0.15352182787385232;0.05213852793418587;0.26148305385061643;0.07566985621190117;0.09240912136347296;0.1316616601643658;0.27281129701971585;0.5145187404523635;0.12117394149277547;0.2625808195775354;0.36564197190668424;0.17500670090739318;0.1492368552911948;0.7392211949539383;0.9341374499274937;0.971372333631713;1.0;0.06684173612701352;0.87689888816616;0.03681202567900198;0.027498155711036122;0.01303943706293681;0.008799045365055607;0.0024104920225498975;0.006672134736249763;0.004690096213781652;0.005534502296849635;0.05667817773493216;0.028013726913545384;0.015138968897755636;0.02211848777476778;0.006783738620755333;0.005909626036009289;0.9133073133348675;0.1434168000645916;0.044248937882391565;0.12894865288564292;0.15416497669076565;0.1282566874382784;0.04057868807400272;0.1338885327105824;0.3116935378860061;0.07338242599410362;0.012227010455113029;0.016017699338095243;0.0;0.0985860751079362;0.13620970479104982;0.15801513168872802;0.15137991353503577;0.18136592644092556;0.16934325887272383;0.12636345721993453;0.16165442575736266;0.16046172796203406;0.7357772912207913;0.8201301556401902;0.8931865784508066;0.6502245057495312;0.870165112002476;0.7773219056979331;0.5680154191971134;0.12519960958592535;0.1972224717583055;0.6199129033233137;0.08873998261884236;0.01721108092701483;0.05664566969661717;0.017017772237915393;0.18437144326259453;0.8007125170453631;0.16280783599724288;0.01635429520404229;0.07122708785759804;0.08530033081229658;0.046505024000689545;0.0014685926652459637;0.14327460178158136;0.7997071895114124;0.2545355683578505;0.0061394269209750114;0.1490319747834037;0.1370330256559877;0.09966835055461616;0.11406702845803067;0.06916156762245376;0.08294676005268588;0.03424473832747573;0.03473084195901047;0.031328631526303455;0.06245038356519874;0.0704229976426395;0.021769752588580327;0.04060583429664281;0.08342102767894598;0.1775789649842066;0.07028107728376387;0.040882256727713825;0.15785566052452976;0.1515331507496292;0.14008041948315342;0.03428106305832872;0.0557487187164506;0.14864243517931694;0.010664738901097407;0.008410974528464416;0.07868199409364328;0.015610763556600706;0.052884018504951724;0.05319468456130499;0.029706822832379104;0.13067283281701275;0.1265054275098155;0.006245053459427552;0.04380911173058687;0.08447071727005538;0.1541130766972852;0.8975393257321547;0.03100884249380773;0.05120324726646987;0.041340364594551746;0.0014714067761879845;0.025099820185733115;0.049870553042346416;0.11175324806768533;0.1551146317363138;0.1601139183991746;0.06524274515142175;0.006742413802857893;0.0746670558701024;0.16643584216257684;0.14805375961091674;0.0645230779092991;0.18099351110677642;0.08543658007705221;0.01993139546363137;0.01653382817417576;0.033955643957760455;0.05933289330123087;0.024292972070128628;0.03060148936627219;0.6521691098448812;0.27654415386923165;0.03402461553103265;0.012108123919976123;0.09249323367179574;0.051650623084121335;0.12446835744705072;0.03637372365731248;0.019900357081197396;0.05118676596721487;0.09475929440785467;0.1228816991553631;0.057003166075808506;0.0795480862804744;0.07891837623580691;0.035733964371281284;0.07607243969362104;0.1357368274162401;0.026257190409020796;0.6421859978025991;0.009724566297353058;0.05441565603937768;0.01231510363000368;0.020508448275432474;0.09462121560093247;0.05743544141932359;0.10966246832302798;0.30010116329841263;0.14465582176730526;0.0004062809796919547;0.0020867172171019945;0.05737162704009877;0.6029969099364921;0.14567900947386425;0.7398242872789138;0.027542320651999106;0.004730535365331871;0.012248673544568517;0.05554176736392071;0.11049944291836715;0.10747758091417703;0.04740860163181881;0.03372880309117112;0.11671930326995607;0.00810444922467198;0.04457451267821975;0.8634690976416971;0.13703771879205756;0.5359002150292886;0.0811750321630329;0.06468338087723473;0.01707914452381874;0.0438259686277325;0.030862382678949078;0.02634897428793693;0.1063481670645704;0.1248860331934973;0.3037203329860356;0.06335255912234132;0.7094245693479256;0.041133175692849216;0.0401138723878292;0.06710296914539296;0.0019504155222114011;0.021301997627093044;0.08433255565430481;0.0034120855502555204;0.0004949594004774577;0.0012592950609906326;0.005688884459188521;0.03877321112288185;0.31884964346515365;0.05745729381925733;0.00024822119244478604;0.05931983276234039;0.01663469233845537;0.014464994178547469;0.04584056815257958;0.023693409343530994;0.010412986274552675;0.03858402605692306;0.04452132365752035;0.04372775963246096;0.002520414710103222;0.051123188072266866;0.06657005721401443;0.09771171144761447;0.0536227309354909;0.0861519710381181;0.09626168070923526;0.17089636138785178;0.08342824501212927;0.09088118212676959;0.015221421327059772;0.10103365753252638;0.17828386867256096;0.13448779775443948;0.9105855096012462;0.27802153710750377;0.24666089786585285;0.23064447863286072;0.3575624890219071;0.1849459434360088
+Traseolide;0.060870106984495576;0.2771997123992322;0.08550698527217127;0.232681745250093;0.2254191198900334;0.17546762601347454;0.42962151242758834;0.2290389282301387;0.23603141978934816;0.16113138239668945;0.09773938967675244;0.19680054899574145;0.7625705519338856;0.23489978698926392;0.2747801728978999;0.34341315047315907;0.1445506627492857;0.20739377196008302;0.28923754701709986;0.23029257660895963;0.16733755149400742;0.21957188498340272;0.09489585728458005;0.13436717897207556;0.15748362876328006;0.04351255652543533;0.07081591670698525;0.060708300281877466;0.046438097506014346;0.051566146415668146;0.02714400898387907;0.0045640178222911085;0.06861224521782289;0.23402529113928996;0.027945505947328683;0.03520731775039558;0.20919276894788336;0.012392848987496815;0.0008305611324936808;0.006842038125978635;0.006624777910161758;0.007483375017153244;0.02096311825597672;0.0;0.10384205104080745;0.005481970817605583;0.007054512167712406;0.006368211195160858;0.006248914073103404;0.006767994421522844;0.004658914140273546;0.004945699156141068;0.051318488688354987;0.00931473443033922;0.009404652904094812;0.006136276361638466;0.018049070107608672;0.014093337215048086;0.004996142148441353;0.049011683742436384;0.007099688683355833;0.011115398559307323;0.009666285448021786;0.00901939323196506;0.01977874993674844;0.01339647915976905;0.014995796565267836;0.0053492934209526544;0.00540887189810055;0.005023869763211876;0.0036730732167925646;0.004311283197641253;0.008932107476994326;0.007108298547794501;0.19742142047664687;0.1947856798267368;0.005514276862551701;0.0;0.00959020383949165;0.02596552071325844;0.03137854482456194;0.028897125492895494;0.014368741961126039;0.014627885251531452;0.04502236179598021;0.03674199165751578;0.03184169866256935;0.03204731373955113;0.023607418828922595;0.005959628063799677;0.074830501089154;0.051557243607038644;0.03775595117627063;0.025705980758052187;0.03569832675007851;0.0035642334086847544;0.0009862663418233424;0.03355718499632087;0.04408655711269216;0.0359015013069347;0.07359596368867519;0.04810136878275385;0.0742959227169245;0.026128849681085024;0.09773927173148929;0.29618298576588414;0.5097153572890291;0.4585218820283485;0.47133420769737056;0.38984410743167264;0.3102119558964762;0.24636832984006746;0.4906580884758775;0.43512917411990204;0.3523614566358697;0.09670534089642005;0.07463068320844249;0.06682651746980597;0.3258395555935244;0.06531232243464342;0.030213278840068858;0.09745933106968252;0.3576330488984601;0.016928697457543954;0.0006860801786488579;0.003437003768558937;0.0023217431673547197;0.0;0.07060635415323731;0.0;0.016767246875176306;0.3403387948567119;0.12609359813663232;0.040641216891624;0.05332586710892615;0.21608682838245238;0.10440506319185745;0.17424218658716867;0.07553750297807195;0.08227632574366801;0.15441544488540324;0.06192503937150623;0.08916600631057316;0.035804106422075696;0.1528500635516258;0.022460815761680287;0.23221774400561881;0.00024264316950861525;0.09280131873830993;0.07636356176426337;0.004645215470020153;0.1007310224955488;0.00857841245636747;0.023678661793116926;0.10599675351177072;0.07344968908228502;0.1596542719969471;0.09334587642709183;0.06684173612701352;1.0;0.15481779742400678;0.03748015406735572;0.004584057275824443;0.07840286483273207;0.023196659092561318;0.011045905314984943;0.010179839852110415;0.012772868841170256;0.017262501750165138;0.016511287017506905;0.13720091208868973;0.08415492536445751;0.00956758427194769;0.0018177919672639053;0.013053464623682124;0.007623671155367864;0.003504308045541358;0.008980193882466844;0.01112615214718037;0.08442878973090107;0.08915495435023804;0.005903879173354885;0.04191987720490235;0.02312366960897011;0.013830901240242008;0.12046977706991176;0.010868319970422853;0.0;0.12669942232449632;0.05504133965649781;0.06606307803784933;0.5627809401387495;0.26940112432203245;0.017678172493365753;0.1264588855267378;0.17999426706658547;0.1817698451513629;0.2279599591899347;0.23260166237550223;0.2522967388414224;0.21001280485452226;0.213111667099545;0.23633657058009117;0.044296372313758846;0.08318655560923632;0.025842466901812505;0.07268607116469047;0.08356972987094423;0.036353093505008316;0.053115960594487595;0.07914001426626135;0.01439773044557891;0.2868291277214478;0.16457683315973307;0.005787978479920126;0.02148511821964661;0.010136807798065436;0.050768148912091804;0.0;0.009902200353559156;0.19170097985254794;0.01839498451701541;0.023329074182973055;0.013622404915790415;0.012703705864566138;0.011733704727879973;0.009737240516606108;0.013746464562462368;0.009062892422016097;0.005038749435174361;0.004587986054939309;0.005498342148149766;0.02281156944337729;0.015377488458646461;0.004572861180313578;0.007059569316101696;0.015815796647716904;0.09133874358000264;0.029987979866956505;0.005895681625511751;0.10932041173108989;0.10506846796818967;0.08296922457096643;0.01369560410376625;0.2312625539536847;0.051067769920768176;0.02693907119381949;0.01617915254522367;0.05243918688584363;0.025737704587320914;0.09487100916257007;0.0948526206125326;0.006743946845465228;0.05300314080956249;0.10015741340473093;0.034889068512102016;0.01049929401478188;0.029580942034855184;0.026540623444820582;0.06521604715660104;0.0073841801852691505;0.09998670037814275;0.0;0.0023087784208873398;0.005535716930249347;0.0022316436398652456;0.10663017420797123;0.13416445250242198;0.17976569923872948;0.05203409488362596;0.00013893751835218903;0.04145916236211214;0.08977475257747614;0.0591202213779133;0.056868372372946015;0.008249712362871343;0.20052488856131387;0.0019613416623212865;0.016212840652218702;0.06492418902447465;0.07859622204518898;0.017940089614487648;0.007189737727577275;0.08863057333712897;0.04522559488107583;0.007589815458279347;0.01913769254278737;0.018204039158788498;0.0;0.00020437516037973753;0.005500636175013835;0.007819328223515356;0.013551507510128964;0.04487789655736344;0.056614636317866854;0.24968655089031078;0.0029713108011919886;0.09126827756324332;0.04761583414398467;0.028431541403654625;0.17623063737228212;0.018815987467692835;0.04232915643201194;0.0005958816091236459;0.15640280906497367;0.03049500797810084;0.0036202936732019015;0.06350681373699538;0.07277379498671309;0.050595268601113144;0.017655337755765863;0.06061887451909178;0.0;0.0011463813324265233;0.020766325153094692;0.19704551647976093;0.018500799027556965;0.031283211745235864;0.009815110194660215;0.006453265776418411;0.0023909852210181625;0.027574131602759924;0.11762788339955964;0.007911714324679344;0.013770390034114127;0.03765112807220257;0.011100234552474683;0.0017787647169328258;0.0;0.06485501533121209;0.04547313433611127;0.04294642380543768;0.10127461638057755;0.06105608712591892;0.00013358723610403637;0.005943279718363859;0.03646110360505443;0.016042354575796492;0.017632280155989635;0.010636321518902416;0.12363873273407915;0.01699043178737254;0.1072449172896545;0.05295239234398086;0.05527529981258275;0.029325947679006013;0.019502086099911938;0.04347802113271752;0.040099191782667;0.006373286009123575;0.0006971432787637613;0.0011546018973556818;0.04661955689215793;0.06118799586678841;0.15182888677347026;0.05869798330043537;0.0;0.01794864912965381;0.008346904683530462;0.009840895349657298;0.049264103914067305;0.0757795118294843;0.026552031990424347;0.06210262094979918;0.0405195205916779;0.17896530038658948;0.003469482328358772;0.10268499690560184;0.09782877345110076;0.11171054243648358;0.0169142986233124;0.1306794030515664;0.08215871243287934;0.06653023110978146;0.16633121446867288;0.1749531764212895;0.037701787178226094;0.046015805919012796;0.18485812871227625;0.11325129223131516;0.019546290292838296;0.0027687693634982774;0.1564279586943271;0.1308759275843426;0.13702681634920644;0.08863905461455031
+Galaxolide;0.15530066623963937;0.15118326681706715;0.16455933392708869;0.16464618709063475;0.16789056212458286;0.16837788690503028;0.15102209234577663;0.1692554565715366;0.1709235974055088;0.23125363639498842;0.7661142025479647;0.19109837389550408;0.15934748500656662;0.1788430132224199;0.16111473812030946;0.1684443279834705;0.15522970741816902;0.1541403550769762;0.15056185289044577;0.1530149642655783;0.15303446271286403;0.15080318178108432;0.15846870180860873;0.15603788268461383;0.17864092341320587;0.035714804960179605;0.13504192700291473;0.5137662555073783;0.8562975083658393;0.11560979675765964;0.48374992350887275;0.03617242589742139;0.10095297906022076;0.1290921613132707;0.11673261060750491;0.18214370068518435;0.4976841755117469;0.8247038067195499;0.05654338022115153;0.0908000324126185;0.032868659963580134;0.10281475802109727;0.0822773605514094;0.0;0.06377157702240543;0.02518381086246364;0.02609430923181796;0.02536989609895829;0.026155409627994203;0.07203781709808482;0.0572161565560862;0.022822770399702385;0.06386646067004899;0.023641421398282132;0.055938492567627104;0.10497925226931859;0.05900660092713163;0.07086312047199196;0.04706362911799036;0.03701134347799936;0.03758096614481561;0.06637611224315425;0.08098626296329678;0.0796330270102019;0.05971685252729923;0.06797627076460375;0.07082429616010605;0.048156368502075754;0.047757655896553286;0.0474963681850979;0.04385594395557393;0.03320983363192036;0.015524350766112789;0.015427526965663301;0.19533063300402165;0.18413515918503295;0.019527553323103655;0.006918091458552162;0.05058528655020622;0.09446887482362437;0.10146837325857276;0.09509512967909964;0.03458928564477884;0.03229300043084326;0.14723781554930152;0.14314803240897875;0.0623813280817022;0.05582379205958382;0.041200434973593464;0.005725058967797787;0.08055710943437605;0.04540441456665673;0.05997485717528086;0.11274498566959637;0.12026790147282997;0.012807180467779847;0.00788830628865971;0.0522557725448012;0.0633844525479012;0.06064490460591996;0.12435776833574758;0.04041710057076915;0.05254594513878108;0.01860273694831976;0.0659488187783164;0.10461994907443073;0.09007540133727977;0.09513775605907725;0.09644987504694374;0.11464633790593894;0.10864797270102662;0.10095515945564405;0.11461448474025553;0.11423585814058576;0.11310740194861325;0.024709973730231084;0.023125004520269134;0.11038081012513382;0.08500209247028388;0.036432098812779166;0.007949006065739603;0.030148389641688273;0.08276749833135365;0.06942563061135971;0.003534289545281225;0.0038120282566696923;0.0034646090258419193;0.008457348168734911;0.021078496256518062;0.009616308932190709;0.02096992304888028;0.155625244569771;0.052392386017789165;0.4113144365309882;0.1583476949726003;0.14915198358739667;0.7288050046111416;0.1995925346449341;0.43111774935800246;0.3963739781950858;0.116970707213338;0.47012240029952745;0.07084886270077248;0.0501064814948213;0.2494820811872824;0.08507429666579527;0.14670233563724028;0.004505928624059861;0.1408046233011013;0.5124211083184872;0.08492873661697972;0.30545774072211357;0.18041133833195674;0.1630400263185394;0.1448566820652809;0.7037049983147998;0.8329068706570405;0.9085048138728933;0.87689888816616;0.15481779742400678;1.0;0.03472068463026002;0.028211966009956135;0.05323245499541577;0.012349251194466244;0.003536828108469598;0.012033096690056947;0.009672549931803118;0.010766994411249318;0.07459755687114865;0.08015668740912665;0.019791512908198403;0.044704108547135905;0.020395004033357245;0.01835241628480513;0.8554804422802722;0.0526392571278608;0.04430488928485051;0.14120013159017664;0.16420454624253664;0.1415668167666818;0.021905841020259418;0.10971109813820892;0.3002525363122229;0.08660317343412022;0.01956132799178209;0.022618679286822423;0.0;0.1316265613177799;0.11722106810529921;0.14483541529278432;0.19352076312466546;0.20805668724993134;0.15244619669169468;0.13541719474279937;0.2098187526181032;0.20853908716777128;0.7281513782501483;0.7507253336521209;0.859467763238963;0.66173067341887;0.8505322442463279;0.7669506284935493;0.5576812081163671;0.13343900555838403;0.20555349633217562;0.5926328081781762;0.10362304841502411;0.025970744164245385;0.07931492846362992;0.03401665500346;0.19057606712010938;0.7590930838902694;0.17742987214863218;0.019615587947986603;0.07436853066888459;0.10017187714240756;0.08410588170094589;0.0020591046589658506;0.06802476094874996;0.7238876290927673;0.12305260990258961;0.0064643342936332995;0.16621121521263937;0.14348523464982915;0.08624640307538525;0.10653858083658953;0.0701046919504207;0.0854033976075697;0.0390892988954531;0.03765980792042231;0.03557766312626939;0.06834691491396429;0.07438300470231494;0.02417647615538043;0.04631965592326794;0.08797247963447778;0.19569999814565514;0.07927025407437059;0.04560609735404683;0.11514068806270865;0.12462678723124648;0.10191670854705195;0.036119401608514665;0.08368517565017376;0.08018513323519214;0.031005942961541345;0.02509458007675693;0.08564775465641954;0.025439129366657636;0.09669820694229955;0.09644423049856025;0.029153591078795046;0.15237973723672282;0.14789709203159082;0.017513823483397157;0.018947204970304037;0.08731093340325898;0.08115861833551515;0.8590749958171547;0.01732877576160626;0.08969737925322518;0.020026071091803415;0.0029267816997784997;0.03304220268068576;0.012855502029349132;0.1673926078397105;0.16938276251780532;0.22429414129655512;0.07755902501455648;0.0038997823013483934;0.0497104282311659;0.2760179955614455;0.09120476180753868;0.06591442448497886;0.175488115782743;0.14928666185702133;0.011628671990504505;0.03987749182608521;0.21520364396844352;0.09737865914312482;0.03631539282924462;0.01733547547140068;0.6499064126457181;0.2681499825933578;0.012415400279433416;0.043775365996800486;0.10756267340724009;0.06900136176166508;0.1552763145117075;0.06386651272496728;0.024040131808535432;0.024029125806164738;0.0992161945347897;0.03587361117215062;0.06556543930849631;0.03664141883899641;0.17443838697942543;0.0631360372017482;0.09189695341425916;0.07132860189272652;0.00973160730196619;0.5973006105209431;0.027389370706805343;0.09241272153029717;0.05231066893799271;0.024526065967390594;0.08494688526890132;0.048190634346330544;0.1213757583385234;0.2680450403544526;0.04269416498200565;0.0017239141463766636;0.003523639818347529;0.050319514257628956;0.610151541540896;0.16523570701681511;0.6540021143713317;0.02849556715309087;0.006021802826132633;0.02126753953101204;0.06253753079771254;0.16147125843453877;0.16205728444784934;0.05304728260053284;0.07649419163150735;0.04514639789529301;0.00957210616334097;0.04199244656224562;0.8847508334519325;0.18266298353345375;0.4789011253354235;0.0691071550233236;0.04938483382213748;0.015723548561438018;0.05532869061049363;0.05191541430975335;0.01625737369220254;0.11671167274470906;0.13213410241708365;0.49291918971519516;0.07571975616412974;0.6067557902197215;0.0900598108835343;0.09262765739265573;0.07125995227248709;0.0450370933515439;0.037625844056170143;0.06637553928342058;0.007864167106633442;0.0013224113645255804;0.0024883575385608505;0.015883697373267926;0.06891205067185951;0.2597340662347365;0.07226193578208284;0.00048655527870575764;0.06654634770526452;0.019797742616389672;0.024983067166215425;0.06554907138663642;0.25703358295616935;0.034408167670291076;0.048236691860686326;0.1273708136825208;0.09538145914714602;0.005144833697287314;0.0899298563946467;0.1038230342903634;0.10187513615548273;0.04628587409697749;0.1400700799647226;0.10950747013117408;0.21123866858916712;0.11149769911273891;0.11519513682082202;0.017071421660965043;0.13786357124736173;0.3165442083595535;0.41362342610815744;0.8570086720820911;0.07658659870355415;0.31574800126780295;0.3477223539927992;0.3274081474433233;0.16591714972801108
+Aldrin;0.013413885991842475;0.013713000787809466;0.009851877548499012;0.014810244495318757;0.013605135273451172;0.049648249269569435;0.02110672707762307;0.014048368828133498;0.015135726896734624;0.01239015122984264;0.03475606308802707;0.0235745188766681;0.004802694904766379;0.018702636679192475;0.011679053940770906;0.017544447912276634;0.0092224086445625;0.011554398247633872;0.015150989762470765;0.013879196447977027;0.010531682844904633;0.01341309000179018;0.02801392383403665;0.010583030785616033;0.03401871286813988;0.018496239704500133;0.03378367813136989;0.06237523722092756;0.02007519586482502;0.053088947927248616;0.029979513271788025;0.0728222978453651;0.05954023400696907;0.013014609232873764;0.12983940313548828;0.028814635960989057;0.12744348951376738;0.027679115551231422;0.14216906530396317;0.014121752970839577;0.05982648452326666;0.19439395372056253;0.03522452275481527;0.07064197283362415;0.0823270899385297;0.0810735902002192;0.08759378346206534;0.08768295201133972;0.08029990908372725;0.11079914083192946;0.026809754982869437;0.024881219265059512;0.1198493886510676;0.05405433271491588;0.12021873326290422;0.1892836514502975;0.1418825827385518;0.07650729017370589;0.07303271500574933;0.19900942846794434;0.06414690602470763;0.24648804871036004;0.16641101335963096;0.1757940867432804;0.16657503361041476;0.08337275683709638;0.07742593285321879;0.07078721797816608;0.07886443890638305;0.07124455852428932;0.05188624980253479;0.05744976841955751;0.06979134809440875;0.08568706276569905;0.03365697514926741;0.05559712860650629;0.020212846592958876;0.03759829742776848;0.02345258940913083;0.02586410079752487;0.05186901449369689;0.05144483811765918;0.03883292047300069;0.0378016444812918;0.022447912504620082;0.015699614909975526;0.030918247285621273;0.0318958397253644;0.060127203314476504;0.1901722065413042;0.010156508323270586;0.007280344728944371;0.02435076926610911;0.03452740217534264;0.036480713566111676;0.08205242928593631;0.07664001606298487;0.07244865347057362;0.03030713189473737;0.03824395503768858;0.06422844890485131;0.023347994315961615;0.03005047857217504;0.0286748549961463;0.04443325358517037;0.06734891819961424;0.10955006010554857;0.05407932130995141;0.04434851679297226;0.016733494457721373;0.018621800790040277;0.017095463994480954;0.018112116389469156;0.10692659733632263;0.1344008729361568;0.07815446767945373;0.07980556860252219;0.08801057617970612;0.15290136633905996;0.5103853550864584;0.08266769421946889;0.028716481653275894;0.058359418922435013;0.028466029113149462;0.07771603968796828;0.15909574150734485;0.12909230702112037;0.19862372119751687;0.19878016801171905;0.13721649581910422;0.20776332843456602;0.38986420006662287;0.023883758980640397;0.3039406808396878;0.016674379425191843;0.18279985612083655;0.06863396590606317;0.054555904684203405;0.14214835872228634;0.128052885879382;0.06657511414658265;0.09434016807643686;0.14394171760451155;0.12817161920447812;0.12352804517593523;0.03738990307790434;0.03960556062198824;0.016259387056650622;0.09806414448187484;0.17989412079923336;0.00825437078133752;0.14386617020459566;0.10281316464187064;0.05758650238852203;0.05465624451072406;0.08605699345532007;0.05143837774936396;0.01486710997012365;0.03681202567900198;0.03748015406735572;0.03472068463026002;1.0;0.21287212107407336;0.12619563762777966;0.381665283287016;0.2699113031111245;0.19425363332591364;0.19624202306936603;0.22205450009275995;0.21054583526947612;0.7282029141354567;0.07359195245082646;0.025014829851556016;0.023022095107433218;0.059479034305023486;0.012581721190777365;0.021794827292079696;0.10921586999636991;0.03016701081673669;0.01879899962263503;0.02132997485181308;0.003672833345856432;0.02691077012481671;0.023499770631075775;0.04840040069934389;0.07338015243519813;0.04406638148997454;0.021038506215336275;0.017188202862469373;0.0208040957663453;0.036773177488667576;0.02202924884728984;0.07296821529061606;0.01746223015952598;0.04369533403195295;0.0064459793179327705;0.006351848479578331;0.021330704940794625;0.11465531132682664;0.023862215894156685;0.04808912221802071;0.0205130527248266;0.028569758418597012;0.012393059773681504;0.08528052982316585;0.005045437867121884;0.15407288434649732;0.06613390885363762;0.05709604344051769;0.07546771310125885;0.1329228411439058;0.1155181670955599;0.14494941011031479;0.10275439538995267;0.12772541795804043;0.17056627757590784;0.09255630053303944;0.10609002655156274;0.021246865411282324;0.05884707973660475;0.018670002097327873;0.08674504450440107;0.049579568770163465;0.05940207017839983;0.15768885117139675;0.21231608603421445;0.18964757004153387;0.25642691211303487;0.1344935964828496;0.05615520500884642;0.05526414965078164;0.05905212079096897;0.14860965418799066;0.0752641405632865;0.045133503846613285;0.07487964965839103;0.13956250145745988;0.14571224813028813;0.135322687407851;0.07373649798773209;0.016074680093129744;0.1566468173535602;0.16852994493824972;0.04886592583562458;0.07382706981538055;0.022097326587289853;0.027015583714600007;0.04602572158408481;0.0977815628454083;0.1487171590843002;0.024204026418958857;0.024081092538647573;0.0652895359962816;0.04836357135110974;0.05976489978252077;0.02270500129827636;0.015268058066044102;0.039496037796252145;0.22100776592472351;0.022689118360617138;0.034532076867468266;0.10696964843587259;0.047214941726125705;0.004213369011968642;0.03158033094389939;0.07161484914185456;0.0801792199535439;0.06351924781543151;0.06738568450930843;0.37720425083909354;0.042083649003842094;0.3515748141426166;0.11846489512482687;0.23941257027613622;0.06098138098640293;0.271932666490433;0.010197702079209503;0.04350663869840822;0.051026638010356486;0.03182062830418022;0.03639724792577059;0.06008466535307119;0.03524287677973175;0.12329080367261586;0.020243183470713112;0.0144365514475752;0.02048820107422518;0.028874451821101012;0.011729747961093795;0.06609546530490812;0.0909465987701409;0.007086592948234687;0.04417828110335969;0.03252040856797812;0.03466615350241125;0.005156714875415116;0.016918808043538666;0.08270511611249018;0.061861841477312586;0.045992185231231816;0.03304760971694876;0.008550936048591478;0.13519211143556936;0.024662887722528098;0.003972096096382885;0.024145810539843094;0.009502235035215599;0.07818562333873169;0.03305417578578887;0.08386959639014782;0.033744471602121226;0.0023536105791149148;0.0027421289985292063;0.005658256699823998;0.021515964386251193;0.0063888248309934125;0.04357641927434483;0.050565155522787696;0.008063364057851049;0.03927569813233604;0.06161864632268515;0.02974600623516599;0.03730904970241526;0.014572817199953856;0.047240031769888495;0.10998903756392718;0.04440093507141892;0.031972279970960714;0.07174449092832255;0.04376119116045808;0.06334939421329114;0.09361765820113663;0.019266422757415205;0.023081196310110217;0.04885493894924572;0.0450657281811593;0.0881564167313135;0.0033136357417726525;0.035576136518857555;0.03780203407265691;0.03902797507422754;0.1058539410239495;0.05923445997783627;0.030232107032656722;0.008493846201565928;0.08842928570855198;0.07827665389749788;0.09058086822383847;0.1301205302960906;0.021612657141864194;0.06996968721484843;0.018499785086420337;0.32465762182579566;0.044894575194386;0.03435448599130607;0.11427298385050132;0.007810808110245755;0.07374071886727178;0.02228430557106751;0.11678900133584848;0.11036695291826044;0.050008876077829785;0.04901860694481203;0.35148736516226925;0.06313574763540157;0.057395961132517236;0.016570945549514937;0.05350432434146435;0.03562842258042998;0.06435858888775664;0.089018295304282;0.03211407328471734;0.06639912472569959;0.021457194105449343;0.0005617586296536333;0.0016964598937023734;0.1439027424192748;0.03370252593555329;0.08736564583012384;0.12589229901214427;0.00838471606151067;0.09208015459278843;0.06640008790407728;0.028172296234152346;0.15782108837121647;0.10695430904427451
+Endosulfan;0.007885596865319082;0.008136486402596711;0.011365791889177372;0.0032583072297398224;0.002635635863126536;0.010715369674339873;0.00465779082387179;0.0016265705695735974;0.0014846488995914333;0.0017364152742073088;0.005224371421776801;0.0006541186110420584;0.0010412550879745817;0.0016651064590684631;0.006166903221162838;0.004757018930688458;0.0054978746078793266;0.00485389965808636;0.007483268158919936;0.006087636351702346;0.0013940846951819006;0.0021245435701576893;0.01554598645121927;0.0009307436122310139;0.004980252602076801;0.01969618906761077;0.0027957119883919787;0.018408102673852476;0.028748461285073062;0.14020028052512146;0.002447918868592721;0.04031706894003053;0.08424940902756595;0.0055127333449492685;0.020830735349291033;0.002886667353972537;0.17806732192771593;0.00914227637364493;0.006452889424438302;0.19155521427834063;0.008897965955430876;0.008362951842824711;0.015710953211443807;0.5926027728012935;0.17103593533800338;0.1525313824558006;0.16237577140592296;0.16222977901176164;0.1598170721559559;0.0823160727646214;0.015178022259920272;0.0099471072363507;0.016241963638498533;0.014514894183833449;0.02503736315453755;0.008097106030937912;0.00949067912176149;0.007986280704612814;0.007892827232157833;0.01142848475951197;0.011851503067462627;0.010418095670661735;0.007275175677873749;0.006884162035082469;0.009910009066752394;0.004804102651699155;0.005761645681693483;0.008517714541962618;0.009100024705463403;0.008183762325729232;0.004872556937424874;0.00846659188779768;0.036741953444662905;0.05683722747304522;0.19427065272513594;0.025048233394334603;0.009268780070454298;0.01736119976579157;0.011966750520117905;0.24123125120998018;0.02241706320087236;0.020655154107419877;0.09687222125183906;0.031513980415837015;0.04812226124090932;0.04594143203061028;0.07124082944337916;0.06608033734174679;0.13389979534613883;0.12382859028222595;0.03398136655027845;0.023454289930943683;0.03716948039141868;0.017052565082832587;0.022614818082249594;0.03636626544756426;0.06811690922364733;0.054681057477466856;0.03743664541138366;0.07201484488636209;0.0697236392872669;0.04515465671568229;0.05144333237415411;0.059630849353317215;0.10369711779459574;0.01597192957531948;0.01608264965203561;0.01068498903383858;0.09690426800186155;0.18853886166842407;0.11747711326358411;0.0875404306875189;0.13929424627691134;0.01528772601688573;0.014134903504519394;0.04993890525622601;0.03481567229162112;0.05148062162711956;0.05075019076290705;0.05668638186126333;0.03135973697011077;0.03570107049870781;0.031050153624435823;0.0551426161416426;0.053837461450392685;0.5531449081853412;0.5847540029898037;0.04201205947721756;0.05904877071981791;0.04226199541744385;0.3961223781751653;0.029482008939454366;0.03655275566517545;0.04273889365219856;0.006535280972782761;0.012330782050891602;0.015353665985073433;0.04286967814598711;0.043400869619188244;0.046300239299111055;0.022735946991458648;0.030507846802742527;0.0243793198976747;0.042898646418529626;0.021839137278289397;0.0033584265459058924;0.057421114122718823;0.001335357221214855;0.020870218386118324;0.03434910435423119;0.0033169495699333757;0.03839702376768406;0.03879790304975152;0.022915558599744094;0.034843308014400574;0.04660653574478906;0.02420008866128009;0.020134334774247118;0.027498155711036122;0.004584057275824443;0.028211966009956135;0.21287212107407336;1.0;0.5327408287980379;0.2606076311277949;0.7322020831761948;0.22291853226335148;0.2448242003478047;0.26230866318097396;0.36087684118984675;0.40935534087097747;0.015232750959651554;0.003938880779966191;0.01767597256282322;0.01528213703652422;0.024874133768021472;0.045790645171477753;0.09566708586119511;0.022353990969065575;0.012945580525969851;0.013880268827927651;0.01912516336703685;0.04073648199903139;0.027820489594053553;0.045174666124021934;0.2311880097106611;0.03994976598349422;0.04606798310226066;0.00841890864470326;0.017059422854198168;0.02577954252196737;0.0053952021509683515;0.017813588756177667;0.006050537190124254;0.054367182730327666;0.002063767277714561;0.0004973008324258678;0.00662749391608017;0.042634883167197296;0.005535138842486292;0.008526202139345218;0.0032791059124164194;0.005840162260440917;0.009145233037518118;0.04726773910186846;0.00024698257828467414;0.033630506654043046;0.02817410381808919;0.011910895842712464;0.01995884199627001;0.06848819698195625;0.03824181041278744;0.04725139227137626;0.04484074008997601;0.06347228545425128;0.008105971505204602;0.03217029728815383;0.11634332332186928;0.007761110662311978;0.05163165097874877;0.034433030388927664;0.028158781839246826;0.05222133692172812;0.008903001365263345;0.013027995256698703;0.013559334650468708;0.010824890317364009;0.014828206578061862;0.011997350583387318;0.013370203505529912;0.012148654994088636;0.013190726280361617;0.011590889115040649;0.008028079171873845;0.03007355413323261;0.009131059604364583;0.14370183699034472;0.25322118264890187;0.19270799401213196;0.008119697196688156;0.08061253250751035;0.025581668040785963;0.026234676178101227;0.08104858607110615;0.09058242880740053;0.000381273773078256;0.008250971283895204;0.025450000592325998;0.21263514289786023;0.02664954924039517;0.02098592859626093;0.019809964884168776;0.024829891265675894;0.02270475141779126;0.016129025777742098;0.009597102346026393;0.030973564465992632;0.0331626985721903;0.00963963584308623;0.00978906719602627;0.015669946621358555;0.0013694990176164718;0.01409415896670036;0.007578687495120842;0.01759965042618561;0.039216103245638824;0.06103102314748098;0.13219845383320541;0.028942041597270193;0.040831832692353416;0.025061650761449412;0.014810955177107296;0.055127539091145455;0.027907012123649152;0.23695337140039655;0.05192011247721801;0.00267346810792578;0.03388258017143563;0.060581879836171346;0.018756050570963287;0.02384703645605876;0.09787309658664167;0.015969587450057495;0.06543923659794991;0.01623633931304556;0.01686358203128011;0.01435808065048351;0.008071713945606374;0.009806042942518684;0.009474136329386467;0.012583580805496432;0.12218682550631975;0.005325940047630943;0.02795791140246582;0.023495591448188125;0.0008447743895337326;0.00029815742099575167;0.12724276217133138;0.12214734461716299;0.10474860784516915;0.04524323123913638;0.4101295640651674;0.02098337768940384;0.01057956793408949;0.0007792390867220497;0.02770226207552225;0.00828108495634217;0.10717341279088503;0.08153548952082738;0.00639371429099575;0.023533898162156834;0.032263181950916445;0.1290819410557009;0.016549856825134476;0.15044508301057577;0.31658244565777516;0.0058939539956441985;0.026095964452564867;0.03963105973221636;0.04852280949756561;0.03332834544243317;0.020024527172560716;0.09665695131844437;0.003202415979810698;0.03251613765714238;0.01983204502056704;0.028871709457537555;0.036171188756488545;0.14671995472185492;0.03905089002131831;0.016295412965485513;0.015829907785105287;0.03197942193182931;0.035506171407576385;0.010560668684797192;0.04852229924027153;0.05355233488685589;0.013082772626499395;0.012709827216967269;0.008534769405113107;0.05152496423323339;0.022272961586385687;0.09085947861132802;0.1207809455341299;0.008492512133366154;0.015407670852278205;0.018578234621006755;0.11517182837581211;0.044951868579858854;0.01921881289180967;0.010027637711183932;0.006347192777849671;0.028682437783550715;0.09833159098115613;0.05313115382631133;0.029912972994178933;0.005874354517326002;0.05234670468772226;0.038878376865140694;0.11086743487843098;0.04106970111785793;0.02922555805669752;0.0474523369237266;0.1322678312616877;0.2665468168631532;0.03759296105467555;0.01548561541333397;0.037508802728380704;0.11146844857294688;0.15598862124782362;0.3048428820063051;0.16325831627783283;0.1513608734942791;0.005052764303067782;0.017552911483461088;0.024763958668661188;0.1925818966169267;0.15816963675225468;0.13040343644216817;0.09162643790225115;0.002479588994822742;0.028459104802210495;0.10636886528789956;0.07982361770453107;0.15077794331244618;0.31328340566785456
+Heptachlor;0.018858312801429557;0.02872168453953285;0.022340023077168855;0.04637129905637319;0.05341535307655684;0.02061095787329442;0.015821777299856895;0.04657917764164208;0.056101229309940555;0.029674412427260193;0.012103056102941635;0.03207228865418883;0.010515075210320258;0.026041087157721715;0.029969863954105714;0.03032914477014842;0.02545448880434949;0.02807495987563926;0.03156769399426207;0.03248034855982875;0.0359039374998057;0.04295401954157115;0.030026051317135864;0.029283351333582456;0.027209258356145388;0.010300695658305674;0.01687983097281953;0.05912571988539492;0.008739839132189859;0.024575463433819788;0.018614079341358922;0.04432074380669098;0.0535777510897615;0.0164443708241017;0.06802917564727869;0.028948190083060606;0.0791454337906549;0.005149888388865274;0.0011059150364117957;0.04576741781919224;0.0750473054134872;0.04509059663181018;0.0626843454522037;0.9097363083745796;0.05672649938091788;0.02692898147725255;0.026564596041880197;0.027383944885655882;0.025536823745238538;0.05325024225076589;0.053668951552941685;0.051360574061299645;0.22451454081657743;0.035658241516194046;0.050414924805691756;0.03889993359644376;0.0725065059893777;0.05092004310265651;0.07472806361180839;0.021800838074838895;0.09669110091970355;0.07384907148181984;0.050566401636396315;0.050824792633051084;0.08329235572878331;0.04950580222109535;0.05196484689150793;0.0781588229233315;0.08458742770989154;0.07780334502641637;0.05241119557349218;0.0740261644812885;0.048610044158009666;0.017456259684720244;0.02094150496279171;0.018419158163567238;0.0522164510415694;0.010729776844182439;0.0014580087614677276;0.012464739846279048;0.03089352966820364;0.027243755751597612;0.012763130268826082;0.012605514833180936;0.005170303479670207;0.004611822515793711;0.011403659890191743;0.01416650841613989;0.02963332686332132;0.14461486211832145;0.007434669698983319;0.003944026993533665;0.006981907139651596;0.004879102619202338;0.006470509820525823;0.029481871390649103;0.026800231959541117;0.010835166331020657;0.013483309207659496;0.014967732091115332;0.02541777911413238;0.006184307215321009;0.013041669586034052;0.018982897257419314;0.013639578666707336;0.08394940592058066;0.07734735790457235;0.07557991013487253;0.13978449466224063;0.08744305332755083;0.07208538280802058;0.08216620228731115;0.07097957568874397;0.054044640244088976;0.06913811738275323;0.022374290073796963;0.01992085573457351;0.055521261611392946;0.08486459648322021;0.06739650285621361;0.031102891866608723;0.04391176274404277;0.0887339305464156;0.035870743449211644;0.02842985545753907;0.8064415325182138;0.8434520895007954;0.03768092245406401;0.0418964972956355;0.016156293275607355;0.49882412471124127;0.03314304715126127;0.01581230458660325;0.02672094307559422;0.025942508656296295;0.05540353378867474;0.025140188440330936;0.07573385852567956;0.048289790404226575;0.04553560321266046;0.03731074755854537;0.05558560229554136;0.022684322739640383;0.010644317095182803;0.027650649497361315;0.047180918077941385;0.0760429826163434;0.27275700888856486;0.0014093003441305806;0.010215991298819505;0.007583170145839763;0.004758660195809659;0.034827412094915446;0.038667100202830304;0.04258869771918724;0.03778698335229557;0.02344775778475203;0.03909513045947262;0.01303943706293681;0.07840286483273207;0.05323245499541577;0.12619563762777966;0.5327408287980379;1.0;0.34710586086603046;0.7607954809804137;0.2828729652123548;0.4346133796025519;0.45031478844908807;0.0879638705393982;0.2751444542078616;0.07207144567457678;0.04236390855602821;0.04719863197627165;0.0342794236712079;0.004753906224713622;0.046934651702289644;0.051352624809496206;0.007640898838069417;0.014854495137558434;0.016441110881353426;0.0031940470108311617;0.014124204167629528;0.015572688915502309;0.05977834837870257;0.04688404058373259;0.06873809914004893;0.04642677400258486;0.057632587207866355;0.054599036580188214;0.06460376412908125;0.03092327491780789;0.06305903432722415;0.032377690998769026;0.08841318259907203;0.021433152087256876;0.021615566914617152;0.022701746355461124;0.05553614445453164;0.018456316318731365;0.029947268930439416;0.015271603273747367;0.020806004066608458;0.022043754583461164;0.3125975805489065;0.016742637932513967;0.042134620202407186;0.049092412483115716;0.012213365318166514;0.1168724627278323;0.08040355977368932;0.15546830091357589;0.044753894604012225;0.05967620813959804;0.0120533870821154;0.035442681467343445;0.10792862042307702;0.0652534949495564;0.054952125337643015;0.08345596206259534;0.016653846833722296;0.02248330697478014;0.036948338698026766;0.05794442736015707;0.04913212079032416;0.07261472996554869;0.040154357150298775;0.08574229301284263;0.04656965460815431;0.0825637434285357;0.08459845979914382;0.09284424429833675;0.07350756344408525;0.0459250233888219;0.11230952100595916;0.09163618606686981;0.1329204011854334;0.10457151872446498;0.11212179906717189;0.085460113531003;0.00959825214598165;0.056385245828611576;0.0526527824130644;0.060804924102607606;0.07523743310251307;0.021888592062150276;0.015639386024411183;0.010712933092332816;0.02175132236764346;0.24861907764336638;0.004533453891997653;0.00452303144246886;0.02795738848901493;0.030685845322351555;0.02196825068339448;0.0034727649997394437;0.028571700204183863;0.04717827851043784;0.03344901528258359;0.030477896957884765;0.029239385442206174;0.03917439141773375;0.0007154961096090384;0.0486278442662248;0.30911686986066056;0.0067922691838493005;0.14571410790151162;0.03926136724196764;0.06855650399284856;0.028430057376062606;0.011779236291436934;0.027168357512900185;0.18835987872419954;0.11641883939541996;0.022518120102086314;0.06533539800779915;0.0007203782271437957;0.004892430488941386;0.015697825910106513;0.03557076685875599;0.007796721601406108;0.03426657802315178;0.029711926804473685;0.03145510763631111;0.033438281020374494;0.00030093524510386066;0.016294696866466778;0.04205042547944927;0.0008362080809128833;0.004426560902581881;0.11615235169555313;0.033662030711813784;0.0018787087221733524;0.008041766454567442;0.0344360005324841;0.006030070153639723;0.0029070433183289402;0.07785848278542297;0.030954063314748616;0.014078481966499015;0.02110667019662793;0.005485166925601125;0.026542508406405152;0.01845920936195643;0.004503387277711927;0.013598415022002716;0.06309285288954929;0.02634715496954119;0.021435355806894405;0.006373422925092703;0.01834151719708651;0.00397130983416819;0.006213043376375662;0.005553128268690606;0.009641561087960177;0.04240945638817856;0.03767288921913579;0.027002526823268497;0.009135273302246541;0.074282655588831;0.028434408837206635;0.01913951512484425;0.10358891911564025;0.008779034566236046;0.037519525714229764;0.06590316524018273;0.02047371493672426;0.024267563551230113;0.0225806923484337;0.08149401916549562;0.026206522311924475;0.022719401703916526;0.04241303250957262;0.03521945308697863;0.02133214130262365;0.04117790311075816;0.04585648516989541;0.003470555910597936;0.02136712845043002;0.04444411067202316;0.061559111197809525;0.10382419201530076;0.021937648790034677;0.23436099690158663;0.010459615549302073;0.0033959864194564693;0.013923627575065243;0.007982493308870062;0.01054779444374074;0.02175940579710184;0.24287832582625496;0.045916932194313725;0.04469279711104959;0.11659315352666544;0.0302247579769257;0.06711163153579669;0.012191628159881488;0.01494987396667786;0.01612991703597388;0.05697620160225138;0.061423189122792904;0.02304299334012832;0.052155772599093014;0.01925317636337856;0.012730724561406477;0.026380624274469137;0.011215645243577063;0.05558215555830621;0.036794617082597444;0.09805691833384259;0.021161920367782815;0.013659910307183344;0.062156675206223706;0.020048504147548378;0.00035596749948958224;0.0025146650347535877;0.06836304239995307;0.12391492218371815;0.0981923448715467;0.03819090859079684;0.03515151470420915;0.0011740686542094205;0.10780751544669477;0.051307497981778354;0.0493886103899397;0.03486749144000016
+cis-Heptachlor epoxide;0.017551692066615297;0.0226860871248716;0.01805325036842711;0.021643130952856693;0.02175290536757864;0.02711546113590406;0.017441754367671806;0.020769942187345222;0.020340786316259372;0.02018410311915302;0.024914260711642027;0.029121294596893738;0.010549969524121048;0.021780317199240277;0.022053385286975733;0.02362698372998786;0.01793515523606614;0.02067426585017149;0.022466631254108162;0.02110036977028546;0.025999173021237897;0.022683653299548412;0.03522845687453533;0.018087230420927115;0.036483622421403315;0.01333271248759524;0.01740198701391933;0.03063439708729978;0.01358338559421646;0.04329716767177893;0.012761014503574173;0.0548768528805594;0.07203155922853124;0.016004585156721686;0.19298455544475618;0.030421103938243196;0.035225309357836396;0.0050332863044938135;0.00040837887302747804;0.04666890688641871;0.1539768208854408;0.07764193996734152;0.07881167984125827;0.24227863952818335;0.1406337168096822;0.12389874177934411;0.12889555121346824;0.1341990811365299;0.12134677016480433;0.12619051950949603;0.18806542409552254;0.07451618683112242;0.06386033482604266;0.05668793561253714;0.11747728961674772;0.05259486904282189;0.16686783767355465;0.057866370299635886;0.11736952900219304;0.07336079389149593;0.12389609850422292;0.201722472574778;0.0729737867790836;0.09028878848547099;0.21152629342674711;0.06731080818214023;0.05666591240856835;0.08077786365205046;0.07776973300438567;0.07815234819977689;0.04373649884178533;0.06748880126115595;0.16535317716668219;0.12857892295656814;0.08896762719872854;0.14141104818356057;0.0330791493538203;0.06392110578204366;0.04233450270691878;0.011391100345631964;0.11631778877925378;0.11284532024284527;0.1213491851975496;0.11996490621682225;0.021140885087823743;0.020462156158925493;0.028445124660934233;0.032927156990902554;0.056187999354067035;0.1612324868719853;0.0035891339834339055;0.0023999236076711;0.0319678318054782;0.009970048191770444;0.012079808114214595;0.14775179313474499;0.11771134740168944;0.02329452508468756;0.02550471559797467;0.022601486527398556;0.03755958633416297;0.013051995301238932;0.020274675013911867;0.015522407859729526;0.02591496046076126;0.11748321506863857;0.12702058202952562;0.09029659212892575;0.0988737333281112;0.07468160572588656;0.06467543071736445;0.06425255224787639;0.07596317359267071;0.11324269130933372;0.18389450808337124;0.07624276874616999;0.036967851482646884;0.049485571257438236;0.07435028245381567;0.17241091066992187;0.15084321527344866;0.03845521546178681;0.0551075481231837;0.05029090161076999;0.04179173561610214;0.23284811430273966;0.23220548706618319;0.08744611377361038;0.08441315876015815;0.04219305350987044;0.23516966307251402;0.04524606826306542;0.025302187485035287;0.11027696407124811;0.024530644122658395;0.07384973477329262;0.02482832588760662;0.04214493292652338;0.13105297631653037;0.11995200803608387;0.06139615995052661;0.05073433611875832;0.044762766342325136;0.03246968849067092;0.1084759897703721;0.009324253311077136;0.022136783540657762;0.0034591351523696767;0.09124066602233678;0.09135394879962937;0.01690092170796104;0.03414897028496307;0.006285531420049866;0.006934111491110175;0.040321644016208726;0.043688863347133455;0.010647648322580978;0.009336968676819643;0.008799045365055607;0.023196659092561318;0.012349251194466244;0.381665283287016;0.2606076311277949;0.34710586086603046;1.0;0.3312758145501905;0.42929323175290895;0.8905452668629575;0.8915017295155876;0.19134626995454418;0.42212344275015107;0.20360138464202937;0.03335016239954377;0.0392124778730484;0.05663140825966249;0.007057780684918813;0.01784907472907681;0.0702202240818089;0.016379445481707812;0.015465458817227409;0.014574818641920118;0.00013539416748925226;0.027361189398502673;0.0172396500522555;0.0643489826255317;0.11302304547329077;0.054497072615662355;0.013816695912840855;0.029233090614422936;0.02838165416469855;0.07482818971150104;0.04949505934700795;0.06714296183720168;0.021621531169455907;0.02732527205078218;0.02931551094799809;0.028057383128726344;0.03326366688627611;0.09344535652245513;0.022616502312831417;0.04932952707420494;0.021335892881207786;0.02428593837469308;0.014641696419588493;0.07144464729882095;0.018561664701649726;0.12000290754077834;0.1437294212657395;0.016238084736096954;0.10030864637597574;0.11445251554875856;0.13828515919809348;0.039814058329203234;0.04188346563481446;0.07373888289249159;0.02414012878499365;0.09520818463956425;0.0606687647153295;0.01419807577356839;0.0533654728328058;0.014485330653038466;0.012251816816974006;0.09824092549761236;0.20069622313740923;0.07687877269443454;0.2149826842674384;0.05609526238801583;0.23164908023955444;0.050517992494402995;0.13281024287284643;0.11470041250203694;0.1437944026288048;0.18538423545499577;0.06494070624944251;0.12685754032652338;0.19009757406205657;0.28573351715912854;0.20896959948218513;0.2465764795152413;0.15361062106445894;0.013549319925695087;0.02108077559255116;0.02298517138325867;0.16291501508507553;0.06060464832859296;0.03886530427325674;0.03397658437666631;0.021628507898737936;0.020902120671131577;0.09954851845086432;0.007584663383376282;0.007914281740091754;0.09714027824623506;0.06840762554136336;0.07516249006972749;0.0052827746162835585;0.0127242318467134;0.021672262508032045;0.04371168444302179;0.014788670174136489;0.05955949834893326;0.0033484815519121834;0.023025988453665956;0.0012463679666964874;0.046676748455295326;0.04045338214783411;0.12864628483063037;0.04063236573840721;0.050369349935270834;0.014367977509638651;0.009102933108174135;0.04109963868945063;0.024184056310386;0.05225051388485891;0.01587427182241588;0.01706561463240761;0.002718595947550118;0.03649183732867204;0.023374522485371863;0.009374715350102397;0.015995767115684956;0.03814490147323765;0.05972622986734076;0.034215649032960656;0.012926214148680771;0.01803332016753381;0.01751579352396252;0.0867252186346998;0.004039971297853808;0.014150568873019244;0.17206059089044776;0.17179361816335917;0.004458809666147213;0.032369704014712036;0.055000013764534436;0.005282413002550223;0.004039371295987819;0.1021873800305597;0.022184568078832335;0.016881213657254954;0.028339182141605516;0.008191184058928904;0.019550067556196694;0.03427942812849245;0.00415482383808842;0.009466483539228096;0.2204508752089711;0.03576236629800504;0.011727255777132769;0.022443202142994736;0.01354547681189292;0.0068235859400804086;0.0009545191748596043;0.005603953312972171;0.01988919579654427;0.04138686073265232;0.029057837034543225;0.01403399096300208;0.01639708326081323;0.05754876555793154;0.06926390278410242;0.0475145932187087;0.022638035997072495;0.021206677091901195;0.16502040102131765;0.07891903580465891;0.06572876997843281;0.039406405259438906;0.01258366596574294;0.016237664078156605;0.01250061103350237;0.02865101005505889;0.022235453919810435;0.029388954160337245;0.023105459989512377;0.04970859808082999;0.05920279138073736;0.014385445650680359;0.02127845634659582;0.028219992998702034;0.043358246108594456;0.3135741782940363;0.015330254939922024;0.007734498150535157;0.022402576332123968;0.014753076277944137;0.023588481672330387;0.02120777209999512;0.03657836641079872;0.06516377610423482;0.14750525716982024;0.004922882291653238;0.03349016597836506;0.03648528025819393;0.06226225618428377;0.14072048678334378;0.004781473010182558;0.01272124370024503;0.04748853326221038;0.037993269275479975;0.1380106447399247;0.04903556081813373;0.17589054251122074;0.03937771944224375;0.022666637614801293;0.030990820808313557;0.009057023078287244;0.11007143239754916;0.026071050013962607;0.05846493707391818;0.14735308914838366;0.028419447416677974;0.06444944848638473;0.03153593901064785;0.0013089389559245695;0.005348578555884929;0.06668165372868436;0.04249193425896309;0.06819860683968101;0.023021741093158243;0.013351572493544513;0.0016106880882936969;0.03510048451120456;0.028447660060828096;0.039371831295961904;0.04348693102665585
+Endosulfan sulphate;0.017117625120015592;0.012058742955005796;0.008291931595401028;0.014707662766561217;0.013320465672739402;0.01973410976535631;0.0480920641621132;0.015802658894230253;0.016764454529653455;0.014870149239539903;0.011258415592474449;0.016798209303807952;0.051822969682259655;0.016455291237810848;0.014270583825034181;0.018597479638950046;0.00910462751399159;0.011592881551875192;0.01286186174457958;0.011551372508311198;0.02093144769180436;0.027031150090319967;0.03283955278648616;0.018290786148359862;0.09238090277900922;0.011117795903765106;0.02818545212800543;0.008718684548789837;0.006569446169889641;0.07666171126982477;0.003344016261000304;0.03361675789220283;0.054050981056753586;0.04386136220573209;0.08059638952141292;0.027624447435374844;0.0762394197367742;0.00415191748952205;0.0035267655672579436;0.08884578615571735;0.07219810901234906;0.04766804858367376;0.040367124532209406;0.8084821349495918;0.09863825510233663;0.025284675086961937;0.03091197616683488;0.03503042525308599;0.027340276060777286;0.06203851907021648;0.03037222266175652;0.03498745198889633;0.056249003891714625;0.05776533938869038;0.07297194994648448;0.04147257764037648;0.08965535497498929;0.04828512014630633;0.05031633604309122;0.052199248232368795;0.07252913405131486;0.061129859014972976;0.03882868733710647;0.0390664671631453;0.10391148311139158;0.052767917451096845;0.04841474524212237;0.045581396341970414;0.05873459333154921;0.046107598259959824;0.029373392354332065;0.06065744406435701;0.0767906186084143;0.12431405442259585;0.018249470802161633;0.16770689617125029;0.040842216650374005;0.043002662161425606;0.031048826356733478;0.010318477138311674;0.13025597567652883;0.12907494102356262;0.008296331760893247;0.008323362037116174;0.021250919884473793;0.021096821871858077;0.0046753360456699275;0.004913689007221242;0.07598976233008327;0.15731990557618025;0.0013829965419376476;0.0652598708761929;0.025953417343025167;0.1563082495995495;0.15484595890226419;0.20588691271522386;0.11088243730912613;0.028681465431642503;0.03138465655166468;0.040635823198772604;0.04527849274132225;0.05763262059250518;0.07423999743224793;0.04199624154936508;0.036684515884648716;0.05812509587795952;0.08556129233589532;0.06195536735905223;0.07916344211201375;0.07824734745809588;0.09470080015759787;0.07100414914328307;0.06906787382964293;0.05898518415428738;0.047728929638084935;0.11705773653284177;0.07973547823751338;0.07686709555039993;0.09117497321795823;0.1543116477001667;0.19430600820341332;0.1201958719752124;0.06255393140198363;0.05198398842925188;0.041424088767084546;0.8640480631428413;0.8594723440154461;0.04373339358834876;0.04697135581474503;0.02005727834879943;0.49244517346750516;0.008552299391267736;0.07034554741038415;0.023099965985644896;0.016797735043925066;0.015949019680294378;0.0024640561395326333;0.013629168994734151;0.04271330569318959;0.04501471469753604;0.0348750797225738;0.025447296806296073;0.01814725446221937;0.023222759216300307;0.05441262844281991;0.002194765150604763;0.12232950266971472;0.014981244431310593;0.0011096359313263297;0.013264527348621411;0.004884548985341014;0.0072791309881571195;0.01166398357853288;0.00461812674736256;0.03903404354883208;0.016657405515891996;0.00300863524794812;0.002259398736375809;0.0024104920225498975;0.011045905314984943;0.003536828108469598;0.2699113031111245;0.7322020831761948;0.7607954809804137;0.3312758145501905;1.0;0.20831885640721798;0.3475712687284897;0.3626049147598529;0.20803165706335466;0.32576972317842334;0.08933128359282057;0.024011282127575927;0.0446432062717973;0.05729229248677128;0.0029959397065824215;0.019818290401660447;0.1458005651596836;0.0886137348018089;0.06491733815815877;0.07016219853992206;0.000349497332408854;0.012998579137485847;0.03183019429162636;0.05740088430623588;0.11010213721916311;0.0555975709583932;0.021480120126578038;0.07714518785471206;0.031310411598542844;0.03695922686356601;0.019055099489852068;0.015229574741006014;0.006517382202154512;0.05071035619138285;0.04369094172484079;0.04345810326268213;0.024801004619435615;0.07094592515502542;0.014297902382927653;0.03118051067237177;0.013855842655922898;0.022922248022597985;0.014950557772017857;0.0630712405512688;0.007942257234975892;0.03545804633987325;0.13496128636232788;0.01815737511663905;0.0932568973903126;0.14942462733084647;0.020069081965221457;0.03646076307283855;0.023096834154217167;0.13582500142514972;0.011210571472190234;0.135801421188824;0.1684933916826787;0.02999535425413931;0.13514850106973786;0.021103684272142795;0.0253275272601869;0.05565418850471812;0.07819760261654056;0.03996903353063345;0.05926751633652405;0.04647217086641754;0.0764453860974093;0.03975315999400786;0.07834845515120861;0.0738317164006918;0.07590577400570352;0.10571721328399253;0.05647461589815515;0.07480973962788476;0.055461542209572695;0.15785739831602716;0.15088301249144911;0.1420993196528285;0.05351202658943693;0.010370019382714203;0.010769134211609813;0.011771947172597108;0.2518668534355262;0.08522080915617737;0.0008421887599594544;0.010778209811819655;0.030105004232640273;0.016554502066111938;0.05487722664764532;0.008870816015186515;0.009653345115250699;0.0558359175324961;0.023978860989484978;0.03074707066377184;0.016858582536769712;0.01294748503377101;0.032154939489723436;0.015816409563122965;0.012165858005991398;0.07946883069660843;0.0023792803117995568;0.00115612813852901;0.0050963960286523865;0.04548523927556264;0.035444024440561425;0.15373631747328906;0.10477750386629774;0.01604078686210048;0.0020460979321788334;0.023572551829455085;0.0019424799127974821;0.08679519841231194;0.015363673487195792;0.008429448299207488;0.0076422587079372694;0.0078101714526199045;0.0315503441216773;0.02966804778341527;0.01115889903851043;0.05217356398898197;0.030005419051797613;0.078483290228645;0.038775471145543854;0.00973729361260139;0.11021314012327671;0.15938813229593027;0.01452774304823238;0.0021775291657263134;0.005929904479792865;0.03108143150663699;0.059188530107650496;0.05651208759581964;0.0800896795966665;0.14531942908926737;0.0547299494762829;0.053004297947981824;0.17905030478072992;0.09705561818048063;0.06603697813041104;0.041611925645674674;0.004138027750984958;0.007709165455028282;0.0031643136929398277;0.052632612218266706;0.05197790093606408;0.05319543530653934;0.037324350989816964;0.052764710857048605;0.010349717805086516;0.006525900971897228;0.012385798086409711;0.0014367211827106363;0.009028366092394154;0.023993319390345772;0.03783796143380733;0.033360742047260916;0.009379896306463768;0.013547339981523184;0.04188728979497453;0.02033193694950374;0.06664541250210561;0.023115533454104453;0.01178950930510362;0.21494273632373323;0.028501575182784688;0.036379691251654064;0.04876357861743117;0.06376037448982547;0.016682990353976263;0.012419460732415101;0.0123837229137097;0.019085561841290878;0.01824918301982386;0.011903147963443272;0.055228538583081556;0.07878831503893285;0.004848598882663288;0.013749479056170742;0.01052754904922928;0.04190566218935077;0.04319948615838323;0.048066980915596844;0.016774714779680643;0.07532921091238563;0.017124096923241336;0.027811807943946828;0.007276114510420508;0.022693693661470216;0.06874775577340929;0.01782975206040062;0.002778241838604551;0.059541528739896835;0.14171283944080548;0.05385492731910507;0.04419080923201992;0.004415535906541274;0.02697469279392036;0.01765354216692437;0.02998946085503575;0.04084386248929719;0.08070470661488402;0.03723221189683821;0.07354555169750272;0.03320914803199679;0.030631279891027735;0.012751999259348152;0.10398075011230191;0.03632039481067527;0.03198944672615508;0.10056837917839148;0.0056452426356643935;0.03854330342650872;0.016108539751392686;0.00031589787984945256;0.0035537006763753888;0.05567048139497674;0.0039774640057875805;0.033866295873597345;0.024436576110905613;0.010396963504595399;0.010619126712060773;0.04214214511041612;0.01384500491903614;0.015161255668236243;0.025824953326451246
+Endrin ketone;0.02850319987707089;0.008173503993809372;0.004186782226728197;0.011147264152773992;0.011542650693105371;0.03241144840927151;0.007757277230511743;0.008613538650347473;0.009197195398851835;0.006300819590355389;0.017573041232848318;0.010731276088571263;0.006593943306203428;0.007891000726086408;0.007234983624046694;0.011437790033956386;0.005842854049113641;0.006840549701043271;0.009161267964294091;0.009709315913469043;0.0071258505985034954;0.010277245206024068;0.023019390349580813;0.016092984524739954;0.028209693979231905;0.06005657075952094;0.030097170770911962;0.07509557541851569;0.018650577571217297;0.06006764954840364;0.010485737283248451;0.08601264495489143;0.0812609920730301;0.005342720004225551;0.1258003157285873;0.04195960343824094;0.05002394565691573;0.004612051725946464;0.0033711575699460327;0.14647769377051506;0.14222790923041098;0.031278249338649484;0.139681302769862;0.07669346253625074;0.19061304147608324;0.17517042176939687;0.18768873058561042;0.18371162766610752;0.17785825011567913;0.32781278252506635;0.07417487012583406;0.1772908087059651;0.21215205113972982;0.054980337436346116;0.14717277280153937;0.0240916487221649;0.07908335994165426;0.056043693507339176;0.10713987409039898;0.054179799014910456;0.1651051562651756;0.06974871853732605;0.05234810822751103;0.04910830485954985;0.09731919951439526;0.05742987529559614;0.05763646706340888;0.10211680423556894;0.11111330095351694;0.10186712748830877;0.055643250735537185;0.1197094694657254;0.11128872043469189;0.07928497969143508;0.03984515218236933;0.12394371271244133;0.09904414715474885;0.09247602986710089;0.081282157695192;0.05443247460287172;0.050428245976567025;0.04801065533789458;0.04347180045716436;0.04257979460896511;0.04548823500743261;0.03551812455506707;0.04709323219911225;0.042541649425404233;0.09670494237785808;0.2327872579399232;0.03967762844646606;0.030979881108929744;0.03865830243716342;0.012367791546607191;0.015191341886523721;0.0688497205891382;0.06598410952946833;0.13114583919127498;0.06045600910941014;0.10239698682223838;0.13402842395858405;0.04531643837073246;0.05550489041041792;0.06135660499485932;0.058747712230336424;0.20884726241327556;0.28738095118179663;0.23556793306956356;0.2318146376800034;0.15441216642348293;0.14737983535283866;0.13101234845222962;0.1553411085439443;0.25491831127444664;0.2145827846601189;0.06104516843335481;0.09736806569544565;0.06989434136777373;0.04114133414282779;0.158725722385898;0.09895148218102555;0.02857854889396483;0.021989500876080457;0.09774634062368322;0.05801221910119197;0.08975478116644241;0.08522982237087463;0.0930076453728177;0.06378980093618462;0.07071391542984501;0.19388488295624087;0.039523280233791404;0.02827403714443932;0.09942880293102636;0.04324103179408899;0.07818785215064739;0.02263045257899402;0.03923021698273615;0.11010114541707808;0.10828853060313173;0.07323019249372117;0.08487143729805847;0.05300116573145114;0.07964061799151798;0.040494516072816976;0.03582880151288555;0.04551804831837551;0.004708514239619116;0.03185843597191244;0.17128865333539572;0.025838037492615575;0.04902037274966627;0.027913069477605933;0.01806667533434134;0.06892840526249158;0.043074754375760874;0.0462814012470236;0.012266864792191938;0.006672134736249763;0.010179839852110415;0.012033096690056947;0.19425363332591364;0.22291853226335148;0.2828729652123548;0.42929323175290895;0.20831885640721798;1.0;0.22749006121250648;0.23560598582827472;0.7466876107510165;0.5800239037080916;0.20712319410416336;0.032944935494631726;0.04012622216246704;0.06067038818368776;0.0057001323040483665;0.06870989355797313;0.15632726579374212;0.03035453259083759;0.013159759151146509;0.019041164318717718;0.00721196991379445;0.028250679276756296;0.018659416759542278;0.10752890812716957;0.06579734661626277;0.12568602570740608;0.06934704402810161;0.035427644483628395;0.03141701519842837;0.06793588822924772;0.024387144899124295;0.0919180331838579;0.11042460698301142;0.04324361746253426;0.03032895992518353;0.029296983299395677;0.03556021844273211;0.09246120579719395;0.0301107077138916;0.04405173336550059;0.02785782451740509;0.03309826595059516;0.024264861304375225;0.15492984990624456;0.0015049247652688454;0.10730614212928578;0.07708341443673762;0.024175006004510394;0.12252895917345999;0.15115148165476616;0.08782091513097838;0.07860623168960275;0.07903328813988081;0.08857258263404966;0.026601475241121053;0.11588994306281197;0.08291857197739878;0.02282462161614749;0.04195452918187391;0.0713508091809126;0.02806750674675796;0.066966437476395;0.043119529403271295;0.028984670358394173;0.05992950870378196;0.029664427305085825;0.07623835104858731;0.03732103835084086;0.14505778903715763;0.142250756366444;0.15380852750917032;0.08577632211726945;0.054605476375088204;0.21064332082205797;0.11451614064653096;0.14383342020094897;0.1716912846520993;0.15980353635223332;0.11064228358304899;0.025978532836877906;0.028534712800689543;0.0412789774749836;0.09408952343506317;0.1889255243375434;0.016388040643631537;0.05390001884504797;0.023705827116031603;0.06489033010025745;0.09526998079129094;0.01709123361576327;0.01655337395974735;0.10802132593927197;0.04062093006785575;0.05115532899596291;0.06184881691154494;0.03176727256171692;0.04962851072895972;0.02078141543194196;0.01828091272003496;0.08246388356239204;0.03244340366451977;0.00303129512262278;0.0124549783141971;0.12241573297586371;0.027602082848352666;0.19637263419852244;0.09317992863198525;0.09419177211351644;0.011493769762115998;0.017568899804585914;0.026997871478359588;0.12082038971389092;0.08739995591451195;0.034313403054293944;0.02519223909682738;0.020736139246502933;0.01756458082921587;0.032696547736847034;0.026088786102688794;0.022968869249505332;0.08583156032948577;0.08254133473555456;0.0350181308961746;0.03346497328413328;0.03261209077591137;0.04291046721984275;0.07000289934339135;0.018909441534468663;0.025516265135756312;0.28060135362282057;0.04341732161850816;0.09696568058109852;0.015890717008172496;0.030714087898292823;0.004289701400690178;0.017118114279347264;0.11872385141151642;0.05316538308726966;0.055646297042574615;0.08999452606389409;0.05304225027061867;0.014197329023793203;0.02628930412948838;0.0009443376492156343;0.04135735788469581;0.06849059198423996;0.1253691421986774;0.025335317395092084;0.017516891168813862;0.018306395538981234;0.01426859094623446;0.01854624486988933;0.02545045956986323;0.07315110088563126;0.05099284614886815;0.057049934543030006;0.01947740848684881;0.02594591269205912;0.17153086481512772;0.10771569184946862;0.02514692067730772;0.15542942954437497;0.02588209499031366;0.0639720169366194;0.06941760452006988;0.048325270631385;0.10538576922939957;0.04296398397545397;0.020576865153455977;0.06666216913748803;0.017106251163071705;0.052650403202981415;0.045858493177742064;0.06799330986732723;0.058142900499387216;0.17331354027324328;0.006001405246214268;0.03863873408199242;0.04755113710737127;0.03746146623418617;0.13916500519327335;0.035362723225239735;0.012200840793786227;0.026870364951455044;0.13672214711931652;0.14977727011900333;0.08461517401721239;0.09185676593711842;0.07575904809646829;0.27373055984389966;0.018632783090013764;0.04558035257275405;0.11651466019530188;0.08278567199939546;0.19380123158188406;0.011210160331320546;0.024066854512946417;0.10840182926634503;0.10368562021930337;0.16797258343866125;0.09225669040018412;0.0568961847869653;0.17355012545037413;0.1352350090215216;0.056011547765849636;0.031745382750644466;0.07904078498501182;0.05659861871085438;0.09136945732195044;0.2831182371997589;0.03649359392022823;0.09879714637816431;0.035374127774681914;0.006979198472158731;0.00999380090359973;0.09552683268646865;0.022891451937434748;0.0655360524847733;0.02650078176152557;0.022953810437515175;0.010321449647998615;0.025903705791670097;0.03768509858524288;0.05545508721271903;0.05404902833607291
+trans-Chlordane;0.011242796977282574;0.013190457317850846;0.012644730855185922;0.011634508655257354;0.011663789198992337;0.014376737757647456;0.008572863278325881;0.013748928381399813;0.014117456656586775;0.011611263918803134;0.043273283724165834;0.02857329205241464;0.006744633707547208;0.012348179774757504;0.014452770157173297;0.013304105499220207;0.013193422832305379;0.01294718763360094;0.013730578374565242;0.01347081348185621;0.026159928933757886;0.029171243294761746;0.02625523783461285;0.015346119303713586;0.013052331661220122;0.007366916204902298;0.010329052980448741;0.03418937795196132;0.007096919459357625;0.01846476362961788;0.007609907170347818;0.022648862632884494;0.04754148975345373;0.009483620611633948;0.21014623310457634;0.023454432300502724;0.021485511369817908;0.0022426244995761725;0.00024265224611272413;0.0259687288765747;0.16588894593568507;0.07430748028058402;0.043219251481589754;0.2982127078651756;0.03970237233491049;0.029909992618593405;0.0333042158060628;0.03436880820462634;0.029257344924329957;0.08388968952800825;0.1456758360107818;0.0550196006325935;0.053804288294295025;0.04429106282346902;0.10238804257883155;0.038641378191230806;0.1563538005586432;0.019044473135844297;0.10575707968288732;0.03128038708151597;0.11147519801142249;0.22793726671845202;0.05655235211935229;0.08070415920302221;0.2118522182118238;0.028833009064571258;0.01729269659153678;0.05170941997396672;0.04572030369239312;0.04624480401150882;0.017396291893065522;0.03601209553770991;0.0411459640518522;0.026162206029397124;0.012014604390907513;0.018184717007304663;0.01109897187215985;0.007300076065500094;0.03301423765840208;0.0026263359196024663;0.023119886929353687;0.021510627577757194;0.006282937279068556;0.006069567281214161;0.006552766423976845;0.006924833413397666;0.0020662785372814914;0.0030305457560404845;0.022411706145647785;0.13792030799030833;0.0015106421023446772;0.0015279154135908152;0.10829169769612715;0.012562240410242087;0.013850534362566967;0.04566758200385447;0.026383377845255847;0.01132092033053639;0.015840076074857892;0.013952312253044115;0.019953098974335413;0.010628388021275446;0.02303813203177274;0.010852868791033064;0.010169284141098493;0.13834613005607097;0.10359350163640747;0.0716545096981877;0.09367605683536333;0.06061791894265467;0.213128564538024;0.03959437631032514;0.046845221561773315;0.0889662527184018;0.11719048286387096;0.03204406133066876;0.017463158254458728;0.028278015103132197;0.05624064285539543;0.1166674474239451;0.0759716274909803;0.028232733683730138;0.03971187968787845;0.040247297843283035;0.030003229891990012;0.2736382578002532;0.27896576957384484;0.03568163555733709;0.03731176639303671;0.019654989406357168;0.2634910669879031;0.00872960168425861;0.02463490334051318;0.07947232405885764;0.013716057213871513;0.018647653132019017;0.007496669109035691;0.011193876524198792;0.13949319365527357;0.1230519346489065;0.07500712055490126;0.05589981904498038;0.045054314923459286;0.05383153482487884;0.12570704450853482;0.004571107557123151;0.02007449938661338;0.018337031334675975;0.0016755957247000703;0.027728904118553402;0.0046977151532818315;0.033992815868536065;0.002006010490291584;0.003258060113599964;0.06271672632588429;0.04691285085695553;0.00590419435090764;0.0037522149672627545;0.004690096213781652;0.012772868841170256;0.009672549931803118;0.19624202306936603;0.2448242003478047;0.4346133796025519;0.8905452668629575;0.3475712687284897;0.22749006121250648;1.0;0.9952176254552253;0.0549954702513318;0.21172371520755945;0.14648114968684714;0.02656035220351733;0.0352557086136491;0.042631750292857096;0.0022698967351403266;0.029536853206190903;0.06288014961837382;0.0153478137327538;0.021578164701607574;0.02163839230977562;0.0014829075323385618;0.006484346031853996;0.0105834574363953;0.03763538837462797;0.05790745568690096;0.07621116263673738;0.029882698480239663;0.02454139536860976;0.02509895268160701;0.048211314579377135;0.057768640382196035;0.026928880449774845;0.024145682959263125;0.024029653991964064;0.01036041417705542;0.010210553863560273;0.020927394559668737;0.06331002113557825;0.009296033358783264;0.023688936910158838;0.008113247633206444;0.010374778821118239;0.01764210616556463;0.04208618989701453;0.010705466287641954;0.10631488440302102;0.03528955002236696;0.004430152634652441;0.09888759327177613;0.06119632431062312;0.07347556796301011;0.03548943587509761;0.021912275292035183;0.04739868392998091;0.01030383684226931;0.150311091666066;0.03216043964238485;0.02162060982109135;0.030672456786847484;0.0067635862398021844;0.01593327314138787;0.06276295404293436;0.21778766959282628;0.05985429347533692;0.25115852739469724;0.03968482022916457;0.2694318229417125;0.03210783580457245;0.1375391548249366;0.10957274034616182;0.15149920533260408;0.18409947654627143;0.031065045190312023;0.12428813629987259;0.21532196865131806;0.30737397071437295;0.4526943024570376;0.24571533255530809;0.16365524982973714;0.0037524723689901667;0.0035304294017874313;0.004585324930568403;0.038665269181573925;0.023363134394624833;0.007237477810182152;0.012647036183174783;0.013436737844956786;0.011940746533806433;0.0851842055873616;0.0028366362641525245;0.0029448831454438186;0.04610101582480407;0.02807530147805292;0.09081230538183786;0.0030693759483901113;0.011486167289439993;0.01750140011059772;0.007621502970711228;0.007612743412053434;0.027851067363016135;0.01057076734112594;0.0013178808101952234;0.01937433530120388;0.05112763262966877;0.011770738543747113;0.08249520430545997;0.03252939051560698;0.030323229069602806;0.007801196646221133;0.008619792355560612;0.0052695072352935786;0.018848409239428265;0.006937663082717772;0.010773207202445649;0.014073128105931315;0.001029243653966688;0.004777902431052858;0.018168405233712586;0.0008982527182701272;0.003664890545528669;0.0186211873246677;0.028071059729295217;0.021863147166792118;0.014366954660377454;0.001486406908308978;0.1342586644093741;0.11323973645802517;0.0025849718112129915;0.004168941698197582;0.12747178474587909;0.2168799268190642;0.0009642058840575867;0.007195165651502027;0.006502992025730386;0.00324930385436151;0.002350368020120495;0.03995651893689263;0.04768354530212905;0.0034458699656734954;0.022433313780366462;0.0013871376886761845;0.007603571175226231;0.011548369312254617;0.0028538945036370765;0.003872395468607542;0.2663511730437877;0.02306999266601808;0.0074062323949149935;0.0050808430099454896;0.022464620449585592;0.0007530331482758948;0.0008629797382017655;0.004377605797060508;0.003531548399894793;0.03482700346759242;0.020387714144829476;0.009566754989034714;0.004578111576960793;0.02993610922004714;0.013839080677541965;0.014336062948498826;0.022563271050222707;0.007015555047762778;0.04461654330777581;0.03539540362517007;0.01959306734824499;0.011038834694671328;0.007496303826517224;0.02522426288792314;0.019641291608313082;0.011394376683933106;0.005245043680960627;0.003818408800871447;0.00823836683396713;0.03019436186779911;0.028247934704487;0.0014447185393716504;0.013663569349009802;0.021188488950904964;0.03257465145722255;0.3499231697403583;0.011389939770288173;0.001400052615214107;0.014600835659794415;0.002914744989199455;0.0335121871034537;0.005314992477556535;0.011907616120405091;0.01674031761448913;0.0458885980342894;0.03925712511535315;0.04054945935111277;0.13561636390506476;0.019814470206770716;0.11709851560623172;0.00497137555132389;0.00506525625004004;0.013295767297884065;0.013777946860246333;0.1123509968139348;0.012565797132962539;0.2351070345945292;0.020388396477727375;0.012156980901523584;0.006179592283353908;0.0042293287426099085;0.09107032928410136;0.013248950609040295;0.01697431110413821;0.024972471163437697;0.004876094011411686;0.011871150420674676;0.016899443502904638;0.00024960510892755287;0.00171923981424993;0.03441770114995288;0.0038736048264907913;0.031130796048288712;0.014489513716004538;0.018275489414809307;0.00030932388869807397;0.022475627970166924;0.016548769937087135;0.017583414929844447;0.020178968742977765
+cis-Chlordane;0.0192186906567145;0.023341314131950126;0.020671576644805224;0.02063523025841635;0.020756130990494795;0.023383595581669487;0.014742936098622482;0.023528178333838558;0.02410396607726796;0.020445900153809104;0.04584911447271189;0.03788939688302962;0.01157786181589956;0.021641454218214454;0.023999723140848604;0.022968142391095858;0.022296567569983043;0.022689574941262912;0.023779104020303466;0.023278590888150145;0.035264775708656264;0.039387757523358415;0.036486850730582686;0.024680720401487905;0.02224588713901368;0.009074377182241826;0.018017782293552657;0.04142948324838391;0.010670416426015747;0.023700437997145427;0.009410653257099154;0.03425848009559522;0.06456719533126248;0.016219714015745658;0.22626434743023544;0.034141578297698365;0.025120223341470887;0.004690928046837253;0.0012155335969416651;0.039116384257718115;0.17034623174272542;0.09022660828723786;0.05023310643645974;0.3100950081211337;0.04637139028089687;0.03487748684503572;0.0389160692947926;0.04013258218012672;0.03384847231016946;0.0979547554392842;0.1547246077994066;0.06566539006823516;0.05567649529363869;0.0507079193401542;0.11658801684010722;0.05519798313408915;0.16565938026305008;0.03308487401215531;0.11575545374902108;0.03458474055974861;0.11932445701898199;0.23619635017741683;0.07091305602643928;0.09382731039444281;0.2195478246034367;0.042449258257867946;0.03129491786455256;0.06372912150274607;0.05840942741563099;0.05846495186658269;0.029634379210910104;0.04581224798387412;0.03951153406281962;0.030825071469553243;0.007875271573501808;0.022667958619802694;0.013870010423873983;0.009338883947766856;0.029199544275593244;0.0048061401612335694;0.021024633574609684;0.01826352573889605;0.002341686393293259;0.0020850569525996255;0.009312060563934679;0.00938551452626003;0.008636265799435132;0.011458121394681043;0.02609142502866998;0.15400866941864197;0.00216178021427796;0.002055871907551652;0.1082299282096001;0.013821949399361632;0.015152821309552712;0.047096630116765854;0.03290205461518476;0.012451127152741232;0.01829387571465727;0.016285879230551324;0.02503278056051375;0.010866046890789289;0.024074603155884815;0.011660172561154704;0.013591572992832918;0.15522302111343678;0.11614999051418505;0.08465561164585875;0.10467358961464968;0.07614811794202458;0.20340321383860177;0.05220840144616457;0.05901759937177121;0.10106656772013844;0.12833137103312303;0.03165524222159029;0.01851785090583377;0.03533553436970824;0.07890648397988179;0.12105023249019534;0.08292455543315982;0.02888235651832776;0.05105610988746912;0.04307715500535873;0.03093354859149491;0.2852654750375077;0.2886074576244019;0.03544690370442774;0.03588795941870975;0.019600769928314877;0.2811971581290239;0.011879565708928114;0.02720239300578063;0.07602669589640633;0.02390068269302818;0.020115377835489435;0.008100238251432041;0.014841484957786057;0.15798060360315216;0.13987295387324988;0.08298729896021506;0.0649298156533995;0.043922476813556516;0.055070342081252305;0.13210955064635643;0.0050170098805669035;0.022623454989048383;0.0178873842983286;0.0028897520384208535;0.02728583973893665;0.008355356662594597;0.03344274449749188;0.0032227160754718094;0.0044476599380206296;0.07338540718719547;0.04845988752468063;0.008733773121811728;0.004659700037788118;0.005534502296849635;0.017262501750165138;0.010766994411249318;0.22205450009275995;0.26230866318097396;0.45031478844908807;0.8915017295155876;0.3626049147598529;0.23560598582827472;0.9952176254552253;1.0;0.06154609926227471;0.2411502989245627;0.18558360175077815;0.027476566715537398;0.038780484368834044;0.047016411150015355;0.0036103594871234688;0.03338290266654588;0.0677491281875038;0.019402561167470814;0.028809439441000978;0.028998583365099816;0.0018232159950384466;0.010734340897411106;0.01914956436621223;0.031140747859043607;0.06238244952287135;0.08909033354548866;0.03272475914813063;0.02624881340664589;0.03234109430347373;0.05585019098791808;0.06272047550024999;0.03757734417108171;0.026249841476276396;0.035038718810939895;0.016483326461697728;0.01627515623539538;0.02739476255048835;0.07680336062044042;0.014098070083586671;0.03555391433119507;0.012086306504732218;0.016448692696264536;0.024431286124194502;0.04628486568571074;0.01866715210964341;0.1214335775112989;0.04592670223629702;0.005082557149363402;0.12383757912647803;0.06811951317896715;0.11130351454637673;0.0386702485953115;0.030868538967931663;0.045835213411576786;0.01770179562605955;0.16139062666969428;0.034832982805532924;0.02658746881239992;0.03888201361189065;0.009218346916594115;0.017182724435979204;0.06588552640444253;0.2199545566074319;0.07897432299396116;0.262413169372933;0.056508450944452594;0.2775499901881158;0.04725486831492235;0.14438551158786844;0.11749268905026283;0.15815192068856873;0.19320221749974587;0.045050701249859014;0.13047546211804992;0.22215259990212446;0.32810703306397127;0.466500436367993;0.26385439008097145;0.17191311389229744;0.006255448191214275;0.006208904554980081;0.009419805418650834;0.04639859715086745;0.03157920876853354;0.009605320345893592;0.01395104000279219;0.012529481395445796;0.014469891009142933;0.09840085125755148;0.005209635286669111;0.005369871598100121;0.04931559548709626;0.04123093746294418;0.08822819825025548;0.004188599566460596;0.01401832327056435;0.03215594485299403;0.009491258442292923;0.00709813975469874;0.02972821886344391;0.014879723840800834;0.001891050451669533;0.02545437125182788;0.062380821766841225;0.031151189936154264;0.09397455398071135;0.04697396576681443;0.04428154961416722;0.011893819947375572;0.005009747999175545;0.009149392356683144;0.02088605134488126;0.012517432136196063;0.012996545983748527;0.018790499517923935;0.0016077703837534293;0.020148338883062927;0.012513966377758028;0.002538866117205696;0.0038270550428573754;0.022975339738567444;0.029976276175856915;0.029461043829398705;0.016099170593088137;0.0016333560739124017;0.15585765497146914;0.118360895811594;0.002810935770159404;0.0051464814113953905;0.13652515110314029;0.2154494805617063;0.0019948164473758264;0.008667896956520278;0.009649350527864028;0.005645613266158493;0.0036197582968406083;0.0508014846094536;0.051271862891838854;0.004653038084512598;0.024507754450786217;0.002315610855285076;0.011916507778186633;0.020214350629595184;0.005038045552636999;0.011424346584141983;0.26877584523320175;0.024272219113103736;0.010895187862910004;0.004964795950164798;0.02241960705910763;0.0009547724721901708;0.001431461680981929;0.003305288929572394;0.005229329312933082;0.04396934048168689;0.02904502180801796;0.01112030698590415;0.006164479988494378;0.03316577685189968;0.017988430304637332;0.017768148817776497;0.02791921028626465;0.010945868115631977;0.060612869655456404;0.052417005155852694;0.026651862693397615;0.01661672324757284;0.011320216997964342;0.025404555854190013;0.021958962911863247;0.01750012192515066;0.0074226555089410735;0.006087288442545967;0.016039711295714694;0.03869130727113457;0.03412788767096983;0.002096566721315031;0.02279401895818986;0.03266397226863252;0.04219883263558733;0.34989168882190963;0.013576566327221547;0.001264835387768319;0.014179971429674393;0.0037370632261569795;0.04709122748948293;0.007427806838057398;0.014191838131632833;0.018488987577953107;0.047765643209149576;0.04275194256470006;0.043760433522849085;0.1416285366626216;0.021769941413109836;0.12821090146539457;0.005681831622730891;0.006328581111291395;0.015626897056779915;0.013666603237114628;0.12234435434902254;0.020458093322820343;0.22991377898357487;0.01750811902210017;0.012598154151481139;0.008977887794607724;0.006723560173654076;0.09423387069846163;0.016705563561423938;0.022578963046978102;0.02991061022346034;0.006696343580598702;0.016324301730509215;0.0245469100253344;0.0004497532718620341;0.0015235872091261167;0.03481380743988762;0.004517203395034543;0.04335340857077034;0.01945400772067691;0.018603166879553157;0.001456127151639694;0.030605893194361394;0.02463936247381902;0.020051960566563946;0.022284433220774245
+Endrin aldehyde;0.01656605744875697;0.035990535961872246;0.0631314865022078;0.02660449932126016;0.026211080111509407;0.0072492045245883905;0.009272276114666285;0.026548245125008373;0.025706276968916062;0.03026111247625133;0.08259367331574746;0.01633852744195354;0.013273576472599736;0.010684918690322884;0.022972905763319583;0.027278093266021326;0.02673405343186533;0.029113578511075922;0.033404593893398137;0.0384760468828859;0.013624419124185709;0.01586249644062784;0.03501300627827727;0.02608825017579954;0.03621833569371325;0.04685708885892764;0.023068023572006564;0.06883059083490173;0.043181461630220505;0.12764549974271713;0.01636222923211296;0.0945481127631845;0.05552818679354575;0.0208583536957397;0.09659383999801258;0.03252022122734401;0.19131100380063162;0.013461550556615841;0.01088756058746015;0.104152116858375;0.09742208298482247;0.09557823382036584;0.043296068162594493;0.016603129779099748;0.2642851353020511;0.20035573792121975;0.2121335783932425;0.2097823469582046;0.20021289618520913;0.5647110982933756;0.03941861455974897;0.11129718475064122;0.06841394848271841;0.050697631935087535;0.045509092950876004;0.09518567924864424;0.09358044028210355;0.05789488629034812;0.06206952200168564;0.07285279614609465;0.10078506374806499;0.0723283820535715;0.0682179225487062;0.05994378837997779;0.10468143774647136;0.0648434563713296;0.05948741122059649;0.061461148697924385;0.06283768684395007;0.06213620640519405;0.04497590041561229;0.08724284160887591;0.07679380243228204;0.054402185576596325;0.05317448836555582;0.05601028221310818;0.09305833880081092;0.09522039335919952;0.06547457701658786;0.15113125597165578;0.03864821694974464;0.030604350481448665;0.0792302976607114;0.04094028761581491;0.08700872630472915;0.07846275024297288;0.07330542845694696;0.07563494680331792;0.1329170726306026;0.16109907631059472;0.06299878525754221;0.03794632874168296;0.053836577669165414;0.05617892881433699;0.06165187250511056;0.050454849692496154;0.055638873289734464;0.2104693442218951;0.07483324492798805;0.1842339323249143;0.21591178230714153;0.09253655026943278;0.10488486310374925;0.11589330940861277;0.10281935957090287;0.029804936746610642;0.02099409649605937;0.019175146813432305;0.031964892171010714;0.07578385853193598;0.030763977623834076;0.11066028229006164;0.07506034782228245;0.03861821943702561;0.03170738428568086;0.042012078290129914;0.07995622078251162;0.04178448426654443;0.0344549012608679;0.1658544154397283;0.10625666133784098;0.013676720147434122;0.011385470278679928;0.07189618632234052;0.03927838152149714;0.12776723323308786;0.12286638518623051;0.061622796313510385;0.10601922062624582;0.06673340130737565;0.22358113418895234;0.1197339100762818;0.028603053323699903;0.07471583244384089;0.0339170495424142;0.06167299899863992;0.04967970742401637;0.07749205063666142;0.06606023482181876;0.05862898412311212;0.06921541933319426;0.04807394441623007;0.04919186764509276;0.05198793723493669;0.07011800237821358;0.023405336566412662;0.0328542801794755;0.009246407714631687;0.023918783243960705;0.08792922299062142;0.01616695453723293;0.05142376543679571;0.06035250856197429;0.04066776081883186;0.05890798387954396;0.0817523835647179;0.09288303896205406;0.04039367578757632;0.05667817773493216;0.016511287017506905;0.07459755687114865;0.21054583526947612;0.36087684118984675;0.0879638705393982;0.19134626995454418;0.20803165706335466;0.7466876107510165;0.0549954702513318;0.06154609926227471;1.0;0.6109395445058362;0.12379726854963267;0.010642128994324682;0.04003118847614729;0.056247988594214475;0.0159363541085023;0.05688763316027252;0.17208662903244054;0.08880210262154725;0.0335366635533587;0.0270641412390332;0.032418494650313504;0.05524246491245925;0.03369331762564294;0.10133634190588506;0.3502047372742108;0.1766831322163291;0.05243757471509343;0.057068473438322276;0.03247898019026703;0.06653516528364671;0.013519877606810856;0.0973163304962781;0.09113475035644539;0.03383208663553646;0.02106699073962151;0.022186420326929003;0.05048706345167665;0.0752530891380105;0.049596011913509534;0.04917493889108775;0.04057688411995649;0.045340820903684985;0.065787844165776;0.35118020087709756;0.0844286922715985;0.09114737820426376;0.1402713231070479;0.07906304541309328;0.0787474006909947;0.15134530088108922;0.05266329291444956;0.11151395869884657;0.17740640492308873;0.09508292821133951;0.05182457290556126;0.09494833508262458;0.2026970192369999;0.028416969518707324;0.09021919443472066;0.1426407907435251;0.07024126092554851;0.06113240074343404;0.03685025049683607;0.028574710329567682;0.10893970054460499;0.10634586122884986;0.08494221830101882;0.05953562324911043;0.08434503549751476;0.07958757617664723;0.08408464500457809;0.09248321786345745;0.05738183282962189;0.08441952561956029;0.06526574124347179;0.08603916316897152;0.26623790803475145;0.25509999586505944;0.06270501990766472;0.12676194409036032;0.08234465384829077;0.0768975020637499;0.08728062413253682;0.16423449384142286;0.029708328500186513;0.01779261861006659;0.04331129799213196;0.15429343479248658;0.04863729217596628;0.062143005452834923;0.06194064798654787;0.10179756939320014;0.052309155526082014;0.03389839328806774;0.06534491143722208;0.05292047143754854;0.0468497974074379;0.031926955383742905;0.016969734733647334;0.015791721805954454;0.02817736940828448;0.09377289370052105;0.010207982786450054;0.06247092228017745;0.01846649003226528;0.13942917989833759;0.07380505535299443;0.07240696611728138;0.03401650681910173;0.021539824902215583;0.04771766171775841;0.14051701205259637;0.13550250520657692;0.10526122393043416;0.06566556867850702;0.0032041823040688693;0.01703426415482118;0.09187178583807182;0.0297380046441462;0.05509771478019356;0.10127146467769588;0.015998167939990288;0.06322271831798965;0.024224613389221262;0.10760596283704985;0.031793952962614176;0.08710562817549604;0.04660835524818915;0.08752223632532263;0.03892878509534524;0.10111962307647657;0.15813563974890876;0.030855250956049535;0.08100894057613929;0.0005671432616222883;0.04994393844729673;0.11697459201794608;0.11262370068747654;0.09211489679721849;0.133573361466256;0.12593479874159544;0.09334274346876666;0.2544632281986755;0.001655798867247909;0.0528950418147918;0.05167046026541668;0.14749297090880958;0.08465096280213472;0.07306631107286216;0.13769332268246792;0.054309511335470004;0.0064923782184590365;0.012121938052037226;0.10327914522361879;0.12871460857175024;0.030406931995919727;0.1479933438299457;0.05840028366140345;0.493820223006707;0.12412566548235317;0.05808891007781823;0.3207685002497972;0.23248520127408703;0.06476274185770983;0.029734747681644375;0.04642130568321453;0.12112558177861305;0.06965143237456446;0.04583517257897048;0.05192723967716661;0.05608080467978011;0.05958628773681549;0.05400994387893665;0.09534818626420664;0.04115719399710689;0.10843935142770207;0.019075022039154888;0.038063959352432085;0.03981895606015988;0.09888491999551098;0.10433885187748017;0.11143823402461037;0.032500369654715665;0.01273118672054141;0.18761116658992066;0.21212073653929112;0.10061332765989538;0.11087414241593385;0.10528116297773255;0.030216621275316564;0.027490350403703755;0.0538311036005439;0.12231751748266786;0.13244017043376;0.13923565403042273;0.009365035061015796;0.08421758044816305;0.06177087667184924;0.13408020790398698;0.13807606401813824;0.14915588245210298;0.11010558294158591;0.23445857893613725;0.18998268489057998;0.10623278963931253;0.039076868798079714;0.07029662044181868;0.08641775119874576;0.16964596765754733;0.21017758000989448;0.24729683352212464;0.18568496510304214;0.05559674414003836;0.0055887659728148355;0.01584203659160516;0.18417822707204679;0.07349369763212854;0.1303879757091687;0.13805250533153324;0.012097923211208035;0.012192991719467179;0.1534351023181599;0.1414018956212568;0.25085564094653134;0.23006079721535658
+Endrin;0.02046422564837537;0.010916542298888368;0.014142572083303568;0.019010575580348507;0.019191202397472153;0.010625734821015987;0.009347646736979465;0.018411523037624566;0.01867779104820783;0.009648231454337195;0.025276184865741406;0.02198636388636733;0.005415575245986016;0.015601239591762297;0.011384128910997578;0.01873793237305272;0.005079331777095324;0.008773605584684001;0.011925906710616491;0.011561963782029993;0.008928709316716429;0.013361912331939401;0.02725743526537711;0.014902484988701338;0.03769481312412934;0.042362235034672346;0.041127606636165444;0.07740355387200738;0.033003542648478046;0.07752403020562344;0.021367390006863402;0.08003566007794664;0.10311291332937629;0.007465341435031334;0.23691999839191233;0.032573700169928936;0.18755506725880572;0.005706532840994001;0.006988032115421849;0.1063670743416991;0.1683914392312307;0.18192689521035257;0.10677017000216693;0.0993011424524694;0.6294561726327655;0.16874995006754342;0.17661021739683264;0.17466898278904414;0.1705704087658663;0.16516190871475103;0.08090088822773162;0.29306580372126567;0.08275464501191267;0.08825942162218271;0.080299343587461;0.16475799621422513;0.19899344550702178;0.1426206581045489;0.1855379821617603;0.13153077779660116;0.18888948183899806;0.22117761199615582;0.1751903060590013;0.17697830726357708;0.2122908055344532;0.15679377542174067;0.14231406897113413;0.17307064370684777;0.18745746227675897;0.1738299795030774;0.15790407828630565;0.15675329210075373;0.17762616472920686;0.24945207488105944;0.0962415361676513;0.17059690859864557;0.0344784714346139;0.07732944263465787;0.02776470739913837;0.07485018120080059;0.14971035013285452;0.15006688663416043;0.1598684639633495;0.1566820441491103;0.04484089831578155;0.0341639232930981;0.03791014502321058;0.036159992204592595;0.10494969000788684;0.1648297921310504;0.05209303986572579;0.03479056401148742;0.030275927790146883;0.04211350359285664;0.044043657956540784;0.19454553834590996;0.23471764231450992;0.1057421357008937;0.051817017248654215;0.09111584543674747;0.1290170901087999;0.05417505985837491;0.06490419287501747;0.07593245492068644;0.07890639513750954;0.06017094366167183;0.08449827918492463;0.06123696194624212;0.07501571751180856;0.06520384759730881;0.05231200452217902;0.07436758456809965;0.08726285008478707;0.058251928381615886;0.059637105575328815;0.07741587719920554;0.0972812382467022;0.07732586900625281;0.12182241898694274;0.23854424210161074;0.10450227251963287;0.022029335572044145;0.04667083261124519;0.10997268565153417;0.07142509421449415;0.17512695328376754;0.1649612554286347;0.20354944051140816;0.2531844627037144;0.11468300465995217;0.31005987052555595;0.39082251480483526;0.02206279865522533;0.14498915411612376;0.0361101389797821;0.18597356950938337;0.10731639977925751;0.13545205927416085;0.12333465419020523;0.09327613723208494;0.07816564727875325;0.09523614367517673;0.06138100093898945;0.10180964901131362;0.06781422184670668;0.041707681669585356;0.06634954276356099;0.04419542018664646;0.1362402285684554;0.17716256706087508;0.016324860451025904;0.08035237226592873;0.05740238440637551;0.0638304609698626;0.08166560347634678;0.09189519666650858;0.0721837803403452;0.06214176756587994;0.028013726913545384;0.13720091208868973;0.08015668740912665;0.7282029141354567;0.40935534087097747;0.2751444542078616;0.42212344275015107;0.32576972317842334;0.5800239037080916;0.21172371520755945;0.2411502989245627;0.6109395445058362;1.0;0.1715145325521164;0.04060519791653392;0.12238233858307541;0.08346908387487759;0.009740817679366293;0.05334348802428097;0.17972452195989214;0.027376429766774908;0.018318567055590027;0.024668487159584987;0.058486549661264965;0.025395240079720254;0.017274062205702215;0.06343703681176632;0.13058663323053454;0.13313651427024556;0.0480191018714932;0.04531748566974306;0.046010844249515064;0.11371691374652726;0.01305022383618463;0.10747584792854878;0.08401181965467637;0.03980606234729267;0.021738476481371803;0.019552554869070284;0.02339978654007968;0.11601145898389144;0.02167437434731156;0.04282483657049898;0.020995620093565596;0.027941662158988148;0.02146793583388537;0.20920519066687468;0.001894802620781065;0.116664202279603;0.1284011418115682;0.31783796197967223;0.10118182687235265;0.17038731723183284;0.1027552315648794;0.07941144967409017;0.08676510350298659;0.21381791387432897;0.07259450841517946;0.11064225577426255;0.1833193794641973;0.03318652610498093;0.06857882619678694;0.07738647701498787;0.030379934451422303;0.0395683903067281;0.05441971122431431;0.1474621798063314;0.24416468621753065;0.1578819105078163;0.21785059051721825;0.13110643864749777;0.17269847047907538;0.16536192181053702;0.17392849952147915;0.18142388311880803;0.12992761577959694;0.14642459697776342;0.1859272856686859;0.08677705736335516;0.15888878287729646;0.13635649438313416;0.18486266759899464;0.03809274376058707;0.3151483581095024;0.24963373118404958;0.078422928412981;0.3286278904640057;0.15224288188700263;0.04126811518720328;0.055090910246622576;0.05168251562124177;0.27656043637801003;0.31727486641809516;0.31672628157033117;0.0861824144010818;0.04806441469429356;0.06208971316765074;0.053347229071323256;0.025757393862550847;0.04864819642688161;0.13810161444697314;0.055445747327827324;0.06869056685583944;0.30430816177536557;0.02237923246951975;0.017419933585051058;0.05462166903287409;0.03984690962518633;0.4384067140164426;0.4316901344638526;0.4634958043263862;0.21519876471401686;0.007055447473364835;0.18545706664966546;0.17375214817383294;0.20360998728681556;0.04824572069116955;0.08046377634101139;0.012737331357058667;0.03145018544640042;0.03765697847490004;0.1068249209845767;0.024538396312980843;0.0871079523044938;0.06839433647752202;0.052856170604074326;0.024516861028290475;0.027256101938982577;0.07401907408237338;0.040855097790811604;0.011879057233335918;0.0182701915895484;0.12577148174426236;0.12500586856266338;0.10379552865479529;0.03606445459847769;0.020546762478213094;0.0037392595797475425;0.03208427070454402;0.1424520978124654;0.08698628926740508;0.0830305633023294;0.057934702985436924;0.036289262536329026;0.04138002937598392;0.021696507475748025;0.0019320078354310773;0.05836019989281605;0.22945061946779796;0.11165025478399293;0.027957386492022784;0.03339380243254115;0.0248480050762355;0.03814977295569313;0.0017800139941211335;0.004900456636874874;0.04138467979070767;0.04977780970074009;0.047693163311447836;0.03643963924522916;0.033726181375191865;0.1693000223147707;0.11716737481648451;0.24990170355622376;0.08312365383133336;0.02963461342756835;0.09483170003128796;0.08498940054933758;0.049745682553594704;0.07955972719208394;0.044893701183734584;0.05466498360232358;0.07738482812488988;0.030893883377213112;0.060351206880887846;0.06498151143423715;0.06586773990627662;0.1086270989801222;0.10864361875238973;0.0064888116966642624;0.044436877318220526;0.037516742363295795;0.03664882662093215;0.1295187473455581;0.043853316772652425;0.07486985794034397;0.11756295592414384;0.11498583384840627;0.12119742342096203;0.06347589400299802;0.07420866979400456;0.10908054764425155;0.06493125169393098;0.024042497421942987;0.09168622313027369;0.11296945620905884;0.08877967155478951;0.16243369270079538;0.011511507313491216;0.040376494903226395;0.025688128204892666;0.1000568800237448;0.14441912403702667;0.13241186085403697;0.06567045439128788;0.1738432628020224;0.14320261542045143;0.06068496652597031;0.03101768132339317;0.07314234008017877;0.05713578169882106;0.08178846469546669;0.09208247009573105;0.049993882379003485;0.09144397545014202;0.03931488979588018;0.0024263916226212124;0.0034812381401259315;0.13643741240399845;0.07747847154760494;0.13733160907838562;0.1007563170495228;0.012665400329967696;0.021797766642529855;0.10871727242498065;0.10436918847313621;0.1479076215288289;0.13020333853619317
+4,4'-Dichlorodiphenyldichloroethylene;0.11742417555524787;0.16726595572350897;0.08505040040628546;0.1574930013600201;0.14972150932657866;0.12696611282695358;0.3271496433514811;0.14065772565835896;0.14411906346569467;0.13428201795433234;0.03347950797980646;0.12398630196890191;0.35615222456113493;0.13467823045958022;0.12759939756334324;0.16006975819303665;0.09856990626327373;0.143279388539212;0.17077705288491887;0.1535932170808841;0.12477029467252129;0.13723284408856126;0.1309885892754489;0.11274395016182402;0.10038034249436169;0.03043620900606608;0.22511745006910674;0.03830748464341112;0.03225206600395739;0.0887416728727109;0.027790287539499848;0.03940476306417822;0.25044696888204915;0.33293315850842603;0.13123166535588787;0.15633022092366614;0.053346846055485946;0.017810979251404666;0.00643429449802507;0.06264864435815326;0.04929619895605463;0.11854709669089994;0.03965054595468501;0.007802907458188787;0.013595330140159448;0.009506853020311849;0.010922393364778465;0.010832964683531784;0.012325181735354872;0.08540309564924797;0.05491541833275718;0.9628570628914469;0.04086578927184239;0.18023157042034835;0.07999574426711337;0.11090252311956436;0.09339413734187337;0.08941326011499495;0.08475163025333984;0.018571538286241782;0.0638069904981863;0.10668868110990172;0.10743056995695044;0.1035926083157979;0.09712762316455249;0.08742413620001065;0.08866778639081146;0.08177029077347725;0.08974628093643458;0.0813817895718375;0.06999643148736966;0.05536300904322709;0.023140805034158766;0.03620500169144481;0.011509900131408183;0.015482660696234427;0.012628167674501412;0.010172370235556909;0.005897899251204349;0.018099697494115215;0.008936927941151186;0.008524830630136333;0.006158210652958342;0.006156565363124193;0.0059514317437117685;0.004305911310838741;0.01356784217102252;0.017788552920552564;0.02792600067273183;0.11177329772696956;0.010968602267416222;0.033294049586685075;0.04531624433934565;0.011840053616795545;0.012511875667902803;0.019154971607681412;0.036546675938957524;0.01726500239095358;0.02497369024737459;0.018620781456222497;0.03237892223537844;0.024909699878044946;0.02551355189670063;0.014479220953533042;0.021820489774153733;0.09855859036836902;0.12429626726002281;0.11435758143214049;0.11255973238017201;0.1078707936014874;0.0954835910969177;0.08601249563512815;0.10904089277463766;0.15156304391437364;0.10460576606199429;0.3473180985520852;0.29818863653128574;0.25074294419283855;0.07821949433716893;0.18886149611545153;0.022039115967657476;0.3868710384831955;0.07333379520084597;0.02625014697652299;0.014532063746055405;0.011698375942654419;0.004832604509470759;0.06409451317145788;0.06349132655716104;0.07090067038921993;0.024286402684752798;0.007078589703828245;0.313067788197765;0.018182649297466835;0.07989400539790542;0.008958206151899724;0.012307462202944139;0.022214810773229392;0.28256659802905243;0.281907871749491;0.15909168941986218;0.10914144321527142;0.0693031593431991;0.10451329775693757;0.23809045574295676;0.07315168344687763;0.020639015936070128;0.003945027198100732;0.008472165918991087;0.01516647618448463;0.031035679506019175;0.011655418317126607;0.02233472338140744;0.028262118542065447;0.1621862068474699;0.05087753472150561;0.03419887746914791;0.012971238949824547;0.015138968897755636;0.08415492536445751;0.019791512908198403;0.07359195245082646;0.015232750959651554;0.07207144567457678;0.20360138464202937;0.08933128359282057;0.20712319410416336;0.14648114968684714;0.18558360175077815;0.12379726854963267;0.1715145325521164;1.0;0.04095730819608387;0.06443178427046657;0.19538465171336225;0.013929953249110984;0.028968055172427985;0.028963945965951886;0.04357660133381776;0.2503473387088868;0.26082690846998285;0.03517093599631136;0.043921992955136;0.12278237642090341;0.03647804237829136;0.048384258644877484;0.03369135313676455;0.02134707925397679;0.30791717071011115;0.13183294303855453;0.10480003987469937;0.0802192962407281;0.07970227383724807;0.061532290524646885;0.09200910117321205;0.3008395593685172;0.3028929337142142;0.1902346201456905;0.37500754121753965;0.11813613094031912;0.3194201516725216;0.11454292370276699;0.17966098243613052;0.1068169625532172;0.15272600770458833;0.08425406970611127;0.2094354218552821;0.059720388030525644;0.010955998915865182;0.06788432841873326;0.08206512098577545;0.6890635466509377;0.06031646900175995;0.03443121908635083;0.016042172738059916;0.03534294524240861;0.1845049575926579;0.02368414169721582;0.013392394326460031;0.007783549261823345;0.026255983204939846;0.06771277538804546;0.08278635583827487;0.10556596776769316;0.17442151102889583;0.12152238835277948;0.10957741889869788;0.11254301993916717;0.09615723324629508;0.0636996064703577;0.06259839510017577;0.0619377806406125;0.10029019781392393;0.08945592163043332;0.06746637315990722;0.08768649849811731;0.08274838642620784;0.07448820794123445;0.08246078042443628;0.08771522586015516;0.02159751664374699;0.020523673892383316;0.01844998769771727;0.021933437401378753;0.08782500932594706;0.009244360886128775;0.007084740554101868;0.01855840506053368;0.03778058598960043;0.06666701707678722;0.02374706873489183;0.023609760005491847;0.06550154072661554;0.08207040518434393;0.08883154349794765;0.07816308977779667;0.013626865243367956;0.11802678093678123;0.002621895295975048;0.020332095555578203;0.00977921444926783;0.03617941091354208;0.01602030766047087;0.002046995148209933;0.012830165450372332;0.0842108462228005;0.2061615881097704;0.05950356530098151;0.06133817913481655;0.014245216293615123;0.007040953909724853;0.003383262153595879;0.029048608201279597;0.022920688637921998;0.01566940002325286;0.04036296168440345;0.07101045982284179;0.04612421913759709;0.014350976188086196;0.017482911345405097;0.025455917979287326;0.05939497067507768;0.009888958430564112;0.09779581329598114;0.031127278282584568;0.05115293859506386;0.024970905101369276;0.06850692923172887;0.001217477439883598;0.013531313741469158;0.16043302818733898;0.05690541336907326;0.02568037903511861;0.006253464437537205;0.01655554165969349;0.3494732037661083;0.030926918969820978;0.3096428188312375;0.0444906524228588;0.030289462610542522;0.011977343904410673;0.15469535622881708;0.04500002137604705;0.011859602972682824;0.3383323045678594;0.032439612952595356;0.11053589510421002;0.03046542803252054;0.010073936632888435;0.0074860342491746105;0.01129603943152398;0.0012644488225521514;0.0008800176903339144;0.003240700777557462;0.019577300544832203;0.034504304559082925;0.4171783410613518;0.010026490948182193;0.02406060462867839;0.019758147476139926;0.00429101675842702;0.02269326592769228;0.08417219074946154;0.041115376848292653;0.047274326922466;0.3929842676744374;0.08754521289658616;0.06333149154709197;0.017529266944285235;0.016772480100021154;0.0024333010268074097;0.05657263558551471;0.01514311095488435;0.011905211091821308;0.0050453315435383655;0.03229937421562067;0.031483075794455626;0.015024610050354914;0.1389647304238541;0.1002764239660571;0.10990549392345335;0.07875242397024243;0.018670716313482237;0.0022523763454032728;0.009184585847600525;0.005940287871691193;0.008890877060242157;0.008440494794516825;0.010401171644614956;0.01049661793128099;0.003078139433459463;0.003613634863913402;0.01719357789304206;0.014476970872733079;0.08099185991253516;0.03731899805358161;0.0015650494863776458;0.07817401389845337;0.04419220870861773;0.027606603029119763;0.05779202592074331;0.018885082156884732;0.3430639953571034;0.01969016083057326;0.0054309981120376745;0.0660287960060807;0.004478565747206555;0.02224169867702829;0.01765699731796806;0.05718921653683803;0.04203988322992319;0.011426220732054466;0.041113437410703564;0.1154495153199381;0.0006301914152256946;0.002661557354835922;0.030508701165621877;0.006283779229455981;0.177722487351829;0.026595802302284706;0.014006519098191787;0.0;0.07338015842546457;0.06930436081423116;0.05401926260967191;0.0634184774731202
+Methoxychlor;0.03386269246609872;0.0014459037084580482;0.005306983702026932;0.012931120014683512;0.011079971765117297;0.06675713038207721;0.05995253673109276;0.0017907813322736944;0.00188423286470955;0.09364519425220594;0.002181218316749466;0.0020092853089388515;0.003473175731870229;0.19344189248458218;0.23266307210273035;0.3248509225136965;0.001346190872729184;0.0017523530444642798;0.00238553357896167;0.01630064055700776;0.06186850381660288;0.03115646622754277;0.22843771993742895;0.006617659751024588;0.0071366008225308974;0.017636375683462283;0.036889531350109646;0.023464625475595045;0.004049017874015401;0.028743010984566077;0.03305925236760752;0.0029076943597668285;0.029464534539799754;0.006355230901732889;0.014244584475929285;0.03164077228748502;0.07968193858068125;0.0009099901461578965;0.0012083462295870736;0.0034333062278285296;0.010595462873487265;0.006795245456502974;0.028313695771854008;0.0;0.003937833995438675;0.0007399825799793404;0.0010628652922108712;0.0012696022187854935;0.0008166790679139636;0.0024336755267016248;0.0017315924738619019;0.003963563375740545;0.03937823827855115;0.4968972306064183;0.01004819994440477;0.00492093392946906;0.013311214160349739;0.006346844265675615;0.0022269092068025733;0.009627267215166185;0.004119452677416678;0.013562110960804907;0.011766077552135497;0.005170371862879741;0.013974464581104207;0.007021346988388956;0.006422994117995883;0.0023685689047348844;0.003303866971599073;0.0023218758657755877;0.0016219058341640205;0.0036148410485958623;0.0048549835610551696;0.02130382984621869;0.014925984955287503;0.012275457098856406;0.026221893572785166;0.0049728191810352795;0.04719500603552263;0.07348509694141182;0.036285314793860664;0.04084493201315206;0.03391857304681309;0.03415799287607463;0.03639346458504086;0.057277004906467255;0.04534795260520023;0.07836391310481891;0.03977970990295173;0.033720931957743894;0.06592572131489664;0.014431856705849896;0.0062220517682301;0.034980002226185934;0.037211298313260276;0.006250567614352466;0.011696667589569394;0.052673923621339984;0.12106684130819514;0.04559503977053414;0.06037885874389516;0.142269013978066;0.09674262673902956;0.12454279160044139;0.03233730213204285;0.006480102947217894;0.014315016437628784;0.012860750716875336;0.009645686671112201;0.00517606479512241;0.005303415723940067;0.005397292957480247;0.004482518697190353;0.007921017670531272;0.007097633067800181;0.037429802006204126;0.021221439936516182;0.005888284522171379;0.005999080143118401;0.03728215529871942;0.022358227442407414;0.002784515991478511;0.01765724520596899;0.00692602400651417;0.005082395440468239;0.0029093528135725024;0.0029426624076247057;0.03072835476146373;0.0011414948547117806;0.0006127812790888711;0.008790876908106978;0.02093692554074013;0.00214055923367374;0.007748548170969721;0.0;0.04301389000642625;0.010683081779042012;0.021855079293029593;0.008337740841931658;0.008879862233165052;0.0013285037256911267;0.012663387932139248;0.010988922713373669;0.0010330002443442068;0.0095530254144149;0.009157980002461829;0.029351710495833662;0.004374072901370993;0.004723155411205599;0.009728011899905293;0.005493825786858044;0.0011190342901345077;0.001475622998447933;0.0006761429694424838;0.003774725214393002;0.004137915873736191;0.018376787761000758;0.021072834778075665;0.02211848777476778;0.00956758427194769;0.044704108547135905;0.025014829851556016;0.003938880779966191;0.04236390855602821;0.03335016239954377;0.024011282127575927;0.032944935494631726;0.02656035220351733;0.027476566715537398;0.010642128994324682;0.04060519791653392;0.04095730819608387;1.0;0.7847939450428664;0.5266928891407611;0.004547303209548767;0.0003037576830046735;0.008504829758179453;0.04357435124241577;0.018624925159107648;0.0150480879167551;0.0053991285693178424;0.006324936199344373;0.0054523424099240285;0.09597023119708623;0.004000658550818289;0.003647334377226297;0.0;0.0649926214600606;0.006421893921635018;0.024868573962260998;0.0034222718832087645;0.04973572313805718;0.05222422245486468;0.007860321326702405;0.033729570353574455;0.034518340415752316;0.04163685893673956;0.1876637420017494;0.04607593937204368;0.0626023569327022;0.0557174216058074;0.057310096093481894;0.03527978934081212;0.009054035558557409;0.008097887288145233;0.006361041484044833;0.18549577637690984;0.015564637346931993;0.012280483836295958;0.014421290093902042;0.017153814484436203;0.005408034809534094;0.0008205347198161337;0.08596998355513999;0.02052335674629911;0.003349780174944324;0.013133525452474955;0.0;0.00844986807314636;0.00449046261825456;0.007233675847614429;0.0;0.04364661737216438;0.053817934236676315;0.012117507615366173;0.0054904791689404445;0.007804433786230326;0.005318183950346464;0.002602948980729639;0.002944905395252981;0.0029713849320219614;0.009837991815326061;0.00711919136256111;0.00486861962279622;0.002612976083684146;0.0369454328136829;0.051399591620858116;0.03404729374265307;0.0019776181334787753;0.011070129181286994;0.025398610091883808;0.014430335524460138;0.011225810269902419;0.06280925645850119;0.3435868888297186;0.005459848844712231;0.0028198457328686404;0.03861623025597251;0.008923576321675078;0.04578454765323508;0.042653166266109065;0.02655371500188681;0.0019255528045764218;0.03496320124903042;0.002524913643793625;0.006446577059244633;0.002788607977776211;0.04172894625113146;0.007471361303224381;0.006841483308112792;0.0015602490570655908;0.006907215673006741;0.010866449478138336;0.01018875214771466;0.0005142367539044942;0.043089635207554516;0.020492661700380957;0.04261098163119832;0.008442407648548015;0.005014611489238397;0.02078461000554616;0.08772796043336616;0.02119707927081796;0.014654822345049267;0.047731072370214886;0.03250659502342519;0.001971010555197351;0.02131552377936541;0.005650788695362072;0.02148929293236628;0.02013409672506033;0.006755763916800319;0.7522904375924548;0.004092879895716863;0.0014445271099044832;0.022439566263362652;0.0043135071128667934;0.00620410615837031;0.014891227274627855;0.023948095930661502;0.00402347749866618;0.0;0.016227183388456475;0.005910404008933172;0.006537743149779007;0.10359781932511365;0.03354154620395757;0.03856262492330982;0.04051704515996765;0.007744986843205941;0.0014328316949307545;0.02115207740325133;0.0;0.0017874219888449152;0.021694024173421114;0.0189779295638477;0.021636606392277002;0.005665235436686825;0.0019044014106701732;0.06823361580053441;0.009913598210621;0.0003521880704034451;0.0017737026119709397;0.005412138259883926;0.009196887799951396;0.011973640894096714;0.03828223653380436;0.0026260044211773833;0.0072109329543909;0.044674162238787146;0.01857602152709484;0.011277755181656324;0.0018578598173748845;0.005450845735684534;0.02902340183523727;0.006253458910050802;0.031192012835802526;0.0016319612548408797;0.05056012697640801;0.008204925974238633;0.07097450790527766;0.0020702368135597864;0.0021343727791143154;0.0012631909629972871;0.07238826862380186;0.032144917897825365;0.0036076450732202957;0.0017621269659614397;0.003101731361024522;0.027964569373357267;0.012396743314404378;0.04195426444418381;0.019891203156933785;0.01572417706878172;0.002404678820896321;0.004660277172159605;0.023975478776262077;0.02279555166655467;0.010010205213286473;0.0008333496052134868;0.00105666336761274;0.013407619603917823;0.03401924726151895;0.0241455036632249;0.03474703048537573;0.0010630431374366337;0.009795565879542183;0.0021750429093247013;0.004091728429199248;0.02045302247005815;0.021070839394592512;0.004812133904473325;0.010521452867754034;0.0059186728340619235;0.01201454464512084;0.002736060061630544;0.04331882615102289;0.010895824516117383;0.030625573032113492;0.012698347091718524;0.039335103238756115;0.028497341219351022;0.029312273695573026;0.0;0.0009300513023984343;0.012943363187463574;0.06055743649265059;0.05872724853009152;0.03389801508645868;0.033202040608947284;0.000362882929661699;0.038130167316916375;0.020177260733392866;0.08317139580942778;0.060414830773260465
+4,4'-Dichlorodiphenyldichloroethane;0.0;0.0020104401786299343;0.0014903323615885252;0.06816352299539413;0.06712548150229448;0.0063348751755613044;0.005620644467226233;0.06132067944392599;0.06048668073371457;0.006193521339366032;0.022325803238501106;0.13353728978570664;0.00739660035925358;0.00115180232058414;0.008113122990097166;0.005742342017236102;0.00023532538061499548;0.0014692991580374226;0.0019507253918264356;0.001638555949958264;0.004161030346402766;0.004549301643871982;0.009188066580071822;0.002442588154409172;0.008936838757837887;0.035074656336989384;0.015036248744894936;0.16913734798263705;0.01712720430919531;0.010314082373699069;0.020239798880994617;0.01465770587280862;0.10479590081707765;0.048974719673564635;0.020195276255460946;0.00252328143983529;0.045930212502387435;0.0015230690618896199;0.002102318343040461;0.005387945806744294;0.011365914652719217;0.012344524479092829;0.025106559281191355;0.011076412606782124;0.006596491077683284;0.005460549998627326;0.006490580228587961;0.005766935114218614;0.006164393419787116;0.004176327738740843;0.0025347217381750274;0.060331054660702876;0.9768621323814596;0.9807979077378133;0.006236728337470219;0.010675471727310001;0.016684432731320097;0.014422968468655128;0.007858304118599797;0.016208233213002958;0.004173783269690543;0.018396145334072966;0.015153200556828629;0.00920288483974256;0.017651394804744196;0.01136009304166518;0.011671017782319796;0.00713221189461285;0.008488519570963037;0.0073566890961600405;0.006619252989356672;0.0035454786110041153;0.014605955972014518;0.00736643224373271;0.01513368377061926;0.059121612255087184;0.08712499284942117;0.08917653936510286;0.15944077625145267;0.010924786744867259;0.0573249731669352;0.05495977743185906;0.006825762090461936;0.0046276258536533795;0.04615715883820306;0.04063870061594094;0.006120345800693638;0.009700151299155288;0.01910206917888656;0.036042611744748335;0.009240952080375791;0.04512637854487304;0.08094666887231754;0.04897290941113264;0.05395810642130195;0.010260902031360207;0.009309588702143575;0.030673062625296038;0.07944402500218643;0.0826587578084767;0.08073400951743846;0.09510553525135984;0.11464196829001809;0.036599228234252434;0.10845936985615873;0.002765801639719256;0.005337519607839933;0.005423081854881369;0.03448770238921251;0.004825514730286333;0.013084101639322658;0.0037990589238231323;0.0055796797763050365;0.003965266881123259;0.0038365876357428857;0.09491669797114102;0.07818306719722935;0.032325226512133994;0.1092532426563312;0.09481947964446609;0.1260926554353761;0.02010028342262528;0.058885195898639484;0.0301390464430609;0.014938090744503358;0.031655965953216486;0.03262966084755865;0.06508505420336018;0.013573720032461396;0.009262045195626857;0.1019668694522912;0.007914440157062512;0.0033619003211596814;0.020718362632406097;0.002459698976433103;0.014487366538846585;0.002196828616367311;0.01174836812097534;0.0721990722982036;0.08386659775666438;0.015561995467009723;0.046596940052815755;0.006149344009634005;0.004534437318107634;0.005290316785463247;0.02872679122096413;0.014585132050975122;0.0002663460288535916;0.008666405116587604;0.01588535189910166;0.003363448553249558;0.003104600598825801;0.007772310380463818;0.014079483765249022;0.008635105362842056;0.03606304539676677;0.007468877529432281;0.006478372511381782;0.006783738620755333;0.0018177919672639053;0.020395004033357245;0.023022095107433218;0.01767597256282322;0.04719863197627165;0.0392124778730484;0.0446432062717973;0.04012622216246704;0.0352557086136491;0.038780484368834044;0.04003118847614729;0.12238233858307541;0.06443178427046657;0.7847939450428664;1.0;0.9876939827065802;0.0010693389361607006;0.014187122977710017;0.019631831887597023;0.2110269847460689;0.07069636034853476;0.049633439269050665;0.006507302033552523;0.014358897906168218;0.01147657475327199;0.06447466804466331;0.038451770158079566;0.03804647761947191;0.01473356512456924;0.012362241046866456;0.07319524742117732;0.08095213046433314;0.007610356295103464;0.055946875751692465;0.03222896832755849;0.04417208221423033;0.0018723088210622848;0.0017006810963363383;0.004246497719874623;0.1402820416340872;0.004798848430945048;0.020782193764940535;0.0027879279171156004;0.011627826779154724;0.06004194910989952;0.015761091505600937;0.001243975756032677;0.06806674485886612;0.06561684134934462;0.013733784521563855;0.08829967775357811;0.006822949504970244;0.018108517414301663;0.09376969248262912;0.008294191181759012;0.04645119262951414;0.032849327843224294;0.029211015217091008;0.01741935647687156;0.05681060338848905;0.001164295811418536;0.04031157462089993;0.013685867975918187;0.02957380374390866;0.022559359167484416;0.011304125044382057;0.01652904952730823;0.01228840616912568;0.02084122817896385;0.015733113392141385;0.004461467238655273;0.004174884547683914;0.0043786084492711645;0.009818245452262626;0.007276559607812831;0.002464465648525741;0.008024946539465424;0.06070745705923227;0.07201215563978153;0.043389534210033;0.0077639936459857565;0.02614499299292388;0.23731556345429114;0.023529001928754498;0.03432437797514014;0.1619371117920112;0.25805053272443423;0.026222971688470872;0.020886841278929535;0.048882098756059686;0.020224216338604703;0.12910916141096943;0.12842864246347338;0.03995209923948195;0.00629067339424478;0.14346263563893644;0.005791390179798528;0.04273328765530529;0.0666616911828128;0.0007338437310247506;0.012699466454902306;0.018648796639188614;0.011389546953703122;0.00022939733261210374;0.019964052982882417;0.0023040830375190774;0.008685174879216079;0.0721105520120514;0.030832667618597515;0.03740727236935857;0.04894412393403311;0.01032392984220019;0.02443901449653167;0.056797377167843936;0.07321050083704861;0.009592382770864482;0.008068474191781657;0.0006945555818484832;0.054690424525823726;0.2039166632843435;0.010371285623251571;0.04971983021994953;0.17747978315787977;0.018553769057297904;0.0682322544691767;0.004733868402283757;0.021902247920201734;0.12065407150302945;0.008116672461436405;0.0;0.007987365296313914;0.037350511092462506;0.028118353124843516;0.0023137933885394877;0.009666904752225067;0.002532985052073252;9.369886025781939e-05;0.00015497394251096682;0.025655733898112525;0.04699140594472264;0.02216831808520711;0.004210215445569935;0.08641506107426228;0.002673954014667787;0.0018972518644179593;0.029688760025236387;0.02896967527129478;0.4520718290706554;0.013913510029338692;0.003055854346959862;0.003447975359193611;0.00538438223571324;0.000486300960272747;0.0009538269895889767;0.005140236112656275;0.005043448089415029;0.01353026644102735;0.05923738926442245;0.0061687356496969;0.009200286932268792;0.008550045920435475;0.00766457045550717;0.05365173388176068;0.021161871981038288;0.3115401568457144;0.021192284419430062;0.20892301418229112;0.014206095053526309;0.027664118714900293;0.011717541155422815;0.04550455435457085;0.020187357650277283;0.0264001340775537;0.006014286285774646;0.005627590157682983;0.012081768504882722;0.03955144067351506;0.06497442689660694;0.0014890998241022452;0.04800140410566719;0.005945400597377483;0.03800060862316968;0.0304841689792685;0.004217441955796933;0.0010478972428331161;0.013684963532561675;0.0050186678034447865;0.01352585917222095;0.00838535730351558;0.007326242095545915;0.024989808624589816;0.051441786311828365;0.005351132012550153;0.06774076268271667;0.12555723325479246;0.02581077409336158;0.020184251624815117;0.002097662538540474;0.07309579191047759;0.04640720434679567;0.045610165467918344;0.5001269608300988;0.14018232068330794;0.025010004501221747;0.03767674716358447;0.003835459229526803;0.03983415427591916;0.0061563530237985714;0.018032905582330644;0.017698647902860347;0.09802419142007861;0.04359883667148954;0.5603155820051257;0.05103979181798456;0.00576640828353074;0.0010397411854775605;0.0024795869831353732;0.021079931650693117;0.016028933252539877;0.039539309875515814;0.04323280028734496;0.03918339301808718;0.0027286717736092416;0.025348959964957975;0.019239368680451653;0.017787224203136255;0.026596573296041617
+4,4'-Dichlorodiphenyltrichloroethane;0.009739929785531011;0.01223140253962322;0.008295342970213932;0.03963962383311465;0.03811775135717733;0.006480958779476713;0.011519239197492944;0.061493470816808594;0.060507884463404035;0.011356990229335916;0.020214156060051742;0.13456592458443528;0.00705805140197375;0.006196232205441411;0.014253368173733417;0.013803354953909448;0.00295052682408685;0.008394462750008966;0.012143439147720455;0.010108718774794948;0.009538054776375095;0.012176671870093518;0.013125114994479145;0.00689033272241918;0.014069794269131167;0.030501711777801897;0.025152969904075378;0.15887500973144056;0.013767272548319918;0.016013548594148327;0.020200368976588685;0.021119264394202954;0.08447400597597667;0.05134989081332138;0.024940449561868232;0.0028307153842406715;0.04509011243772709;0.0016865505269250153;0.0018748662420851494;0.0029774756900113096;0.010324285900436646;0.028000990538511888;0.025189216798486503;0.012735283760063698;0.008539642829332245;0.007033156232952688;0.008262125966978678;0.007436715496973813;0.008612609471272346;0.0040247354928456885;0.002800884346099648;0.18927616363355487;0.9669401928579342;0.9899021622371952;0.016678117038490214;0.029062494484467846;0.012398725316014922;0.012323497392416144;0.0022103449154746912;0.06454479351552948;0.003175485567807001;0.028374786832876045;0.023550670833954842;0.01474357068721975;0.013443661276783947;0.009220145606104504;0.009374222764710003;0.0023663152987906675;0.0036666133327266587;0.002385564605355302;0.0014705406684557122;0.0029782383649297503;0.00788905527411323;0.008749249965265441;0.01010016746891732;0.043961221527392146;0.08045340650074263;0.08436238297036858;0.1527534945236353;0.010842824109734419;0.043630781753912155;0.04076962063471204;0.005404775122036878;0.0031623467348905845;0.044892706984637695;0.04006910145339464;0.004725762041529725;0.008734682580934015;0.01897254589334325;0.03763800624823808;0.00822018450466516;0.037093298511716874;0.08758959530890112;0.04765543052920473;0.05320344730286317;0.014367907080362341;0.011178961082615227;0.07263744788404357;0.06993705990914577;0.11455320124057437;0.09883437976083213;0.09088609919167961;0.108637035394988;0.03435723234620848;0.10473789214223202;0.009904442842915365;0.021780557538800857;0.018802747661850538;0.04668915911802359;0.010142006866116797;0.017393580222471335;0.007366739020244277;0.013207882184673676;0.009685625329057302;0.009343675336347553;0.04821077054651736;0.056116762412724744;0.029904379610528255;0.0356495210905944;0.09772951160736168;0.08498657574631396;0.027114100941484778;0.044798945536735316;0.02406015655054647;0.011765402226880614;0.03295201281277675;0.03259254552691781;0.040571901288645525;0.02352778780347251;0.025132971533404404;0.1036070527937369;0.0018897323330578915;0.0013280333227613942;0.013848215084634206;0.0031925790480671346;0.030907064193737562;0.003434345266170052;0.006490204479507933;0.059510197305756574;0.0705419209293323;0.014707769077306303;0.02544435300987011;0.007832475789805107;0.0010487518433983712;0.005717410782530319;0.04241437120074812;0.008163409308243726;0.0006202152204503765;0.0038338173469601175;0.01338115226881029;0.0001458573979590298;0.009800227625204092;0.01282003696121552;0.017425075587557137;0.0061942167315712235;0.03740172369955129;0.006884671170022298;0.005546710342593609;0.005909626036009289;0.013053464623682124;0.01835241628480513;0.059479034305023486;0.01528213703652422;0.0342794236712079;0.05663140825966249;0.05729229248677128;0.06067038818368776;0.042631750292857096;0.047016411150015355;0.056247988594214475;0.08346908387487759;0.19538465171336225;0.5266928891407611;0.9876939827065802;1.0;0.0007046847876590036;0.019440689912226253;0.03270706308866097;0.19056720639217356;0.06531782778518222;0.04553364127493644;0.008381377258282287;0.012510289496511864;0.008945828396637972;0.050216990343859895;0.042320287135432184;0.04078175864414057;0.019521890508849386;0.005601346331354631;0.06406245368647345;0.07843182383554802;0.010897211226608312;0.026625018173259678;0.006778711974590276;0.010147211257064486;0.0006150470988836324;0.0005276370233617886;0.009160919896916963;0.10957824898729568;0.008729462165733264;0.028537566200183703;0.0081409942304412;0.015117001205501602;0.06409678600531105;0.016257084384053534;0.0016719768112401236;0.06441234579685359;0.07420654936717612;0.0362368003585952;0.0502198502345427;0.03555463323398428;0.019668421540424273;0.10106744969778975;0.014185041951316832;0.027320435921802683;0.1441240377324526;0.04702312630521731;0.01421380064625381;0.2932152554106681;0.0023175494029167446;0.04851614856826819;0.022462199563293036;0.09811723505963932;0.010958972979342094;0.010343446279052447;0.03332852610021517;0.02363155387966914;0.019403061039781174;0.011885835214870315;0.003296206169717627;0.003022033231505945;0.0031327513006850797;0.0034836471877107717;0.0026115346617585256;0.006585213906967339;0.0027168308674081062;0.05742659311777538;0.05387505204657813;0.04618617198485328;0.002518540132110061;0.024191298018234893;0.22832246367211223;0.025524835188355837;0.03979602884111398;0.12416242437082603;0.1669755810884808;0.01859600302240373;0.01781003794280701;0.045466728399876366;0.0444231272129481;0.1237560516916479;0.12325140484288737;0.04316409255394543;0.017274975495737786;0.1376180909525905;0.005482353301452445;0.04263200477647663;0.07999876565461468;0.001087191320519135;0.01658265417249535;0.008520657666483099;0.012712913670048403;0.0006541913317689481;0.017250709011135994;0.0011437112143483283;0.026950671942901787;0.07273974431127812;0.03620035288937354;0.03706333452199076;0.048508762339559613;0.013923725866462518;0.023006328309856106;0.0537702709068242;0.07638895251847888;0.0057090904856582445;0.013232197140110525;0.0007155807055642088;0.011380222367032167;0.1969972699487095;0.01177404849683146;0.04007703229552414;0.177888643315648;0.008548842012915609;0.07157487008641175;0.004217685232167395;0.025130194879396776;0.11730021972013167;0.008814240108136258;0.0007498224864540362;0.009836475546801891;0.002485791106389192;0.021279097689358744;0.015586692554567533;0.0146708971132973;0.0068132828760775815;0.0019664487377547206;0.0043984231554284785;0.18046097486808305;0.040279879245017566;0.024989611317149045;0.0040761227042965635;0.09617958073496065;0.0037887299171437865;0.0017161836284142783;0.029125760205886145;0.03632637025281252;0.44649632988154225;0.01722730951346374;0.00220276973818187;0.004870395462773462;0.00356530874305589;0.00041420419180512776;0.0006108921046962669;0.002827308459044489;0.007822872211629004;0.019888236937273807;0.0920649477828124;0.004675058001000917;0.007744058818278561;0.01457636022619806;0.006828215779165098;0.05182889728339545;0.03693235480914906;0.3101767305601634;0.017646116048244113;0.20740877617628042;0.01163111027497905;0.04144869676037892;0.017309472121205392;0.047713212792362354;0.020020792827352286;0.027153293052078115;0.0068787199682498485;0.0066458781602277625;0.002596893630083847;0.026110444364058957;0.03784787508481191;0.006281852721858079;0.05210625402034052;0.00544210450356179;0.04380175103879086;0.03379940438288914;0.009721032314683756;0.000633192849592953;0.08916243935624861;0.0121299923139212;0.017732957048369333;0.001415828482984465;0.007581238547710825;0.027830697095917078;0.010156160584395986;0.005285218771085379;0.11413182309973544;0.11755509324458653;0.028554902778765174;0.019646179021527536;0.0021298058758610432;0.07598636030376983;0.05703517277681252;0.06054184777420612;0.4936538176999744;0.14154818425729299;0.07106716746551203;0.03503871918132065;0.010117360729539141;0.04530890811211998;0.00807892190670192;0.010070393684315148;0.015118111247147844;0.09298052671698853;0.045467823984572865;0.5514889168882802;0.04358397113483876;0.00047471356006533345;0.0;0.0012243990035342301;0.031000722977779466;0.014479140162349387;0.0492384664159504;0.03904815741755014;0.03533989028556451;0.002358920695079902;0.023271336007338547;0.01729280164825356;0.024049911983453614;0.036231208261239926
+Tris(4-tert-butylphenyl) phosphate;0.12320875986221443;0.13178628159600791;0.12202563310811913;0.120720980708572;0.122279186546843;0.12819975947348292;0.07615913094694642;0.12370122294021545;0.12151114422623578;0.19062602315374702;0.7839717416295157;0.14117598416042704;0.08143639452148901;0.12354335073666486;0.12073624799742523;0.11743855894818805;0.12678208402801056;0.13098560830570127;0.13026285896609754;0.12985713698335136;0.1242168077442836;0.12224547633623424;0.12273557642215245;0.125599176585372;0.14598559959635843;0.0020437859242335133;0.08473496715463408;0.5206937123636549;0.8990440446303055;0.12296132920474778;0.49537329067950553;0.032315896541248494;0.05019518513469334;0.09139504758953562;0.08283168425011848;0.13092885084412575;0.2922409591280991;0.9360504016414951;0.05833012465840318;0.06922287928609523;0.01940812323112743;0.07619289519864413;0.01686583667388444;0.0;0.0048656090998569395;0.0006583102325640647;0.00040636968260824116;0.00028868674953927556;0.0010318843973437248;0.05579782964265455;0.04181214573434125;0.017200876833093768;0.0021315613048868303;0.0006846076255530606;0.038975916395711234;0.07878660741918969;0.03747186835117619;0.0527200033188929;0.035534094097449;0.0014659204346341046;0.02666498177953699;0.04706353642024206;0.062395254780408894;0.06073808715668796;0.03696455721423662;0.049358204344583566;0.05223212302237115;0.03858239726616432;0.03772399760400082;0.038178060107426436;0.03510289910317897;0.025259394857338687;0.015148067529055412;0.015980751754293997;0.0171918218673574;0.01730377434875374;0.010763629424689131;0.01245360379037584;0.017506525405481966;0.0598613225421118;0.027021713491970287;0.024852002413185633;0.019865830304338597;0.01981818832953874;0.024541086656198533;0.018105553972516734;0.018336021446576038;0.017414713413007415;0.04010763440019676;0.002493028071100524;0.029331792725136623;0.008294357832534679;0.018719047603087773;0.031981107128813274;0.03394260787975169;0.017181819340591657;0.019163026096477444;0.02913175484426126;0.03480840402426893;0.030121518110913452;0.04899075638825305;0.019673295411689048;0.020405778746285963;0.0206275377426592;0.016299075665337795;0.0791448996344642;0.06989531089227172;0.07380947155807532;0.07551281851636314;0.09086785580180344;0.08513074842650088;0.07772854611731077;0.09197425810279128;0.0900167179926565;0.08701439740660274;0.02211153959246609;0.02208757044289843;0.17366520043080477;0.07201181549774337;0.01452433872807726;0.005334095054914989;0.02837483771577445;0.06633972839804093;0.07075640547094827;0.000887052455495064;0.00397586419478308;0.004363833194314348;0.015615660811100291;0.016156632799664585;0.015687117584197278;0.045138792752964396;0.05813648131457163;0.02589816565481681;0.3827900789763912;0.12473647552470572;0.04976340916059449;0.6849907257065118;0.08533411395335369;0.36999448449650557;0.3099671871687817;0.08637965545827864;0.37786404198002976;0.05818009494259071;0.04968689200043223;0.19651679938711233;0.03938155775201397;0.04068708065742038;0.04871988074205079;0.06631696247759056;0.4941647252992551;0.0572613847511679;0.16995003930126423;0.1616566717492045;0.3033081894835285;0.09434467870130181;0.672247322361299;0.8609536983591328;0.9345032886096483;0.9133073133348675;0.007623671155367864;0.8554804422802722;0.012581721190777365;0.024874133768021472;0.004753906224713622;0.007057780684918813;0.0029959397065824215;0.0057001323040483665;0.0022698967351403266;0.0036103594871234688;0.0159363541085023;0.009740817679366293;0.013929953249110984;0.004547303209548767;0.0010693389361607006;0.0007046847876590036;1.0;0.0027827761408712954;0.06457650894314178;0.11349155724820781;0.19651803548590097;0.1795607263985801;0.004863039045435331;0.10081343636084579;0.29729042525107846;0.0035133155207663844;0.0003547370149873002;0.022720719153860005;0.0;0.0789274402008831;0.08190921473645767;0.1006171525067617;0.10068046634785034;0.08061469527510927;0.09285071569154658;0.07633336265745072;0.09472051709666762;0.09318556106390805;0.7210801726928723;0.7304507045936747;0.9021581247688746;0.6171526233961004;0.8890056521869956;0.7688924669364325;0.5747102477033307;0.011685207545139359;0.17721168179728183;0.5824716206130367;0.06295680187573272;0.03243098270206609;0.011505578293571012;0.008510420463631301;0.08187312809205534;0.8140170334951699;0.1343905539402515;0.014829269166108142;0.05132260730419224;0.0696408327428619;0.014472958973145461;0.0011749066309640456;0.0068597854537374115;0.7877683060022717;0.0529805382152114;0.008900738375509091;0.104986400922469;0.09662384138021804;0.05739866045839652;0.07915558007856671;0.04904754462769069;0.06618132658895907;0.026434127171135142;0.02775762333753976;0.02448099260768508;0.042985958622428586;0.05369995151916247;0.015742243014957625;0.032547925309049444;0.0849709643302082;0.18833073104208106;0.0636853911051715;0.03312074629396876;0.07250242531339413;0.021290047312558576;0.015946907380595572;0.010834624079403169;0.016869957419057346;0.024835140924966793;0.0;0.0016549384981795583;0.04622838654777893;0.0011787063751983395;0.03598933165258646;0.03611959584420359;0.001468957316331449;0.10621197327341782;0.033831601967864486;0.03663472663968905;0.0357350135872487;0.07405596176284532;0.018182220943214266;0.9358151298693912;0.021740552793799297;0.042555946503170496;0.03406698865510647;0.00069944125436138;0.01370104983992524;0.02131264534314237;0.048342054776477676;0.07681880801199498;0.06746654169291068;0.024440837886065835;0.00255037689190907;0.007458137117079933;0.052045106221541175;0.01838865222554637;0.03596020753005178;0.07221786711893695;0.0014798056736830677;0.01978509284326335;0.013061587158978533;0.03823592246180956;0.0139365462082421;0.01737535904149446;0.02163964417401064;0.5861507458703491;0.23389456294800154;0.014449507262004262;0.001894570279393424;0.06473700797896244;0.0011052170166331388;0.010032810985706875;0.005814420737885033;0.019963602051806882;0.01274586117866597;0.007073540898361223;0.02094960749147405;0.0530389981942717;0.039016796234179765;0.011976301692553822;0.01745283903147155;0.026358509562372567;0.019415723996211998;0.008015697836995368;0.5507635560842639;0.01162139553208766;0.047808463314664304;0.005081063720406782;0.01808816379680201;0.010987824016373415;0.07346525122754585;0.0;0.25310974508774575;0.008796100238046823;0.0;0.00048806461374071425;0.03962694492443082;0.5326394362896029;0.11403759865236436;0.6506842608598512;0.024951719890661327;0.006655461866780987;0.03729423608378439;0.041362461729406455;0.029819184744703284;0.05193661806531147;0.03836379931495741;0.009001922684725765;0.006052956006353793;0.003948980278381314;0.010149327497998262;0.8305837309622779;0.1373308698688996;0.42758177874700926;0.09476828385413472;0.07671388931833126;0.01258036920359267;0.032867900892993664;0.012704364221174146;0.015256107217363426;0.08411121477090598;0.10853894784161486;0.24130775309127317;0.05305392337728489;0.5671914437009599;0.013831550458414993;0.004648386474558186;0.002079273327378529;0.0007909598257546833;0.0019105936280545421;0.0021900318257227673;0.002088462289801405;0.0005226411068688131;0.0010258328663917662;0.03257797164738675;0.009080708230701952;0.11387496488835759;0.02051759528094119;0.0;0.047190037778296196;0.003456389675616049;0.00424101496664229;0.0331007662104233;0.0051225123414931845;0.0029644415903203516;0.006655307099454748;0.0;0.008480351958242373;0.0033317069363265383;0.0013357554618221592;0.005992132135131467;0.03447569448170205;0.017429522530987455;0.07098683125786542;0.03969239111610902;0.11970965672265177;0.0023512489439834043;0.0052498083005618704;0.002904996067384674;0.016233929698092182;0.07138487175016033;0.05621043187905796;0.9532342335514792;0.06931314153971983;0.13368386506549937;0.14822850192201933;0.26890091016969797;0.09981685585943985
+Tri-n-butyl-phosphate;0.0042542092241887345;0.0076509753918384;0.0;0.002594638571042942;0.0029218354687374575;0.017509253526166342;0.020493390323928013;0.01804413831405396;0.02027886773499574;0.0025592464673257747;0.00047842348551618147;0.0021610773437139063;0.01732717850561063;0.07469912260536118;0.012860331979885318;0.005906897345511987;0.0008509408833284797;0.005079345339304863;0.007946740875464955;0.006057648737215964;0.005300645612516119;0.007289405283018108;0.00716021457685435;0.004090478093130514;0.0006665535198874972;0.000929172081800115;0.015832899875005867;0.034859317351698324;0.019268275250310836;0.053482808689925276;0.004881960910809181;0.0007360066798780358;0.04277641432987688;0.01254850413198127;0.027427728924161877;0.014582880379474025;0.22684638951863692;0.010849889667290061;0.0011353660789301247;0.00015778800335399125;0.0010006668598523515;0.017387387270957472;0.0061769969236221585;0.0;0.02841700623173712;0.01720532004106488;0.020401980792116893;0.018102545551601592;0.017019996065765364;0.0011309638249627555;0.0;0.024686210136495874;0.013699204661396899;0.01830410825756676;0.01895164731957822;0.022127022536528953;0.016537721625413816;0.013230245623660044;0.000532712413754856;0.008255934865457133;0.0007817813207429615;0.024373174440382495;0.01821668515765548;0.022331083089769162;0.01630670133229691;0.011822084075157453;0.015546752218613505;0.006721595521938521;0.007570378121230907;0.006412534349294448;0.00037601301409843164;0.0006806229000946808;0.008551832316055932;0.00909246757504709;0.007989534057238413;0.0074354218396645196;0.0019210911159404185;0.0023170999588555986;0.00011491518757405177;0.011560431272090827;0.011612351420719485;0.011334127620002916;0.008283525671614167;0.008142506186819741;0.0012599595638151636;0.0010996161086917343;0.04816744912891869;0.05292593239799274;0.002170658826157627;0.13609280451674796;0.000778071048671805;0.0044453987913146515;0.03438440126098627;0.009591061870198583;0.010059198470719635;0.009942248823569956;0.00879124620900448;0.00547367367620659;0.00985393863350676;0.010643281870793749;0.011470872093910331;0.007027730372745767;0.015403240146169325;0.0010472600633409344;0.007253587749612129;0.00904643909284077;0.001939689958437788;0.0017067236993768289;0.0014253677103151046;0.0012147044146439555;0.0017561511441093582;0.0015116040394799264;0.0013840342908184602;0.02457735635533037;0.009008058488653894;0.011432548342398898;0.010034443839030625;0.05230447616902382;0.017475487417123143;0.0177924142840565;0.00019340677909058593;0.013097279503552639;0.0008100069093410112;0.0020867597582751463;0.0016277165331817782;0.0004852002624117749;0.007093391572190143;0.0006920825910883602;0.001984996313390832;0.00020174979039692414;0.019649697167664303;0.006592473655381954;0.020646560508432367;0.02911652543862385;0.044494789533587466;0.004136732140610815;0.28895737282771855;0.5255262814526965;0.0202569069381495;0.019808087020628952;0.012045955646898494;0.03894086144796859;0.011580453776675168;0.005884153856636811;0.03110825713976829;0.0;9.253089452363147e-05;0.0;0.055088533353302827;0.03038764315060659;0.023203688639478453;0.028388395168235714;0.058700306863356394;0.00042142887063926414;0.012291239598441297;0.12102531442094881;0.10934768976164443;0.0617956787409955;0.1434168000645916;0.003504308045541358;0.0526392571278608;0.021794827292079696;0.045790645171477753;0.046934651702289644;0.01784907472907681;0.019818290401660447;0.06870989355797313;0.029536853206190903;0.03338290266654588;0.05688763316027252;0.05334348802428097;0.028968055172427985;0.0003037576830046735;0.014187122977710017;0.019440689912226253;0.0027827761408712954;1.0;0.6555218465322289;0.0007234635488918697;0.013016769074198586;0.013834958838031207;0.12008408192625816;0.01274953051572847;0.002426538732962483;0.43130918809395125;0.3524555209146781;0.6161504765032292;0.991258783004381;0.01690207471356053;0.036964513384722605;0.03874926667383495;0.0030130817886008213;0.046128083613074994;0.028372343274731066;0.002186481871066572;0.015716809347262776;0.015840915882232975;0.015718132886964352;0.01014238849256394;0.004793218283131593;0.0191884014326078;0.007638429223421286;0.012666011832371971;0.007017032961332437;0.2220957309198304;0.003399359582087452;0.011377445517646976;0.027149313280082504;0.0005534951989222835;0.011365888762235156;0.030542479830255324;0.0022390835061000024;0.009142215413175987;0.44125266690723036;0.007215225953204829;0.04973061083602162;0.04459926863028669;0.004024991894766327;0.000867279900208564;0.19957246277143253;0.01128784314405485;0.009596808163387151;0.0029324344275761145;0.01797765259422212;0.030759765504059768;0.04111865522279421;0.029187347034534936;0.03593065978493231;0.028339859165881588;0.0097654054814221;0.0009841642172521725;0.0011889985382478436;0.020774405875706177;0.01641212580732402;0.0016105546614693402;0.006035553434157976;0.0016592810464788601;0.00985143801199738;0.0018514989507914343;0.009736895742208493;0.012527487299457584;0.05117243999635067;0.05371574960752842;0.012714945414869935;0.07864132871105131;0.06831574303777119;0.01500472195964868;0.017803906338877355;0.03982637883494194;0.04044963394007862;0.055805565513761674;0.05879390418522577;0.01257837952955822;0.01760190362477281;0.02652066515542721;0.0058995207418817445;0.010587524790772903;0.007094978457142024;0.05173728141029436;0.00018911403253511465;0.016374647012197607;0.02493495924682652;0.004273494511279792;0.0003165493693693615;0.05884927443109026;0.0023897335964316356;0.18773132174345517;0.1300959325699819;0.40508097538219134;0.014056879280465383;0.0176087479619735;0.023842966504506423;0.02830991511900193;0.0558240249318458;0.2049135537328243;0.024305715365705496;0.003855825343850443;0.003697258808599488;0.0;0.0011010777488171277;0.0006244474922980891;0.0035510627954953283;0.015627574249762587;0.04606463024298106;0.005762372661303107;0.0;0.0022380970803809468;0.0007379396893404219;0.00022273085334410372;0.0008584748244883918;0.0;0.0013910018118236565;0.001568015555727457;0.0033518376733029614;0.000803554884380707;0.020943681023923143;0.0005844365093836113;0.0008129632600143269;0.026686465557196563;0.010474454431169596;0.0009302401498294729;0.0;0.16610800565459238;0.06224145009662555;0.021019500590647736;0.008005999797765041;0.021873416539723953;0.16917043985387323;0.0024488702425317067;0.5108561970656583;0.10173384545984328;0.0;0.0;0.0004311448185443103;0.0066406391260621315;0.024415375282599013;0.0440278985194285;0.06392360884476322;0.0009885542858382825;0.019425316203659036;0.003320299985787867;0.019740187866040614;0.043418937649875665;0.0;0.01363731645250894;0.0002765962864727158;0.04839273276306674;0.0053084398697623774;0.0009388333832042892;0.06684747889648551;0.0021868006739708223;0.06170830372690315;0.001317348032040658;0.0013631568305980436;0.05138627783177228;0.022831759993102968;0.022517382089834365;0.0;0.0005313875811349737;0.0006311419598806836;0.039991405231313164;0.012764494716694427;0.031551256073247;0.001193173807202542;0.0013968640347891985;0.009017376412935901;0.0001359202620819297;0.029366483919910442;0.04581502353699104;0.01488957858770124;0.011649656192043377;0.0013610062871136526;0.035950550767816704;0.00710001399148237;0.02533182038527008;0.002774677673841911;0.00010987102076901947;0.007418633454005172;0.01404157693112155;0.021523378767549298;0.0014278376554506325;0.0566169915528928;0.016177548295523064;0.04027852162957433;0.16224234922097308;0.070497752610438;0.02005215863067257;0.0766863564833112;0.07861739083882198;0.07689707348458116;0.03496962641118316;0.03486244257522974;0.07674310685364213;0.018519056184549954;0.0;0.000342587705918804;0.026632435901755486;0.04094733962133024;0.0374426047153747;0.046721792864251536;0.026543184925554075;0.009464786036999821;0.20547785166503893;0.15311609825639327;0.0661232773443774;0.04711128583308551
+Tris(1,3-dichloro-2-propyl)phosphate;0.0009275807684809085;0.016544945580338387;0.0017689319735947821;0.005234670766917617;0.005865358411581325;0.020004647447397567;0.007718607092910169;0.013034044946122208;0.010929446757194417;0.005337357427199722;0.042939317047613695;0.0007637444088426947;0.0;0.010347708768874852;0.01050605344189904;0.0034212691764680054;0.011469118536224758;0.013041046952199759;0.013393225587248408;0.014155231826661827;0.004485872553633124;0.005846286041626134;0.013579326642481229;0.004641507158660006;0.018057219073005566;0.028283670003645418;0.05069982363536155;0.0704895298796756;0.044908170242887346;0.10761878015590085;0.03533296090092575;0.021182536235184086;0.041128095241768234;0.005594455470250842;0.06884897592891608;0.007383107788915081;0.02372721465736143;0.05944462467835597;0.002107853158146678;0.009751093440419096;0.008003478224180372;0.022081909655702035;0.005131308327215989;0.007568115169236656;0.05308486096118013;0.041982671561209293;0.052676521181145755;0.04047129998924862;0.046830523433095864;0.00594326018371029;0.011141554712192024;0.03805389059157334;0.021871368034371633;0.03396129000182784;0.06434562247353447;0.025981081848562026;0.015160999618483752;0.009959184143443251;0.006464285881628214;0.06018850224470746;0.008458486578475805;0.02818835978543635;0.020711525720915763;0.023755319057815222;0.01636942012179188;0.010907413691403746;0.011672803474683703;0.007935751745536493;0.010995863898390905;0.009281081932826455;0.002012231523367427;0.00570626563863829;0.06871234215302724;0.12889757002308455;0.03532593177106292;0.06155746699759225;0.03432256748731499;0.07700448470636795;0.021409885423357932;0.014833174259372698;0.05756347000207605;0.056297878597499164;0.0330312493510629;0.032959323547130014;0.05893691064801578;0.04467830377971306;0.011308736472389821;0.01659155231931587;0.08390325626473093;0.11525054091488587;0.030242736187888773;0.4664602430955907;0.03365114359562395;0.04243241607309402;0.046376066998454604;0.3617287776487466;0.10505179922892767;0.1382430702357688;0.019100259796854657;0.09177148907441929;0.1885124355628653;0.07452237803637116;0.10422660985886478;0.0775691170327581;0.05728239162005442;0.053928541287064535;0.048059124934677344;0.05208299144183034;0.007633876578878184;0.004116039482232023;0.016144257718748594;0.03399745215448725;0.007963034027384162;0.05572946146977537;0.058253287593177834;0.011381108960730437;0.015084483274365132;0.24488482085138163;0.02270349951541355;0.05462413962029578;0.05027805629960653;0.011373586287436756;0.01172388468100829;0.06144927478530079;0.020981113486138677;0.06166608550329519;0.0372230115042578;0.050547023222936416;0.16207139871365417;0.03735006750007852;0.09701535636582216;0.01896681749239392;0.020257259023353062;0.05114616891481093;0.030128430960584148;0.047542414941283986;0.03570902052580464;0.029830583847943376;0.03895387006615939;0.06410423053880288;0.05700000371525184;0.02860186027995089;0.03736378232994502;0.05792021923852137;0.026409018173419098;0.075525116314872;0.02323637849853322;0.0044234635527995135;0.02304472493885032;0.05014941007188862;0.0008950560933039944;0.033580018349502756;0.021964463153293867;0.1502156158095657;0.026283312036945145;0.0374094025082179;0.039947138844536066;0.046463996907956634;0.044248937882391565;0.008980193882466844;0.04430488928485051;0.10921586999636991;0.09566708586119511;0.051352624809496206;0.0702202240818089;0.1458005651596836;0.15632726579374212;0.06288014961837382;0.0677491281875038;0.17208662903244054;0.17972452195989214;0.028963945965951886;0.008504829758179453;0.019631831887597023;0.03270706308866097;0.06457650894314178;0.6555218465322289;1.0;0.07612102096518357;0.02726128894766165;0.02545693523091583;0.0049621549181053624;0.009609909632468397;0.03579266492063595;0.26452578075853733;0.2514406738315683;0.42394475831392364;0.6443315649634365;0.01084434928789001;0.018608097407340908;0.027737392239990704;0.0004846131508784708;0.08611933858895451;0.001652386482027975;0.036596905730727054;0.014717107328502475;0.01507249844267902;0.03505799511616761;0.029980209949944707;0.03672854586377441;0.03396753504135573;0.040713853808277654;0.03732449015870254;0.07669506294135782;0.04126450037071712;0.017493238371913838;0.04216381674851742;0.0533352079728544;0.029554419295113415;0.012911056597684014;0.054322272721571904;0.03220140332323254;0.042837277775602145;0.27477572224344426;0.018727037158509968;0.06932549007411075;0.0368885107204229;0.018921592993928683;0.01558814391754135;0.021711691675302854;0.04124351036703774;0.010722550616277726;0.010271415794258857;0.03664421079328677;0.038755277915788325;0.0450274299245331;0.033284530694542847;0.040254803357514565;0.03095471784720852;0.012517756769348722;0.007483909172322007;0.007156366117602442;0.01964313517300263;0.014290056735381392;0.01523230942296995;0.012369777391001667;0.010459083664986915;0.05227963873691383;0.011508715171199894;0.013552739415138366;0.002906493930634237;0.01128467259776074;0.011371328887681697;0.011818669337420172;0.10571968293053982;0.00023346373830839863;0.012469496577562836;0.02604247334009403;0.05342156403712904;0.007627489430213085;0.0012457231137804922;0.004848754924842505;0.07702586427787785;0.013117010333530174;0.04271739369300642;0.014765088074095344;0.013436047228434013;0.009517066214579307;0.007173028370131848;0.030551122539155796;0.10783384812411506;0.03264610942639555;0.020243414126762758;0.012133091784189764;0.030625105456589523;0.007730539284870718;0.0858593419967619;0.021623115459837777;0.300118505594843;0.004655181777562659;0.001475199404544709;0.0044552348888163874;0.004625710303079449;0.019337903385155335;0.13003506569475987;0.001527100079371543;0.04239573540965045;0.0063652849658407526;0.005540629081577709;0.015525930235934089;0.010064579774298928;0.058229034907114584;0.1067420138210076;0.051963464464990936;0.022952224280346767;0.01028604564039605;0.03712151560231205;0.04127965788258466;0.0;0.018546074889677928;0.012050047088661047;0.19901741912808282;0.01812520511331012;0.01222790693289578;0.014291022429740086;0.02240161420899886;0.0;0.011036802338436593;0.02063685164387093;0.01413658827093287;0.033756676548882786;0.003332899845562793;0.03190630913239781;0.0027309751715876977;0.01102832982484275;0.00861294288854804;0.044354643373296525;0.11703129340682114;0.006112337423599152;0.057059607045457025;0.010107688777498708;0.0;0.0;0.0;0.0075414988159067265;0.04334958484928356;0.038321004479051735;0.02977516836398062;0.045327110770033985;0.06796576948013933;0.015682081514559763;0.005539685905267157;0.030012210477045463;0.007237488523383382;0.04296814424063248;0.04275511802549025;0.011941511191581057;0.09518239806638232;0.05958357613391585;0.041522601522940746;0.23360956390443835;0.02620852103287531;0.020143044481201116;0.02023791032346876;0.10443858784868701;0.030320781099531433;0.06492418233173784;0.0;0.0013394014873995951;0.03727512931604384;0.05760268137037675;0.0863976697394352;0.027846488998083552;0.003634796673715097;0.004712333164629423;0.040223302649038915;0.047954989431528684;0.018167658082347472;0.028507143812082587;0.1244257110901428;0.030901455452028673;0.0207859820583748;0.09056516004782053;0.060800599896810165;0.023575001763535913;0.08258927757186921;0.001211227206819812;0.022908679841114152;0.03663336371951969;0.047113587076900505;0.05198520792430141;0.031000776857334347;0.10472254781460205;0.17416558759007827;0.18094706992636658;0.03088890339338421;0.054532871358601666;0.06694300736612416;0.0734846273506637;0.02937228618261225;0.05851557665823144;0.025082089585681;0.02757777511087226;0.04047609906783574;0.0;0.0;0.10406491940642283;0.032422113846586144;0.008047768124204279;0.016067410266612427;0.04563468729483406;0.01464831194393402;0.013386339459008504;0.019345257955607945;0.044646528148214036;0.03582478146918577
+Tri-o-cresyl phosphate;0.32137834566585616;0.31752284823852556;0.32523872476735666;0.37724748780070966;0.38266732792110686;0.3651134515103899;0.21312716570293236;0.32646333803490596;0.3254238631871427;0.33544477802946054;0.20301135447757127;0.34216189593360663;0.2247303367583513;0.3250570571205402;0.3203147787468954;0.30879258039703905;0.3300913995533199;0.3258469961537683;0.3162685603556607;0.3229258329363655;0.373880997159325;0.3689177435730232;0.37151994838617153;0.33712663109144897;0.3399683716738714;0.011400398924661072;0.333697965502599;0.4498516981609289;0.17041891296540884;0.21210438775168391;0.33772617869452687;0.10584867705755034;0.1397952985704915;0.3840080854136668;0.23580068946341823;0.34683334341711713;0.2794317627291509;0.10599523898385718;0.04288034157779556;0.18951673071371677;0.05675285103459474;0.21639361055377115;0.11148865376442899;0.00017969132454357384;0.061976869754842234;0.01669059416089895;0.018101081369504536;0.00983115965318917;0.015184562578538199;0.16120538735313664;0.11842967405625833;0.047866363128436895;0.27861638258745086;0.25806784883403805;0.11408122892688977;0.22304666470278198;0.10469343688381252;0.14636226139456832;0.0981525158943658;0.00247340986498387;0.07566956968654506;0.13050029002261043;0.17200008299124958;0.16844957075990036;0.10226137781856263;0.13772527477409163;0.14479453346785356;0.10626070275667761;0.10418026388015098;0.10490476781635459;0.09757704457880303;0.07301055136994432;0.05807577632582908;0.07984075212655464;0.04988801510718476;0.04299259872766632;0.09877150353544618;0.1284199575189616;0.7099571949240252;0.3523262792905519;0.15311770425827198;0.14933179236061087;0.20066649181354126;0.18979425519651533;0.19064300783147214;0.13110275581858039;0.161061281213074;0.16394105056767902;0.35448915057550934;0.024992061939226953;0.3444907103244251;0.06023677187705171;0.16391704055102413;0.1654570349650807;0.1816916417159187;0.07786017978404629;0.09797223714951635;0.378478864995835;0.4251883560253741;0.43697436074319695;0.43097433604659796;0.19920995734963692;0.24424291968126066;0.1222861132348779;0.1408927936312378;0.22533922157454386;0.19869899508428418;0.21014932575800835;0.20556840084117672;0.2483285490167305;0.23221035170598128;0.21379795704257415;0.24919461627488637;0.2481048010263526;0.242987970567195;0.06181758095580642;0.057797999115437426;0.0640317643418642;0.2008532025192806;0.03574458344833268;0.016667073714891397;0.08089360955734892;0.18307149747574725;0.02240230226239;0.01920897133266096;0.025418244330306997;0.028680602195178196;0.0599974761046917;0.06063154565279686;0.0592048013813435;0.20064105932570034;0.08232059255397654;0.10531611606676954;0.09215905078264293;0.3300805580365244;0.1261344300692632;0.14722949279861555;0.11837292570342628;0.3595210447432026;0.38180319150729036;0.18875738108989434;0.3770768143235856;0.18529431076949243;0.1997352951156656;0.28023188086914036;0.2131468638196727;0.2080080984265149;0.20741984956290402;0.06529925139981413;0.09343911611731312;0.21881897151148466;0.14843376410056916;0.12491920414758662;0.03564562833108864;0.25409588902519525;0.2560972268593161;0.18113306926341333;0.10052426807341043;0.12894865288564292;0.01112615214718037;0.14120013159017664;0.03016701081673669;0.022353990969065575;0.007640898838069417;0.016379445481707812;0.0886137348018089;0.03035453259083759;0.0153478137327538;0.019402561167470814;0.08880210262154725;0.027376429766774908;0.04357660133381776;0.04357435124241577;0.2110269847460689;0.19056720639217356;0.11349155724820781;0.0007234635488918697;0.07612102096518357;1.0;0.5267590472360822;0.46794049041829217;0.012153369920627037;0.2267773262232231;0.4312174198678953;0.010270635584353368;0.017228730114284302;0.028363759888665605;0.0;0.2276275443672979;0.22422200917934995;0.28593024512143395;0.25774851925797176;0.13072388889886383;0.24977781982088965;0.20457586693199273;0.2453966984429229;0.2397920647271424;0.2626267643637083;0.1962495952297482;0.16756916923837026;0.2835154992767366;0.18083899212603524;0.24454487598857058;0.2567621603786834;0.10345898196564383;0.3458778175800812;0.32675737163522184;0.27234579163825984;0.07814198325888742;0.046544385700741264;0.023380473119988057;0.24148812646516934;0.1380482390838655;0.07909247055797969;0.02154796122284565;0.14153837642400083;0.1948843631721096;0.11233614446882197;0.022270080107936525;0.028704302605336626;0.1430354096127195;0.033410180706937576;0.021116097757681734;0.29804404725502065;0.2598382339985974;0.16780729356691085;0.22466770311297313;0.136074250953259;0.18331042220927893;0.0762824701741764;0.07967648336076398;0.07050452258819934;0.12024460117371831;0.14925999577880428;0.0484907648986687;0.0904336944475872;0.08141240088430057;0.09512403450061437;0.10233305303320292;0.09262982623145308;0.10502654064855466;0.46742196368356226;0.04049354853869169;0.06800026094860459;0.07064797739462796;0.008676204990741562;0.016629108982364332;0.019192375733833745;0.0858234848048349;0.017770028561035548;0.32054658807059716;0.3190436864870384;0.014589835292527326;0.29751758153329577;0.19986439545494006;0.1605077791807107;0.19703533512287733;0.21775592174442523;0.03815799578724547;0.10814883604863003;0.02918427751022031;0.09025589409731237;0.0023561810907102823;0.02628918389660636;0.05987996327482348;0.0486460495348068;0.14524632053459255;0.22829187407822893;0.17857549544572285;0.17377827791717004;0.0054421840325588255;0.05368330100063757;0.15958421866635494;0.09171441491924066;0.0652646367678947;0.16664061271220565;0.014387589063910968;0.04369696737161698;0.4342559737234875;0.0446394942184902;0.029554988973624824;0.14742994254023348;0.028941259576215732;0.2831985744417115;0.04283975525257601;0.0785643984699249;0.041860219367137054;0.2677001680693052;0.0031105047317124875;0.04910964400417574;0.04777297680486365;0.1117035960283695;0.03715219372268316;0.025209935200154732;0.05072639879322999;0.10906341302194901;0.13205186267563226;0.04463844409427897;0.38228788078788356;0.1593269853986543;0.04683859715969402;0.04688545393161422;0.14236163601558005;0.0558986871013884;0.12249967208909988;0.28998359131865714;0.05571088780311101;0.15602836460116187;0.1283320544041341;0.0827744810219672;0.05498682625460937;0.018098070079189146;0.0008006851291512775;0.013956001342791445;0.09531594199720585;0.2582423867276272;0.31758430349140615;0.06525875571610865;0.46985808370993537;0.031316323017491855;0.0419336657565016;0.15993638088971596;0.13823862746182677;0.15336415910853057;0.17949508995013913;0.052256438613996314;0.02305749479066406;0.015728696670052323;0.07714083399225022;0.07833557886849604;0.024549626968495445;0.2077340358630201;0.08983338635243582;0.09255267654715449;0.0658399520340422;0.1549024614090472;0.07136722225342763;0.033619266125577696;0.22682954427956237;0.3042904134719459;0.3348246638834722;0.22661081992795268;0.09103159283663798;0.02900339448435373;0.029474240572364595;0.0064133384107196555;0.005417856554785187;0.026327776050130768;0.022893964639383965;0.04321449068476616;0.010598603552638195;0.001070139935660208;0.07322116526931215;0.4007085987328357;0.0959361394419285;0.1829542409561207;0.004392690637805308;0.11244361041117085;0.0791149165089329;0.03051450572191352;0.14459989924142805;0.035809402327080436;0.011479381571193695;0.10241537967568728;0.025368601914802242;0.07147686353414053;0.005338156651103651;0.04421339037899539;0.048736394170205935;0.18891595310371717;0.18977654512579392;0.18867768662531398;0.15555727395385424;0.31749355125459794;0.007631035588325218;0.011407684899009741;0.11900808734274375;0.06228415129626941;0.16441309204757915;0.14759110378871257;0.1296169410197178;0.058200218052674654;0.3345675712541478;0.30469081074282134;0.26958120641879474;0.23090831315361618
+Tri-m-cresyl phosphate;0.7585125238086129;0.7368851994053861;0.7199095941164132;0.7774770642488502;0.7753345148842468;0.8087330430419205;0.8191920734418828;0.7886469632431581;0.7972045085729286;0.7782924117219913;0.2987481507996977;0.7675595341303566;0.8752699812055607;0.7806324280591166;0.7517663596486849;0.7770523967235559;0.7320210962750229;0.7447593316858939;0.7383729519476431;0.7451621535169689;0.755929369248123;0.7547037357877993;0.7359415377547799;0.7441821089917946;0.7186613646860917;0.0044481649734886865;0.5917704955922419;0.34840210545179723;0.21167714730861933;0.23958654778156746;0.19022996861701064;0.17480907481230523;0.26569192934130853;0.8928865047210878;0.4400244092720685;0.7747323958447668;0.33925918694868124;0.14059653260020727;0.023801683960891912;0.415169320528197;0.12246945401509807;0.45940378392789144;0.08657245699900935;0.0;0.026020096280233905;0.021149960581575922;0.02337691448595269;0.01924992669698315;0.021363105385903993;0.35140028399231293;0.25921871965964255;0.09833387166330644;0.10727958204244438;0.08822618596664249;0.22485319660018158;0.47554089490408524;0.22939849474730595;0.32156674833942844;0.21550106765828125;0.0038665482922062384;0.16348971733123147;0.2850963275717242;0.37706899359670715;0.3690430017860949;0.22393129259743613;0.3026052795645394;0.3182819471552748;0.23266415403322374;0.22949344292497148;0.22953842644554687;0.21622185885931045;0.15671945599079493;0.033706087280328735;0.05128419848707501;0.02833057702854775;0.021718068979435092;0.037496207744293124;0.04611732935111314;0.1714769726230572;0.07222777077171608;0.08081584497477601;0.07606779601308133;0.048426483018843273;0.04295981726249406;0.05752235021562886;0.026548433479781544;0.0516452458639353;0.05582282158611031;0.08320290133303278;0.020660891058466038;0.06705310393091993;0.021922903523504626;0.08697594759272191;0.098555461545995;0.10451852299847683;0.058215672626722365;0.05276032503175974;0.07624365286781767;0.12178050298822281;0.11922512419865947;0.14195571286989556;0.0868003784664467;0.10154564262617748;0.06650659071001519;0.06837483553814766;0.5017461424821321;0.46225799722604494;0.4830056544014718;0.48756999557698205;0.5745094735432633;0.5348867646171571;0.48693618656094295;0.5761418537668108;0.5687371102251533;0.5492824534850613;0.3837975832408205;0.33891375840712495;0.29751845643491676;0.42872225716442447;0.13491670009217538;0.03043671717102509;0.44954301716759126;0.41256546629644336;0.00815104184741388;0.011223505418195154;0.012103544695944143;0.012932073252790638;0.022735057620001307;0.023062914397485288;0.026441019469013546;0.09472336989076328;0.04520094739446591;0.6487597849408417;0.0611682135823703;0.7463008326911496;0.04659429962558975;0.07328950601387929;0.06587563169786845;0.5723012383023427;0.652133028449876;0.4420456683485849;0.5574588254497296;0.19839330742960315;0.3769318324145183;0.7503352625154147;0.19578243763989986;0.13502654543572132;0.1315704736162889;0.0796860063556876;0.09440542494336666;0.366773270891909;0.09042477804648628;0.06486439650897126;0.013091103003357894;0.5971986310170212;0.3189731731384502;0.3052511413299625;0.12093637061418748;0.15416497669076565;0.08442878973090107;0.16420454624253664;0.01879899962263503;0.012945580525969851;0.014854495137558434;0.015465458817227409;0.06491733815815877;0.013159759151146509;0.021578164701607574;0.028809439441000978;0.0335366635533587;0.018318567055590027;0.2503473387088868;0.018624925159107648;0.07069636034853476;0.06531782778518222;0.19651803548590097;0.013016769074198586;0.02726128894766165;0.5267590472360822;1.0;0.99007342275325;0.004098726952396615;0.3387623971509134;0.7675469037332575;0.015610905220500463;0.0020243817879973583;0.0088922652235258;0.0;0.837654747117401;0.5979207134009787;0.6021084225018378;0.5551437238412344;0.25961490359177936;0.5463944739320352;0.44162209750057907;0.8825887670210067;0.8753337020059265;0.6457626505024395;0.43497303895250594;0.33802654862531467;0.7058065087741994;0.38901254022121784;0.5699046739840454;0.5925735695362874;0.22388479666048142;0.757158890668204;0.5363162772319877;0.1725058075139156;0.0320146733491452;0.052549731982976626;0.02084009594057996;0.4189110318869322;0.23762314692229775;0.1620737719718204;0.00715701336627797;0.29482393992720113;0.3737063900734713;0.05811213811845675;0.006846627344347861;0.009382074336604101;0.12373935864322587;0.011798805078140295;0.09133765985625464;0.6175045862246072;0.5419359815825101;0.3480459339231084;0.47957504127778106;0.2960224873443888;0.40124081814115103;0.1622771445598285;0.1704928412158372;0.15047776507251026;0.260849868887251;0.3277918603108457;0.09336100699174524;0.19604749598154944;0.17188909726002552;0.1964247909869191;0.2240368604721599;0.20121744210823392;0.16529818932284407;0.20198816513947937;0.03937723098528301;0.023114846164691307;0.07578270449420589;0.0029394374975883677;0.005268205007651543;0.017130192660571406;0.040793862272225534;0.00922867874702238;0.22980961699993957;0.23021255776023108;0.008684457078954417;0.6227376910739634;0.08056580401393436;0.19330601049994714;0.05863227548655087;0.48114581504286236;0.021593068684946252;0.16099226875032815;0.016072494922855313;0.1715769212196015;0.001625479135882324;0.007926900002579201;0.11504067862228008;0.02054301047103756;0.2579661382823507;0.34612922944876295;0.3404177861494755;0.15636612784372494;0.011142361013099435;0.03486145553412685;0.24023618183611944;0.033278334772513234;0.06760749622406964;0.3046563302995641;0.08966937559593234;0.01798904363926371;0.15233418877589258;0.019578354429389166;0.05062136476764822;0.0741216203480665;0.015977510951148216;0.5761930787094907;0.02810614271762553;0.034764078841894655;0.012321809928760592;0.3266785186120001;0.0069877505475314655;0.03666995727841419;0.0558834620940472;0.1209470920090854;0.07578023769577515;0.03980573011937864;0.04565012451146803;0.7045473863862183;0.17363974276294813;0.02670199394686073;0.1312412724884569;0.07292138910800776;0.011744213838773325;0.016019068066598394;0.2943718345246836;0.054575029199040705;0.7419565483279628;0.09796983972049329;0.10561066677600613;0.030007189667690413;0.043753899598399766;0.028915153382653595;0.10223847001340541;0.008726150666874152;0.0012145540131408609;0.001165777204496163;0.14047293299992314;0.27297710907746947;0.6734997114422122;0.06710603172942897;0.2574472144374527;0.016959633069874035;0.07313893462237372;0.18885723374679045;0.06471517816110083;0.29226219112587726;0.2502919896037673;0.02826805963524759;0.0071667986979734285;0.00890961110129188;0.043617105925025094;0.057592287521245004;0.05368021532975103;0.4409416419702183;0.08943123211253576;0.08557164790008506;0.04214353584000562;0.2274819680905185;0.033623105768696405;0.032622716008139166;0.5022268413885267;0.6211021599156631;0.7200787610273134;0.3246406483253198;0.11777125024955905;0.009992531766692268;0.002163485195817962;0.0032073997677936387;0.004981000523332135;0.019556167166435514;0.009409406159229592;0.016799234848256413;0.0041731094217255515;0.0006363378038834461;0.026527451361922964;0.14020599240397835;0.12828499507124905;0.09691519743248506;0.0029814162342448724;0.10641628485607704;0.051439491602478134;0.021276337957256267;0.15488696853349998;0.014222030166951366;0.004691063227329647;0.06491277215778209;0.037885591498091266;0.027306131267277472;0.0021903974974410924;0.04090216607615384;0.07578634526123074;0.07922608903465325;0.0754673348635104;0.06554524729958183;0.0618640914519096;0.7740076007083327;0.011014872065863086;0.014997490986096797;0.05050281628852746;0.051601085494375164;0.20738546836039226;0.18508150827485226;0.1142791398976337;0.021444025279724218;0.6395533222495347;0.6190061606799823;0.21596357551469475;0.2079031537400895
+Tri-p-cresyl-phosphate;0.7497071333143496;0.7228702855100064;0.7048108973211712;0.7641524204972068;0.760974365760768;0.7950762107892899;0.8346987215043634;0.7777628958793174;0.7873094313414829;0.7634647193801358;0.2725647940136452;0.7541266140954039;0.895525217045121;0.7673920518471831;0.7386468300794737;0.7681098084042268;0.7150777579485524;0.7297287037936101;0.7248189258917742;0.7307233152776584;0.7419535319184157;0.741947294630042;0.7221656469287023;0.7284807115889151;0.7010133774649063;0.0073003754959430475;0.6113666678920927;0.3162778974156828;0.18670321059953732;0.23799522773527176;0.19022191275819758;0.17783798837993964;0.26034132902698076;0.8929532107931749;0.42949023290132876;0.7603636624419581;0.3241125954910223;0.11766193477979801;0.01949950329936072;0.4066055522054888;0.1211669053579884;0.44890240966320544;0.08366612700868159;0.00011244074598355878;0.025132920110228326;0.0235989862478397;0.026369389041625415;0.022014532809202982;0.02435621800692144;0.34697196003905384;0.2532571771552111;0.09618902127087972;0.07661633743840324;0.061562740985972655;0.22002917669772118;0.4647321255892495;0.22478602914080248;0.3147270604211339;0.21156866189295045;0.005012308691694471;0.16077318328553855;0.27857192782470663;0.368506657842711;0.3605797985465242;0.21944697853829442;0.2962598917183278;0.311550645516666;0.22812951820765576;0.22498466805528664;0.2254964891820297;0.21196708963970554;0.15439268236376333;0.04830018899489267;0.06412055222803055;0.030143965175144418;0.02327699251953282;0.038386300292849236;0.05569624373153461;0.13294423417679735;0.07864125819899748;0.0826761539972783;0.07821253551364919;0.05947862055740116;0.052268967548208284;0.07734857865078919;0.04673237018524437;0.05135851196358031;0.05555857206336475;0.09063476967665504;0.02163487341701544;0.07730969887518514;0.020437698450683193;0.07528200726483021;0.09641123785451126;0.1011156847277108;0.07700108776889504;0.0712727816750908;0.09225958385298949;0.11476627576717457;0.11759079518901594;0.14113934250212687;0.06974329881891665;0.08311744081762903;0.06292534230195694;0.06671394801829718;0.49176920717177863;0.45535752465928464;0.4742398922331545;0.47996829261761276;0.5661807581597634;0.5251657024759214;0.4779698363462787;0.5666716882905096;0.5582670341469959;0.5391190306749291;0.39931209155631336;0.3521206585654228;0.30883450988584793;0.4199036836437202;0.13948824185282213;0.030596048158449303;0.469762341375832;0.40531010820550567;0.009587320572132086;0.024968783671792154;0.014514869039666176;0.015899882892523382;0.04436047109263823;0.04472556844497603;0.05034671567157555;0.1189597807850637;0.04198222409833059;0.6840683433343904;0.07083752611474345;0.7309071857854937;0.04107380944683035;0.05310972558310933;0.05667233197136286;0.558329096095403;0.6390921094856487;0.4692156699023781;0.5636489423953511;0.20060206639212552;0.4166543483796207;0.7612858491465034;0.18788290109655373;0.12202697863678201;0.11324108373824651;0.09703615932584574;0.1009056976815119;0.3530906649025192;0.10872039247956684;0.0907257528125465;0.015646664264004274;0.6003964099554142;0.31451679519712544;0.278567607661598;0.09681212886234677;0.1282566874382784;0.08915495435023804;0.1415668167666818;0.02132997485181308;0.013880268827927651;0.016441110881353426;0.014574818641920118;0.07016219853992206;0.019041164318717718;0.02163839230977562;0.028998583365099816;0.0270641412390332;0.024668487159584987;0.26082690846998285;0.0150480879167551;0.049633439269050665;0.04553364127493644;0.1795607263985801;0.013834958838031207;0.02545693523091583;0.46794049041829217;0.99007342275325;1.0;0.004217996162371435;0.3308835923356615;0.7480220802305244;0.01784713600320486;0.001660042005848712;0.009039305792530733;0.0;0.8606444394590116;0.5969108419046146;0.5921023909200794;0.5472173131590679;0.25712543830266327;0.5339059566440566;0.4356697057644267;0.8964243119648024;0.8898592100685209;0.629525659159113;0.4175591195514253;0.3149710267081134;0.6927961604556282;0.3676208763966484;0.5516424948337264;0.5671044250998794;0.22642334893514743;0.7418311927104928;0.5171898629390315;0.16193463646986384;0.036617943490354486;0.053066149453159656;0.021696615356337247;0.4100023253951658;0.2196573493922999;0.15923890112895692;0.009716073069111061;0.2896854553024035;0.3852136661324686;0.05926038891358323;0.00919912087353763;0.009338557457807558;0.10110494191568224;0.008988855691113197;0.09670141651786157;0.601322167559482;0.5253361735420583;0.34027348859384376;0.46879516978305685;0.28950591330022135;0.39204092777464405;0.15909955838920595;0.1676557766666387;0.14814310691405727;0.25540632136690233;0.32076317570074103;0.09373435913143313;0.19234759205884178;0.16721178161895311;0.18892181091262064;0.21868269728357023;0.19761576913270415;0.16160603007628116;0.15833075821832762;0.04489322831244036;0.023543737698294168;0.07800156993039574;0.0020021094108429766;0.015125914533423166;0.017394344177331256;0.03586904290546222;0.013477603647858598;0.19872343867426168;0.19966309648988048;0.014118412470502297;0.6128172145553101;0.06490100111837;0.27126127452855575;0.06930944587601567;0.48104754158703067;0.026323591285700526;0.13535685854042767;0.014103368378698595;0.1680784727487096;0.0010417339394782484;0.007391684124345729;0.11313848930634136;0.020965072004258074;0.2520279007282407;0.3393267549471798;0.33292526865436156;0.1374754211050585;0.010831173833991238;0.03326372728477042;0.23339245462036562;0.031064429133928494;0.05910484779374111;0.29678027788445027;0.09463790194896042;0.021831382576645526;0.1129682548469691;0.02869181324238293;0.05512219053882114;0.0674068478943751;0.014298575200030897;0.5548547744055334;0.022819220356350686;0.032183343435529504;0.017184477334621934;0.3027453217762405;0.007482624238965176;0.03389251467736881;0.05518176495189248;0.11049056175406267;0.07403953262679454;0.0392156757750701;0.04721742976273175;0.7352340455789949;0.16402546148391275;0.029499388358003836;0.10458868751426413;0.06908070389592035;0.010809979902744921;0.014380253937320899;0.2806735131220461;0.06214174516330087;0.7726788895556077;0.10224410460955771;0.1061217592909112;0.03159962305169317;0.05197705989144868;0.02646125039634066;0.08761207217855188;0.007303292985790443;0.0019285058178133924;0.0018510565168947672;0.1270275050454871;0.2502411161666107;0.6628755863822549;0.0498683625187754;0.21539422395938226;0.01626750302560487;0.06993816308244077;0.18778766829471583;0.06142483509528685;0.28606867231214944;0.2395348300918191;0.02624492828703203;0.005841144789228395;0.00968964450336477;0.04562872713097468;0.04531339653335187;0.07708014934559572;0.42646346928192536;0.10152058454869399;0.09928978297196511;0.07241466506754522;0.25281302817975415;0.03738401778278066;0.03163548329877186;0.49172663622495566;0.6064432624296316;0.7093763368097573;0.3088231234754605;0.10324719386819609;0.014308972399875736;0.001949043745227484;0.00884685696398057;0.010156145743540974;0.016571645898924174;0.00926721948092029;0.011376751765091423;0.003225514433215109;0.0009279239952217958;0.0199141266975721;0.10231489433529342;0.12585114932102787;0.1093172406887498;0.006040279394363228;0.10260758697271675;0.04207818535487656;0.022384125393518084;0.17421827723044375;0.010190153487468758;0.004140491100162726;0.060332324683954865;0.037310915268791885;0.027015132852687355;0.001403160824895135;0.04337293926852553;0.06522319361995386;0.06978781718434632;0.05458551130679224;0.06058271203977203;0.051135769039971184;0.7642831105970173;0.010483427884697872;0.014203102341105655;0.04943662094050543;0.04561044742079684;0.20239161068448022;0.18153922959718496;0.08971907240353605;0.04387740608574453;0.6242338215900185;0.6060660635409764;0.2072133211995398;0.21535342072402444
+Isodecyl diphenyl phosphate;0.0030573311092864154;0.2196145993242214;0.015764484960959307;0.004883403061568121;0.00396523849015013;0.027934569118754048;0.024485929485338908;0.008902650936317546;0.007479150311595983;0.0034934138446316705;0.0013650274795875717;0.007879410756407716;0.01519608754639713;0.02508812012243108;0.0;0.005614143695050528;0.14352202409585865;0.19265851494371777;0.22931173214367445;0.20672516902513488;0.00031769972945410526;0.0;0.003744252024210823;0.005056180237331845;0.001968826772720046;0.7246675593508989;0.01598516239649564;0.00922583714683593;0.0025679189351644656;0.011275354751064474;0.0055409816335481536;0.0053953017074356464;0.028090089675777478;0.0020244369013340743;0.014385110691399567;0.008191770736579354;0.16127130586324176;0.0005591126016434063;0.1376513545617968;0.003125688658146662;0.0002581003611963541;0.0022361778742533396;0.01574173535809026;0.00033644123160856397;0.01180780891809019;0.00430381696313317;0.004929477634230576;0.004609151802536924;0.004541468002528385;0.00013448264667705864;0.00033315764820511073;0.03708403458801026;0.004523946877823854;0.009249121506610895;0.0013956511128279498;0.0023116391941073572;0.0;0.0;5.433303473182681e-05;0.00039090558261041216;0.00019996131222585765;0.0;0.0;0.0;0.0013792546424876801;0.0;0.0;0.0;0.0;0.0;0.0;0.00014320902167267428;0.010306149460012355;0.00877904162560045;0.0328435539824792;0.008194630168279891;0.004549765079554795;0.006942909414853386;0.007536217393980655;0.015435892815942506;0.015191258339507428;0.013796109026568724;0.03577583593221787;0.014824111426291154;0.013285439259029886;0.007901143821766158;0.03013549393876919;0.04240266320383319;0.01603664667243466;0.0002455620732250904;0.028547210861291007;0.0057511957121689035;0.015085353507648553;0.010079267444042273;0.011721100553443898;0.009559266991924189;0.026626372426497107;0.030556058010371197;0.01277087697995713;0.02356313445588349;0.029750401437244993;0.015857171089623957;0.01638723520354598;0.01342861015433279;0.017642568496580156;0.0001518433575084921;0.00025326205697189793;0.0004784571220317356;0.0;0.0012033558994357168;0.0011331877035152369;0.0005227543658846226;0.0025372603924201415;0.0024892914572681737;0.0;0.00011420588264356838;0.00013934382519861557;0.0001221012143233854;0.0;0.00236349339146862;0.0004111861017854725;0.00031430459979117794;0.00015139884442373313;0.0009993937775742141;0.005293772339441301;0.0021353622457393685;0.0020192167503751664;0.002418774278177717;0.0031032307308799124;0.005965761602917464;0.006379489305315735;0.04287266912188408;0.004521395843195187;0.034347078513353925;0.0017837284501134782;0.003533253958292873;0.06290138796876665;0.19522407140228806;0.013038808216846644;0.0058989351521852255;0.04529205235734977;0.004727696878223706;0.004816850218615448;0.010646498228761127;0.0038919939516821505;0.00844347145591835;0.004932674514968245;0.0002801780727977182;0.01850883175815576;0.012308049974551396;0.0;0.043123894939903214;0.014294305117304418;0.046929190909909935;0.005859699422973893;0.04457964449115006;0.02850469361019079;0.014166041738141302;0.04057868807400272;0.005903879173354885;0.021905841020259418;0.003672833345856432;0.01912516336703685;0.0031940470108311617;0.00013539416748925226;0.000349497332408854;0.00721196991379445;0.0014829075323385618;0.0018232159950384466;0.032418494650313504;0.058486549661264965;0.03517093599631136;0.0053991285693178424;0.006507302033552523;0.008381377258282287;0.004863039045435331;0.12008408192625816;0.0049621549181053624;0.012153369920627037;0.004098726952396615;0.004217996162371435;1.0;0.4109078022677774;0.0026873938112065648;0.008465617010066094;0.378889106703424;0.026576075805763398;0.00030537822119778435;0.056172397286416285;0.00023508016281906306;0.02178331286919415;0.012965631615304153;0.0021761957369633867;0.02435926006494148;0.003942515625105769;0.013116608584206385;0.01332111778312685;0.01877465079565716;0.01693857680926573;0.020498677894831095;0.018291088239120817;0.020370917877246004;0.021449576874705632;0.033409742353034774;0.06713651262190545;0.0012893315217404498;0.012636384696906741;0.016393028149919192;0.0012526858993731668;0.017183278799480433;0.0;0.022930634753936082;0.020223297298922516;0.011069519544147283;0.038789652264569076;0.01217677268228317;0.005713034445387217;0.10698210676746751;0.0015119056245890114;0.026762453505628222;0.0019000044993335873;0.006174524428005877;0.005824189447357488;0.02839400813597497;0.01691831969971087;0.004287638492506924;0.0031904627299583765;0.0;0.0;0.0001515390300498735;0.0;9.444544901699705e-05;0.0;0.0;0.0004227705252705795;0.0002437266221728848;0.0012312131786723103;0.001873471854849258;0.0017401501120011692;0.0;0.08060999390552973;0.011987898017351355;0.0034766660968971277;0.019271101987675857;0.05170163345898234;0.0476588983792248;0.004000026887171125;0.010479741574692768;0.047289380919444395;0.003152610767090426;0.04407313915029137;0.045591344938989684;0.0028956878126233645;0.0061538612554015585;0.008886174248660571;0.009432768220416304;0.002606824883406681;0.0009602690474472557;0.03267302510638507;0.0018633461219382868;0.00045420716559560714;0.007449576703490153;0.0027528504072122464;0.001502179644968069;0.0032003552338202286;0.0026784044924005124;0.042125941059849376;0.02135698817515553;0.02605132989106065;0.004459844028659582;0.009686807910176181;0.0018601277417172736;0.034476641764155894;0.018135754679643522;0.010173626594907935;0.02641136486544879;0.01928526498218661;0.0027350134268158063;0.025218906668441222;0.0007735925655388626;0.012385860180153793;0.01617760566565874;0.0004890024603419842;0.03619265397680205;0.0028807364127043356;0.005595948138620502;0.005438421678273024;0.007268719785309421;0.0;0.004101734195225684;0.007457800200345439;0.00039104338914791196;0.0004464080114674793;0.022279811470775006;0.012610873834566938;0.0002819510872065;0.0;0.013283390213168409;0.05141540826279172;0.01840106389625929;0.029355749503030496;0.007702828000841147;0.06291168768962442;0.001628942256268941;0.0004023251367509052;0.039742604744176395;0.001992669076938431;0.3435033400686944;0.0028915161775275133;0.1329689414493901;0.0374507041822576;0.00019726855434074462;0.001392284062158115;0.005155588968309617;0.019431385476407197;0.007294445315663384;0.026801414923489388;0.06240128773054184;0.007393369905321198;0.006472866337821161;0.01791441856935589;0.007851781261037086;0.09797195720370165;0.004471492627519519;0.005479017802870886;0.005936615194095424;0.0033183906609823882;0.006308094515479496;0.01316599050360794;0.02376085613240632;0.00548626010061194;0.015520544570534957;0.011036204107329726;0.014996118766300184;0.032081641218537904;0.004769029299222411;0.017965231435842405;0.0;0.0;0.000516555157812892;0.027818856579801005;0.0030995086431119404;0.04733712772848019;0.08388689417848955;0.08437615578375605;0.0019554121426157796;0.0007085412415885145;0.006515931803179088;0.005174157768444659;0.003923723484293246;0.0113311038434717;0.0003748672940032572;0.019198364495728554;0.012708508829343603;0.031752088387702;0.31246562278897916;0.002226289653119533;0.11566615596550227;0.009337369343833357;0.008051056480504942;0.012353483889825946;0.07288965843850409;0.07570011017103476;0.0026110759644025075;0.05408471979388179;0.2001381045738855;0.0018979590646020757;0.027288361773737124;0.03902849400805215;0.09299179088104272;0.03315355218721144;0.045882292220453036;0.10761735561437703;0.0004351891775255213;0.0030237140646909295;0.009971574365232971;0.053617422700307865;0.012526863174850739;0.04704900781378618;0.04872491034059727;0.0066228658381238615;0.0073764500026004655;0.15214703025068146;0.08885741904788523;0.04987791874537166;0.05051367533158064
+Tris(isopropylphenyl)phosphate;0.351363306415736;0.34700118385726153;0.32806076874265194;0.3255157321597571;0.33117631289837857;0.36157291934274705;0.17596607466598277;0.3273105963026039;0.32578933993486925;0.34084817756156277;0.15886696503359676;0.3455381074279674;0.2115765855003722;0.32599251101646337;0.32402572456122125;0.30918076048484516;0.335043524541053;0.34797266729831006;0.34964024517684034;0.34970435212471584;0.3326267798701372;0.3272551252099316;0.337292103893999;0.33735436703011656;0.3384047855881131;0.32764648662168716;0.19604355241050586;0.2313199637124726;0.1834590674867017;0.3062077607960169;0.18619279533871974;0.12282706942651507;0.127122383884399;0.2549820466190653;0.24855248170708338;0.3522053374484877;0.29158266167069524;0.09884410168705852;0.0792573313178146;0.19299854753046516;0.057643903428410866;0.21317444603407498;0.03268449418030237;0.0;0.02414856958115376;0.02322561718214851;0.022984958483062423;0.02173480584456158;0.025122066514455074;0.15944398001273083;0.12070863486853695;0.05552180714816077;0.01915434554225787;0.01632914720081635;0.11486509849913573;0.2201918235737721;0.10825891212331759;0.15079172408957886;0.10183180958314879;0.01866942691499998;0.07733025629125327;0.1342591363360045;0.1782260664655679;0.17290512312557046;0.1057434713113836;0.1414613466209216;0.14922114860820251;0.10977620565511584;0.1071827754764728;0.10833654283738277;0.10031230231228333;0.07491927213072577;0.07359072456064299;0.08191333188890233;0.08982230953836258;0.08477079527308037;0.026720574668568475;0.03152349113743412;0.028976719024004147;0.042615458428843275;0.05439071706223164;0.04845147937511472;0.04801324134082281;0.04767255799450761;0.0613933949930657;0.03276340631187579;0.04967982388081805;0.05630461968599395;0.11496654228440306;0.005814119452257888;0.05389229243542229;0.014752685002136678;0.12642281032933592;0.06252406462055206;0.0742944938554671;0.07393941443380536;0.09381471139643882;0.05467869034582763;0.12646822319833917;0.09830909819019307;0.17605214438797606;0.10856566578202262;0.11081866391746704;0.11434371535517819;0.047165380798621995;0.2192649880101359;0.19225665938889025;0.2029664859995531;0.2077121750413955;0.24822129847053456;0.2350523989817881;0.21644060723406444;0.2494989788018569;0.25023506822419106;0.2390492233094453;0.059599938686939996;0.05858472950246195;0.060434626254389695;0.20613569327027512;0.05772119627570121;0.018223572689057263;0.07374995465898261;0.18113589448379733;0.013863324518185963;0.018415339852126417;0.017641797551540647;0.017988715336354124;0.035309045961670955;0.03504803603193792;0.04427554620528219;0.1597178317032787;0.36012004481870513;0.11749503382851736;0.13007196858019257;0.3318879200437077;0.33873499841684546;0.26241343276618523;0.3335319130185289;0.3896278486844293;0.4015248225924249;0.17673158528539362;0.4223797424827163;0.27997804448719527;0.15606873052325937;0.5101623143071117;0.154001844699877;0.21384595491369895;0.2635446074595132;0.08861011503160851;0.09564028060442317;0.5689770997096871;0.21910586604419965;0.12442435552849072;0.049119133049392555;0.2971592887107754;0.31830681224756263;0.166285493714676;0.08776966758641945;0.1338885327105824;0.04191987720490235;0.10971109813820892;0.02691077012481671;0.04073648199903139;0.014124204167629528;0.027361189398502673;0.012998579137485847;0.028250679276756296;0.006484346031853996;0.010734340897411106;0.05524246491245925;0.025395240079720254;0.043921992955136;0.006324936199344373;0.014358897906168218;0.012510289496511864;0.10081343636084579;0.01274953051572847;0.009609909632468397;0.2267773262232231;0.3387623971509134;0.3308835923356615;0.4109078022677774;1.0;0.38835612516060325;0.06815874796186353;0.13573077199684244;0.01756191338306083;0.0;0.19327829965081067;0.24071508223479424;0.32136654803297066;0.26602721111406746;0.25127431986461796;0.25984770437951976;0.24122090008742136;0.2563546115672066;0.252099466238322;0.2637803864122092;0.21290884018318493;0.16614954063069012;0.28169912697933613;0.18142267409872773;0.2386196995257188;0.2595342936528078;0.06115852709367197;0.34273796409654306;0.40463321471145414;0.07082287758567211;0.08800938401134825;0.17665806268665327;0.016773632302284763;0.19731722438020644;0.14984485294013758;0.11012205401377377;0.13642878839033348;0.1849354038061964;0.1679338707363513;0.22700945694501432;0.004980263173927149;0.0893091491086566;0.08827602654155974;0.012283955120005746;0.019302941253669686;0.2793379971519281;0.24775599469805007;0.1616834264814025;0.2217252774607649;0.13977827972742093;0.18829493319858082;0.07799893499343599;0.08153237571863733;0.07200444071863604;0.1246270764790642;0.15367149098296914;0.045504289323158;0.09354190079034332;0.08822187882297179;0.1112048072824573;0.11908682712370941;0.09558740595172298;0.14945120128126255;0.08433837549119419;0.06308294456647409;0.03194995912942692;0.08976923913691243;0.11126590760527709;0.0016323178786609087;0.008184608938732938;0.04931903302556546;0.011794558941029999;0.09535299980534519;0.09591080881250966;0.0369243878634278;0.286163851437284;0.056586562683056715;0.049903966554458785;0.09192230257508482;0.18488921228429378;0.05837327582571871;0.08069512327426111;0.17448082777360924;0.11686899474206781;0.012432342427743498;0.005970005905197974;0.06331094038063186;0.07500018885899279;0.12766029277032467;0.23725673937476435;0.18299829936190737;0.05221069926026847;0.014692682731876247;0.01820379828641321;0.17520843903821756;0.12078839765390295;0.03667574305435657;0.16918548302668798;0.0042970450624326036;0.06627332942828974;0.04907404110134089;0.06870605429716867;0.04900741181271511;0.07942376722085487;0.1727233854909546;0.3182852199171563;0.03163349271291425;0.12288927273479824;0.007673695507879029;0.13070104208806124;0.0021276042138397536;0.1704711761847435;0.01842253685979387;0.050499844114219664;0.040852429541010954;0.05393845264305176;0.16969956929432053;0.08093738401167068;0.21313471088728533;0.17867506491711255;0.07831266271937058;0.301606271962948;0.19547755377317033;0.14405480958332473;0.14975274300881836;0.02579367011947541;0.10153505624967499;0.026444705998853853;0.050571631477473504;0.06846693985772656;0.14815304885545102;0.022846748792079506;0.03237969017664865;0.1304503391345975;0.00024408931641677883;0.003334653805164732;0.2587613366005655;0.24718157422692888;0.3015335755759068;0.049751271340461166;0.07086301715478777;0.058997853540814896;0.02414256237176574;0.09363796976578714;0.2540640096796542;0.13738294507594978;0.12316169603162919;0.13410382366483592;0.028470091667820135;0.009961848536423042;0.07998028956563427;0.02815041692312155;0.017091646695567942;0.23223913615302505;0.0994054724839543;0.11052163359906743;0.08916910264463844;0.10701698671088866;0.032905476132307244;0.13381464712713198;0.23500816499659288;0.33346100631760067;0.34593806013520495;0.15765826074334657;0.07148668635064562;0.02051989402047912;0.00868400727534697;0.03514843902324993;0.03196707793343074;0.006236547691553604;0.014490844903176177;0.01846907643466025;0.0064818871311442;0.0066428145194938155;0.03319451676074713;0.04136526239846269;0.1371524823624965;0.17393587682378894;0.0003487386599250027;0.07052811656811007;0.03910358080457425;0.026881765958816334;0.10107454618346971;0.04896586296859715;0.025353345540043423;0.06986247872766446;0.0509998450938838;0.07105042996520658;0.02772638691342463;0.004571204035677661;0.028937523004369674;0.11611101309907755;0.12422619185174172;0.06347869113657002;0.11338325413705425;0.3201988343792238;0.04665366329641554;0.07619195159626072;0.06365618363200928;0.11667047077047703;0.3827254322694693;0.1675137717497276;0.08666966671324006;0.04311871372827462;0.37641997944016126;0.35572228888679064;0.3041968533270175;0.32487202837399004
+Tris(3,5-xylenyl)phosphate;0.8318008647624917;0.8333652018081861;0.8410849231366214;0.8401896343366667;0.8470427505978021;0.8680666897711536;0.5230907202373748;0.8523318375622589;0.8504560418800136;0.8712184454468739;0.4653206472714559;0.8559821785889056;0.5835625792735473;0.8547744801749138;0.8395234171849161;0.8116929524488509;0.8651741908590582;0.8553486700894033;0.832092201024195;0.8497413963306361;0.8639432014473241;0.8521006961395734;0.8556391836906023;0.8673252806616696;0.8514680272565346;0.008917330767172145;0.5018138985400546;0.3786769896827179;0.389838243052793;0.30245541176358565;0.25268901059413873;0.21399076243171078;0.2988658470553395;0.7045703014095092;0.5035924935892419;0.8492122135512993;0.373931273459114;0.30906804097044127;0.02665708872138982;0.49327535920352594;0.14433401100596463;0.5418856843084983;0.09028507487569573;0.0;0.013163981400947072;0.011648293625516677;0.011735257994125177;0.010172202799102395;0.013393002613844959;0.4092837203520433;0.30855126607136935;0.12723835196876818;0.01666257557158826;0.013373185067630411;0.2801323593288551;0.5609835393346716;0.273267677241703;0.3830524456297695;0.25564729221018884;0.0021577121609188434;0.19217768255786954;0.3398350963783518;0.4492577722326045;0.43918350993018473;0.26640734946192335;0.35947382336367983;0.3788080718119736;0.2755884985870041;0.27256126529101643;0.27222374074413064;0.2555498484297889;0.18579416239836016;0.07460022529993407;0.1455232776260374;0.04776066185909932;0.026216442118230824;0.021162457195808462;0.030469693251839625;0.028983136146372893;0.05332735718536321;0.03691764457880959;0.03522913352562249;0.04352715133059204;0.04266084200724987;0.04968684175281459;0.021544399862744163;0.0451209916112129;0.04840937439272187;0.09366693345657538;0.021598198559782802;0.026560806329031187;0.017942671389673037;0.055853212011611295;0.03408982478163514;0.03757847525451437;0.08899176833620649;0.07634691217399937;0.065102015243724;0.06535104414889781;0.10027970875138159;0.12331152707996289;0.11306502831022382;0.10718631393622116;0.09593321851388327;0.07797992936297478;0.5698088781280262;0.5034769702818003;0.5324541820657405;0.5394350626255036;0.6423934066270435;0.6077097075273684;0.557732093883574;0.6439216037737964;0.6328682004047281;0.6175011711400816;0.1864251472683222;0.1729207717801333;0.17555254299204673;0.4813186825944067;0.07647350028844259;0.03767177829554918;0.2271021107095182;0.46884812653917407;0.025903128863347696;0.033612956310831284;0.01934071192954573;0.019762731913257163;0.06397201489435263;0.06379837671858936;0.07840662447105143;0.09733273961260545;0.04835839119864941;0.29343322508480385;0.14408058244421615;0.8585492917883094;0.04358394748511186;0.18440940887979484;0.07452777481526006;0.7392148974813687;0.7985633489328456;0.37151751062497146;0.6991349082592833;0.20141252123208417;0.337686021603569;0.5959304984127161;0.17375956906765927;0.26783888179114285;0.12672930790880918;0.09302984913856133;0.19549193139247334;0.39142027334004564;0.14742281473966945;0.08465467268697913;0.06970172483925323;0.6256607023379888;0.47283347674323956;0.4776868674968227;0.28074574001436464;0.3116935378860061;0.02312366960897011;0.3002525363122229;0.023499770631075775;0.027820489594053553;0.015572688915502309;0.0172396500522555;0.03183019429162636;0.018659416759542278;0.0105834574363953;0.01914956436621223;0.03369331762564294;0.017274062205702215;0.12278237642090341;0.0054523424099240285;0.01147657475327199;0.008945828396637972;0.29729042525107846;0.002426538732962483;0.03579266492063595;0.4312174198678953;0.7675469037332575;0.7480220802305244;0.0026873938112065648;0.38835612516060325;1.0;0.00924869122820767;0.010025802884455868;0.011285982687901566;0.0;0.5543233627697441;0.5833879348108895;0.6595950852518017;0.6413660290816232;0.28231616046907254;0.6343691325184447;0.5264782106592735;0.6406039043273262;0.6255102571748504;0.7168916044946283;0.5466449240853104;0.48719731027510943;0.750833099267497;0.5207375274566232;0.6621962688189401;0.7113698268685986;0.110603694972304;0.8882653454136975;0.7209532371680956;0.1509906719601078;0.01728449818324758;0.048437922638097146;0.030035526482378505;0.471151980434901;0.3792290599786649;0.21732635721168767;0.03379516335826736;0.3468531632015583;0.4377499074361545;0.10512043732593777;0.010830373773603645;0.00809678018957022;0.24371139811186016;0.007904467972876774;0.051673443663280534;0.7081171889710768;0.629531242437785;0.4102669642759564;0.565892330418537;0.3535828139978901;0.47846111522242074;0.19336400178025487;0.2014929689424533;0.17807164126168742;0.310991686213136;0.39007790719602836;0.1108388570813637;0.232846354460463;0.20277089245159463;0.25248759245302765;0.266114661718539;0.23942281300212456;0.20420297559727932;0.08507272500098773;0.048447040249636544;0.04030626246660953;0.04852871677440028;0.00016463912197478624;0.02454839362041683;0.02910243061229584;0.0702732460850047;0.020314679748912393;0.17521043321867558;0.1760489069231308;0.015214761824016028;0.7304854890301351;0.046544356240900184;0.09377474950839645;0.09832854037679879;0.4618082955932512;0.014500522479186675;0.3294131528582777;0.017676282432088065;0.21091737259532423;0.004970701295123354;0.012903866795220157;0.10770808075026617;0.061889965585123115;0.294911741916846;0.37466478899922323;0.38608314858561965;0.14262709675382734;0.0734272684651587;0.020871898468776167;0.2202133184072855;0.03382880750820078;0.03315388995296665;0.3423480074562293;0.025302264682367268;0.06000765871884382;0.05534712708183501;0.025952423052714054;0.02217449573618024;0.07037895600601016;0.017833571554534768;0.7198753624090093;0.07476243901433097;0.05253284727829802;0.017622239971044472;0.41720222081763075;0.00930279537295401;0.039753978169865124;0.043444351040824225;0.13653430182413911;0.09125306154723949;0.027698136042458157;0.03200118705951373;0.299538478346284;0.20099717746362916;0.0821145991819622;0.05785001659125212;0.0799841223936387;0.025674359352585146;0.037081377791215876;0.3687488513235316;0.06353539318425183;0.3297052685773881;0.02820201756585939;0.1364669086380813;0.09387848157958831;0.03437051428281292;0.011327935969749398;0.08952112163493525;0.00807097608465334;0.0;0.002001933315524932;0.149958647645034;0.39908951498628836;0.7873285528635154;0.17311072977891132;0.3022144420541221;0.0333201896527776;0.024835965292587702;0.3548388962630687;0.108831657271637;0.34040414495006993;0.2385567384698107;0.05748012988092516;0.009821352373253996;0.01734948718656748;0.13470157251996479;0.17665051952318758;0.026804977738502322;0.5392199485774887;0.13479986525937637;0.12800067025994583;0.09383055277571632;0.276441370965812;0.03900220490326972;0.35087886534627516;0.5806911005080615;0.7238453957586785;0.8104734880392563;0.3772887319205239;0.21895754837943857;0.00017522595769812243;0.0008245797690496816;0.004067144682857853;0.004994480676883754;0.015058816971726023;0.017058580647853566;0.016894742893807792;0.0544965581375346;0.0012621365639418102;0.009197416155550366;0.1305060454722607;0.18436854848357198;0.1069995873164007;0.0008428090909672031;0.06135916746058984;0.009363636684841652;0.02108743708625691;0.16868694627014794;0.022813911127276647;0.019099659157517886;0.046615821199149414;0.0015246196409804172;0.02560849573903641;0.0010520529626206019;0.007389296359748989;0.0336016808514982;0.07378789916667942;0.07120718754744476;0.026474298604230614;0.08147945988655092;0.8192466776677402;0.01232368152984815;0.017600145931431315;0.0173289407045815;0.0724997790623921;0.2694269242323149;0.22405282555259812;0.26131678724617957;0.0219508554082391;0.7160599197025077;0.7199626967989273;0.2880138263560018;0.25699522150266857
+Tris(2-butoxyethyl) phosphate;0.0037000728055398588;0.06770744595254767;0.0;0.0050957290613437385;0.004505560847746403;0.029908678330077137;0.1740267503993304;0.022817251998310646;0.025244671427725886;0.013871351771643715;0.007193019549031595;0.0011264052351993314;0.009407994712449417;0.03185455689161673;0.019804900464116308;0.027260997147725004;0.011621190116608386;0.045516493109512876;0.06691105303930973;0.050637703033923634;0.0166393628508241;0.018101604363732215;0.036441708271261516;0.024177589477171833;0.020896539820441498;0.05568809629685588;0.018714960336652587;0.0359618293858598;0.016347160391165724;0.04315555034181324;0.01325033464376722;0.02157014009426856;0.05129969886968026;0.005651069996574067;0.02951503576161295;0.07929415588581534;0.11692088557336715;0.02234155896847458;0.007992470827497919;0.013439732143752374;0.017879663769497896;0.015379668193016536;0.06281873104550915;0.0015361402236047528;0.06217479316099505;0.04769753239410559;0.05523246671668509;0.05547074212709218;0.05052043734944527;0.015385941455193826;0.0009532458614485769;0.017298102284805023;0.062064732253068064;0.04103308497482382;0.03159414710452076;0.018148746701887496;0.020115988174615893;0.01619289075103478;0.010292502053325745;0.014068395497605064;0.015575317942275839;0.01771632387762215;0.01434424176765522;0.015714667798889113;0.021240376756340322;0.01633565086272264;0.017890230113848903;0.01181806470227623;0.012299987326715075;0.012458008358442787;0.009260124776760564;0.014573474336928259;0.03112734122485384;0.03494901276663891;0.2518078019184052;0.050808309891363194;0.011047962841902207;0.004762345429884965;0.02449038321124835;0.15440770335336937;0.06335490521192523;0.056463853332027907;0.04148356830245653;0.051490467679430926;0.1462268568154002;0.13080243038920164;0.5348625891580441;0.5896939145719013;0.04122523095466506;0.05251488692427263;0.06737836608984743;0.056963812711368;0.12878544397374803;0.07070042480031459;0.07872523207107816;0.03622949258871635;0.03491136618734758;0.07798732355985644;0.13197971063058692;0.10790439783619714;0.13633123752052087;0.1576021866518652;0.19816842158183057;0.046010530980730546;0.14729672265504287;0.010241702895477675;0.005270237902167721;0.0009593727798143212;0.0045837764494162676;0.004868406059407755;0.005694733767566964;0.011395545231337005;0.024838769517749493;0.025760452478029123;0.018755344996094502;0.03400638747313372;0.03658210698694213;0.0429804495286652;0.02137952481973828;0.05158806261256662;0.015066716909448746;0.033412523726977804;0.012108226911615274;0.08396414891679659;0.02029146548583592;0.005720869050279291;0.011922598857831514;0.009962758347946927;0.01889615233628512;0.011619998238133382;0.04350115292389157;0.02531812757556686;0.009978743749024967;0.07103877961865492;0.05732372529254314;0.01872063559682779;0.0495214250696198;0.02227865531610114;0.00676011322486252;0.031208588538982403;0.013826488786050594;0.009284127447548399;0.02542604433811796;0.006682104289160231;0.045533731250420664;0.0013622300551856985;0.0009315834259625112;0.0;0.1222162503491648;0.1758366756558599;0.05480837775053475;0.06256091462107469;0.019564513946761005;0.0018557035723502585;0.013391365962847278;0.035816572164287755;0.03117978896690523;0.05751703689233068;0.07338242599410362;0.013830901240242008;0.08660317343412022;0.04840040069934389;0.045174666124021934;0.05977834837870257;0.0643489826255317;0.05740088430623588;0.10752890812716957;0.03763538837462797;0.031140747859043607;0.10133634190588506;0.06343703681176632;0.03647804237829136;0.09597023119708623;0.06447466804466331;0.050216990343859895;0.0035133155207663844;0.43130918809395125;0.26452578075853733;0.010270635584353368;0.015610905220500463;0.01784713600320486;0.008465617010066094;0.06815874796186353;0.00924869122820767;1.0;0.3069606102206956;0.6591344956237154;0.37944919153382356;0.06207321753537923;0.08114357231561288;0.09468056744516701;0.011051615290104826;0.14402993862307903;0.06986167594999801;0.02229833962169144;0.03177523292217197;0.031543143838610566;0.09701345824797586;0.22474745929113626;0.08040134868747993;0.11603707844823304;0.06528169601821494;0.09529333635208893;0.04257358578112688;0.05008697860647492;0.001046401454688125;0.01405459574808809;0.15658895671194778;0.02600183235554374;0.0030157094145613337;0.02198778429575592;0.02994840571662194;0.05633260359728199;0.6220494385262967;0.014862083121814062;0.0499550105648276;0.4300478626101901;0.02009107613244046;0.009127100947945312;0.25189861105637146;0.03252689392897389;0.038122168944066046;0.022987638139192638;0.06014178793769204;0.04682087419257821;0.03479868223802679;0.02397579584037323;0.027744002582715883;0.021172364197114216;0.02806859241868422;0.01736243410566479;0.018239472933602372;0.03033180224601351;0.021968905084438613;0.01694021053239443;0.01548679275324534;0.012691722595913172;0.02227142479584028;0.015494239989135532;0.01592329778095175;0.030215156675129584;0.10392763169771511;0.1129937129180737;0.030753380213408916;0.05658255304751136;0.12236150186377272;0.1377009066380696;0.20113466763694013;0.16970544410673502;0.4326744773557608;0.028641784346980302;0.02894299237184603;0.1669879530173597;0.19220034707680414;0.09702782025067352;0.0055171375981315635;0.05484253945317966;0.004419311951066289;0.2176155956886966;0.04338503430753124;0.007079391427079046;0.0007478103991801956;0.02213361839794538;0.0019605768659883677;0.2690815022514242;0.002016782335419995;0.3816569614134836;0.030440337068928836;0.34657758522422133;0.014916379343889558;0.05545772560569308;0.07047577895582681;0.19640047329254334;0.10944856126641028;0.11914977335803273;0.12779848046454936;0.03353200436766396;0.0030542342945552234;0.008136430667676137;0.0002655396035047855;0.07489687258070242;0.03137001903512124;0.006811656867000216;0.14669419297484249;0.013556110565961095;0.0005832955694188116;0.23444082731929447;0.01918201365750517;0.013968748866363572;0.003911163441629947;0.021867679904298266;0.012922689589184595;0.016681663381920262;0.008723967029466859;0.0013247443752056759;0.008271411768008344;0.0079282598354617;0.06931439360244329;0.16681999269927647;0.01739981288390348;0.003763370428827553;0.023879185159499057;0.16273197832342984;0.6588631451555125;0.06969942205713986;0.010508203385085697;0.010567686412666416;0.14175437742464134;0.02615768399300079;0.044343558468621334;0.06845020230330226;0.01004386233345767;0.017027261641934598;0.0645698479618846;0.025584425449582768;0.08488344276986265;0.10159902325148991;0.09780192019804307;0.14113129649118028;0.02568702722798496;0.07433614958506012;0.014823382071095499;0.08692591158869632;0.05031285819140358;0.007122376638685971;0.02575214291882182;0.10781893579373171;0.022876129107514503;0.0010652822592844447;0.0675738818598681;0.04474547989134585;0.18101335942053032;0.06821996860018482;0.07993646289777227;0.006377600168630006;0.0558370155488088;0.04523563593447621;0.0043747382696094125;0.0052189880819346396;0.002139624274948935;0.07767655308435595;0.023851531539379075;0.04869103260075932;0.01165239967716981;0.03351240658363091;0.004552161879876127;0.023826534194027325;0.2071281702962461;0.2454394322337896;0.12726875754590564;0.009452556865999214;0.007043490144206953;0.02491807372845007;0.0871386039582247;0.1165303014051001;0.06313211438924113;0.002281116479481824;0.017279233135825692;0.038284869377709016;0.08327069067034616;0.06062069312555338;0.42169330954433665;0.024460574876178;0.1161867089725521;0.043163309738265807;0.4897297538592081;0.028689474297238882;0.07079183171737786;0.07979830634989933;0.6373906018977374;0.10658806115711374;0.14393185899963137;0.6056275549029778;0.033443346536552315;0.01621994416876237;0.016710833728262976;0.03179252063844715;0.06266269483413556;0.1578491426045312;0.049517151747247454;0.01786838460721612;0.003287577913722588;0.06351106557108109;0.059431669922650913;0.12789796801351827;0.10086896866641386
+Tris(2-chloroethyl) phosphate;0.0400561047794127;0.06163451970160685;0.05024835983625477;0.00342684375892729;0.0037626074703554294;0.01261107279258007;0.003042532188069282;0.006373519329341381;0.006728600180831738;0.011265344913471451;0.24407204278812528;0.07672753013068984;0.015744819875736265;0.02095711527877717;0.008891163084205402;0.021371802472461617;0.024165268667266;0.04534139001964871;0.06936027550770657;0.05624157393082483;0.039636321728287634;0.04727895669919516;0.07396846474930266;0.012896834179145973;0.007887619131936195;0.261804433315432;0.034575434524392074;0.03318759480743256;0.009659660790035156;0.0429357739931375;0.02582839232679156;0.09214424788579441;0.2947811018240887;0.03832068926694405;0.059135964936580784;0.04831670136587145;0.07385007690648904;0.003902520951427593;0.0038914444585401117;0.011523901892677567;0.05107252287159791;0.042589737674105545;0.0420202400561085;0.04179466493210621;0.06307545005042503;0.025119119896240286;0.027906459910179073;0.029251795799486145;0.027702104231739733;0.04052037959589302;0.02411782812341237;0.05139057439087774;0.10543306947849027;0.03986487692449066;0.02601129655662675;0.028916855195837757;0.02321566224550872;0.006961830295039479;0.0258620787201082;0.022136086402439536;0.053760902513283707;0.04737530143284437;0.026763523593811834;0.031313228604196906;0.034678949627203574;0.0073366962491743515;0.013353806862989648;0.0170201950079674;0.020475388874571666;0.019056226281964066;0.011187832209844715;0.03581630409944856;0.03128226386926983;0.03204007041252122;0.022723772514160172;0.020383633819146353;0.014191993804061505;0.011383773811696396;0.003335122327874168;0.06324855365990407;0.023666291689423913;0.023609324414198385;0.0347768907724489;0.03229227750619774;0.05440864570452536;0.04136838266525212;0.23811161736285064;0.26367494961154453;0.09205875114636897;0.10336865935375678;0.02804183286526476;0.026747013315816897;0.12350203087700297;0.03352729225053194;0.032738842492694716;0.04299242346339272;0.04061289758533538;0.026669941042410644;0.028848292467201796;0.054927629857960084;0.07586632627287898;0.06049255547995429;0.04632700847663133;0.07954826586572705;0.06935939065398741;0.005104264664240026;0.011822963690711997;0.004644075079613825;0.005828249797722214;0.028932449799079444;0.014739409111622989;0.01596723804156597;0.006356021568837911;0.02168077625516745;0.008770729757892707;0.02338534670413038;0.012442819701692111;0.021984171240240304;0.01143023697031676;0.09519300188604665;0.06120794596675631;0.007205016705799346;0.01770129200365164;0.016791377970561582;0.01292433515088067;0.030134375873756225;0.03221986888605567;0.0859745263201084;0.17944224082989527;0.06544261547742901;0.09158904853397487;0.08001894901294901;0.044463780665740436;0.12164407399740361;0.03208070420194988;0.04683641609430291;0.05528950394444679;0.08131530786063411;0.09469737813814141;0.061028138123484406;0.057808401143216545;0.05522704846096277;0.08660898376875296;0.053467159771267043;0.0792818004406663;0.00969402425122855;0.02864077698409042;0.01924732808589091;0.05536405841946769;0.10173166536906225;0.10306045189099136;0.0581771001762246;0.03426601857884503;0.03868249390610906;0.22197257793152705;0.03170950360576122;0.008270515563992038;0.022613676174801436;0.012227010455113029;0.12046977706991176;0.01956132799178209;0.07338015243519813;0.2311880097106611;0.04688404058373259;0.11302304547329077;0.11010213721916311;0.06579734661626277;0.05790745568690096;0.06238244952287135;0.3502047372742108;0.13058663323053454;0.048384258644877484;0.004000658550818289;0.038451770158079566;0.042320287135432184;0.0003547370149873002;0.3524555209146781;0.2514406738315683;0.017228730114284302;0.0020243817879973583;0.001660042005848712;0.378889106703424;0.13573077199684244;0.010025802884455868;0.3069606102206956;1.0;0.44740220376481143;0.33727906453652423;0.05670000858827776;0.2226001042541881;0.21156321744664264;0.07460902363859061;0.37355830203449497;0.07031107393931918;0.13615493135896842;0.004079365381638549;0.003083010204939859;0.013102869796208123;0.03702596618599191;0.01233157144434774;0.023327212985687802;0.019140723425960855;0.014183240532549376;0.05606447270552813;0.175709984430962;0.008991482046128967;0.02980081757436805;0.04786392800180704;0.05319963322808943;0.10810783861006147;0.1355304270926103;0.012245063545907178;0.03946239310834396;0.41518150599003223;0.03775529579327813;0.04892358553983629;0.24059101284661064;0.11839891462720548;0.02114135695263536;0.08113417184498317;0.11335941269067815;0.06015121235156946;0.027120340141024983;0.049059936252546565;0.0669965733827377;0.1129735160496489;0.029527880731907295;0.054728758405971765;0.021795248541144324;0.06404116517917001;0.05471187355249517;0.06604517367112704;0.032320234089082696;0.009256847767384765;0.06465025724102522;0.054603243355289224;0.025542656692502445;0.04354808634479083;0.03580562848395088;0.045741095731403315;0.12266331200643285;0.17395771605726715;0.19460319738171092;0.02459137136449001;0.12026343064864413;0.03304025209477574;0.07398810038475441;0.005776991589293649;0.07637033651511431;0.2428964871610137;0.010361695828076145;0.010408163649646664;0.0980576758601663;0.12029184357659305;0.1304323730199436;0.030711230342781455;0.021497024866544544;0.08603265465188588;0.04490860784891342;0.0015852740367399594;0.0067599501761320515;0.015050214669558798;0.19991452982125552;0.00019249277689931016;0.10942517005779509;0.0022815365134046203;0.21938221404925012;0.10812362431648116;0.18034180734287314;0.021222716069138323;0.03289592582338686;0.03483238646148869;0.007878276259063326;0.06750481684923139;0.08118319232242861;0.03527633575714203;0.0004559868049927102;0.012490002831364668;0.027712230560752827;0.009931454928541077;0.01786006091228409;0.048745256151903726;0.006450376825795384;0.06233314513556829;0.10512091021515821;0.029672860190028707;0.01555636313738341;0.047211839245495234;0.000507354091829117;0.09674624283431252;0.015739499004771586;0.022865552377396802;0.03943869868638824;0.07610089559554813;0.02251875608884391;0.0007543253722809304;0.01072533192587739;0.04990035401995098;0.2272405118898323;0.023346898496486856;0.19367827978167465;0.1063672117103779;0.040644384591748864;0.26126766297522774;0.00016591747472633603;0.007997902931948622;0.04911500282408934;0.0802887989694105;0.057007121815223376;0.25068095722163003;0.08755542536767644;0.02527071035233597;0.0;0.024862129593104045;0.028225288600015053;0.10627567883051729;0.13386510559663914;0.1461263345623364;0.010177492264435865;0.047759667882701654;0.03597814816744072;0.024268349838664684;0.0740767836104681;0.3531628834730513;0.1313720388303877;0.059876786076356825;0.05324125673063274;0.0048246088092340125;0.03908709562556214;0.07391291639801956;0.04824749564718816;0.053380046333644536;0.004100671119983308;0.006821088257733765;0.02804793779008708;0.0019300761208604002;0.04293997565970056;0.009117335079903545;0.0022034647570113326;0.14830690317621764;0.11494739255071305;0.05150111822447618;0.15011231833210043;0.011209195546878246;0.0013776754381647678;0.008618596447368345;0.005923746431814512;0.12858610184150124;0.09338716639535816;0.06851499584479394;0.05478271557703983;0.001057052323081698;0.07769136616682501;0.12782297839240098;0.07299672117699177;0.14368230197556778;0.001824543511497333;0.04637620764527237;0.015162091436261375;0.042313699079475506;0.04523711141374574;0.13399174739410183;0.0804451909198882;0.09383312334385636;0.011637810556546084;0.20210205716760768;0.027526940989545678;0.03979023628055624;0.055192967702340764;0.23296929681516496;0.17430033432183983;0.10905815868095176;0.20954156200261095;0.03653327083801682;0.00019903670507518857;0.0003303913369767699;0.1402769383445247;0.044184782555827945;0.08589736901365831;0.07935715099375851;0.023583274892496602;0.0012018464171900942;0.033822499034795304;0.03876327191935963;0.05461099582374789;0.19470204063894617
+Tris(1-chloro-2-propyl) phosphate;0.019724737326125452;0.06463889847648094;0.007326299023891028;0.014934644665049042;0.016341655038711326;0.02309791630873143;0.010583677288696006;0.06083457939990889;0.06603762930745623;0.01509270978248674;0.0408495947172135;0.020202228383878515;0.026669370042601576;0.015990216196554757;0.019277481374418124;0.013616839293304882;0.008499065027314396;0.04105832669752389;0.0616543342097313;0.04296963421413544;0.035071632606835074;0.0428179673171827;0.043843868547859335;0.04411502396046302;0.041922435004580254;0.02875433680257806;0.007824460582282998;0.03523730271429556;0.04969012998906376;0.14030570372881654;0.01204215560718091;0.014415063560733715;0.06858465950449348;0.009426146749968205;0.03760203643251881;0.009514243953451901;0.057518600836095744;0.025529110219967076;0.0015296306529090607;0.005921704894719011;0.006220692404034713;0.031372578935166796;0.004489285666625115;0.014387256764930237;0.07534744517266735;0.054319787368867625;0.06671917047107595;0.06376274247097162;0.06221733951277929;0.013871844343963333;0.0031060109945543852;0.02972682658124069;0.07509259936204281;0.047840834127074225;0.023034677451728106;0.03306954183848963;0.019454640728903985;0.017206383621900093;0.007953504933071228;0.046549562103332776;0.006273183703208328;0.03319768315045991;0.04188514987003917;0.029875190563307664;0.020406404105698783;0.016953755722605907;0.018069628784834285;0.011703491397090593;0.011821682179959282;0.011192689952415956;0.008054547695263356;0.004971381442903488;0.04636192265828591;0.13714596302337756;0.0640339822256617;0.021490770862580923;0.012163891237609104;0.008706397947049081;0.01712836232196295;0.5586827602146578;0.02080047221506711;0.022882566922920868;0.2750403346654898;0.03103037055011327;0.08981088365408552;0.10445895327700053;0.6680331058886644;0.7339502093500028;0.037731182210208505;0.11017652668979888;0.002411800171798913;0.02461964480277686;0.04782149639787128;0.04547100148199824;0.046859630117343384;0.13618305942698328;0.08536540988976343;0.030080142575936022;0.029047028588462018;0.012177828605753725;0.04071431607145122;0.0882409560717633;0.07781292960985006;0.019871303782288675;0.02914260125874042;0.012634395088983641;0.011374310493605938;0.010407437872540268;0.010089765704014335;0.017476941516237573;0.009410185989305025;0.01322531305081475;0.0133285856532689;0.03249872473042422;0.016249198902439446;0.04429313907076471;0.013395883742422192;0.09666490121290951;0.019742231780881775;0.03213663192116207;0.033624936548467536;0.004593079754250438;0.029838409238714017;0.02302363223930066;0.01187294005518207;0.014719950692689894;0.02196711002195881;0.008430546475148784;0.021688382603241595;0.015010658183645048;0.04476070325879357;0.004884624262931585;0.00288891813388735;0.017364313433189886;0.08427994104819903;0.16453904579970213;0.051003157183535604;0.015010273106157969;0.0701702184660357;0.057027788754142675;0.015733348577019256;0.0653055743805508;0.0045710476695893665;0.0119350197445918;0.09993500949840003;0.004650542632345433;0.016814414048972125;0.01054715808538239;0.015974919863622865;0.18028196322308299;0.013810475946052623;0.009640613260853866;0.011999860315159613;0.06487987196713622;0.006698173240941871;0.047487630375459354;0.023689617031887628;0.023232948978762713;0.016017699338095243;0.010868319970422853;0.022618679286822423;0.04406638148997454;0.03994976598349422;0.06873809914004893;0.054497072615662355;0.0555975709583932;0.12568602570740608;0.07621116263673738;0.08909033354548866;0.1766831322163291;0.13313651427024556;0.03369135313676455;0.003647334377226297;0.03804647761947191;0.04078175864414057;0.022720719153860005;0.6161504765032292;0.42394475831392364;0.028363759888665605;0.0088922652235258;0.009039305792530733;0.026576075805763398;0.01756191338306083;0.011285982687901566;0.6591344956237154;0.44740220376481143;1.0;0.5747053861322469;0.017410835271474273;0.0757552994656992;0.09388776440031488;0.02617126326350653;0.041634319494788206;0.03440436857568346;0.013365428819950556;0.011459968958795013;0.011149336783391712;0.021728072815170807;0.016481158676464894;0.016706061334758607;0.019957379657050127;0.018001850958407246;0.019688530555687863;0.05916205471631443;0.3010314935249925;0.014055328616900616;0.11466259468203514;0.05414455769030902;0.10868372054992653;0.026711924293183482;0.06476256887882456;0.019184901821843223;0.05347103976391565;0.6465039247242365;0.14584380878047457;0.09049652486716599;0.4187350730201952;0.06255207425257009;0.01301601879935734;0.12935751990039657;0.03404881384758596;0.04340579874138801;0.0032444945169562704;0.027554087937529167;0.04274460100432417;0.060927683580840664;0.04121854183184826;0.03902069475819683;0.03346328279312154;0.0076317477856545505;0.005303115593656518;0.004630168743976303;0.021343121034095195;0.018292801789624148;0.014809102289902412;0.01074317655058007;0.018247749273166435;0.021438873990361155;0.01757461389949717;0.011356264338151375;0.13008457342352975;0.0330625681283809;0.017614139657509555;0.3374849782509627;0.08447508796349952;0.0001562160537062123;0.0013792423197455622;0.015633090676113407;0.040071046791698275;0.4383271127819895;0.018220264747930794;0.017593577083901534;0.14147929743579266;0.20552913847259477;0.005171594651231146;0.03192903581030404;0.024510777747560455;0.004331741050534594;0.020612371723996922;0.015009567546593142;0.009780717935369793;0.007886761299931393;0.007780617237368543;0.003697695121217852;0.24141905674229217;0.012568859239615055;0.2526035121990794;0.12678442398179798;0.33753123841845295;0.009533686103464134;0.0014388492434229145;0.019222047547006214;0.04942132927429874;0.12353882316833362;0.11511936926711962;0.0908982868659221;0.021156074143165088;0.016540423553994675;0.051714574017788326;0.022946492110221532;0.017713428796717678;0.11272504238543665;0.009398488310621884;0.039151069958474304;0.013785468691265358;0.03333472240061945;0.19249620727123054;0.018316537967896628;0.0002764400528308721;0.09394394082702757;0.009942780784972075;0.012756640830768618;0.030124667367240177;0.0034908751954412292;0.13057781512914515;0.009795596626793487;0.001191834671760976;0.11960681912195108;0.19127138607506344;0.0256072957740414;0.11752374349610954;0.05955292409016469;0.03077309960271661;0.6401409956601742;0.006587590213015989;0.019670387024176315;0.03026532017902783;0.09350186774698256;0.024468084762312263;0.027527033233770166;0.006434861421645015;0.026335422033646364;0.0;7.588421279039165e-05;0.10063342507174633;0.035203955675415864;0.02979646604512728;0.0194130130878458;0.03249769343231125;0.09113006646337979;0.05139866686004123;0.043422860695725464;0.06475911585772991;0.19946930634482765;0.026612074150934133;0.0024175906407037998;0.03762832036354526;0.02499900502927787;0.03698216780533375;0.036795614357695884;0.07767439432440491;0.03452759396313918;0.02066217180810683;0.02017207478112566;0.021292676285218207;0.016372104499696522;0.0638344549796884;0.13023898594810948;0.14952087005825188;0.00636917038746091;0.033183012196141885;0.03148178633120882;0.020520565629084553;0.0022184881161789855;0.00300094320344152;0.07745352156652913;0.07518187618174842;0.18963606391426852;0.17958612134187216;0.33417508263413265;0.02228926292001257;0.0093673948421885;0.05499086682833904;0.19752987675584419;0.032953972985924965;0.05904130206224752;0.0009007259616498356;0.020437614950324458;0.008836452093281866;0.0816062129626582;0.10076774913706649;0.40525468953588334;0.0680789999104431;0.08339639350351244;0.051318675925946376;0.41420957414196213;0.0362780321102098;0.05270812725761099;0.05537838112697067;0.629551049569713;0.07014988772282517;0.09532113394580892;0.5627109385098048;0.01378440872249487;0.0026213250952756032;0.006338784563533622;0.17371582876728986;0.06716387174012885;0.04446234896921834;0.08025526424368547;0.017736830715764172;0.0010168162459087996;0.04515399524274541;0.037131190223142936;0.10542015024447599;0.11098877289750769
+Tris(2-ethylhexyl) phosphate;0.0;0.0027419614936406845;0.0;0.0;0.0;0.013558993841445011;0.0;0.014522906035644993;0.01611255115954715;0.0009901841438000765;0.0;0.0;0.0;0.019185784600416547;0.013616863630937805;0.005865752414241582;0.003142948331356848;0.003132961894339719;0.00367677645862064;0.004297925331295244;0.0;0.0;0.00039315250656929234;0.0012363737362117233;0.0;0.0005844508693861752;0.0015474751693857912;0.0;0.0;0.05137886067269382;0.0;0.0007030169458619739;0.04060061446161693;0.0;0.022439049121854623;0.0;0.00019750129261901297;0.013057778315702286;0.0;0.0;0.0;0.016481772405814072;0.0;0.0;0.024578643019579998;0.015828853872494025;0.019242041935615357;0.016953199187487274;0.015626908301383382;0.0;0.0010698564140619584;0.02304103101561785;0.010360509786321413;0.017602241630482053;0.01877477883477767;0.021141702794883588;0.015212099081170188;0.012431979677723675;0.0;0.007426904449386752;0.0;0.023630095024300846;0.01740389559535248;0.02160255123463955;0.014842072066360179;0.011005968521556041;0.01459574131791271;0.006176467356286833;0.0069063474907782585;0.00585853042339648;0.0;0.0;0.0008295915355589299;0.001019296573981597;0.016073682556301604;0.0005029203328325145;0.0005158780013638975;0.00029363929783211254;0.0;0.018405697228553872;0.0011538116010865061;0.000707496891909106;0.06096832109636573;0.05086100623063488;0.020541604156019688;0.02062917026577424;0.01015256357838848;0.00949851133917052;0.0008198747899255696;0.13569811881455515;0.015262501749749779;0.0;0.02566186941894711;0.0010788810952372144;0.001360130594457884;0.0011365173385835107;0.005180471954298761;0.001674614028872078;0.0;0.0005350910447848681;0.00031821233278598915;0.0;0.007229490858498612;0.0022378691234560644;0.00042191966660251444;0.007786952965167686;0.00026140175895851146;0.0;0.0;0.0;0.0;0.0;0.0;0.023117898825706817;0.008111249380395466;0.0008536901014292126;0.00138908120774916;0.045279297698313535;0.017194741491242962;0.018141295019368793;0.0003048439924265463;0.0013013597347541496;0.0009308788266941746;0.004430541501757015;0.004343702630193451;0.00034936571881113765;0.007160695128543403;0.0008566737511680487;0.0015129772926642158;0.00016132328646471783;0.01933462421362644;0.0013350925439863728;0.0;0.0012089090150165004;0.04028111552469732;0.0006178527526984634;0.0;0.00924602865085717;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0007483066478777008;0.004496289511675518;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.021038506215336275;0.04606798310226066;0.04642677400258486;0.013816695912840855;0.021480120126578038;0.06934704402810161;0.029882698480239663;0.03272475914813063;0.05243757471509343;0.0480191018714932;0.02134707925397679;0.0;0.01473356512456924;0.019521890508849386;0.0;0.991258783004381;0.6443315649634365;0.0;0.0;0.0;0.00030537822119778435;0.0;0.0;0.37944919153382356;0.33727906453652423;0.5747053861322469;1.0;0.0;0.019879238518728748;0.02428421565870856;0.00040687495966249747;0.02161232976623909;0.001875890176052627;0.0003047363872977331;0.0006600463910286853;0.000611020308858491;0.00041856124721258636;0.01019110292353748;0.0;0.003253721225985376;0.0005501448731380311;0.001025960918295685;0.0036882491762041747;0.016180359995856947;0.0;0.0;0.0004902704747707032;0.0;0.0;0.029386210689523417;0.0007354463062575484;0.0018485961425751703;0.3981478269129259;0.00033786735766194953;0.03148532775189619;0.000160991400291835;0.0;0.0;0.02425496248603892;0.0012555186183971538;0.0003667750125211657;0.0;0.016342714852537143;0.030527605588209356;0.039609124542078426;0.02782362765807879;0.03483500264631278;0.027577225359552787;0.009854206560696167;0.0001669247493596776;0.00041931538714907047;0.019002619759182156;0.015208745884931894;0.0004437599954832067;0.0054659562198613;0.0004430725943509092;0.008540840950720508;0.00046634971758937926;0.009146944132479275;0.0029753912795190585;0.0;0.0;0.01283980516951531;0.07722542739912755;0.0005356013481700338;0.0011363652126335998;0.004842365396283432;0.022904467709189736;0.0;0.00020853219682334632;0.00022478968947985126;0.003740954421331348;0.0005685467189749049;0.0;0.0;0.0013424105178669267;0.0005859969841675335;0.0;0.002562447692048392;0.016396042783848586;0.0;0.0008499898673200021;0.0;0.03464802602973488;0.0;0.06161182883531179;0.00038480627294020425;0.38891889574989574;0.0;0.0060977429329087994;0.0;0.0005333634771803419;0.0;0.20077613079783607;0.0;0.0014829196667284937;0.0;0.0007410306154460374;0.0;0.0011623015686624372;0.00183494776076575;0.01564799386612791;0.022572029909828848;0.0;0.0;0.0011188846609910227;0.01194955716620009;0.00035106402624174136;0.0007056608012831089;0.0;0.0025907777337956872;0.0;0.000284352812794157;0.0;0.0;0.0;0.007046623907607425;0.00918063819835119;0.0;0.0007049228352201115;0.0;0.017153326762541332;0.0;0.0;0.0;0.02353199597112553;0.12393395860133781;0.0007157900027086624;0.010724955944346031;0.004012365245821837;0.0;0.1942537680337154;0.010839193203195707;0.0;0.0;0.036994538477510414;0.003584530723827409;0.0003867872745095628;0.01611961632052903;0.00033830418084597957;0.0010074776281150893;9.081174752340629e-05;0.0;0.0005326982553741693;0.0023933274684494106;0.0;0.0012368584540243485;0.0;0.016460303689894117;0.0015657461846099979;0.01264358222583581;0.0;0.0;0.010593735625199024;0.0;0.015537918611835582;0.0;0.0;0.00017864968182027075;0.02018773696518576;0.00998789538287504;0.011524186373321355;0.0021100614971593665;0.004359284540285013;0.008898672316433017;0.0024944235890133125;0.015962580323473384;0.015773110392184098;0.013096581954076113;0.010631066766802462;0.0009605378778107583;0.03385417415914068;0.0004860205007626368;0.0029868215045790337;0.0043952435561319825;0.0;0.0;0.0037093499653217616;0.022264476725880295;0.003873771882614746;0.02025905805967645;0.013784815619069007;0.04574166723083681;0.011151980258924159;0.027460022861791188;0.016697848146273737;0.10380372156170438;0.10668853643856241;0.02738592106798512;0.008851464117287305;0.008005375738669447;0.027590295515088924;0.0;0.0;0.0;0.059005177715319365;0.041216955835270234;0.0;0.0;0.0;0.0;0.0;0.0010472921780459992;0.005914050394378141;0.006075991834095414
+Triphenyl phosphate;0.5429996756227149;0.5378505807125741;0.5024022323050045;0.5914751011338202;0.5810139587921913;0.6137213323181775;0.8753032403377632;0.5974036669657447;0.6115745180305312;0.6082350852145737;0.1964525396232999;0.5799004765680277;0.9124031079709773;0.5825142966723704;0.5609220456089654;0.6167930336875618;0.509452253261606;0.5351140559015886;0.5428757410420944;0.5417991705105885;0.5501486956176449;0.555713524229626;0.5432141817000754;0.5281739668656771;0.5189474487075904;0.037489040376444606;0.6000096181427014;0.16883586734769673;0.12946117818332137;0.14903478897632935;0.12035599453738309;0.11702709918043427;0.20743356921855183;0.8228412994064859;0.3083934885456148;0.5896954937969581;0.2968853984303328;0.08010110176888192;0.008356434326461704;0.29729168894706925;0.08452070949568775;0.3239817187658864;0.07874204753445534;0.000447125735607186;0.024780474474319088;0.015818157003559492;0.019275041408494356;0.01866393742832541;0.01803690178520319;0.24403048242117434;0.17865263983889917;0.0742710453765162;0.005407608971749024;0.002678788121106089;0.1612565049200366;0.3346869243496633;0.15825602304500389;0.2216330389778851;0.14750412943226135;0.00924786115747784;0.11187524439046238;0.19823246032084135;0.26134446927677074;0.25619161252051414;0.15460825306783518;0.20919085151472155;0.21948345614078565;0.1586613181897473;0.15828576001523922;0.15686154881980569;0.14876195133119566;0.10714377665100577;0.021274059917273946;0.026745863106507922;0.02986924501891234;0.019007671132416887;0.009115074044037998;0.008314928176595411;0.026801996708939395;0.03905064225017613;0.03165500689086617;0.028042262622475465;0.026282290111151838;0.025863476746001517;0.031682231045745295;0.016771132976481876;0.05021633615394483;0.05721091244041199;0.057142831032614506;0.05421198243557824;0.04234796479444881;0.02224349645687016;0.035785222356361925;0.023202647524727206;0.027810541478413393;0.029316026796512754;0.0132415872710061;0.03997118620896564;0.028344334404327334;0.022429541522565852;0.08334194586013348;0.029310651348192183;0.035055787726376596;0.04110926015158902;0.04824226787826645;0.36854971183960145;0.35516016008458257;0.3673648323094685;0.3679845507166239;0.4246934848379079;0.39771792351286334;0.357179768225567;0.4331786006697138;0.4257521849391607;0.40754138993850103;0.47101022920566005;0.4134491951452951;0.3618523026254167;0.3140138000595075;0.16757922735783437;0.02267055692019582;0.5321654305980418;0.3033178491558332;0.028658610082281204;0.00628917434207442;0.006204769109565928;0.007161309243704249;0.01924363130016066;0.06861816045223276;0.012173560332479098;0.026627747829744405;0.03749070768343459;0.8002537450617097;0.03650944821476654;0.5321623757114168;0.028592672567074963;0.027459506071023737;0.03190913999035209;0.3880952133224539;0.4548621579184954;0.44176434376933676;0.3654209168728275;0.13046309493172598;0.34738088435591113;0.725330318194833;0.0476764893662537;0.024086865715669502;0.014309497169300906;0.050057111337935264;0.05540728377471305;0.23253944656226275;0.043187908951556025;0.030182756826517665;0.008694558968975885;0.5000907746157132;0.19598216643235697;0.22628446735038188;0.10979819710124838;0.0985860751079362;0.12669942232449632;0.1316265613177799;0.017188202862469373;0.00841890864470326;0.057632587207866355;0.029233090614422936;0.07714518785471206;0.035427644483628395;0.02454139536860976;0.02624881340664589;0.057068473438322276;0.04531748566974306;0.30791717071011115;0.0649926214600606;0.012362241046866456;0.005601346331354631;0.0789274402008831;0.01690207471356053;0.01084434928789001;0.2276275443672979;0.837654747117401;0.8606444394590116;0.056172397286416285;0.19327829965081067;0.5543233627697441;0.06207321753537923;0.05670000858827776;0.017410835271474273;0.0;1.0;0.5190333328844166;0.4707639691744592;0.49071114783979825;0.2158773502029607;0.4510225342959032;0.32948324839001736;0.8936618974954826;0.8931393305743128;0.5820028315961;0.4182795844472551;0.3091773653369675;0.6331017971705472;0.35820902884610084;0.5135020885526174;0.444266004996224;0.27583381102339677;0.5390190762274601;0.3676178359530471;0.10679233139208505;0.014605087211685295;0.049551523069692106;0.016875938193920876;0.2995924675801955;0.19196611611358264;0.1251545740833988;0.029871142267914257;0.21331499885419763;0.27510886247472444;0.03084435242468175;0.17128198392273714;0.049064437774666854;0.07887022825054782;0.007801322656198033;0.11005752659329673;0.4530530328592389;0.3954817549474763;0.25240637934483856;0.3396564992796103;0.20814294806139644;0.27862159714465473;0.11215327430804066;0.11586238189846566;0.10223422044235403;0.1795964811882022;0.22602619868072235;0.06381770406326363;0.13460262074563237;0.16536343683143806;0.17596239183257997;0.20016560770127137;0.13767236313281847;0.17053673730750432;0.038077496233310665;0.02798041297785972;0.030116379333350388;0.12231775814927895;0.012234304411163353;0.034917880054825115;0.03593388316861271;0.03147925268714628;0.0030447766064964285;0.10516889596956001;0.10610341532415554;0.028815015736550483;0.49921409510335507;0.034669409791733254;0.195819542567112;0.13018326797485064;0.39492182411209403;0.08659541943703711;0.10462183247536591;0.0029816890343140013;0.12105421870104449;0.0037107727899415095;0.019513042840670434;0.21091675008380006;0.005333026398504161;0.2049467029904695;0.19858700502011312;0.23425448546289487;0.07941083726787408;0.036056057475846226;0.02345512718046049;0.19153896902257606;0.025458532486978408;0.04388625099687163;0.26215378539226375;0.17030521791492365;0.005598370585320887;0.017091814605105282;0.004221481180869678;0.03954178977166737;0.04740327135726538;0.003017943825292608;0.4625888561027656;0.016810840598561624;0.008488282119000243;0.013965071914275472;0.24991338809473568;0.0;0.016103696544733297;0.07021615916106831;0.06855448391813028;0.05211757821158621;0.03189348970070215;0.040004945416881446;0.8563679722012753;0.09822277903746221;0.0410033634983721;0.03403232043695844;0.07676075748414118;0.015146162975785277;0.0022587558979853505;0.2761126664377442;0.053239407207686947;0.8815135371333541;0.08105502841998471;0.07841808528159018;0.022721271329365363;0.030846583008998972;0.02431357629183566;0.09511049713883736;0.007951548785193028;0.0;0.005846490221563732;0.07680555700980678;0.17595859308350995;0.4933383875526827;0.15491035637660375;0.08645879314037604;0.06600678913370266;0.023189114938641703;0.07853009710381981;0.04365318454639967;0.22011183000532844;0.10034864045923746;0.016271188853156378;0.031103262198994484;0.03732068373310721;0.00707283877597842;0.03880159858367988;0.007072896049460038;0.3429015154634267;0.04400624759069804;0.03746872790938263;0.07534999236610068;0.12718729168379095;0.08400102418282013;0.023955559165319152;0.3616434236591722;0.43420713191211463;0.5614645508015093;0.24893954355951903;0.13578557094260957;0.12361954966452185;0.1223349969611437;0.005011836781348132;0.01218772627469684;0.031501434225232126;0.043326401999504;0.004735886662448942;0.3003241152723985;0.2893149744211717;0.04782815710941672;0.021207165498413682;0.13199108641853646;0.1330774608028583;0.0023307070221924857;0.2191707273029308;0.020044714747261917;0.05022293115007616;0.17563406201909396;0.06861036897096175;0.023734240518200157;0.034522296962041704;0.007156972354856214;0.019374986452278697;0.004436985891639782;0.06737625996090497;0.06721765017198696;0.06071055562262348;0.04601862607307543;0.038674317044833754;0.0515176811149666;0.5997830251322294;0.006320815208005667;0.008823621251437857;0.03442605184891164;0.09301758048541635;0.18248669954556127;0.13410442728834135;0.05588500032296964;0.010681106997351244;0.46656598988358705;0.43299474185412284;0.12769054809358427;0.12927366381808264
+1,2-Benzanthraquinone;0.6315088528856817;0.6241778356028947;0.6706657000122597;0.6641857883341259;0.6645472850377471;0.650192206589916;0.4956614173130122;0.7359083966805705;0.7388935683139762;0.6872740801942303;0.3992340662438428;0.6955441508991256;0.5367309353343809;0.6440052791974201;0.6538226616274724;0.6507883950182004;0.6442733253554592;0.6417568609422517;0.6259764673875812;0.6393642169460334;0.6400285372947084;0.630505925937975;0.6254672720143314;0.6417087625500146;0.6238614030423236;0.012811084937989879;0.3824939441085703;0.22933587655169047;0.1592607392194744;0.19300169556620625;0.09410344981498905;0.14493348660595903;0.44489715664917034;0.598737341771793;0.375570132064125;0.7282203994616986;0.29644103392959825;0.09704925539476375;0.008804430639006275;0.36700578522143434;0.11518210180390298;0.41625885575720223;0.067733931831454;0.0;0.01372195952558803;0.01799603693527848;0.021969726660698387;0.020445421964078638;0.02006213271372009;0.3054218612029294;0.232782779877864;0.09917520648164053;0.10425429341899675;0.07987956700084214;0.20679960795344457;0.4289303148038795;0.20455712251462768;0.2840742978431662;0.1907711060297345;0.0045811183780562394;0.14786498505528764;0.25886785610665247;0.33793290706772583;0.32982500316981594;0.19933413714399073;0.26760271569605854;0.28110638135950594;0.20492245079936428;0.20279881957583543;0.20245903013565103;0.19139493350540204;0.13880233005189654;0.0050259369299835285;0.012197692002159513;0.005279119163173629;0.005101984632038897;0.00161000431230098;0.0;0.0007814724680734444;0.023855191976616938;0.0018537131215261519;0.0018023602246911529;0.002957115302617157;0.003388721634135269;0.04479021201758728;0.030110093450916003;0.017575105830496294;0.019818210703055006;0.021167898629457577;0.04053582792578455;0.004628956680425726;0.0051000731344853015;0.015883716326479596;0.004443594090410507;0.00410565240538005;0.019747782842340106;0.0003072692173148703;0.005429810875542992;0.008351030195902422;0.018353887895994313;0.05919416227012793;0.04156702639145178;0.035602704898986946;0.020788261950625324;0.05883287310650715;0.4267710113854876;0.377962491377888;0.39944708686326824;0.41029257642711364;0.48053816004724287;0.454182271518769;0.42300313879851287;0.4790217483319178;0.47177805912569454;0.460497218485865;0.19406978764265917;0.1746494812926311;0.15429772751550638;0.3647324420751611;0.07602079477705549;0.027272920403272102;0.22592302259237845;0.35398065984005755;0.012377355213256957;0.004000980949288996;0.004721350655749602;0.005534700281977187;0.015115375009796985;0.03583238364979748;0.0;0.03200883045976734;0.16348997053984238;0.3656868637346907;0.15999713098221754;0.6398443731267088;0.07075710101637475;0.1286598913779649;0.02713007924080253;0.47058680883815734;0.5303627073690456;0.3271516715345898;0.43827197475583957;0.25286856637372207;0.27517048857085885;0.5368154189627402;0.0340427021510685;0.02275255016134973;0.016941786007171042;0.25007284875781377;0.10019437302358528;0.7608127955174696;0.1894448622948561;0.09470657758810087;0.05067708579568858;0.5790148983558321;0.2646263017078261;0.3507348208156471;0.243643433031435;0.13620970479104982;0.05504133965649781;0.11722106810529921;0.0208040957663453;0.017059422854198168;0.054599036580188214;0.02838165416469855;0.031310411598542844;0.03141701519842837;0.02509895268160701;0.03234109430347373;0.03247898019026703;0.046010844249515064;0.13183294303855453;0.006421893921635018;0.07319524742117732;0.06406245368647345;0.08190921473645767;0.036964513384722605;0.018608097407340908;0.22422200917934995;0.5979207134009787;0.5969108419046146;0.00023508016281906306;0.24071508223479424;0.5833879348108895;0.08114357231561288;0.2226001042541881;0.0757552994656992;0.019879238518728748;0.5190333328844166;1.0;0.9556862973624637;0.5937318565869814;0.5535792583979284;0.8206685183596608;0.7631493788636294;0.5797062628052161;0.5719667412618316;0.5134929112446357;0.3895578564897172;0.29398437022010704;0.5495459723707137;0.3195136808413785;0.4526473508417108;0.4755922732528082;0.14445682532393703;0.6526965321309859;0.46066759442701416;0.17750787270685361;0.02278497470440553;0.07253173591625302;0.03617421937085621;0.3274076231832227;0.5919435193771634;0.20959740441756883;0.013967257550779464;0.24955486239267358;0.3390913926295948;0.1082119220429605;0.1131468611748242;0.20762382554062264;0.2963456037222033;0.08579074496786321;0.0450173546501277;0.5279846262422437;0.4735674028548316;0.3224138477889275;0.434739900859068;0.2683021744910829;0.35769700864823367;0.14928006183791107;0.1549282210442155;0.1394388239978868;0.23136274486522385;0.2892591369348292;0.09414940229006996;0.17821326577400215;0.15189008820887673;0.17267979738251377;0.19966561555908705;0.1821354159291469;0.26510527490836416;0.3526879251230265;0.3591081866404406;0.12278136553326406;0.11543438149383735;0.21876149830816544;0.007925479749379512;0.01451983728500566;0.04626964841443089;0.036677986163162105;0.13678514137912426;0.13762377467646353;0.04899789807001204;0.5714065021426455;0.17289137626893855;0.05987838711804292;0.05643985934632895;0.7054716628121781;0.2116295903614371;0.12608696698506167;0.014768061192851706;0.15597668035011497;0.5014137717610789;0.00026713359012320103;0.17323341411824697;0.006452804671861052;0.24959567474111163;0.2701972392808849;0.32771279760113337;0.09713209788051423;0.009954104566373226;0.11209859557686816;0.2778154828790858;0.21293854985511707;0.05218830275333046;0.2513552561644312;0.0373157676986204;0.09353958063722013;0.003554715015895207;0.034139176735841346;0.0642205886977779;0.11561725989916231;0.01442221445533287;0.5863416807089418;0.13454456873083265;0.047867303834331694;0.13484689635997474;0.2796567593473725;0.007220266593726073;0.016787713694291728;0.02696647106650504;0.08092656084777437;0.06702419683090027;0.05566041296158398;0.008291222096324966;0.32847109588326096;0.13119821528905215;0.09090830720029165;0.03678356638135673;0.0418992391921841;0.005486249305562525;0.024675766339419328;0.39214019070404454;0.04814648439670579;0.36062310074140336;0.0267873414801696;0.09028195386000694;0.042820200176055756;0.005390437295438787;0.14442436181592438;0.28756022783535523;0.0015200093236246665;0.1183517322685104;0.11624601426559589;0.09650609778766733;0.29894027451674426;0.5733922807867101;0.3916404868265596;0.09926458886823926;0.028332171884526407;0.017521105826446698;0.13360074924968532;0.136600012401466;0.2580379366718447;0.12730993374832453;0.024784111557369565;0.2611918920101247;0.0051207050605583835;0.009572149499341709;0.10560627419864023;0.04462409541254743;0.5598136369642792;0.05659407480583476;0.04975661592035418;0.036053091124344995;0.15987550131546707;0.05695134806798712;0.04716468899209265;0.5153758087841721;0.7026866026751825;0.7308989648669952;0.26655823169783316;0.4226683747232389;0.0012827555928076092;0.001039186478716504;0.0035364011447652642;0.004916432684826285;0.003313107709968916;0.12957207175778532;0.217681949930537;0.04426401046176843;0.04349716102968103;0.008634130799443408;0.022112634133201775;0.2536084605874807;0.05879182356713238;0.010564283236422901;0.07924117289284374;0.0295044660850059;0.07421652023767318;0.13291560673338948;0.010672285450274635;0.011124582379404243;0.05419893871772342;0.057884009429170394;0.010807551500543428;0.005083997472023162;0.033807967857529125;0.012284905633418728;0.03340407938406117;0.1084932770207487;0.03470496101027135;0.04424620241836101;0.7453688633689016;0.009976552540173756;0.01206611951757241;0.12597510609407572;0.036474801288808964;0.21795132733920355;0.17272158884296854;0.06367646158410142;0.0008037733012412687;0.5664103975690338;0.5641161467280312;0.196174500550551;0.2082286991025265
+1,4-Chrysenequinone;0.7089438584586646;0.7048610193657785;0.7580918369607418;0.7319213150261797;0.7360126679949024;0.7247302227744559;0.4334113499235269;0.8025483297393116;0.8034639891274532;0.7600529305864703;0.42288942851578953;0.7669096668214885;0.48013417061573205;0.7160196531651946;0.7256728908168716;0.7054457597734303;0.7340202185326047;0.7260055234967431;0.7045480882964679;0.72103491664739;0.7268253416566091;0.7124320623174751;0.7134631519687062;0.7323294506544747;0.7134231373653802;0.033714464980812146;0.3863299930528444;0.29871907093586286;0.19783988024986182;0.2594615799812903;0.1314647854036433;0.18420927586565375;0.4800229002882328;0.5856345636949694;0.444780888683414;0.7906301252206861;0.3645495154747456;0.11615374699697856;0.02136150672524827;0.42165667673719637;0.13615306617862888;0.46591337400428745;0.0857757449257399;0.00039497460001450756;0.05779459480076035;0.03119064207580632;0.035290906758023696;0.03312971275063358;0.035476208141776225;0.34835556790783184;0.26783676205066664;0.11392985497251899;0.09676859579040363;0.09211702304604272;0.2418856133536861;0.4799305606929113;0.23987964409415263;0.3248746338128515;0.22211455748067205;0.03546633292013858;0.17277604906330593;0.29957174262083924;0.39077663232479526;0.3761375188519076;0.2360417447870569;0.3066490981926142;0.32132941212042454;0.23638097494678306;0.23302080605251344;0.23424274890781513;0.21822872779856528;0.1603205247290326;0.08141240728678463;0.12183988562338498;0.07249311484588922;0.06971592774906944;0.023040808544075763;0.037019663115056105;0.03465161193929782;0.07059726198530422;0.07275051505183656;0.069438866717532;0.09385712105382202;0.09075654638396598;0.057841800040893794;0.038468525199972195;0.05129055533088267;0.05613390799305122;0.0610259186815722;0.05292837681127035;0.03372867286654747;0.02212466795132637;0.09424262630425294;0.018403659651347288;0.021653610779622818;0.10854625509610175;0.09036583747650533;0.04818513110708761;0.04690854387645791;0.055644842608817795;0.10336746553813542;0.066420600523832;0.06782450259277645;0.060529597035786385;0.08150489077600447;0.48334147597661287;0.42560121037481546;0.44949916705792575;0.4622897505427712;0.5442365018963156;0.5119862600620322;0.47632144743864924;0.540639399449126;0.5341105264557534;0.5245484932985522;0.1469635189244142;0.13659823532355836;0.12261482278215659;0.42148600100567374;0.07855414218465015;0.06012498025156332;0.16287453685183914;0.40589925961792006;0.02692071734810355;0.045116233113037016;0.012987347439176573;0.0123827524053654;0.02912892878331718;0.04521949423286014;0.009233318803841145;0.05812238374279891;0.1875036228306752;0.25151030290684473;0.2355557145293714;0.7298269224520404;0.11892555835344752;0.14794474355036172;0.0813876163665158;0.554344621731449;0.6182265126278949;0.3214914520792633;0.5211845525505846;0.2755741783962673;0.2588488238809889;0.523567855741738;0.05919163120987162;0.05330601734371134;0.05507861459228527;0.26741208867138916;0.1766713352641771;0.7478259543023472;0.20126987139034574;0.11014546218794306;0.0516898511353774;0.5923699031234974;0.3274109741751237;0.3782179928280988;0.23555316822204994;0.15801513168872802;0.06606307803784933;0.14483541529278432;0.036773177488667576;0.02577954252196737;0.06460376412908125;0.07482818971150104;0.03695922686356601;0.06793588822924772;0.048211314579377135;0.05585019098791808;0.06653516528364671;0.11371691374652726;0.10480003987469937;0.024868573962260998;0.08095213046433314;0.07843182383554802;0.1006171525067617;0.03874926667383495;0.027737392239990704;0.28593024512143395;0.6021084225018378;0.5921023909200794;0.02178331286919415;0.32136654803297066;0.6595950852518017;0.09468056744516701;0.21156321744664264;0.09388776440031488;0.02428421565870856;0.4707639691744592;0.9556862973624637;1.0;0.6417277745471271;0.5353600449051028;0.8441329898132494;0.7747029999856061;0.5434321803865794;0.5312399283435845;0.5618433941808703;0.45487954507579825;0.34437067802837834;0.6162565388128479;0.36729578802936375;0.5047917723739836;0.5401210972494029;0.12451376753741411;0.7408662124721456;0.5402918016971009;0.22700297611010384;0.04292015385092596;0.10738618534941197;0.07472636605478138;0.38860673237965837;0.5609427010410366;0.24274318652222096;0.08534691898110622;0.30503751741134805;0.37912491361605405;0.15727474588880835;0.09213347379112866;0.18058541008119966;0.28794207569829877;0.0919373634317015;0.04019422489048671;0.6003058246786313;0.5380348485535255;0.3682829577475092;0.4881786481934432;0.3137432872740719;0.4082791926785151;0.1741927143087543;0.18009485244456114;0.16351458813826195;0.27179174917504595;0.3308652926999294;0.10887789228330373;0.21191623518198793;0.1820425373017292;0.21258633732490695;0.2412358305484611;0.21332591606167037;0.300998556340593;0.32740922166394726;0.320910756449926;0.1642836520142166;0.14274340932861748;0.19637090153512837;0.012156484463389778;0.026559315591449403;0.05944809456224431;0.04782254804898562;0.1687726049843478;0.1698661304707821;0.062458583864607946;0.6609255475591074;0.16673176184792982;0.034812736848187475;0.07610738567963606;0.6976372812311317;0.18322015254711038;0.14584741757020847;0.038220012316739375;0.21940283766219895;0.4362839597237324;0.016773803034865496;0.16841419859847997;0.048100336058637075;0.35542201210991803;0.34421369515405353;0.3928028029165321;0.12066893230125482;0.047559976716627456;0.09849233973560642;0.33453130712378193;0.18285303340048317;0.06669437603216347;0.3209125495218818;0.04110600432493443;0.10275311027194835;0.04292881484632313;0.06120919966950875;0.07403711189264361;0.13025775611671286;0.037397056109997516;0.6336577213909568;0.11496968701248739;0.16024687042910302;0.11769205617504984;0.3282471276804033;0.05956369960491125;0.05806652120172818;0.06580697919019621;0.11441404206889288;0.08730182010210531;0.05259773962235604;0.05264644206098619;0.22101865002203475;0.15466941980909618;0.1327685325572277;0.06370521197498233;0.0859320952000557;0.040379834235654666;0.03702177685155332;0.38719127604166237;0.072495690710428;0.2523622538177149;0.03007579132195039;0.1172850614903048;0.06944967092457181;0.024761140542179916;0.18823151586958534;0.2544250428901142;0.02728451958332597;0.08820364532916504;0.0856076793958495;0.14050729593421984;0.3313740260005289;0.6653371442560405;0.3562419597470681;0.12850204248189015;0.05877531853514195;0.05387779901192008;0.17543103086472395;0.1639542501709986;0.29448723403329485;0.19111312988762205;0.05135486365006243;0.2199794321122287;0.013527355213341316;0.018002281499343242;0.1057958288326951;0.06617718082429043;0.5682208995934367;0.11608203505202604;0.1035996342284245;0.05384652896914018;0.18666211237035063;0.06538060215037873;0.06472103962661509;0.5631168352275875;0.7723262178650733;0.800162345389124;0.32357433697461785;0.41170139273188083;0.04885257745634118;0.05855104048096376;0.026299551988221894;0.031606287384772815;0.0384623912141082;0.12738929396006385;0.21410659547036712;0.07712234843208712;0.05824782073563892;0.017846963959887836;0.03619850141927665;0.26653007844309695;0.09530509763413143;0.013610360990944462;0.0815771685686648;0.04860681968692189;0.11831628775108391;0.21420839563932384;0.043927163508612206;0.030662301916977604;0.06841647199038071;0.06642054246556993;0.052798206595791534;0.008871903660152952;0.038516821453083175;0.037667453170535395;0.10370829759329007;0.1395104262320963;0.08171027337299334;0.1142488887777736;0.7972577140736474;0.011538301747356344;0.021425881279968712;0.14444030358883472;0.058942075717585654;0.28037369961439274;0.21900638931232863;0.07897106665040603;0.017389072062646196;0.6608036143417416;0.6486487450730289;0.2530960671156804;0.27240094810916426
+Hydroxychrysene;0.6889421574703269;0.6906383019585838;0.7292551490484067;0.7032184238759621;0.7150128066567782;0.6995013014659952;0.3891772358652721;0.7059180632211856;0.7022641923154083;0.7641941958763843;0.39067617693589857;0.7203134966183831;0.9513992545316775;0.7004502496620263;0.7049535904054953;0.6703062112306606;0.7284331365641387;0.7108158879226101;0.6953405307009553;0.7112723397513571;0.7123705081477013;0.7000909993937092;0.6893569840589079;0.7188109934371592;0.702045236068798;0.003474200242557138;0.36800582635895634;0.23202417225510485;0.1810490614817629;0.18370323391129098;0.12319757862608387;0.15700216307219048;0.3513171462396392;0.5974941266140325;0.40477587830007694;0.7705856206075697;0.26972953908665476;0.10800208594980239;0.01049066595475939;0.400221008793039;0.1868162863680678;0.45485796997603123;0.07668597049994;0.00044750364261225364;0.008317700308707722;0.003513921698188753;0.004467582773235593;0.00436638846004537;0.0046317241974866115;0.3491268175115686;0.2965482801774885;0.10653899348374819;0.026305866411073537;0.012590245605324854;0.21871906198355062;0.46597333709068633;0.25075728664127206;0.3091398532229181;0.23497334195996084;0.002182560380542677;0.20619668506833919;0.29948652061004893;0.367834584456429;0.3621758668421357;0.2566979203850685;0.2912126361729581;0.3055281245184741;0.23224983452949258;0.22763274674466524;0.2271997427310109;0.20625392045601013;0.16193243794647696;0.0045485786275902594;0.0169973829675477;0.003203742212128391;0.002843071525013834;0.005327097531966509;0.008258420669603679;0.0;0.012298602750583863;0.0035383109047707256;0.0036629396326690166;0.007281874094945605;0.006786584847942268;0.022172506077637207;0.009713436155298034;0.013859924669736259;0.01770650108347027;0.020424953105909638;0.029242445422537088;0.0006910181412059424;0.000800790484259665;0.014947599496709634;0.0014208485635740376;0.001963711843897219;0.030093959289915213;0.00952941663998352;0.011220827258205935;0.005539851387254922;0.01807089384611572;0.0406000726874673;0.024607216731554225;0.03453883021334269;0.02735751030158831;0.06478473118716276;0.4700800748738002;0.41421650420531025;0.43635099640254255;0.4450232076096643;0.5305576621341148;0.4989954001202158;0.4578008060307294;0.5310031633627288;0.5204611271006977;0.5075986940132836;0.1027831673862019;0.09387605836962534;0.08248725192406911;0.3898751542365706;0.04900237785083028;0.03883868000068058;0.12081790622814488;0.387539435156658;0.010298399061677305;0.0026121066001485336;0.0022104619172015256;0.001804066838586823;0.021471332204655517;0.021037559921119428;0.01460437975980442;0.035796233706449423;0.10010777785536273;0.35609555864047127;0.1873426792532279;0.715204843871102;0.0012126516399416983;0.08469208074014997;0.002109441284574233;0.554935603267954;0.5984964087324436;0.7021918756224043;0.5632750956834754;0.22567514540491096;0.7816243721430528;0.4862063508149843;0.041224985723003274;0.020647480343020688;0.05421472160567456;0.09975233077642914;0.1926344321847634;0.48784219904148074;0.1451452048964515;0.030785916338770973;0.07708752525662954;0.5703739139895064;0.3090792236293559;0.27057622085331245;0.09882569253001511;0.15137991353503577;0.5627809401387495;0.19352076312466546;0.02202924884728984;0.0053952021509683515;0.03092327491780789;0.04949505934700795;0.019055099489852068;0.024387144899124295;0.057768640382196035;0.06272047550024999;0.013519877606810856;0.01305022383618463;0.0802192962407281;0.0034222718832087645;0.007610356295103464;0.010897211226608312;0.10068046634785034;0.0030130817886008213;0.0004846131508784708;0.25774851925797176;0.5551437238412344;0.5472173131590679;0.012965631615304153;0.26602721111406746;0.6413660290816232;0.011051615290104826;0.07460902363859061;0.02617126326350653;0.00040687495966249747;0.49071114783979825;0.5937318565869814;0.6417277745471271;1.0;0.30627148276918426;0.6599139945269309;0.5211651707276096;0.5013049434450876;0.48910634766293226;0.5125181488818141;0.3720465404282731;0.30330557146473347;0.5496663346437592;0.3170246968253147;0.45705640237666423;0.5465830928010467;0.07289724837086439;0.7349833254088819;0.5202321588002294;0.16181649037812135;0.007501824822370176;0.07208485465763648;0.023152498437515795;0.37174442868747737;0.1990439113649122;0.18093878586910644;0.009412792851863364;0.27971849090099415;0.3757358149043239;0.502314494413152;0.008379107388235982;0.042931142113074985;0.23063871649426634;0.34431483234773563;0.029279806318405894;0.5835628059023785;0.5192616441165063;0.35766808843759457;0.4696532998195443;0.3117403240709272;0.38922270202848525;0.22660263821788568;0.21433684006358256;0.2173139865673221;0.2865797656242743;0.3167109778174883;0.1916899545441193;0.257489672504153;0.1567740732306977;0.1802777697675968;0.2217076227770833;0.24574798034441106;0.15404587825065733;0.07954378733549873;0.06932053977915427;0.030283200349804758;0.04957929592727716;0.03470577388838978;0.008495938903487878;0.009510072358686386;0.04968597939537371;0.022083410331553165;0.1453625302943132;0.1471128566991375;0.009218791464798108;0.6199300030070557;0.03985513945506524;0.058398210741526374;0.03716100497282268;0.7223203993147046;0.04003539577802574;0.13235169036697195;0.0008409036707380117;0.16329748505138508;0.03171373886046197;0.0;0.09277903687404156;0.01987928613180629;0.25227724038585175;0.27172103359005484;0.35102274550560675;0.10879436891502446;0.011252171841619892;0.0327423656445686;0.20462260135286905;0.04133368478168374;0.10515247384127538;0.2757332682137365;0.01114181859173893;0.07186595699579625;0.02581933948992297;0.009044140377883945;0.004681962700742186;0.04336699429302697;0.000803410605596294;0.5511238773118876;0.04108340345092388;0.014484304109685152;0.003757289397041092;0.2731103914200502;0.0;0.01789810911514794;0.02941669013459089;0.10509409564846835;0.08536039089960344;0.0462194147512488;0.004364970627805887;0.17494400315395733;0.14114079810451444;0.02333619942717648;0.05004295513138346;0.013793761049400773;0.022942803682834675;0.000990180364016822;0.2517417325529128;0.0488338856076539;0.20349369929856062;0.015564952804381417;0.10269934263112346;0.004053389280736422;0.005747683191002207;0.033135402378385935;0.6272111350538184;0.0;0.0;0.0007923227233722917;0.10311938122179222;0.23598623549538955;0.6362352959100757;0.06636538793460302;0.11444432553273294;0.23561670902431497;0.02426174303689862;0.12362572190252598;0.029390292171563616;0.2817525057849805;0.14758608362365375;0.01604775407517997;0.07369108788808686;0.0262710360272336;0.00426294493603533;0.05131067642406946;0.018383991379963115;0.4211965570570987;0.08151570846760593;0.05234721683243539;0.03388805332098369;0.21484166854696984;0.016589566422108824;0.03219358174403337;0.5031206987924155;0.6904316369791935;0.6995842238388924;0.30365283684538474;0.11832403196119941;0.0004813946791770605;0.0011713591091578374;0.020473236933564218;0.04044248359933312;0.011087466682526742;0.011669669478944066;0.062376596892624765;0.02261783363679207;0.04013712757967179;0.004621312002740127;0.07373888901994675;0.29713238284736276;0.08181001429674954;0.019431847038294047;0.034618345685698264;0.006155328200602948;0.1693138797006377;0.11667820845647583;0.002101544509787331;0.07895002494762066;0.0011589140187484848;0.0006901553484974342;0.003038070048540415;0.003095629448803037;0.007047865039508487;0.008542142352440874;0.047188347076447076;0.018410651863002527;0.06608394612123991;0.018995249336394935;0.8692065282621274;0.00877985519510363;0.011385238353670269;0.009724203067979388;0.027554936003144005;0.2678480915646554;0.31516576332338936;0.23525799565309488;0.012310236051056076;0.6037905122581952;0.6600815092096166;0.17252717110156235;0.1654349689057302
+1-Nitronaphthalene;0.3044194735980222;0.323280796341382;0.34047712691654913;0.3139930730918108;0.32093838423615983;0.31972982493447033;0.20196788125692197;0.3087844442917299;0.30679017660163466;0.3461640423157215;0.254764071417359;0.3483660666557468;0.20185398986236933;0.3012819553934027;0.3026983936244954;0.29594105005868226;0.3288828096857163;0.330737262542317;0.3180513419380983;0.3304559611706583;0.30371785585466005;0.2990471906307979;0.3024131301024164;0.3161558672602606;0.2954529036931401;0.028576129982404132;0.20779481845575332;0.1852812242532728;0.1785113232127558;0.31149922248852235;0.08952618812374039;0.07388469363193872;0.5210687255209838;0.25867352000841787;0.34228766277039;0.4091461457329828;0.5316370302564986;0.09510627044195735;0.06631041083639558;0.17665310479743307;0.10976144612932054;0.2068401456011797;0.05531231599753367;0.0009699014191305223;0.05000861307788789;0.07477909892026503;0.07820521576288325;0.07195917213071006;0.0831973373437337;0.14507616054320702;0.11520140009290271;0.071159391297891;0.00799166315053868;0.02645316780562157;0.10980253054214685;0.2109739700012919;0.13803042116452013;0.16035437605598865;0.12102226808796664;0.04041994330228335;0.11837121836148803;0.15249201724142109;0.17808955948550437;0.1750844422064003;0.14241632547784752;0.15652199826298285;0.1596573645114334;0.12263276108503163;0.12664869402376122;0.12287975648067001;0.11351750502119871;0.1009908922536632;0.04005341970402659;0.04050895370212794;0.30589191570098767;0.2999398057505015;0.014708424873204225;0.006043687660272778;0.013952437624343792;0.09234074730416673;0.10231921209964268;0.08791300659588941;0.047415677346178416;0.04819869600691886;0.0865592184493523;0.06617765254975114;0.20360792925876092;0.16799439301353966;0.06169583660860998;0.048027712846591006;0.04398070911377567;0.056395372030781536;0.18298504048704267;0.13664308386919413;0.16632574283768364;0.022876818803320705;0.01980490649942441;0.17120054549890223;0.23585919629082627;0.21914110303738105;0.2993054845987841;0.16236095558342808;0.18654979398806032;0.03429550062428755;0.17818673244375463;0.2005355365481104;0.17640122841779146;0.18792002904852348;0.19306749818744262;0.22745268984513267;0.2137747484589291;0.20515591779721135;0.22734041726978313;0.23413526097290638;0.22584933556658013;0.06131680346073467;0.053497183562171084;0.12192679806367247;0.1909883538513956;0.07738964911896251;0.01821801906654858;0.05246202947342778;0.16833154800186814;0.040809804334575844;0.0031217348475232522;0.009122648629658576;0.016801601630477805;0.03145151606028712;0.015437397851684975;0.012763288158608608;0.05931906756960945;0.5876020023918606;0.1444243187365899;0.2820383311792492;0.3535860674918717;0.6004245630788707;0.21918695629833454;0.5239155752878973;0.30908915703370266;0.34738182299762516;0.29001400638318814;0.4097918706283328;0.3484891762420453;0.18626195106036372;0.4595587980763828;0.17298392057181675;0.397875257622602;0.032857777295472554;0.21399794179458484;0.2383517482266148;0.3532729171185303;0.19423797126359435;0.11245821992455457;0.06236003192541827;0.5251753617854779;0.23824269305500465;0.21707556557828814;0.16294357561065972;0.18136592644092556;0.26940112432203245;0.20805668724993134;0.07296821529061606;0.017813588756177667;0.06305903432722415;0.06714296183720168;0.015229574741006014;0.0919180331838579;0.026928880449774845;0.03757734417108171;0.0973163304962781;0.10747584792854878;0.07970227383724807;0.04973572313805718;0.055946875751692465;0.026625018173259678;0.08061469527510927;0.046128083613074994;0.08611933858895451;0.13072388889886383;0.25961490359177936;0.25712543830266327;0.0021761957369633867;0.25127431986461796;0.28231616046907254;0.14402993862307903;0.37355830203449497;0.041634319494788206;0.02161232976623909;0.2158773502029607;0.5535792583979284;0.5353600449051028;0.30627148276918426;1.0;0.402899212412216;0.34224934738652313;0.42411556364669795;0.4291985023517103;0.41060474497455496;0.38349269852011164;0.31246464161688076;0.443705661538089;0.3307547945113436;0.39680023708966655;0.29527200425028827;0.08949902913735053;0.3265570676061474;0.3742134811948487;0.07679786059436414;0.04144332547172666;0.13343113916845903;0.07627003218987646;0.2049531117689558;0.13536565021385974;0.2747149678772703;0.027471740248037807;0.17696084940925952;0.34652688198504195;0.14059512487815942;0.008956134521851771;0.15644509401036322;0.15123028240672723;0.11218212743450094;0.01253641538178932;0.27761230608369064;0.26074238390695015;0.1732687320909354;0.21479656740579783;0.16521220565657993;0.18937368770347449;0.12982600987887372;0.12434210962512683;0.12181938666229125;0.1695439903873453;0.17174059443506134;0.0686095101045986;0.12673271370034161;0.0884292088143246;0.1866868117484538;0.12918601236462818;0.12734921296345325;0.22042710630288587;0.4061836564291275;0.44267752716865827;0.059467295384709865;0.33091127583436514;0.3871182490761166;0.2881457108354556;0.3117681828915196;0.3435629269907306;0.11440068494074046;0.10834501790520149;0.10924373019269362;0.1142069675241317;0.2899288571972867;0.21119009477460687;0.02838764016605683;0.07345582201297317;0.34579963722758056;0.11068508276365403;0.11341155846141966;0.1270543954470035;0.11775658988347001;0.05512338605305134;0.006356727551216412;0.11771323622286806;0.029712768728020467;0.23948437717479884;0.2048548316670955;0.49670760143838744;0.08233222558068504;0.007986732130474771;0.16347075922949136;0.23309811816012355;0.1529938837471491;0.18426613493301724;0.1716092638725757;0.04737336292584673;0.06502042693512118;0.0056415948805702745;0.10898294690030065;0.18679545972148823;0.08287072103688;0.1268224294319583;0.3347860976824938;0.24939355890913603;0.02963487344208801;0.036689458836576504;0.14130668527257134;0.007789750116934364;0.025207185232101886;0.06434889942395128;0.0567762144219729;0.34505850858002396;0.08299194426303087;0.1396604443005902;0.09283667866412486;0.09795538518600491;0.1315643888319649;0.11718960241689898;0.08579029147726566;0.40435075325283304;0.04626973102181643;0.21703543605787737;0.07547643174433265;0.10608461606781852;0.04620894852371017;0.07888558376475341;0.15352825769077297;0.18021150197867059;0.04078934825316355;0.13242539181634755;0.25809479989501055;0.05558284965102214;0.0631876131449056;0.07851530019745323;0.2168780929577765;0.39695648042300513;0.1533315270501779;0.06737311179586757;0.259205907015736;0.018215531856252982;0.06105825689596443;0.16912473724778065;0.3309671265294724;0.13455524771381605;0.07640443923623669;0.11446076510444718;0.01343593068944738;0.013612078759893193;0.2025047705506323;0.05862942786652686;0.26521444903696306;0.11256250264141297;0.10544032598509105;0.09067981954312605;0.12483041065796134;0.1068550514137591;0.07184806444084837;0.2606764149784193;0.37798215374980365;0.5090878378764784;0.15731662178449496;0.12843069165909152;0.10275574951383835;0.04684243022874436;0.2562669945700594;0.3672158910683293;0.059529364763155165;0.15864170853597953;0.12013495501930192;0.01695270071806106;0.025016171528761243;0.030971445282962858;0.04960655801566734;0.20454514177554706;0.03400202450332736;0.008319234390222063;0.06216837646720987;0.003032255260472528;0.08213260505588073;0.05371080459983538;0.1740676797105921;0.058628788081671844;0.27001575229324737;0.3984153057650181;0.23789677070329446;0.04449895910044039;0.058711350507481795;0.07694942205904699;0.29332693105748225;0.15045965573536313;0.2225378978898608;0.30241112288440747;0.42902787613654036;0.08194075656921819;0.10201171467168588;0.10222964126022287;0.14447089831489607;0.33870631621453084;0.304709168384748;0.06348907332538668;0.07825192199920696;0.4583503497705607;0.4457022815086413;0.21732663010793055;0.19840999142874
+Hydroxyfluoren-9-one;0.6926937615245143;0.6967267922966316;0.7799737722001029;0.7235818629511355;0.72835183989678;0.7040521980080333;0.38143684706064895;0.7135518084447628;0.7080315267811287;0.7417739304266031;0.2779967065933574;0.7027217711189195;0.42538426537158475;0.7051880440212139;0.7093303449405146;0.6799130757419706;0.7359043250487084;0.7225331442391564;0.6979529333509609;0.7181722834480814;0.7168903787514458;0.702176565438492;0.6954580686700799;0.7517059828601182;0.6948551895170488;0.14868683930230706;0.34161514614045313;0.254346380870924;0.18245630278377972;0.18652037499247787;0.10293401971396371;0.14656435978662238;0.4661163133087906;0.554996881919938;0.4011631820199063;0.7978315551585927;0.33292874831122;0.10731704400553715;0.01041313008686491;0.3960017668086306;0.11819879045050208;0.4400301477469565;0.07948197600507857;9.553422601672259e-05;0.019944013933297026;0.02503661946299638;0.030317015903211286;0.024327225061345003;0.02593584818130957;0.3254019834089747;0.2442478097196098;0.09718742843347641;0.007604320429993495;0.009672500494851454;0.20953076194789705;0.45551843051223884;0.2156642301500409;0.30260952500448257;0.20038021935351266;0.002261877688669634;0.15541427449451933;0.272655471081281;0.3594038308979065;0.35169362565975537;0.21137939402362663;0.2853874532563186;0.2995289753633454;0.21586418556536913;0.2135256778462159;0.21255918381974429;0.20024907771375416;0.14461511349324163;0.01235388245458228;0.026689790089310713;0.012819988868269754;0.009143730875471741;0.0008070629091325355;0.00032660055383296936;0.010515743281453086;0.04724243762246006;0.08761928197729078;0.08594222108051441;0.03987784738216351;0.040110501963659284;0.037529159555743714;0.013664387798632539;0.07540871180242181;0.08060392673892817;0.02399382829479441;0.05238000609397599;0.055035830052724485;0.02271418973831548;0.003324735685237616;0.07933485639335983;0.09207361125342417;0.031053020179341934;0.014287986106468661;0.011803258898604452;0.03479927852248458;0.04843256572776626;0.08578794683695548;0.01575748173377664;0.013279233470926948;0.03283495574922319;0.026615214606521158;0.4622217468904962;0.40351197542999123;0.42748751740556223;0.43541355020130784;0.5214849733885265;0.49583277149670224;0.46784372015886944;0.5226247753204042;0.5138801552028565;0.5000978529961838;0.08702120429713876;0.08038417946541383;0.06592546619726555;0.39324373760435344;0.038697051502903826;0.030456896196031456;0.09132791660166474;0.386468406713163;0.006154964587365114;0.005478421691793814;0.01518807005622012;0.01641713769966295;0.009093259670842284;0.0004907451853112633;0.0002541101355510065;0.0362195525200489;0.07742195687616063;0.1816822890709767;0.13612252718310422;0.7184275473721391;0.0035380540274612252;0.1643123178714999;0.016881454173918852;0.5284671881399403;0.588421217650308;0.29056415652994394;0.4906130864902831;0.19505063953442903;0.24130781938022586;0.5203498489481488;0.08111629398801795;0.023362053906132343;0.019346188382990667;0.39736853723047233;0.29833397486831686;0.9158155415077944;0.23706902254584925;0.05295375766859372;0.02456815311143817;0.5106526739452328;0.3054957096661893;0.29315580664268237;0.1700915109318727;0.16934325887272383;0.017678172493365753;0.15244619669169468;0.01746223015952598;0.006050537190124254;0.032377690998769026;0.021621531169455907;0.006517382202154512;0.11042460698301142;0.024145682959263125;0.026249841476276396;0.09113475035644539;0.08401181965467637;0.061532290524646885;0.05222422245486468;0.03222896832755849;0.006778711974590276;0.09285071569154658;0.028372343274731066;0.001652386482027975;0.24977781982088965;0.5463944739320352;0.5339059566440566;0.02435926006494148;0.25984770437951976;0.6343691325184447;0.06986167594999801;0.07031107393931918;0.03440436857568346;0.001875890176052627;0.4510225342959032;0.8206685183596608;0.8441329898132494;0.6599139945269309;0.402899212412216;1.0;0.6757924277517766;0.5434944212680911;0.5344889694218721;0.5731137803861142;0.43451201042414206;0.35298564122905074;0.6094819197957472;0.3648576781887863;0.5106453628370295;0.5172334023297459;0.09968940237563821;0.7422576896651275;0.5209656066895041;0.1825379208581585;0.033380864436910226;0.035102106632152595;0.022049212550344886;0.3843913050024633;0.23936785804798053;0.20328546595655358;0.018784091803543113;0.2799063181738416;0.3561857162665298;0.09266646611251718;0.0;0.3590646619226184;0.20877142000939117;0.05343974352907468;0.02138764991225975;0.5853241600396789;0.5142949828246773;0.3336008792951575;0.458004575815705;0.2835046774111085;0.38269953828747877;0.15302944022064588;0.16024433007255018;0.14299291134466185;0.24543612245203644;0.308527716521207;0.0952420868601119;0.18669194844606976;0.16515538302962768;0.18334073040364673;0.21486647617052376;0.1905568385029763;0.16852548077208648;0.35055568237967516;0.3604293444657446;0.0386422097323078;0.03782672126387032;0.37977712260315377;0.001809580246270541;0.031971406972388004;0.04919344665409434;0.025116753916476386;0.1622508165476651;0.16236472954391803;0.03351935801249666;0.5973463171851039;0.19883363927321646;0.14244785991396386;0.08321185493890762;0.7837427816801158;0.429651629882979;0.1410835795300642;0.004263192436619228;0.17920683338392865;0.16983708660746819;0.013830349336290862;0.08056444285558002;0.005999059814429922;0.25547404556055353;0.2793638650717453;0.32641824687046694;0.11467347512337568;0.012681885978508332;0.17458339945296014;0.4866611897572259;0.34777839328800497;0.0564355456781873;0.5147413262040329;0.025321840509390684;0.02572094783665649;0.0015305695994843281;0.0017384721196575712;0.02626405152694336;0.06325551692375017;0.004293155948866452;0.6703149167205644;0.05581747996050784;0.010223982618856814;0.006225753884261999;0.43927158236761016;0.0012985129103550788;0.01617841111939618;0.053234673367302685;0.09134021266572757;0.07305519903211928;0.023761145089373988;0.00451976604348977;0.1499539888526103;0.13683337301224566;0.018705948922263845;0.06641433076273465;0.016370656096861946;0.0012066683915539595;0.0008259326958993497;0.5555160438735013;0.04854957984983356;0.1814718688341652;0.015373970449335536;0.09943383594908681;0.06316330364784584;0.0036804907558138015;0.006305535890177811;0.7911159167811191;0.0;0.0006324773582468982;0.0013115595981526387;0.09760259283606415;0.3690737711863367;0.6383883769833655;0.2166312109242198;0.11290425285182114;0.025954176565315977;0.0942666790072237;0.13711155745524958;0.08341028690058522;0.2877194195623198;0.1434447090289558;0.030139269274598833;0.35283596549237956;0.011506097131479907;0.001436534217541185;0.1021148412669369;0.012954869431741624;0.7076224466752474;0.05218870257671202;0.04480372298911289;0.012407733377237785;0.16848684201517933;0.040942890483019204;0.027982387135511436;0.552537899693737;0.8400791201184253;0.7399228103868921;0.31014507349423326;0.23392371189640604;0.08217347369239682;0.10765467153292707;0.0004529649197106551;0.0013752923975797983;0.23125831175241002;0.19545921003481592;0.31617459658681374;0.021716589373245623;0.014294768596068505;0.002837965620440177;0.09254983642919468;0.22289151129882173;0.3834117534612841;0.0;0.06443057412366138;0.003641104166763406;0.02600589140773523;0.34927041225616245;0.04987915287406828;0.012710122083659488;0.021334586245856272;0.011842829080316274;0.0441485471284042;0.007694748944701266;0.26962202880298314;0.28980375509341355;0.0775360914885999;0.050806120474492726;0.04911989073593026;0.09794382329827415;0.8050666638937333;0.009500472619009841;0.013117765333922045;0.023527167753227808;0.030827482871919814;0.17698787962095627;0.21086016724400286;0.0743924650290066;0.0007719479441782566;0.655159329391489;0.6133523767302659;0.14847312768715137;0.16569982850423232
+1,4-Naphthoquinone;0.5654860416855381;0.5556660972720413;0.5999820372306494;0.5960549934510704;0.5972409984107254;0.5628237224099765;0.3491976759469477;0.5640344575143335;0.5603316458113696;0.5898662391302952;0.24461610652951943;0.5735864612316272;0.37276891757863717;0.5583113331561437;0.568571019771642;0.5521717741951768;0.5774709265350143;0.573256751364728;0.5618905317037722;0.5748148055412395;0.5538585446054914;0.5576987185596697;0.5550315429476875;0.5679909983347204;0.5536768302825389;0.03028598299208904;0.35961477734613945;0.2469533545515386;0.17771302980161424;0.22721547026320096;0.10684489797330833;0.34348101001390263;0.5011279613641927;0.4919295979450354;0.509511377778311;0.5654393333272127;0.32990018783309516;0.12062773456531392;0.02769563986130541;0.552075322828905;0.22958134985039472;0.5417927490929303;0.19569851220762982;0.0;0.00861496147669692;0.007297187731962111;0.009180641233708669;0.011509681988366742;0.009614053005913106;0.5096419921754183;0.42274046292081086;0.1385868064982148;0.01330464947911422;0.008934986783220786;0.45681919555369155;0.5637494505094649;0.35638280799186806;0.4713037093083508;0.340815674961463;0.03242386169492089;0.2764718796688995;0.38197964757827385;0.49674560951103225;0.48929756661340207;0.32935697136625197;0.44511627633752965;0.4658138666676946;0.36874004966209434;0.35798197179471397;0.3662446042215494;0.3646687182392776;0.29162322517738304;0.06724766015755575;0.06781411773556738;0.05545927835337745;0.05401717744359719;0.008271047211024637;0.008456212365046876;0.005724024381368417;0.04144959399353921;0.030628174207938744;0.026106106235184303;0.02602585558894184;0.02540004848186019;0.08393772242127899;0.0786596201685183;0.03440848119783374;0.04442047207741479;0.04476132503864148;0.03889558091398479;0.041644836751036064;0.027595760601732203;0.019025100420973357;0.01904397548356502;0.02192301889140044;0.042661817670647285;0.022822961656254245;0.029618766609849936;0.02638942072405466;0.04724392821495107;0.09761624697557263;0.01768785739420783;0.02336053906811172;0.053971801964029203;0.04393654619873046;0.5532463067090044;0.4505871659316087;0.4919148757192987;0.512941379978598;0.5910296730008701;0.5907436283640289;0.5722796133005327;0.5586413511734882;0.5340838835653834;0.5621729424210661;0.16125921238741567;0.14884735625701168;0.12132665546124004;0.5501399930792924;0.12802553009920895;0.04954976323985675;0.16291556853029174;0.47422085007542525;0.06716352121390733;0.004626535691287458;0.006031008026417967;0.0054981783253129435;0.12386112056816274;0.06236967876202651;0.07471602910520563;0.037942854831178555;0.3144888235700556;0.5090475972301193;0.07935286574918082;0.5558281861093032;0.19013004374174605;0.2864281575804292;0.20317460341829974;0.6126585397447393;0.6323456114921869;0.28665707973569715;0.4589359175996749;0.2647711494308294;0.24579874580854252;0.45052820391873366;0.10853514750513105;0.2517033905590364;0.015068111027592292;0.09890061462085427;0.08416877796709944;0.6503777554501466;0.13244909033127775;0.11487841397672617;0.06755708192046968;0.6755886652842122;0.26503402784235547;0.2716417948008997;0.1206876870303623;0.12636345721993453;0.1264588855267378;0.13541719474279937;0.04369533403195295;0.054367182730327666;0.08841318259907203;0.02732527205078218;0.05071035619138285;0.04324361746253426;0.024029653991964064;0.035038718810939895;0.03383208663553646;0.03980606234729267;0.09200910117321205;0.007860321326702405;0.04417208221423033;0.010147211257064486;0.07633336265745072;0.002186481871066572;0.036596905730727054;0.20457586693199273;0.44162209750057907;0.4356697057644267;0.003942515625105769;0.24122090008742136;0.5264782106592735;0.02229833962169144;0.13615493135896842;0.013365428819950556;0.0003047363872977331;0.32948324839001736;0.7631493788636294;0.7747029999856061;0.5211651707276096;0.34224934738652313;0.6757924277517766;1.0;0.5045575004465044;0.5005656091896177;0.4910122240444211;0.38865634504248386;0.3473017166181709;0.5151951924474458;0.34055842466698494;0.4553124362372069;0.441977203372909;0.08018794429647279;0.5685343803827879;0.5261333643721889;0.15669687966957097;0.12631409503975807;0.4517818617329198;0.02138529730054559;0.3457708531886861;0.2925798673544412;0.21065976984328838;0.11811827825255597;0.30246665514002413;0.28588229578428004;0.21741717049237577;0.3952969316227542;0.06451859127787732;0.30901162456271625;0.09646668763736015;0.034781165582080796;0.5622337318644487;0.5749165806467191;0.41347195340519094;0.5729921108096948;0.3935460316539566;0.5364903931506294;0.28160923444058794;0.2929964160489239;0.2696931107669297;0.38525495574351293;0.47863436504580514;0.20344736762956325;0.31980888390297885;0.2943160518746183;0.3217365422165344;0.3608976542387555;0.32889257684716394;0.3381666756833149;0.08961212777514033;0.07212354207974714;0.01476193223897111;0.11691246370579049;0.06892246367144379;0.004550643350864365;0.011130847620659239;0.069039754907415;0.02174469077368516;0.13308454420075608;0.13485541430742434;0.017679425967245217;0.48263937093386483;0.09947712801797466;0.029445992929073527;0.039076556286292786;0.6499218215313793;0.06688067755811365;0.18060714271047554;0.05831488741384301;0.13090835561948183;0.4987723821999461;0.10828076628388766;0.08113599845427313;0.04834923908259428;0.3634245759759649;0.34485343170068894;0.3072817313986677;0.09375419614345978;0.009009054655328275;0.04382861803929083;0.20619237420088005;0.12819295110007586;0.04381389196563705;0.21335049345496046;0.0828078760139026;0.17181530249273547;0.018837856902754302;0.024227731947166414;0.07211443968527906;0.06487013830463043;0.058696335731822175;0.46561217392437865;0.04353030650540135;0.01888875472907163;0.010996466601688359;0.3082468653972022;0.0;0.016938579857907424;0.059035400484381474;0.10381326297367013;0.05782029098267495;0.04568225189938018;0.20207139571011315;0.15814870702337674;0.10088773255670265;0.35979434932241916;0.06033699339792363;0.18758673335845985;0.14119395731114665;0.05125776776266437;0.2383509517906048;0.03897227152486878;0.17446520811098096;0.019752506844628242;0.12458778276487972;0.06446518558727095;0.22301636999955918;0.017685719883516825;0.2501024401798559;0.09313674778377895;0.0009375378771453912;0.001779539324870939;0.20717787047981379;0.30027388945449346;0.49292699174336646;0.36241779011012554;0.11023867173348728;0.07024319569986606;0.11914261999077957;0.10130139914584606;0.24850084454971783;0.23814258747337674;0.15933160362126783;0.09764992597468097;0.14842937663301645;0.005097388832229409;0.026628831548530945;0.039573831885114714;0.019923383872003125;0.3744694475977619;0.06437915596412766;0.06378026337534831;0.12517967661102145;0.20510416015631577;0.05152788286390219;0.09886118682056133;0.6407828393043254;0.7393416815446003;0.5919267775812757;0.3207310636488155;0.411654950250947;0.009369119978502318;0.014341631256219;0.0041670759973560425;0.004771084073032061;0.024259785979044587;0.03458294510259766;0.1900207857386249;0.039946642184688234;0.002922145126357735;0.021195763399535546;0.04651651521786176;0.1968959935640126;0.09256130324244698;0.0002154865293024622;0.1663641189598958;0.0027982376868765407;0.031580484140921426;0.12483254399766797;0.0544231062398244;0.09744348144532394;0.03369855807394354;0.00962929009251707;0.03419343503990658;0.024910778415295605;0.07567587663756725;0.0992913737220358;0.07956989365892214;0.03909362181450741;0.04461878997415273;0.08646592892008122;0.6591325964238465;0.03245864722688054;0.03797571229921672;0.08917039549856066;0.0623718048881993;0.18328843528285904;0.3325212988185797;0.04990308581842201;0.013916763372653358;0.5591258867771631;0.5273372267480461;0.2119955009407424;0.2161122709425279
+2-Methylnaphthalene;0.6599268498274246;0.6596728544412587;0.6322208022333059;0.7169553386022308;0.7090019870265678;0.7247166299622569;0.8797078326358285;0.718038613318543;0.7296811524705129;0.7108622251516046;0.2380909994523231;0.686289029251973;0.9574158455082108;0.7031562067476442;0.6808263843944711;0.7267629563165098;0.6428894081047286;0.6638258038869487;0.6671083717063827;0.6719828559239959;0.6706198623840482;0.6745643739061684;0.6475001620831546;0.6564555458510806;0.6199652734474175;0.1686848438578543;0.5710479366261038;0.20966023649219226;0.19162377457119417;0.20581973447681612;0.10845766992063055;0.13353714536137157;0.22566571113184605;0.9392889037171698;0.4019060911325854;0.685069540043087;0.3991005429052693;0.1037451877694373;0.008965875413257798;0.3518969889652039;0.10495767057789639;0.38865158312080295;0.05705112804575368;0.0;0.010460082887672693;0.009019657713439357;0.013029661735213197;0.008928545804322232;0.009851496523022394;0.29878895450616255;0.2180924710564338;0.0911011499133043;0.0019083725853224008;0.0012963302658831725;0.18569811569230063;0.4027229143190301;0.19105232693414936;0.2687456961415425;0.17749775806974774;0.0028132739467160656;0.13489533804345383;0.24123076288532289;0.3185737501682874;0.3122104008008234;0.18696955675717405;0.25398776947906526;0.26591382557259513;0.19107651079374138;0.18945805222966766;0.1886136906843775;0.1783820083294079;0.12520845128954075;0.020478319061510576;0.017815352288217172;0.21123568675779883;0.20789007859788983;0.0;0.0014126649508999804;0.035618402168629035;0.0996473801996046;0.06660743725972593;0.06016065132165561;0.06127733613821511;0.05647958659889356;0.05905483109407325;0.04227410632163626;0.10490492042132128;0.10321574230474294;0.017814023054992943;0.001593632293707441;0.28755663593543257;0.20767484945766918;0.03461640159508296;0.022839899950722005;0.040577282458509806;0.022678021575562285;0.00725164041197661;0.08415689876620923;0.056297860267560104;0.02029282773061226;0.16265946253730654;0.007252023563067539;0.004760231652872983;0.018456249806685598;0.027408732389011623;0.4430028725261116;0.42388935032401837;0.43870598648807424;0.4440614905489567;0.5102040817917007;0.472930044963555;0.427396998738125;0.5183143062986;0.5148374534086946;0.4921749529291608;0.44844185223982547;0.38572906383967687;0.3348985734326164;0.37433361270345894;0.14577037961984418;0.02528428995484102;0.5076938031508171;0.36667581962083046;0.007281331223400029;0.0011070258035980273;0.00815370193510701;0.008702487699993641;0.0004560675208695664;0.00040981384514411303;0.0;0.04528080641081327;0.23591575893326547;0.7541291726753218;0.023834122145020877;0.661276392468984;0.23797833839622623;0.0789841731892282;0.17696683153007142;0.4940627978308676;0.5509080136235012;0.44184706261538764;0.4701364832823853;0.2162443035945024;0.35419613913586984;0.8124572782790853;0.03514163047891206;0.06345807922831075;0.01746581914300492;0.0535320982950932;0.10055919483833292;0.3250008970867468;0.019357832438725606;0.017236492662354462;0.00890516398873039;0.6065021765234001;0.2306210015247789;0.30721929536851283;0.1603153343480608;0.16165442575736266;0.17999426706658547;0.2098187526181032;0.0064459793179327705;0.002063767277714561;0.021433152087256876;0.02931551094799809;0.04369094172484079;0.03032895992518353;0.01036041417705542;0.016483326461697728;0.02106699073962151;0.021738476481371803;0.3008395593685172;0.033729570353574455;0.0018723088210622848;0.0006150470988836324;0.09472051709666762;0.015716809347262776;0.014717107328502475;0.2453966984429229;0.8825887670210067;0.8964243119648024;0.013116608584206385;0.2563546115672066;0.6406039043273262;0.03177523292217197;0.004079365381638549;0.011459968958795013;0.0006600463910286853;0.8936618974954826;0.5797062628052161;0.5434321803865794;0.5013049434450876;0.42411556364669795;0.5434944212680911;0.5045575004465044;1.0;0.9994935299895862;0.9372928403394336;0.8335052562214031;0.9215735317766719;0.8938964415487093;0.9331765733614696;0.9455659984623186;0.5260839316448803;0.23107833625412733;0.6637066684861335;0.4584385332829899;0.0783323380488984;0.07939962199375473;0.03768135182304873;0.022821438069703166;0.32105543936083947;0.1967899282803269;0.15430514451596855;0.010403427794503711;0.25551910865207916;0.31020220405798904;0.04313575318663595;0.0;0.026046506893484665;0.07241091304003207;0.0226899681053604;0.10092867064895517;0.5240215583289295;0.4559353803446688;0.2936900953248796;0.40582476722896377;0.2500811831392161;0.33916049811407994;0.13768311516267176;0.14164641223192742;0.12687926587958598;0.21736841882705163;0.2739609355984107;0.08681349964126851;0.16397967240306788;0.12966450445842365;0.15278516755771807;0.17869145315361365;0.16795799821957536;0.1611593890375942;0.040316808238562735;0.02509716423804477;0.015581504430971635;0.12124469115885807;0.12251298875621495;0.011890768668916408;0.007783242134231906;0.017102787367552007;0.029528760434185404;0.13035390235520591;0.13143819101575918;0.09167189608730866;0.5288937061570699;0.04819081950284494;0.17648142664499944;0.023222162575996352;0.4749029046549321;0.0028838173708686543;0.12208622390055274;0.03263785766525601;0.14416058667542775;0.012891618779693055;0.010079854554800477;0.07320913459309747;0.010544242088407001;0.21722220823694374;0.24540947231666488;0.28863635847455477;0.097193022567358;0.009827283439069804;0.016995953199360425;0.24294812636592766;0.00974458338919853;0.09189072624713518;0.23837170451671616;0.7332465778012652;0.01924514689332469;9.658394786365916e-05;0.017952248918994686;0.06892483993337004;0.042715270386848546;0.03244187214372754;0.5038311924113039;0.01690349353252;0.007855040570172438;0.0783357044755727;0.2950180923396872;0.00018833623751721265;0.014100489771831447;0.03595597327829427;0.09039459827622474;0.06503909520469367;0.01404848273570941;0.060598241765302235;0.8177619683423275;0.11732410726530783;0.02087333578069496;0.04362298338776893;0.015621873743376978;0.05588446405863454;0.005602488772227147;0.27307803388064156;0.04174050410351443;0.8421528872287638;0.07693728525741968;0.08716058971320705;0.028655881203877225;0.04032030989680682;0.002789022280371599;0.07806105912788269;0.01369289984105968;0.0010109001009482926;0.0038614518556502396;0.0829830777510087;0.21085833607751242;0.576076944750415;0.12594260631168452;0.10292321247587632;0.01108072697810931;0.02713148878426158;0.10060362987653035;0.0643297735219684;0.31688283453004873;0.1445678552956597;0.00742436539498166;0.013086855507230754;0.0031960377348146454;0.0;0.020819564965193226;0.020677903561306513;0.3781223012528213;0.055111831479951655;0.05077148836782155;0.0057512631420547035;0.14475629247558197;0.04090086591308226;0.03813714004625227;0.6415555676611276;0.616815093225089;0.6400190185451397;0.2573794272755648;0.09937697399399475;0.08359501632851209;0.09247188011142533;0.00892131459806383;0.0002272886943539084;0.17811247476665998;0.13980090972896764;0.01750163139043967;0.004499182968193493;0.004568204858014244;0.0002757867900659036;0.03400568301109524;0.42858530010394;0.28042030073200647;0.000175547567186627;0.07841003125198771;0.00020422041411665318;0.023565884783175596;0.2602805660730032;0.02201971909940913;0.010422911479396483;0.013674384281664762;0.007844401691848918;0.035178178898231764;0.006735416686548271;0.0332610536436508;0.06462928258992787;0.18762668502855745;0.00980131053307881;0.13822358291979814;0.11249602712113463;0.7130231375720214;0.008279176404489318;0.016302047556048208;0.004176600462437389;0.05494898383214688;0.22779522321628945;0.18180337201344296;0.07133389280961756;0.0032046122996631106;0.5608525777489145;0.5670489794896091;0.1471238122670346;0.14188794086609754
+1-Methylnaphthalene;0.6436739976827033;0.6437445988004191;0.616029016468374;0.7028956416479532;0.6943528399440274;0.7076554652953755;0.8789232594584598;0.7022799221103517;0.7141069343946035;0.6952487180132086;0.23083166893266335;0.6696552737285881;0.9566172340976645;0.6871927366181162;0.6652661704042165;0.7130321182518041;0.6258169830862782;0.6474922739228485;0.6516394896567601;0.6561528130432016;0.6538817183074943;0.6583152716676618;0.6312820436058878;0.6392457782934968;0.6027292549355939;0.17028001090780354;0.5673595004826153;0.20432069817977364;0.18840396752427158;0.20393945975046582;0.10601350481838935;0.13006678097129928;0.2205235025264869;0.9345438015463725;0.39478431161806665;0.6690459695887176;0.39928510069277934;0.10158589146871351;0.008712080124050964;0.34017399435835466;0.10245711726701198;0.37747572322337675;0.056281167166359024;0.0;0.010341846829918282;0.00895149272914776;0.012968820590328094;0.008850098042375552;0.009700543718817048;0.29065241657903007;0.2119092263688452;0.0887123096606866;0.001833549460272432;0.0011994744942508246;0.17934821850087798;0.39119544878593676;0.1854136424930426;0.2609605651078627;0.17232158219321342;0.002649781031713334;0.13119420813603377;0.23417294603353758;0.3093760214576159;0.3031875603738226;0.1814477137544296;0.24664713794676704;0.25822740580027953;0.18554938066593474;0.18412733182192617;0.1831586837643726;0.17326627320822904;0.1216196575301446;0.01641032947638078;0.013312482786359624;0.21096405204735266;0.20756271423146141;0.0;0.0;0.03631502575732585;0.1013392092976677;0.06450104868082733;0.05783639130082243;0.057789096330197576;0.053296764881010636;0.06003566818470279;0.04338644361234956;0.10709360480639012;0.10492016971861517;0.015088709969667807;0.0011760400996169804;0.2923860757035603;0.21017044959109185;0.034557647595382476;0.023578601760177953;0.04180505126546398;0.01757858138919537;0.0030965036523372957;0.0853154662273638;0.05745831458285134;0.019148207351452288;0.16510841976438553;0.006410946099694338;0.0039485447508570805;0.016387766790103914;0.025885927095557114;0.43069663398539504;0.4138257264932809;0.42808944976982655;0.4332026988515381;0.4966321415411189;0.46041575448254346;0.4155449612013936;0.505416525270727;0.5021684503677315;0.479723937195335;0.4520928061234815;0.3887617532578334;0.33809881066111985;0.36483016886763475;0.1466091780637829;0.02458900574969267;0.512053960141453;0.3573018301435468;0.006235541172755561;0.0;0.00782484620849474;0.008417888036394592;0.0;0.0;0.0;0.04543825572697435;0.24395101718185994;0.7613111027172726;0.02189414950268503;0.6441182931169567;0.24674915744367493;0.08085637655674976;0.18496959107712702;0.4810895952449971;0.5352034694678961;0.43502655661092865;0.4603496782821984;0.21985564854584863;0.3520519562766293;0.8136826373145265;0.03398072334141939;0.0657760160900921;0.0169964476924678;0.04653720650093048;0.0938437321516282;0.3225273038406354;0.017586654943541696;0.016788317578718903;0.008668659068291257;0.600661027819188;0.22472638580289162;0.3020778058422315;0.1597464060137424;0.16046172796203406;0.1817698451513629;0.20853908716777128;0.006351848479578331;0.0004973008324258678;0.021615566914617152;0.028057383128726344;0.04345810326268213;0.029296983299395677;0.010210553863560273;0.01627515623539538;0.022186420326929003;0.019552554869070284;0.3028929337142142;0.034518340415752316;0.0017006810963363383;0.0005276370233617886;0.09318556106390805;0.015840915882232975;0.01507249844267902;0.2397920647271424;0.8753337020059265;0.8898592100685209;0.01332111778312685;0.252099466238322;0.6255102571748504;0.031543143838610566;0.003083010204939859;0.011149336783391712;0.000611020308858491;0.8931393305743128;0.5719667412618316;0.5312399283435845;0.48910634766293226;0.4291985023517103;0.5344889694218721;0.5005656091896177;0.9994935299895862;1.0;0.9350670463109315;0.8348503659996542;0.9279319743602867;0.889309811641981;0.9386431985330984;0.9456193326711904;0.514948551521631;0.23288146767768822;0.646589376337145;0.44595927807109587;0.07684708990203205;0.08358982233653432;0.03803034930503138;0.023109606265270203;0.311901662709709;0.19271733201492688;0.15033075350443542;0.0077968823886486625;0.24929146672538827;0.30168987323972335;0.042092536886861216;0.0;0.027066319513111614;0.0695047545898602;0.022416814044623406;0.10154052421637534;0.509370859175316;0.4428206770728512;0.28507961347176675;0.39413306579781987;0.24261741771635062;0.32929770303830097;0.13398419626181374;0.13783557546482492;0.12352914250339173;0.2108977316717339;0.26603784822448273;0.08518872582572018;0.15937374113790806;0.12578720490517553;0.1469480483009771;0.17305573191386925;0.16322850305377998;0.15878010844289583;0.03901475736857704;0.024279920218690243;0.014973775843149639;0.12061372338019775;0.13022112934362207;0.01203891701237836;0.007282148520647796;0.01714655489645025;0.028585699183903135;0.12724038766141296;0.12829183376900385;0.08854280234947108;0.5143582067019914;0.049151836362319734;0.17756936350043406;0.023514168108312056;0.47354050152201516;0.002594694078167349;0.11869937280522035;0.035533393013743135;0.13996496640355097;0.009667032162149437;0.01016509463940737;0.0713464332941114;0.012339522127873264;0.21001335363873078;0.23741220083978076;0.28078483485872924;0.0944505147604134;0.009538000687885368;0.016938626871689164;0.24048919966384832;0.009999412609018014;0.09123478372499579;0.23146792843935815;0.7426071914722998;0.019573515494400874;8.845384130710825e-05;0.01859658589388199;0.07387046275381945;0.04277873064395883;0.035358483560364126;0.49140804652989367;0.016772045944233954;0.006772804358513595;0.0791643954049598;0.289831737999561;0.00022992611996616974;0.013701349953949497;0.035542820324471966;0.0881401614077744;0.06322638252419363;0.013767916709625978;0.06640487867637145;0.8247306266480684;0.11403973545061737;0.02019442029980122;0.04444291367707945;0.015888414078595408;0.05886482568288092;0.00584136259566847;0.26843182805027344;0.04071560572588221;0.8482965319992424;0.07807820787121485;0.08459063210066278;0.028953193947032982;0.04563048830626531;0.0012625031107595778;0.07679148723403995;0.01441024970919227;0.0010291275925465328;0.00403501604901447;0.08087005645085199;0.2061927544183698;0.5601596527949939;0.12443404928976341;0.0999431323909955;0.011073677951849359;0.026323163857956973;0.09790054352256947;0.06598546231335675;0.3085521668540649;0.13766021176856513;0.007579608291434522;0.012312693394653412;0.00326461424795034;0.0;0.020522302089578077;0.022813428765872553;0.3687079361237846;0.053709500808432904;0.04923343831017785;0.005375218921172119;0.1404209020172262;0.04172971116281056;0.03832413519178686;0.6405597732827077;0.608985981855061;0.6252047254453;0.2503399048897578;0.09531075959124717;0.08500841564083446;0.09381627131681274;0.009251680805723127;0.00011554329334108733;0.1794875190939926;0.14088418791830915;0.01688668292748534;0.0042232114404799044;0.004508205060868561;0.00044683950516703655;0.03424326407052613;0.43308818156678724;0.2813088133168502;0.00012538635031535995;0.07830483135031266;0.00018905159122874955;0.023641046288611352;0.2584733016671655;0.021669672406479348;0.010905436311812945;0.01358272423594378;0.0076041392482147085;0.03037460669556496;0.006985511190016375;0.033525561638162754;0.06522231667195458;0.190702573761522;0.008925238680552991;0.14179887600847885;0.11415778543361282;0.6995547775537455;0.008041508040225048;0.016227564373378467;0.002893413550541257;0.05641572416801575;0.22756913712312155;0.18053272787632776;0.07017742958979266;0.003367917878831353;0.5488972006500319;0.5546887117953263;0.14478540222303235;0.13892041895889107
+2,6-Dimethylnaphthalene;0.6782972864380935;0.6565281239242562;0.6749000073274148;0.6893048558478294;0.6867083035010272;0.6810620028875325;0.5778296398149534;0.6797177932409982;0.6819257957824877;0.7390918184270425;0.7494800094726809;0.6605868593805789;0.5960714416982041;0.6737559889358974;0.6657654737389292;0.6709545825700877;0.6551821218117196;0.664054974448636;0.6565482693008717;0.6635658814708351;0.6645899064962906;0.6613011879696885;0.6363271742229611;0.6665305800649789;0.6570013773181386;0.15429923280051788;0.42166831680810113;0.5421618787135638;0.7680423672009192;0.23830905705049027;0.4357754904117962;0.13399810265523418;0.28246396465760165;0.6746998167226018;0.4074771190081648;0.6676703503221276;0.5433049148144845;0.7170018225836322;0.029304843725628072;0.3577176665194958;0.10417292941438909;0.39857692428716396;0.08693818250457527;0.0;0.014274934507625781;0.010727927293752288;0.01463116213773081;0.010420930084223463;0.011756867213352236;0.30229497905387187;0.22137380875739826;0.09250733879516237;0.003724397162729336;0.007836253155156823;0.18664177200508877;0.412103433467285;0.2018407543677525;0.27771621126825113;0.18067823592412438;0.04810786202123583;0.13662510255662982;0.24930075683858305;0.3269929356604534;0.32044986692071065;0.19782598638471124;0.26357843239472173;0.27573472992178605;0.19463665483399475;0.19251301079862937;0.19235275189737028;0.18152879194739233;0.12903484414949534;0.031679197073082414;0.029202822671644403;0.21234025059807476;0.20719857149554627;0.009904541344450455;0.004056829102786846;0.0436813080380102;0.12588759059068436;0.11790799875704379;0.10927315371499473;0.07523640840460799;0.07392260418371;0.13750207874599732;0.13346741135326232;0.1268833236770265;0.12000060232623738;0.030152636533444015;0.010732151252666425;0.2877835655771232;0.1859263241188354;0.042213371272247495;0.08839281083880556;0.10930870466992282;0.0313474222062823;0.014063373421508363;0.10067605147435693;0.09346903479197467;0.06643499171091083;0.21016480619160222;0.019991074076055864;0.028448422297522258;0.0266622886943296;0.05488683169551169;0.43725250354780304;0.4421214426595058;0.45098660237270466;0.4590918315379764;0.5015367218849792;0.4669541698502413;0.4240334046284877;0.509206187561059;0.501478933950814;0.48155320105889216;0.23398613240622745;0.19758726640493057;0.23078674439516642;0.38604799867375356;0.11436415521081379;0.02790599465510318;0.2593015484819754;0.38920905640851067;0.05305739219129225;0.0027392851148945385;0.007981556370402742;0.007537635717292878;0.0030809345539895136;0.003489095621308742;0.0034975262473399965;0.04441339869417176;0.20223274254118465;0.35383260139452316;0.2864782765516377;0.6566855641488595;0.1933060049853334;0.5112797065687767;0.13975819901975536;0.6534416969618374;0.6858030511313635;0.3570170348424375;0.6359938746938805;0.1538785878448074;0.268713230749518;0.5975103506113639;0.046766754539917896;0.043903700726398556;0.017611236725209;0.08947623863158156;0.395158081906529;0.3820131267249967;0.1400191102539849;0.08410953946696795;0.08463802668425914;0.4815847396661882;0.6388246805916334;0.8310779905630802;0.7457995521287437;0.7357772912207913;0.2279599591899347;0.7281513782501483;0.021330704940794625;0.00662749391608017;0.022701746355461124;0.03326366688627611;0.024801004619435615;0.03556021844273211;0.020927394559668737;0.02739476255048835;0.05048706345167665;0.02339978654007968;0.1902346201456905;0.04163685893673956;0.004246497719874623;0.009160919896916963;0.7210801726928723;0.015718132886964352;0.03505799511616761;0.2626267643637083;0.6457626505024395;0.629525659159113;0.01877465079565716;0.2637803864122092;0.7168916044946283;0.09701345824797586;0.013102869796208123;0.021728072815170807;0.00041856124721258636;0.5820028315961;0.5134929112446357;0.5618433941808703;0.5125181488818141;0.41060474497455496;0.5731137803861142;0.4910122240444211;0.9372928403394336;0.9350670463109315;1.0;0.8546401665227297;0.9128909884861754;0.9729257977238283;0.9308306033786711;0.991586269952646;0.8611310453118148;0.13640514219562688;0.6995894105171199;0.8062488993363917;0.1583492231280347;0.019478620865320644;0.04220142342000501;0.04630311316904619;0.34484235558446436;0.7281555226589328;0.2593255171252059;0.012787022352614861;0.2565935273364724;0.34280947953021923;0.059125753285280344;0.0031636797371087095;0.03420596527030705;0.5999285797709354;0.05073277186941707;0.05542128849393302;0.6159539445685661;0.5355338991745577;0.30541858881250783;0.41688733219416435;0.26019061137829;0.34818420843927717;0.13665786581183614;0.14220370908281973;0.1256728494150142;0.23261151840591407;0.28644076008432173;0.07866558182681767;0.1647760527998375;0.22262194966136095;0.3038630434323114;0.2599778946678711;0.16925846677915501;0.15692344897894933;0.05832132774795609;0.05709326287002105;0.01626614966573194;0.07338806821828328;0.072963777816137;0.031091530148567123;0.030835914711438827;0.06052909463011737;0.011081708619936228;0.14061589308228256;0.1419264022475828;0.01409159577071666;0.5341021907924699;0.06619003084293772;0.07665779255137567;0.028975107768119755;0.45930399548671036;0.08535288027701018;0.761019658049557;0.02964427541799755;0.15312346490570009;0.013522488575771766;0.01038081287566524;0.0756545496649409;0.1389511907777911;0.22749620291965622;0.2503902490602448;0.36255465871904236;0.10324393416655508;0.013021358396109187;0.04779024024047697;0.3903072351713208;0.015181939866609975;0.10393534161709793;0.270075335374873;0.6959360042443632;0.008161376151515664;0.003068606597921494;0.02906868127179803;0.06783281123268677;0.07623721634821348;0.029533574735602933;0.852043399195302;0.1784192950544274;0.009613181564922258;0.08700160081895078;0.3138876453314568;0.0002762724393877353;0.02700546890815083;0.051902919040172496;0.08729739706844594;0.07141902343291777;0.04720612379248559;0.03707691464036622;0.4022421950803734;0.13079592203281307;0.03150818285899824;0.1078455148313318;0.017770088302952975;0.0430792488614929;0.007173530169471966;0.583224740286074;0.044398515886355544;0.4118014688253001;0.04834254962190962;0.08943259846177065;0.07592722379945557;0.031213104123304296;0.005365995787920169;0.24072806583670278;0.013234153581913991;0.0014068883110221002;0.0039190095313072024;0.09655010935084014;0.5382267494628673;0.6197358105793676;0.5001608550186739;0.10457348138871028;0.019564282267800985;0.06147912544517658;0.12501708890880459;0.061997201572916466;0.27312781776363537;0.1473852973850116;0.026467553302592543;0.013291942241245136;0.03531997675440125;0.003837181848669874;0.6214929890369502;0.11951213673787796;0.6271490391191398;0.09916917398993774;0.08126131418199271;0.03370575279658211;0.17702440304768274;0.08170768377230334;0.03334078946149835;0.4642000292083191;0.6004559606109787;0.761481098093985;0.2847692710639614;0.47963641196694495;0.07184187452894654;0.08461269534874448;0.006326404094266421;0.0014183062208505681;0.26786296901551454;0.133373562386063;0.02233461973782932;0.016656542024884983;0.007143384876297231;0.024177958713877443;0.05632482394799831;0.41641008015181646;0.27644568092807875;0.0001506605377094456;0.09408810533722903;0.0013092727603915652;0.028756611445719324;0.26474670213992596;0.029610408788636376;0.010805637696091068;0.02593452675473347;0.009189144622521241;0.053365728623513915;0.008835019752833356;0.08615471888805029;0.11472042479849817;0.19707514637147264;0.030426569838116004;0.124533979926042;0.13940366095184553;0.688740345151651;0.1132538248364607;0.1179795926284034;0.034542693171406354;0.06175688826255815;0.2246828528133341;0.20242852779569218;0.7077983938183526;0.022534630587279947;0.5829919523087637;0.5894583116342411;0.2812541279602355;0.163316162934255
+1,3-Dimethylnaphthalene;0.4839335602439753;0.47162811032436847;0.48662761727437814;0.48900253103422353;0.4880368901928778;0.4930904341979606;0.3694358311726334;0.4808527849213837;0.48127650395314686;0.5427845513996877;0.7141389534629109;0.4825071895255675;0.3826269429644934;0.4773754680628122;0.47490258753499415;0.47317978695555335;0.4725023186087208;0.47749970065468766;0.4708114256038126;0.4766151529030704;0.4741283786210734;0.47125951308400993;0.4569757435162348;0.4782024879885198;0.4783317074658232;0.15203424454360084;0.30015907140415177;0.5323103047266569;0.7758874751097808;0.2276465191529892;0.42414901347807915;0.10567207375474287;0.2708426763628904;0.45554392223669077;0.32756142513575215;0.5213157638046287;0.5764038062386317;0.7468498909790424;0.33464264482466693;0.27406083350356786;0.08968740857967884;0.3038655500738041;0.07053472171007871;0.0;0.0388793899492071;0.01009301740007331;0.01374073624073794;0.009946195577971233;0.011049925884962203;0.22912837668846694;0.1643834034966574;0.09153980659157297;0.0038997954587894016;0.09118508961993026;0.1694527909246161;0.3104981026188483;0.16319795205896667;0.21003537264855668;0.14439579059632213;0.053502242259344836;0.11290042402955619;0.19967307948388702;0.24926752688900033;0.2455101556926111;0.16178970663519723;0.2003196622784706;0.2091824338443826;0.15057507229111602;0.1518803139622393;0.15143749031891404;0.14192908580296604;0.10445636145230543;0.03654023698444443;0.036732674000969585;0.25787489442854905;0.2038500107838239;0.012269652428737308;0.006184227762492434;0.04129116097043652;0.19750068483624;0.10959127181134289;0.09501555218043878;0.08071837240701771;0.07900689650782361;0.1177518203671243;0.11344814928830187;0.11351860117168479;0.11310378769371542;0.04509962009045621;0.015303617335583842;0.28739175855659155;0.1884824438234886;0.035547321979201726;0.06538511900238494;0.08570983084249935;0.0474709446556568;0.025071097820555284;0.10692079968108618;0.08959650831059687;0.05933445529866376;0.19661915465646856;0.020890812900320358;0.0354151216848668;0.04978122290006881;0.05921386751019431;0.33173938921794005;0.32775691094363846;0.33281466117086483;0.3423420162116796;0.3698512922552474;0.3468568692196925;0.32223143092144385;0.37501085772895343;0.3720637661387315;0.3670966094765161;0.17103869350413972;0.15288132366879265;0.18410078710378996;0.2898346941914289;0.13612590791042764;0.026599635114054374;0.18498007755088477;0.2933500984089441;0.13426654069134916;0.11702116840283451;0.010576789436385335;0.012580525887531026;0.01849888545364651;0.04205237130415774;0.023473237097159507;0.04970674072845104;0.3330279358895914;0.20728912659533566;0.4879429696416796;0.48624279623037053;0.21304798579085352;0.656846667037068;0.2880925394661563;0.6344747867535572;0.6266055831489771;0.28504610830116983;0.6607035279680453;0.13587482040317378;0.21454464183931576;0.5005341226363221;0.03824817337436669;0.07519664309622676;0.01315484984510196;0.28831824584766436;0.5147616862464279;0.2894655525097677;0.19532884994128702;0.3463570640906744;0.09214396782476993;0.4898664864204896;0.7019042303229239;0.8970550902997176;0.7800569068988764;0.8201301556401902;0.23260166237550223;0.7507253336521209;0.11465531132682664;0.042634883167197296;0.05553614445453164;0.09344535652245513;0.07094592515502542;0.09246120579719395;0.06331002113557825;0.07680336062044042;0.0752530891380105;0.11601145898389144;0.37500754121753965;0.1876637420017494;0.1402820416340872;0.10957824898729568;0.7304507045936747;0.01014238849256394;0.029980209949944707;0.1962495952297482;0.43497303895250594;0.4175591195514253;0.01693857680926573;0.21290884018318493;0.5466449240853104;0.22474745929113626;0.03702596618599191;0.016481158676464894;0.01019110292353748;0.4182795844472551;0.3895578564897172;0.45487954507579825;0.3720465404282731;0.38349269852011164;0.43451201042414206;0.38865634504248386;0.8335052562214031;0.8348503659996542;0.8546401665227297;1.0;0.8586402857944536;0.8406934563824712;0.8532424240872952;0.8670204250307393;0.7185491289670128;0.09313112669518143;0.5108928428093442;0.7478045017517762;0.15976288535507602;0.021938686736711868;0.04161515591801849;0.06044875874068855;0.4300764724020641;0.7301990040632035;0.24404808654526214;0.024050364663115078;0.18726897777746848;0.2603966861064888;0.0896079627555844;0.00270132266800945;0.06611098935593303;0.6373907097927934;0.29724146510339594;0.039444827004438326;0.444722931657537;0.43240104843459687;0.24433723518324293;0.31448037941360324;0.21008070466728165;0.2583033765471661;0.11660601105211561;0.11680480719145209;0.10704488355185686;0.1854349908774479;0.21648291538362202;0.06574762356043791;0.13729821032576078;0.20514157344867365;0.2823443614657722;0.2302915364777358;0.13935786205779493;0.12738267948329068;0.15195576236892186;0.137139059609769;0.07256306708537826;0.07585871511347214;0.134912092826177;0.038951312765351416;0.06863936469576026;0.09666367901131391;0.04494829555802074;0.22939957231169317;0.23056509959042648;0.039917085214535575;0.3884726030200636;0.14567508468734705;0.045462521397668966;0.032496186538139925;0.35000121292571085;0.1041605274631544;0.7847738682358525;0.04577038053654159;0.27875910348217625;0.02019532842976836;0.009568350431567715;0.0555125321097933;0.23480295258626432;0.363887013990171;0.30994631588585714;0.29159971018334624;0.23987092786189015;0.05944992985406233;0.17251671650296752;0.31224789222885524;0.1209010782612343;0.15509151936462676;0.30762920768180224;0.6894645909949865;0.03811369163211594;0.017699755759369263;0.07926677798695007;0.08008732900294818;0.07215353021233958;0.045787477834553586;0.7498911286002374;0.41982343839016506;0.03345854180956652;0.08088476507066669;0.23897929704524012;0.0011070285040506765;0.042639852988212414;0.14003945256036793;0.2466937836461227;0.053732046488183846;0.14374372366041555;0.0384579777828132;0.23935341756033904;0.16234207978360854;0.19045322085061886;0.09449046681827092;0.022331654868501503;0.050460587186209646;0.008666485600598796;0.5558640157462379;0.08906273680056354;0.2417834958731583;0.04505047561898835;0.10216940336495829;0.186487874953554;0.028755803107679393;0.017869499104653495;0.2781482828986554;0.014119992896497046;0.008143442814573187;0.03303362567097966;0.07786375721789929;0.49502131530691396;0.4444975884100139;0.6210956470909604;0.0863062290448273;0.02080577865319243;0.046843947701521095;0.10892019600473579;0.11229402088476481;0.19236887449299728;0.11987948877609597;0.13186076517957673;0.04643390723516293;0.040207856155171584;0.004817631575436999;0.7468460744392303;0.11731356219524829;0.5563674019418278;0.07726883851201248;0.06114492205707451;0.03177419249941021;0.12486967397373719;0.07867034977472684;0.03150725544534399;0.38565048033519156;0.47510289964410873;0.5805088977037276;0.22188527608230202;0.633236652676958;0.07571610393716449;0.11334021167351369;0.0070805910918030944;0.026351876013784296;0.30312118244329717;0.35040223493061995;0.03661485430444603;0.015339757565721352;0.015228704096609036;0.03916216996018443;0.04970024650603002;0.5211432560347646;0.26173360166950155;0.00012623306433453416;0.07122241305938762;0.03218556971934483;0.09302900412758401;0.23762112518180378;0.04387713113337718;0.01768557538570574;0.14733298003970177;0.018329112919685316;0.091653099931985;0.00871134770269146;0.11773772469171671;0.14619454001654741;0.2725245202736372;0.057266786525389836;0.1494090379760935;0.21623417847081272;0.4838854982088495;0.09785954036220292;0.10899093814446834;0.14274941894653037;0.06575991523230111;0.2769195054822249;0.18484504567794244;0.7206402165035409;0.32066534563710014;0.5232820240110594;0.5538477590599714;0.329666743921685;0.19714612348281121
+1,4-Dimethylnaphthalene;0.38674087789162875;0.3746410192876044;0.3922022108694665;0.39096586509264514;0.3900579781930535;0.38004031689024376;0.3019216161401163;0.38137818726890504;0.3810680741109076;0.45740398322715053;0.8152976102861941;0.3702929463299329;0.2921824881578763;0.37862559178796856;0.37995898522446475;0.3784509378819576;0.3751665286062298;0.379268100814892;0.37486304008472493;0.37901240194594366;0.3754210194846691;0.3736028595534995;0.35817581186223435;0.37831402247648627;0.38545546013681764;0.181636196190974;0.2109172851205686;0.5609333737296455;0.8999572490010344;0.17246410450913519;0.4886929168147889;0.07597373018748244;0.1852583793664439;0.36178485659456305;0.2524968643839755;0.3819941058195844;0.4442741002703988;0.8857324081722749;0.04470859333431469;0.20046039546298317;0.06405938383678354;0.22974276814594827;0.06001922662512576;0.0;0.015511700170014433;0.0115961757800549;0.015922565532161675;0.011513780002865188;0.012777316208812926;0.17232703990302453;0.12661557303883808;0.0656778981119553;0.002626526511627074;0.006669083004182251;0.10626744832583375;0.23679490167616873;0.12262453287527958;0.1619454839190578;0.10621173975466186;0.0441991790130057;0.08206649337519654;0.14784293850778024;0.19008875579867554;0.18638738125794557;0.12070765475014866;0.15515369568343715;0.16152248691856874;0.11272192153166169;0.11242637147983689;0.1123469922505019;0.10626818703183215;0.07674670196756747;0.027231382344102436;0.016966707976225834;0.24248735020370887;0.23826748616423865;0.00426838228004099;0.0008404197157000553;0.05065456798904371;0.1318588239267507;0.10079848952831993;0.09345562402339062;0.07402692680882554;0.0732376671215892;0.11016222439035273;0.1038473583801741;0.13068292069406978;0.12694446233307335;0.01921615220934676;0.009895109216181724;0.3681170396463537;0.24714742705051082;0.041557111632395186;0.06599446069422764;0.09017905029591447;0.018181853168313472;0.00861354843880675;0.11172402680594795;0.10011919192921313;0.05370732635725256;0.2219961476044412;0.021158282286901395;0.029599473903871434;0.015515410631593398;0.05301674109912528;0.24907974668833963;0.2595054987159956;0.26297615045511996;0.2684966180681747;0.2869030003059038;0.26656957725646546;0.2417753245187266;0.2937485089354855;0.28867880397975554;0.27695335224391987;0.1118038323707907;0.09341454223005348;0.14861625082074995;0.2258607266842095;0.0830684832447918;0.016638171175141755;0.11894226494801331;0.2281582782931661;0.06126404920228475;0.0009551242292189821;0.008481714253743264;0.008324862579125436;0.0017435774357702058;0.002489242328282415;0.0020236415375599385;0.04826709920226606;0.24747950654166995;0.1488555225462945;0.36687765251793203;0.36904767724082105;0.23928632672942837;0.6549593464617569;0.1789874174989671;0.5103321660667858;0.48535445081528583;0.20514726359210403;0.5163884488237473;0.11911960202872995;0.14661824262640377;0.38341977740901473;0.025290728474459602;0.0452430821510628;0.010014907157432586;0.0738110131539364;0.4784713759196292;0.2573368998063552;0.1621490254676084;0.11173986816617716;0.1052318473604275;0.2710565600095089;0.6761252972074908;0.9110986621847581;0.9164202441097739;0.8931865784508066;0.2522967388414224;0.859467763238963;0.023862215894156685;0.005535138842486292;0.018456316318731365;0.022616502312831417;0.014297902382927653;0.0301107077138916;0.009296033358783264;0.014098070083586671;0.049596011913509534;0.02167437434731156;0.11813613094031912;0.04607593937204368;0.004798848430945048;0.008729462165733264;0.9021581247688746;0.004793218283131593;0.03672854586377441;0.16756916923837026;0.33802654862531467;0.3149710267081134;0.020498677894831095;0.16614954063069012;0.48719731027510943;0.08040134868747993;0.01233157144434774;0.016706061334758607;0.0;0.3091773653369675;0.29398437022010704;0.34437067802837834;0.30330557146473347;0.31246464161688076;0.35298564122905074;0.3473017166181709;0.9215735317766719;0.9279319743602867;0.9128909884861754;0.8586402857944536;1.0;0.8349787020484819;0.9941277174738606;0.9463895612725979;0.7384651558693148;0.07891974104221781;0.42315463796643205;0.7274107314781493;0.1203231593803253;0.024114066381264412;0.03677357538070729;0.0402659670325622;0.2025896691425205;0.831339272749505;0.2090184440808024;0.011751953072849432;0.14951249109024262;0.2023020052343964;0.04820708449084353;0.0013457890885547306;0.027924341419260364;0.7494226316597179;0.06815864700901048;0.025666845109806442;0.35784131937220587;0.3151585885738198;0.1802593180539665;0.24020889389706218;0.15421537075230884;0.20049052555132374;0.08184629592347861;0.08481677005801963;0.0759816410976392;0.1409231585468312;0.16815843200221595;0.04939168393471152;0.0976843427573622;0.18434736460093112;0.27584009152037386;0.1962365707752508;0.09996627116421386;0.10048043037385279;0.029495544078120682;0.03688384854924353;0.007470389932492585;0.04868400930775673;0.08344605571451874;0.0360874125113176;0.030916853523932027;0.06366569698236409;0.021121835238219772;0.08763715041305963;0.08845012590192668;0.026926217500488462;0.3024624327060892;0.07074773487137181;0.026948079020588926;0.016144730479106705;0.29016653387066776;0.05652484606089289;0.932035072355325;0.020997707468955372;0.0900524015349628;0.011570278382978352;0.010712592947152419;0.045176178567659334;0.18766329337607332;0.14212021276724934;0.14315221796779365;0.23305821302478297;0.06099563226694008;0.010043382603655384;0.030738928504606938;0.26833058083396244;0.008466182260317109;0.1017891416873737;0.16901094540455922;0.8842092624785209;0.008239102358883844;0.001812476258070923;0.019332540868353364;0.0768834369320442;0.06084063034066806;0.020855846066702353;0.7421718844400854;0.22398238210069352;0.004182765301195948;0.0967300360911553;0.21149959667541057;0.0004314144394341067;0.00946224509036119;0.05035674473101087;0.056899745153372504;0.04451342516325991;0.025651247906261686;0.02562965491780661;0.1806043616109602;0.06913593572694733;0.02655394119991469;0.09055961881571098;0.01391762685185135;0.04960362486676891;0.0051091602696095965;0.5987809250752236;0.02557664444111123;0.17599066107183728;0.03479003023349385;0.059064928072277235;0.07556150253174582;0.023058867905360436;0.005923716082953212;0.27903109886642685;0.013520039182719344;0.0019309702764955955;0.005965316979190613;0.06087603076421344;0.5625856443501266;0.3608370245783846;0.6221076606240196;0.059785376736168766;0.01456781734162118;0.04293519182524215;0.08372585338920335;0.0545182021245827;0.15321502016568786;0.08923484245492537;0.018422276429513874;0.005485351555187792;0.023128306401103672;0.0017055879850459664;0.7950340296905702;0.1380101468452645;0.5430913390023655;0.07838009147594746;0.05848111966362599;0.012060006952529281;0.09341832871847641;0.062108646618826965;0.023711658669334116;0.2919614826558168;0.37190505666300194;0.49025840226029316;0.15676522938724602;0.5722640711637884;0.08917517299099713;0.1023392920296711;0.00782237467577903;0.0019518316221758757;0.31427802651172265;0.1418131601466326;0.0184423220964754;0.006649957122616957;0.0035776534270925545;0.024465434201395624;0.04953023279149856;0.4924863511350811;0.27390140941835195;0.0002352646234449075;0.07316869147030239;0.0003681012559378318;0.03023322360968059;0.23081655634103168;0.027989264680263044;0.011620050701300523;0.034893298694982755;0.009905854063039085;0.05235758491305147;0.007087990752815169;0.09657131158663249;0.1314821202361015;0.2271639687538604;0.02121429380178524;0.13665456120223066;0.1496924286562519;0.38726180154971745;0.11535167183807925;0.11933172970748344;0.03687406058795292;0.060472786774639534;0.16715297127701215;0.1483059366090195;0.902599794650677;0.039386689377726804;0.36486808924137876;0.3642661257652666;0.2670381966564167;0.11328276368401106
+1,5-Dimethylnaphthalene;0.7401133996734377;0.713132995456902;0.7314275433666639;0.7491497145001614;0.7461521619438082;0.7430047356266141;0.6415732642369822;0.7389748519235732;0.7418402085290259;0.7920052383075789;0.6837957480270427;0.7180358650532417;0.6591363444180837;0.7327153118528344;0.7226358343170266;0.7294465406662464;0.7106715206945291;0.7210759571348535;0.7127976986346647;0.7203105383716653;0.7221248211009399;0.7188705475751671;0.6928864950111877;0.724453299674405;0.7106971208870688;0.139284012220086;0.4735268338974814;0.5087149235013805;0.6817699136735597;0.2523617683627048;0.3865553971015386;0.1518252089091604;0.318450401783003;0.7435584514914829;0.44945509865915295;0.7224864774795389;0.5641436662817042;0.6198684590511641;0.033388144719999846;0.38832490230153227;0.1134938964067686;0.4347014595430518;0.09557441239055534;0.0;0.015154061957042289;0.0099442471227092;0.013424885858831538;0.00986301033716749;0.010938232219437934;0.33044690090922957;0.2413863236850052;0.09860908680763343;0.0049089747768349705;0.025249368015903644;0.20338412601744063;0.4493250924878277;0.21812064460365568;0.3018476120019922;0.19765325143134468;0.057179340431888645;0.14946919813660087;0.270815094918058;0.35595639923090494;0.3486552563405974;0.21390624438399589;0.28564496259874433;0.29957748439759296;0.2129318280218108;0.21095746844302696;0.21035733163758863;0.19749375011959855;0.1401439994185771;0.04412321498920323;0.04706841540760264;0.21176942444930189;0.1967313480765073;0.01554158232258238;0.007079646943551778;0.04193726475522959;0.133715246179533;0.13232684868422567;0.12086930792894106;0.08673041960090654;0.08570621254644156;0.14535647213624225;0.1408571153248741;0.12439231410640718;0.11624305669890127;0.03734014750581503;0.009392164893418363;0.24736036643377304;0.15403873604044827;0.04314444748562794;0.09574799334422415;0.1148709380260771;0.050000363407116694;0.02838711244622691;0.10140850422689558;0.09510325065918959;0.07236580701457612;0.20131055309278784;0.02155405212739952;0.030709179228345766;0.03666295487126035;0.061882169158301345;0.4730937464431657;0.4812350591669174;0.49084038278745123;0.5007522519050261;0.5432239907748453;0.5066603471085961;0.4602830019801886;0.5510567490444593;0.542244033153958;0.5210741862374842;0.27318647794553536;0.23278817067358126;0.2534517288509322;0.41935773846376584;0.12919307733567956;0.030546285078815186;0.3032326471347577;0.42371159632088307;0.04790107176227535;0.061545122547662603;0.008376367069777188;0.007992317463095824;0.00763248101622235;0.028673966462613745;0.009028986416982443;0.04209725448800915;0.21759700872768506;0.39206290407278777;0.3291921955509542;0.7176524333963256;0.18687662068235447;0.517626002317005;0.16887586403360433;0.7037247686444352;0.7485569371910147;0.3865259845702013;0.6624692949267722;0.1658108572643937;0.2977525185918151;0.6387641289921545;0.054200451986506956;0.05052997530838302;0.01928359105909487;0.12068524961320272;0.39517704405607335;0.39473028016145134;0.12964680095653197;0.08135346133621964;0.07877056986255428;0.528729343813879;0.6056705095655277;0.762597963855873;0.6581118621880914;0.6502245057495312;0.21001280485452226;0.66173067341887;0.04808912221802071;0.008526202139345218;0.029947268930439416;0.04932952707420494;0.03118051067237177;0.04405173336550059;0.023688936910158838;0.03555391433119507;0.04917493889108775;0.04282483657049898;0.3194201516725216;0.0626023569327022;0.020782193764940535;0.028537566200183703;0.6171526233961004;0.0191884014326078;0.03396753504135573;0.2835154992767366;0.7058065087741994;0.6927961604556282;0.018291088239120817;0.28169912697933613;0.750833099267497;0.11603707844823304;0.023327212985687802;0.019957379657050127;0.003253721225985376;0.6331017971705472;0.5495459723707137;0.6162565388128479;0.5496663346437592;0.443705661538089;0.6094819197957472;0.5151951924474458;0.8938964415487093;0.889309811641981;0.9729257977238283;0.8406934563824712;0.8349787020484819;1.0;0.859065376438359;0.9563938880022871;0.8502716986848281;0.14604021596154895;0.749634323684647;0.8071211911819614;0.1841627619371246;0.01966873192867982;0.04172849492587577;0.054385699484651474;0.4852702907528935;0.6617468205815066;0.31006977705593086;0.020309941126926793;0.28002070279411206;0.37379493378334283;0.09024834683634782;0.004492524105113691;0.04515436811711135;0.5266544396272724;0.050836030377268304;0.06572458590009984;0.6806695180590072;0.5929343545438094;0.33251260550203593;0.45421309977318797;0.28214563300643086;0.37862416882140865;0.14975106102378166;0.15573881296137443;0.13751274446949008;0.25082371426047073;0.3105728932553368;0.08561909482499107;0.18012314927006706;0.23263337211705787;0.3068127078898993;0.2760816448366108;0.1851752917393286;0.18545472353039905;0.09397543644889297;0.09526424319944422;0.02099791162638083;0.08356712452414533;0.0793927413892037;0.026268191865222067;0.03886541256055995;0.06643672111800754;0.021904472123460087;0.16086495421831035;0.1622771263775271;0.025785951125745114;0.5818835438950276;0.15564485665639577;0.08842494944125985;0.024385660114867803;0.4878484159510153;0.10902902887058383;0.699803204149129;0.021747618733901262;0.1734729521659024;0.02031218016616722;0.019511130691503394;0.0816557544932041;0.14300790334847707;0.2772291511030634;0.2813764328045583;0.39302306582822677;0.1514341677715263;0.014964482372963819;0.07052992115713799;0.42199366210740513;0.049327642757243696;0.10371698911671298;0.2963412516320981;0.5858473850908097;0.018253777610995926;0.004996079109198018;0.03152559487132713;0.06322585487417103;0.08091313037033479;0.021753896530946615;0.8384256107185613;0.16006031544062413;0.009910071971543023;0.07890368640444095;0.3299575109191278;0.0019919550511975728;0.018373254458633272;0.05053811358478309;0.10020897768742529;0.08061706876310315;0.045562109122316924;0.0399382288213697;0.44255531660717456;0.13046447478295126;0.09501565963920727;0.13150631798754397;0.028702379321659366;0.052419506777022805;0.00653909359410042;0.5550905623984006;0.05523405281057751;0.45498914184805056;0.05092126871376891;0.10082712614421509;0.08657823849182518;0.033363055714626826;0.006979437713306644;0.2176993700018544;0.02439073544454969;0.002645701452584424;0.006083192293640852;0.10833063885940183;0.5015683512430841;0.6719543179574428;0.43996308801037176;0.11246823442527147;0.02078813753786325;0.07150348716790832;0.13281133519898772;0.10113555660558218;0.30653411064907043;0.1691628943426083;0.1409932311162789;0.03146550000728137;0.0464352052134468;0.005530237512506514;0.5477562403311171;0.11470697743559664;0.6264008264632327;0.08674959103664771;0.07105470804588362;0.040813395506637935;0.1933801776292324;0.08542746141695884;0.03323721813437378;0.5034893450813454;0.6419825272521282;0.8079979742070976;0.3194875167489847;0.4296171593219132;0.0649540180033882;0.08065078176374738;0.006219611945962318;0.005361799269358033;0.2875193402530996;0.15055143158714007;0.0357363150524531;0.02312752812837685;0.013433691189971314;0.028019889714302804;0.0571347537571567;0.38091815931085377;0.2660072737486855;0.0003062641359468861;0.09517980465320336;0.03175321238148066;0.10206384966672766;0.2642790283423155;0.04080853765102922;0.014546442440188987;0.05071757047167868;0.009163740864370502;0.07852590469813475;0.011437952408431713;0.08015480740490032;0.10579839891232697;0.222855374598741;0.039187894057578006;0.1533681333920433;0.1931842417855124;0.7444206286591355;0.09761151915894771;0.10383506706184596;0.042740136218296976;0.06637090553023783;0.27343409259978607;0.22122305337864068;0.5962222452720706;0.028507746033553036;0.6396380960374313;0.6444991951212962;0.28135354891381353;0.1797393737639574
+1,2-Dimethylnaphthalene;0.42308970841116933;0.3973072638071436;0.41969305238868243;0.418155894986139;0.4167718769930002;0.41405059947470146;0.3356567532954044;0.41000918938480646;0.41042687269072026;0.4866187147544021;0.8171557995825977;0.4008669532952019;0.34150866324721874;0.4071045720999444;0.40328260481777933;0.40258349253069947;0.40144603530420075;0.4047664238974946;0.3968499079959523;0.40372049093299717;0.4056475977886343;0.40009127302132624;0.39320637590387;0.40730486786267694;0.41168029399719863;0.17933513316580996;0.24646996748585798;0.5718895599119569;0.8939373787336238;0.1873187686038199;0.48726929164934063;0.08280148900292202;0.18988729111809602;0.39809940035171043;0.2725313260139495;0.4153795023288512;0.4492778937045185;0.8696103616223217;0.007930049479442295;0.2193754551107609;0.06521496563976273;0.2470558797204972;0.0625945588364483;0.00024033650198247573;0.012113625313447491;0.011155187320179602;0.015341826666757659;0.010947758548036415;0.012072474221295355;0.1861955221351797;0.13694263955072442;0.06257334042135575;0.010423401689805255;0.007225757682190944;0.117248058974839;0.2551634163943724;0.12568725886028947;0.17212563198614508;0.11191097925252327;0.04851343751797271;0.08521455057311385;0.15499115309609227;0.2027290031655719;0.19850175787748742;0.12327562965943865;0.1633039838280144;0.17077723726560348;0.11981353986454674;0.11888018322878655;0.1190027334057701;0.11219953930636431;0.08023196141912636;0.029059560884074517;0.01965129346450922;0.22228180960647548;0.22039546744978983;0.005983365812195881;0.0013308682691838335;0.04954242097628955;0.13422521476455454;0.1004178163837605;0.09282224539959161;0.07520656424573488;0.07438091684841551;0.11786402214000861;0.1120396823680588;0.13459660313382477;0.12952058652590018;0.019081328551138647;0.0172216403762648;0.3623164451302125;0.2402859261485283;0.033060432185513175;0.06310754363886925;0.08539341116153683;0.019822441373419736;0.009493490462206128;0.10876642670159434;0.08889799721022952;0.044162757259664016;0.2171487043033561;0.014620661898920851;0.01916267724501268;0.01628716227601563;0.04206174436272742;0.2583827452946149;0.2588960858751979;0.26566625868308885;0.2700603124355498;0.2950179292210004;0.2767751419264169;0.25263294185577745;0.2966607128660636;0.294620361634411;0.2855892355686613;0.13307001331094886;0.11078316396341405;0.17065166710955934;0.22883513945696254;0.09286154431185939;0.016449522662346786;0.14371360390516;0.23119403088535656;0.05670746748926343;0.0019371036594039372;0.009119315173149668;0.008473529500352869;0.0018652050647632553;0.004083215336983957;0.0021548449523793663;0.04863251312945165;0.22963002715601447;0.1899164887020792;0.3594802858652972;0.40434891043183224;0.22663302557275586;0.6445031584814507;0.1638144646680574;0.5312534225879306;0.5166861796764897;0.2211139001184865;0.5241871743352495;0.13592850479489138;0.1566320397754817;0.42270966038156443;0.03127726077976174;0.05363133227179742;0.010876042611878326;0.06355858954420986;0.4711112886514215;0.25284759007045643;0.1744158052134222;0.07962970056608301;0.10897259399847452;0.3008935116631079;0.6778434658767921;0.8924775578406876;0.9012551981002862;0.870165112002476;0.213111667099545;0.8505322442463279;0.0205130527248266;0.0032791059124164194;0.015271603273747367;0.021335892881207786;0.013855842655922898;0.02785782451740509;0.008113247633206444;0.012086306504732218;0.04057688411995649;0.020995620093565596;0.11454292370276699;0.0557174216058074;0.0027879279171156004;0.0081409942304412;0.8890056521869956;0.007638429223421286;0.040713853808277654;0.18083899212603524;0.38901254022121784;0.3676208763966484;0.020370917877246004;0.18142267409872773;0.5207375274566232;0.06528169601821494;0.019140723425960855;0.018001850958407246;0.0005501448731380311;0.35820902884610084;0.3195136808413785;0.36729578802936375;0.3170246968253147;0.3307547945113436;0.3648576781887863;0.34055842466698494;0.9331765733614696;0.9386431985330984;0.9308306033786711;0.8532424240872952;0.9941277174738606;0.859065376438359;1.0;0.9594815523497423;0.761221798956179;0.0916444793678657;0.4578320505181823;0.7444211443900906;0.12042632039376425;0.016568397293611342;0.039915683233412116;0.041641175634906914;0.2098341082657822;0.8286882646170122;0.21148041538998388;0.023010266008629248;0.162997590945989;0.21288123978916665;0.045008827114421904;0.003748341785508455;0.028215907117246003;0.7335614754880238;0.030555863496875103;0.030829570216124275;0.38881605814216774;0.34406896877637394;0.19108268812517196;0.2585399078323963;0.16207018505232207;0.21568679186599532;0.08512281140079007;0.08857790748201567;0.0784804426340123;0.1451168052169348;0.1777178031655734;0.049364041604344086;0.10197658695550195;0.19664542219134037;0.28712568939162136;0.21206296124737298;0.10476142831697989;0.10972352970394784;0.03961024420751622;0.04678434868811425;0.014584218354955951;0.06041620450733512;0.09126922978608983;0.025123706761782803;0.016874650079429388;0.052273701649598596;0.02251024226587067;0.09443643188800642;0.09526946717950514;0.02670709067189771;0.3302621212916039;0.06188332100815999;0.038866002930266784;0.016633685858215636;0.29029022800845694;0.0524256406445902;0.9155220135539982;0.03247404840703933;0.10156240481159269;0.012958304888802293;0.01249845710771113;0.04741867191107721;0.19452254023253993;0.14622285068303303;0.15792225521441614;0.24115543882846366;0.0631495793808605;0.006156389331587052;0.036730595618822054;0.2822524394019049;0.008236271342626;0.09049811678523655;0.17905341647318038;0.873250277539334;0.007699993876414879;0.011133803683714551;0.022107419344093104;0.07845625112668513;0.06346334919181036;0.03239395153380318;0.7637167231361274;0.22581320202034097;0.00550905301636564;0.09668217341865651;0.23299887031910804;0.000437569401587818;0.012101532255431573;0.04057896463496972;0.06314518000934591;0.0485082784069875;0.030471622270860987;0.03501141009373635;0.2245563059417641;0.07795776148393682;0.026074682957097153;0.0877670770503254;0.022285889464619867;0.04832973223748489;0.005083697960943226;0.6034318158409269;0.02790204298309923;0.22656598167364614;0.038374703810672504;0.055952149137106284;0.06327346896797185;0.03023495982619051;0.0057777131187232164;0.25679976338930605;0.012353000610492016;0.00235952265160707;0.004331652108186902;0.06914138587270767;0.5637808796635588;0.37858068766045655;0.5984204192757854;0.0660464122152568;0.015400662512409995;0.03635346450604867;0.09486400414155856;0.058729487079240444;0.1680699503700843;0.10458900793825905;0.02579744233914807;0.0027290122964121017;0.02818383706551162;0.005027039783367107;0.782954259721304;0.14412816711120385;0.5593983864027811;0.08047445646301399;0.06064420170997021;0.01617854078320835;0.10654568032187357;0.06700101048350604;0.024828427178498293;0.28728358993397685;0.37589333210138454;0.5311531335967041;0.17415867471020174;0.5479053760001843;0.08885699422391849;0.10130243872779196;0.007938342592586746;0.00240762815590812;0.3196088949184579;0.1401234875451249;0.017545145888030005;0.009515920674598456;0.00461228507844546;0.03398270557950171;0.04947643566293539;0.4845178020945226;0.2738000885069069;0.0002386211287471175;0.0776740725584387;0.0005664513894966754;0.028221809418407077;0.2359565311039144;0.03887542059845082;0.011067905121178468;0.019995474140643784;0.01301242283046855;0.048429914969016954;0.007110372975820909;0.08062521644110701;0.1172520993803374;0.21814920748554692;0.023826510541749134;0.13574875317723892;0.13695088619411488;0.42024211020338637;0.08797086982277703;0.09246830735399457;0.0465934962182549;0.06061513752758269;0.17724096025158081;0.15813155104037252;0.8880420988099058;0.003348133589387108;0.39156047634855706;0.39418362849157174;0.2715563558975882;0.11912510425789868
+1,8-Dimethylnaphthalene;0.6197597286251908;0.5924726592740633;0.6116939815119847;0.6232300084841356;0.6199704997133187;0.6141936125811295;0.5196998729067321;0.6095588139863194;0.611225493870007;0.6767814971429835;0.7702371391173815;0.5899984078169508;0.5265949959950945;0.6056730073142363;0.6000715199077029;0.6051038691878833;0.5884561427227524;0.5983061482715805;0.5923156948890959;0.5979815466312282;0.5971266451806885;0.5950642139783453;0.5713213414237309;0.599772316237202;0.5958954708039786;0.16236645436558506;0.37517010788049326;0.5507364376426799;0.8041653744396103;0.22674564713007775;0.44596278347645046;0.11974998203409742;0.2588028730501568;0.6123895903312686;0.37186433146428455;0.5978271030717028;0.5219963579330892;0.758431760791844;0.022358374341715552;0.31880510193423556;0.09378533220330702;0.35852854340746504;0.08401418460813617;0.0;0.014942088524646166;0.011367345269435098;0.015501291376041277;0.011176547950305989;0.012458134256936058;0.27263544025957287;0.19910542003019235;0.08410430760529007;0.003956309221327393;0.013070665685935479;0.16670805383822151;0.3705426689065445;0.18019001578819896;0.2479262008690015;0.16176738308245545;0.0583193329970372;0.1225899243117793;0.22393521917641712;0.29329425029951095;0.2871875574705565;0.1767149803994061;0.23546034609283767;0.24633822349496248;0.17420660560754953;0.17234833737582986;0.1721793884803924;0.1624632812239321;0.11575244918462016;0.034006083163186124;0.02906968240163803;0.20830255365368638;0.20396650928253113;0.00864641477833631;0.0031620164179830294;0.05054002783409148;0.1401818651133997;0.123490048843832;0.11405656301702354;0.08469611063789123;0.08295017598646046;0.13887297146706348;0.1315396561817764;0.13930289002929713;0.1286911246796151;0.029444873378283932;0.008539373683561217;0.3168555169289146;0.2014192918204082;0.04415261175585012;0.09097936792017594;0.11361151737960301;0.02977817112578445;0.015160212744004954;0.11175535606442437;0.10449752502111037;0.06894978822629146;0.22454180507801494;0.02154360801915968;0.029032833861080805;0.024840228976398156;0.057153729143546016;0.39081395300347227;0.408510325789844;0.41421350144665864;0.42209433574408084;0.4496046442963523;0.4185596948127454;0.3795094476649726;0.4575214087099788;0.44982356951239305;0.4316849080881997;0.21834115706853313;0.1821319666380236;0.2213674670977058;0.3520354657262881;0.11189806132894355;0.025080654067898667;0.23727077774056132;0.3579865778686933;0.054298799740759275;0.005752486873085687;0.008492166432749006;0.007813319131195698;0.0033451063590203196;0.0038349557249555636;0.0036926571527568642;0.04684844261250065;0.22593846489944786;0.29743854549175464;0.31059902689146124;0.5875767999919622;0.219347932061841;0.5480699217006519;0.15451047045847366;0.621179976292754;0.6407771428376594;0.3215454417320041;0.6085385810827423;0.1554306330812191;0.24070801547075438;0.5455108758717422;0.044020583147883714;0.04976391788043071;0.015842335055507167;0.07822123984623873;0.41489232254387026;0.3355922667863564;0.14878839926308945;0.08347685885095117;0.09162165227451653;0.4344418755538792;0.6505262357329452;0.8502183733485076;0.7925200013050491;0.7773219056979331;0.23633657058009117;0.7669506284935493;0.028569758418597012;0.005840162260440917;0.020806004066608458;0.02428593837469308;0.022922248022597985;0.03309826595059516;0.010374778821118239;0.016448692696264536;0.045340820903684985;0.027941662158988148;0.17966098243613052;0.057310096093481894;0.011627826779154724;0.015117001205501602;0.7688924669364325;0.012666011832371971;0.03732449015870254;0.24454487598857058;0.5699046739840454;0.5516424948337264;0.021449576874705632;0.2386196995257188;0.6621962688189401;0.09529333635208893;0.014183240532549376;0.019688530555687863;0.001025960918295685;0.5135020885526174;0.4526473508417108;0.5047917723739836;0.45705640237666423;0.39680023708966655;0.5106453628370295;0.4553124362372069;0.9455659984623186;0.9456193326711904;0.991586269952646;0.8670204250307393;0.9463895612725979;0.9563938880022871;0.9594815523497423;1.0;0.8387969508317036;0.12051653956355336;0.6326233945190494;0.7908392063737385;0.16611578281541667;0.021907299569815474;0.040435127776789904;0.055922072402610636;0.3123763152051908;0.7571533841584109;0.25350174941200565;0.01009559796304834;0.2314863488122558;0.3103301993318481;0.05423750051665753;0.003545055852130108;0.03574609175170372;0.635464986949467;0.045837256486729885;0.05070103118591869;0.5831523348399007;0.504597761751774;0.2758851305624435;0.3749168322094388;0.23341274473148418;0.3117860927297058;0.12286755189858099;0.12776282600409986;0.11305932069145225;0.20705966514799895;0.2554366607532407;0.07136365239126981;0.14775637143686446;0.21768134232048772;0.302947497108675;0.24897149920261222;0.15169860633222695;0.1480312822636908;0.05091234631740607;0.06677420361481574;0.015166574912329787;0.07243920432334962;0.08010522332921803;0.03053982696812698;0.028665970203161934;0.06250336257983055;0.018734151595597586;0.132802767492107;0.13399987872159502;0.025214259896971434;0.4785010402881663;0.07191729431540773;0.06352690203100299;0.02483968840361924;0.4011103473523247;0.09785930784068457;0.805407649065926;0.026187953666168697;0.1393398335234393;0.016871995916903006;0.010982474519787367;0.06786162140421642;0.17062389076425874;0.2060497227230652;0.22439072456035813;0.3381539867087249;0.10634973564046822;0.011482024613555934;0.05133075406553489;0.3890630885734959;0.0162923428448837;0.10161816633514487;0.2501156269382578;0.7431631030657925;0.011419553687903296;0.0032574648119635683;0.028688265460468817;0.07263737162536738;0.08289182035535483;0.026164866148676476;0.8265167067592729;0.19216603618285852;0.007120541800246197;0.0901512513389817;0.2937171223904455;0.00041272124659286544;0.0147491999851866;0.049309482868611254;0.08371090958617013;0.07052886572806967;0.043976092563379685;0.03423758249338873;0.3448064143440349;0.10841493109688291;0.029930465061498292;0.12540718511579582;0.01829273758000918;0.06004081959520712;0.00705016661163528;0.5902993046066054;0.04032855269400352;0.3485423074841193;0.04555600336091419;0.07966743467471658;0.07931635384013327;0.032635732939157114;0.006194269650443252;0.24825124257786665;0.028449120201483182;0.002369434171657195;0.005284764277601069;0.08759476146526383;0.5447489913113613;0.5614768643173913;0.5373707538458048;0.09350055581178963;0.020483909118840418;0.06862216340919546;0.11856988697316889;0.06363003751722028;0.24211426437316622;0.14127133626437216;0.027234541312231693;0.006524885509189907;0.04218306621742832;0.004221634926292328;0.6661342877061781;0.12941624829091888;0.6064338607473846;0.09269163306500239;0.07421641376317177;0.030693795423327883;0.15719007348578537;0.07925444337035886;0.028984996933598052;0.4272217527587974;0.5376156792296496;0.6952800957404395;0.2581477325540097;0.49982249804451995;0.08096455694140398;0.09441744482334687;0.00721167411190134;0.0014888784353538677;0.2944001330703928;0.13650019357615686;0.017996515670354638;0.016830743920306906;0.006481786670984785;0.02658507124959961;0.05777373583766069;0.43555028756731995;0.28196838685290876;0.00022507060448590739;0.09227235436102849;0.0008243026843314173;0.02989231788361405;0.26112484150381043;0.031242132708827818;0.0118251202937567;0.03332411328275303;0.008795313883931915;0.055371519092079595;0.009374706579549431;0.08018124028109042;0.11066919418044453;0.21617059571089556;0.03129990349710532;0.13731498934473596;0.1541640541960003;0.6100934987760621;0.09283183527884206;0.09815597298559846;0.04481957074185243;0.0640546938753263;0.21585262194826962;0.19576752387401236;0.7582120985975014;0.016626751061673457;0.5382742636271011;0.541707038752645;0.2821368080601603;0.1513410655357927
+7,12-Dimethylbenz[a]anthracene;0.69167915840942;0.6928334052130123;0.6900612401154664;0.6743508402806376;0.6790912159319483;0.6809034460613362;0.43650736921115896;0.6847749222560645;0.6841307725880875;0.7380269905976102;0.6960808379841061;0.6859014010814617;0.4810144536338293;0.689883549461647;0.6968899226931696;0.6876227945437189;0.6997476243276036;0.7027078700684027;0.692024568398815;0.7021161605814066;0.6914412502054104;0.6800487434703593;0.6677539764210604;0.6953665024964407;0.6929250265742326;0.01574329702595841;0.3596478196470233;0.47331038695851313;0.6241590238046473;0.23377576868873995;0.3584836610734674;0.14632901196152115;0.3078553725739;0.5780711754943673;0.40138384702765223;0.6692365463900202;0.3317867867782352;0.5750651936498032;0.11084648863106432;0.3839928906738948;0.11820812601783896;0.4264611020390412;0.06375912014254666;0.0018362195730902016;0.010783645084824899;0.006622149130673012;0.007744381627976639;0.0071864481031883596;0.0073006501542121315;0.31955208677741176;0.23836450081326266;0.09966853326624613;0.08239611614465453;0.05920219284312315;0.20737642496413636;0.4379287554898228;0.2145054013655985;0.2989217003610463;0.19956378159728935;0.04828418276223919;0.15508637496399436;0.2661667977947392;0.34993833443297995;0.3425225631396532;0.21110538613975743;0.2810061220705261;0.2956168003523851;0.21433566541720053;0.214271135899595;0.21193837775868565;0.19880189450070898;0.14636426518771475;0.0021259237129724806;0.026559846739165983;0.01922968793358046;0.017603749680768974;0.006155826806277351;0.001047297059157363;0.0003600517024758841;0.0516774260593255;0.0038426663723804474;0.0019989921091331585;0.0035855839539800155;0.0030616762569385934;0.019243559926285476;0.006787265956616346;0.053884877062731935;0.06087430825190358;0.022314034049335203;0.013241708228893907;0.001311699183578417;0.007089048190425915;0.023071716396671594;0.009964989764404663;0.011558082100002627;0.022670008134526833;0.004636465891304;0.017878265762665862;0.030665423406001306;0.03558120743195728;0.0445570779231051;0.024428414881118944;0.03405608281871946;0.04365739716096542;0.04885432767627068;0.44962539079722647;0.42648887015961223;0.4416563822776736;0.4546981859504364;0.5128043409876148;0.48390437725824953;0.4431709430751409;0.511973139808529;0.5030994125303212;0.48906949300012037;0.15040747660343354;0.13413919833933236;0.26181990330096694;0.38497894600814175;0.06044082098634208;0.028802288128870885;0.17464141362048946;0.390534892804471;0.05912085026843794;0.005349306875241404;0.0031919490886512104;0.003910584596358425;0.0034388452610829147;0.0046673062713013195;0.00305604785677435;0.01980696144813343;0.013317989594818709;0.21493968162659824;0.22254146373523392;0.6976845130014601;0.0056450975781895205;0.37138260947516544;0.016062868262313894;0.6412943300447296;0.6748605683304579;0.39176526600112405;0.5893378978790638;0.11406536551463303;0.2547878669180298;0.4851130912653471;0.06304639209838754;0.026094981495528795;0.03975858737525907;0.0707057033519388;0.31735219199391757;0.3251222091539485;0.10884059451665863;0.051283433645247775;0.10542476973084978;0.4658785839248121;0.5534709887014632;0.6738929810040448;0.5666024353906514;0.5680154191971134;0.044296372313758846;0.5576812081163671;0.012393059773681504;0.009145233037518118;0.022043754583461164;0.014641696419588493;0.014950557772017857;0.024264861304375225;0.01764210616556463;0.024431286124194502;0.065787844165776;0.02146793583388537;0.1068169625532172;0.03527978934081212;0.06004194910989952;0.06409678600531105;0.5747102477033307;0.007017032961332437;0.07669506294135782;0.2567621603786834;0.5925735695362874;0.5671044250998794;0.033409742353034774;0.2595342936528078;0.7113698268685986;0.04257358578112688;0.05606447270552813;0.05916205471631443;0.0036882491762041747;0.444266004996224;0.4755922732528082;0.5401210972494029;0.5465830928010467;0.29527200425028827;0.5172334023297459;0.441977203372909;0.5260839316448803;0.514948551521631;0.8611310453118148;0.7185491289670128;0.7384651558693148;0.8502716986848281;0.761221798956179;0.8387969508317036;1.0;0.12093534495432104;0.7349494484300688;0.7555780151418953;0.11038752622050901;0.014560574798795894;0.047547743982184545;0.05903591412473282;0.3583699059652348;0.604514628575932;0.259215260102788;0.04576733065874072;0.31098150689943127;0.4588756556554234;0.10682388528336134;0.004209526246251728;0.007206349551831711;0.4897593033693361;0.0378040740982806;0.03775414550016132;0.561145061270622;0.510238695788575;0.3206096550116728;0.44159058555304875;0.2769129145496099;0.37266059593734546;0.15914031802493991;0.16211629885049017;0.14508463409476036;0.24645042896345723;0.3053470720014652;0.08849774840340834;0.1845613739630124;0.18757069790938688;0.2613258916011124;0.22792695637178448;0.1896937388005667;0.15362170888071003;0.052683743795093246;0.050400206402861344;0.049881889843709136;0.043978766167971375;0.002756919131784766;0.04227743022723658;0.050191664544664685;0.07623919941545063;0.06301397880320261;0.1330482442745657;0.13415952824814636;0.02144848720683197;0.575483269145968;0.027267408337510696;0.040817346175261775;0.013591903744153174;0.3844078867646449;0.0010461896343910025;0.6092078875691298;0.011817399584990784;0.1720636195626174;0.019334600196145958;0.0028720372028135798;0.10376099779242642;0.021808452430864378;0.25845240284902227;0.2603484421300203;0.35078985594801804;0.11198422925653208;0.01140059553956082;0.03271295435722713;0.1893049212180122;0.0077641661698413175;0.044796394158293465;0.293317964718404;0.42870453049325136;0.00170512821867541;0.003477052498564545;0.0008832391338026722;0.052887650674342375;0.03427371756279057;0.011456946311558646;0.7691949227191793;0.1422234118212386;0.016360678081707325;0.004946381986457681;0.2874628525996187;0.06274835531930588;0.06629214837647017;0.032263535849403426;0.08690152713021432;0.07175538014144943;0.07450915196375957;0.006211615527981221;0.2762007618213586;0.14509163481482187;0.03200963341754058;0.05447427285480164;0.03665128017732625;0.023892888715331878;0.0029611420218618417;0.49473240509653194;0.0870150607836353;0.28633466554226567;0.02755415698903465;0.14279923261953412;0.017168661011298034;0.006357533198468275;0.017300893503117094;0.18419521850149662;0.007760029252314528;0.0164759326609173;0.016745016692769163;0.13064222746168255;0.45964881416495285;0.6243241283017334;0.386508958079891;0.10821339426859028;0.04171444371965769;0.022663469377514827;0.1355029174633164;0.061014658312385985;0.32394925873051683;0.1642861499391821;0.08332055434526749;0.0027043078500945676;0.004806695325777166;0.014642154512385097;0.65807505534151;0.24464340618860395;0.5789778810303843;0.0790322537170254;0.05836911094446946;0.008962841516865293;0.16588381169462862;0.02997135985793972;0.02454233132781197;0.4707209410796269;0.5846562584179497;0.7058447276314819;0.28222855208914055;0.3870010347035321;0.0016623672573957678;0.0013526690286807714;0.008081910829945709;0.008909757596284554;0.03625503895367606;0.0241890514627356;0.00901086098407181;0.012268435297231844;0.002707083555533228;0.007969293985535069;0.06381709490979282;0.1483126359771022;0.06923936675144911;0.0012702409792986146;0.058940371859094905;0.002693342447203954;0.013073461501382664;0.1221873094159126;0.057656299613482315;0.023395036472589302;0.015267319403750333;0.022224873519722754;0.09176542752890639;0.0020367294073553657;0.028247979729782508;0.029756547467725995;0.07501701329780833;0.027419298552735765;0.02879282493325573;0.0701242811382848;0.65683602224282;0.02515851798746042;0.02804590754923733;0.018779543370916352;0.06743702814032257;0.20090590025327063;0.1992396669188322;0.5529450764251908;0.0026294754034324927;0.5655205112858717;0.5807998425730492;0.2763335888405337;0.17376963876857818
+2,4-D butyl ester;0.09475691335014069;0.0890301371358718;0.05987230290156215;0.13017445068676506;0.12887200649376213;0.09687080643504793;0.2351107340397669;0.1214414781198453;0.12978796077096327;0.10975082783019921;0.033657761346456774;0.10399568098007517;0.2563651406096383;0.12567469401109563;0.11500950872064515;0.14890236942061658;0.07532361231745396;0.08674854083667172;0.09298816979339261;0.08846393144472828;0.29369809807966113;0.2948520795242288;0.2950653359183884;0.21601971543827564;0.09718172060934961;0.049170188532952304;0.1405252752253532;0.049225277487928355;0.09241407196565991;0.08812011933793387;0.04032577024163117;0.040625483401755376;0.12152612182194682;0.2110057563282175;0.1354274717883283;0.1104763361536839;0.16760311422395208;0.014795333459531447;0.0046337555492358745;0.05918961593258658;0.07525068463953276;0.1265235438898168;0.033081555013455125;0.005213288848685554;0.3625284099457569;0.3327151922548187;0.3444468688615545;0.33137069996659674;0.34447454758168033;0.05489609527346164;0.04903620091038363;0.05073659412570884;0.11248163029481244;0.02554504457369714;0.06254897466832766;0.11525525227348452;0.0801297644056353;0.08073841581127968;0.06577910881323586;0.04415818869430131;0.08208462482599876;0.17639185310316075;0.16168279975569683;0.16409423539835327;0.08305135456173023;0.07349121973794552;0.08067482635445355;0.07075019450601286;0.07784918729207356;0.07311181973484378;0.060546385553865996;0.06816070761316129;0.005600789803424988;0.020716654507658156;0.04869459873256101;0.029488323046972492;0.034437694761498;0.014397930275630275;0.01567397550550507;0.1283085061229357;0.02372145213983399;0.01774883492320427;0.0225478582688188;0.007060712332487241;0.025618885356912435;0.017537681630923497;0.02137729605275763;0.025316857791194174;0.0340224492055929;0.08771262918917229;0.020700276657324948;0.1695153282386492;0.09637100809790612;0.036607412525708746;0.049844803112281656;0.01729041401314489;0.02772228303777517;0.05414843500802976;0.04907366716086581;0.05264847445521614;0.06645891391778448;0.05156909211251224;0.07273977961055154;0.057581149993324886;0.053704423728654326;0.07292989665074541;0.07628692614878503;0.07422678411947185;0.07759109407033443;0.0690956562673913;0.07939910416793673;0.06382542382976057;0.07008136213290295;0.09003617294085335;0.08662169786388776;0.22893295069045502;0.21579812297463774;0.21787895470408364;0.0485922552602752;0.10135940653620497;0.01972396470409445;0.2749620619804154;0.0421288787142245;0.013693956341469;0.0014332408291656351;0.023632807314559065;0.02737346469841994;0.2918107866312301;0.28528143891012037;0.2231796526863029;0.08842709065692167;0.026852313146221912;0.261116008676283;0.04337832053594933;0.06672203406148151;0.490966500197912;0.10802666238130655;0.17373802835475438;0.06352279499902493;0.07464334677348719;0.19356923014764663;0.0637627238542174;0.059962201188550904;0.08525204979341165;0.21333662627764255;0.01157888403573513;0.00945397764702005;0.013081528541095257;0.09524972312060807;0.03678765841216486;0.06960180219308905;0.06708060310322271;0.13742629648597654;0.02873184813847743;0.11389558340794702;0.18182257523701123;0.12429963879349093;0.10666851704965075;0.12519960958592535;0.08318655560923632;0.13343900555838403;0.08528052982316585;0.04726773910186846;0.3125975805489065;0.07144464729882095;0.0630712405512688;0.15492984990624456;0.04208618989701453;0.04628486568571074;0.35118020087709756;0.20920519066687468;0.15272600770458833;0.009054035558557409;0.015761091505600937;0.016257084384053534;0.011685207545139359;0.2220957309198304;0.04126450037071712;0.10345898196564383;0.22388479666048142;0.22642334893514743;0.06713651262190545;0.06115852709367197;0.110603694972304;0.05008697860647492;0.175709984430962;0.3010314935249925;0.016180359995856947;0.27583381102339677;0.14445682532393703;0.12451376753741411;0.07289724837086439;0.08949902913735053;0.09968940237563821;0.08018794429647279;0.23107833625412733;0.23288146767768822;0.13640514219562688;0.09313112669518143;0.07891974104221781;0.14604021596154895;0.0916444793678657;0.12051653956355336;0.12093534495432104;1.0;0.06851784267963411;0.07645771189890738;0.08415768799287562;0.3251438347630443;0.03462515421651284;0.055618553142545865;0.11283935299429086;0.12821531968933927;0.0424684849568109;0.06260190791059606;0.11795486428646301;0.14452340284241894;0.11885885104937954;0.016590864247888124;0.20902593398446656;0.14717600608144762;0.029186529699759507;0.058989679696932244;0.10429442830551443;0.10522227555206715;0.13401968049076424;0.11485104270712658;0.17878130991372915;0.1394232850533461;0.09272524948725756;0.09101778217423874;0.09219657489918488;0.08917486176282871;0.08464988083995224;0.053447376302540435;0.07381608126819438;0.034958018045775904;0.04907581198116912;0.05356561970122941;0.07276129771583997;0.29085346993326855;0.13243604924040497;0.12591527438484726;0.08939550799718682;0.10711997381015091;0.1016905556758811;0.1171137777049993;0.037881880553788785;0.13404950099334845;0.1326333731190807;0.054647884993573106;0.05443638893723695;0.050019259858234195;0.08804890182830047;0.12035037939585155;0.16147332646173146;0.023022448107096093;0.18333730309995797;0.1524895320677083;0.03744475223098299;0.0043272574175066345;0.03618378979522975;0.0286954326755951;0.013695371474577537;0.055592995044647237;0.004754630504025426;0.2603238586499424;0.16120369716894553;0.2141071207048956;0.053679833998914205;0.022820672289566864;0.07606012097489867;0.18783534037166755;0.2078408969258581;0.03379500571273244;0.08567467379267342;0.07472723039144413;0.07700464520493668;0.06328613621851534;0.03772179512867873;0.1621547539813609;0.11024082445765222;0.004324460928480135;0.2893159587241618;0.037087860113018116;0.019695621138708364;0.074731238934688;0.09016358864970946;0.006991287904182015;0.0391022424167358;0.08087752888304167;0.1240808998842069;0.11472095771857772;0.018395836867749902;0.062047540270416784;0.26768936562113904;0.028762955448153424;0.035884930436171934;0.11550416266978294;0.09099652535269714;0.06353073533118644;0.017468217797742394;0.1703812515123796;0.6830171185613306;0.270463937913695;0.13434007983638502;0.03748969259622927;0.10002305877471775;0.07147263600192931;0.37391433146662184;0.05257290117080195;0.007123030803058545;0.0017291388543280647;0.00020602134233439588;0.028265182616478198;0.1695297183660665;0.06427481880898746;0.06408832932563636;0.09278232042522729;0.26184286311373783;0.03942870427515735;0.06061251768624396;0.11090025226527112;0.6521222533101293;0.0575884455993727;0.03775045408458476;0.16768521182281343;0.024335442009878416;0.03195584073807166;0.10912301693364398;0.03193296443018624;0.2201397346967327;0.022465741354553925;0.019793843238023197;0.05747855757707162;0.05086962138050083;0.05953103780255555;0.01288359126855671;0.08348029100842083;0.18693975854009523;0.19887293294478495;0.11058732200061809;0.47874108606304905;0.06066613483076745;0.006855058995966288;0.26257807260907884;0.28336533007300596;0.11737474348296842;0.14577810704793703;0.12234325991291871;0.024151911498344593;0.011250940788588223;0.0356256119905896;0.09499859104193102;0.10050634482607579;0.13319070207196634;0.013374591976503708;0.042498598182847555;0.029589245029652465;0.17186892147919783;0.15535040373801828;0.05726983635613904;0.06534717305162756;0.26107636455601846;0.3435109925199456;0.05714454759776301;0.04515903419728958;0.05568636901782251;0.056296598326667106;0.1141612062729658;0.1954969846195446;0.08866043417513657;0.10522005418461511;0.16514213110566833;0.0024065218832003328;0.004681562358347121;0.19258412512867307;0.15260907320934258;0.11270455655385563;0.12141237312444482;0.01642200808472679;0.036842072685068866;0.3952627879191743;0.18730495033298858;0.11466396761130304;0.11727276196549535
+Chlorferone;0.9295187903647856;0.934062546689823;0.9610109135937569;0.9456747642166803;0.9539967297503948;0.957669019838672;0.5239708009514871;0.9563355214601749;0.9521368315255265;0.9702465939270871;0.4084086581328198;0.9608283307592413;0.5822992624402876;0.94923980555453;0.9400852803419865;0.901136467971249;0.9738733324261026;0.9585687379086416;0.9296942496194243;0.9504965456053858;0.9621217534181618;0.9460861175758553;0.9281709413322436;0.9716794446840179;0.9514814581561136;0.0005530783688872153;0.45577639022266825;0.35677453553097443;0.294453694112982;0.26085947627283956;0.16917353053860895;0.20591245782028395;0.3558145762003748;0.7328385067292704;0.5422425723449209;0.9507637108351232;0.3447899523215328;0.1982512510492878;0.014029661862752618;0.5416293963400166;0.15476780111993535;0.5999178290818847;0.07841226788525099;0.0;0.0;0.0004282069689315602;0.00039871247882990895;0.00038877964450145325;0.0004464620767174875;0.4489116001416227;0.3365422533554105;0.12815700686349363;0.0010945924571658077;0.0037598218849044245;0.28322766354860535;0.6213120569692518;0.29711145696331165;0.41768678793781283;0.27553083584726584;0.008667293008774616;0.20666546907664635;0.3738308013959801;0.49366784782252854;0.4836623507484366;0.2905111596616898;0.39385466015844584;0.4132505130669867;0.2969129000312292;0.29459805673176237;0.29308096517642;0.2767859676638414;0.19627405668146153;0.0017097866445460624;0.022101496132726182;0.002588464984388153;0.002858938159685741;0.0035608004850471507;0.0008354295912905415;0.019400422447130004;0.13777062069854162;0.009209885853854889;0.008824199128168592;0.02644285583689669;0.022608097285949005;0.03040181174776498;0.02043609800748464;0.0356217224373723;0.035679269190109;0.021069807696364195;0.0031016862154111913;0.04951681815316766;0.0;0.002385917981035608;0.008877025263367887;0.010500722390119873;0.030482664853099146;0.0026237795013811793;0.053788269720478954;0.037317002185472;0.035294196175599514;0.06388755432481202;0.004053845719669514;0.004076416800878686;0.021702218271812245;0.023402378332946915;0.6307467702901839;0.5586013544627031;0.5911327742141937;0.6024501103834131;0.7180497793843542;0.6764257014021119;0.6183824583344073;0.7199140506415457;0.7070533510604988;0.6867884817257607;0.11988278563853173;0.11023088002538187;0.13114035836488058;0.5331927284160544;0.05349429740654689;0.03873751396551471;0.1425608290839554;0.5292476920342187;0.01012355057311791;0.00021430268345081047;0.00047721232399058455;0.00022696204625680482;0.0;0.0;0.0;0.015390656260678323;0.012653380579054446;0.19549606974221384;0.05545418469989148;0.9755231671812458;0.008241855851881117;0.07430410185975309;0.010850018859014047;0.7016106595224522;0.7864858251056877;0.340563215926912;0.6596971092258879;0.13387904267646908;0.2707622461697276;0.5375503165295681;0.08352191024771856;0.026246306101051855;0.027928395088507505;0.08073573310719599;0.11433834307526422;0.48380129930565563;0.06429313481548952;0.018856807270477463;0.00350661162052674;0.6129114774837638;0.3843141402112816;0.4141872115586295;0.17401500547192097;0.1972224717583055;0.025842466901812505;0.20555349633217562;0.005045437867121884;0.00024698257828467414;0.016742637932513967;0.018561664701649726;0.007942257234975892;0.0015049247652688454;0.010705466287641954;0.01866715210964341;0.0844286922715985;0.001894802620781065;0.08425406970611127;0.008097887288145233;0.001243975756032677;0.0016719768112401236;0.17721168179728183;0.003399359582087452;0.017493238371913838;0.3458778175800812;0.757158890668204;0.7418311927104928;0.0012893315217404498;0.34273796409654306;0.8882653454136975;0.001046401454688125;0.008991482046128967;0.014055328616900616;0.0;0.5390190762274601;0.6526965321309859;0.7408662124721456;0.7349833254088819;0.3265570676061474;0.7422576896651275;0.5685343803827879;0.6637066684861335;0.646589376337145;0.6995894105171199;0.5108928428093442;0.42315463796643205;0.749634323684647;0.4578320505181823;0.6326233945190494;0.7349494484300688;0.06851784267963411;1.0;0.695554750353393;0.1220039336739887;0.05808439435017831;0.012048653152382308;0.006664167351186311;0.4978334572133615;0.3017927484192105;0.2233773566613727;0.09639562587526139;0.37504723106645993;0.46465166239319805;0.060734474310828006;0.0;0.0011320798655099478;0.14562568690741462;0.012708468880869442;0.03575664781954946;0.7921678470033272;0.6996312131774455;0.45285050026023854;0.6259674946862401;0.3881308412691209;0.5258986662941513;0.20721017005947948;0.21623179051877392;0.19039291929325045;0.33800714976352986;0.42562069421661014;0.1175069898133524;0.25037719155790894;0.2159622292893228;0.25476168563539003;0.2914529115117207;0.2578317866746932;0.20549186316645052;0.06057879318889444;0.03696864789717652;0.022342010111481438;0.06496645036779747;0.005166159014580962;0.0004585529767073863;0.01480133523519862;0.02126423521276302;0.0009476354351159962;0.17990258892430314;0.18172866960848932;0.001075486216953953;0.8019878855206425;0.02233167530003246;0.026942304989754636;0.04964143039082514;0.5407343761269273;0.02393124774113383;0.23522762200701214;0.0011000118263698093;0.2354930309904295;0.0002204827504653321;0.0015001631313952286;0.10592093767316302;0.01755509029164578;0.3148799194917428;0.3740482171259747;0.42060031595596115;0.15190834413796306;0.01553292823420357;0.02320354571430281;0.253875485074028;0.002896916603908894;0.04169359370153057;0.3812730948568784;0.03492309832371189;0.0006926094527791521;0.002418139244556349;0.0015800664954938306;0.0019678077057153813;0.03800273919400867;0.0010303710145289217;0.7457370612331379;0.037428071381200495;0.014005665384373837;0.0004854118916416188;0.3696123296015264;0.0004956095130178634;0.024060445172488152;0.032100721414663094;0.1165413634854884;0.10692387055960058;0.017813612424404632;0.0037633661009589797;0.2408821659004249;0.21541906919696785;0.016692042998265037;0.025615125239459465;0.02401331622630908;0.0029780241161146102;0.0009644348730029952;0.5415046593872385;0.06707159888721524;0.27809577687438053;0.01734760269518796;0.136036665771984;0.021269361605620554;0.001943998502514387;0.004912998690032613;0.2708993460802317;0.0005875402025438302;0.0;0.00013106129731762757;0.1250850695732759;0.319779273346678;0.8783453631571274;0.6543218722207431;0.15133236125657662;0.0024385756524058456;0.012994035000667899;0.1811504162983978;0.027456792794372083;0.3864833195175449;0.17777102159838382;0.11887949896864433;0.00010351073001902425;0.0012924084838405547;0.005291378961312753;0.06681230714665805;0.08305751445964574;0.5574368649792566;0.07349527661874565;0.06321352770207009;0.00022825995276562955;0.22285786674194757;0.027209493932355062;0.028770073016423776;0.6570544417878301;0.8373078980696314;0.9029720167321993;0.3868127879456758;0.165072288025794;0.004672159579943302;0.009312866171285471;0.0011415774187836835;0.0005958286826706595;0.01377985221095415;0.0009274482980968491;0.0011964535302495642;0.0;0.00041892126683741696;0.02182328193683553;0.026592301853493382;0.11630995813745253;0.0693426414114602;0.0;0.04147399644879869;0.0012574179572071833;0.0038771466722973273;0.1389346422217479;0.010437805844427819;0.014455333545926652;0.0005467698750744475;0.0013972151247667866;0.010094176632778382;0.00043267353049754125;0.017498798184490575;0.028548661305501613;0.030974948295460818;0.0028802889600793168;0.03419921862212385;0.03142365018125203;0.9243797231621946;0.01205586105750677;0.01589820246839393;0.014223064648889092;0.07228789078596343;0.24383663275343315;0.1988422764827167;0.1342027813726123;0.00014919330085378347;0.7684351722128888;0.7849731648905588;0.19986617259156744;0.18242398225791773
+Carbofuran phenol;0.6241297670078262;0.6157222720574252;0.6396858880549202;0.6257050718922011;0.6383142709370915;0.685165414332279;0.3459162248831425;0.6313648689537628;0.628614198866282;0.6770347814578511;0.6786873981180179;0.657400857445539;0.3862374611581477;0.6252741638788232;0.6201942778827895;0.5942849185088366;0.6426615265933368;0.6314705892456243;0.6124883829723514;0.6268764662254952;0.6370070119888299;0.6237077025302581;0.6548766688782123;0.6408355607638695;0.7049474897049316;0.06402052005714175;0.35940439691888565;0.7076006974052584;0.7342236962490557;0.4165560157398441;0.414170619676215;0.1919826708975706;0.291815061342392;0.49017382606996823;0.4167981941946078;0.6708622266826961;0.4728679206895818;0.6003112160514109;0.09870046427530484;0.41463499013553123;0.17875637265637018;0.4363291299884846;0.058447933404658335;0.0007193287155671491;0.045443027521079676;0.02239029491169204;0.03287195521710385;0.028607871249291702;0.028483356614053976;0.323089358444982;0.27065917545672885;0.11886367331001244;0.07124439526073857;0.07857773316826826;0.27511712273439365;0.43664755127654803;0.27125555165360066;0.295548791542326;0.22936733877893156;0.07981625839132173;0.18174659074512545;0.3477622889825526;0.41020804597699634;0.3713086614085336;0.2877115999273095;0.2884242640608317;0.29146830437381316;0.2197538774111694;0.21203920531086376;0.2152626556997084;0.18964336112194455;0.14644617917534947;0.22429091899312814;0.24343152972521748;0.11535324990371151;0.13357543172272515;0.6824232692829468;0.6862554888006003;0.044552254187704726;0.05463969565405943;0.15637518027622582;0.17104062741387388;0.19085054861814277;0.19419176508310593;0.070205470998555;0.033519249669126706;0.04013267490610273;0.06044690713550995;0.07782795181160544;0.01030544824300218;0.013922373060050055;0.0102095590732166;0.13490676199880816;0.03839804689469239;0.047532118418665045;0.21694280928736254;0.2131842571286818;0.07601535303954597;0.10024792842726453;0.09928251902768542;0.13879309970086567;0.09152160714176709;0.0956783357083132;0.10159057747950881;0.07525425068657252;0.4668492127327267;0.39153085757593764;0.4137900592132132;0.413576814919324;0.4908911643404001;0.4678216431060293;0.43789006327060537;0.4916815406181837;0.48951406479956827;0.4904953221010071;0.08548999557926212;0.058723779903267194;0.10597310638837971;0.3647841500471356;0.19573035423034735;0.034769109966097195;0.07782587526909406;0.34655958953697447;0.05178786390407354;0.03307368653505623;0.028975877867598768;0.02606421418967325;0.051960801676517135;0.05379181741474103;0.05901624857590741;0.1542287459959544;0.24130008764348485;0.43882463311748493;0.5300188378050862;0.6585384894288052;0.20345134263332693;0.6160047260903222;0.20855060265855205;0.8770086436286952;0.8530045042277199;0.4749828889582674;0.8000200017759425;0.41759004034863156;0.2631896679078726;0.6884590840655647;0.16206165300287403;0.33980905568311454;0.16471214136944506;0.252875237451039;0.6205554320426818;0.3616614105895363;0.4273950340015264;0.23086597860813815;0.1400599554966243;0.6631502824806195;0.7976834118544088;0.731507833582482;0.6103437119211725;0.6199129033233137;0.07268607116469047;0.5926328081781762;0.15407288434649732;0.033630506654043046;0.042134620202407186;0.12000290754077834;0.03545804633987325;0.10730614212928578;0.10631488440302102;0.1214335775112989;0.09114737820426376;0.116664202279603;0.2094354218552821;0.006361041484044833;0.06806674485886612;0.06441234579685359;0.5824716206130367;0.011377445517646976;0.04216381674851742;0.32675737163522184;0.5363162772319877;0.5171898629390315;0.012636384696906741;0.40463321471145414;0.7209532371680956;0.01405459574808809;0.02980081757436805;0.11466259468203514;0.0;0.3676178359530471;0.46066759442701416;0.5402918016971009;0.5202321588002294;0.3742134811948487;0.5209656066895041;0.5261333643721889;0.4584385332829899;0.44595927807109587;0.8062488993363917;0.7478045017517762;0.7274107314781493;0.8071211911819614;0.7444211443900906;0.7908392063737385;0.7555780151418953;0.07645771189890738;0.695554750353393;1.0;0.134013865239113;0.07148734349284694;0.12716083432630015;0.04866569385911282;0.4693928814136055;0.7014203499462004;0.3070491256044143;0.10262266828350176;0.2968411880801249;0.36664482849292596;0.18015199364165604;0.010856392335481977;0.09974308021609554;0.5183595374133316;0.1108309545799423;0.036194281853756144;0.552408717596356;0.4964054377114055;0.39124994705110366;0.434162600516018;0.36118951845559233;0.3792041581425653;0.19483975871949016;0.18955329769632145;0.18788390191205168;0.30545133522575185;0.302860144237891;0.12616245365920095;0.25124192079213925;0.26071484013700613;0.3482994512694925;0.3312560270237617;0.23456172066316924;0.24780295428170518;0.4627935199943753;0.1549417358493067;0.1740777221495597;0.11028753789674654;0.11057906040854858;0.17724876835098713;0.03770636097802241;0.15056117236552724;0.0381364509483572;0.17794071263085015;0.17913601031162543;0.07171857291189417;0.5563329924484702;0.16267190858074573;0.13767345164115105;0.18962751208744094;0.3709648293465197;0.10140321460303944;0.6159749504008902;0.07324775268232711;0.31842898950112736;0.033733344167257824;0.18695752934287652;0.09805517675643476;0.29898303575679197;0.3057223721349007;0.37880234923695644;0.36870090098308117;0.13439808363484;0.08203253936272448;0.07033376848583581;0.2473835875978747;0.9577007324870609;0.06506234611719376;0.39261683412856074;0.09481400982585379;0.305399860907104;0.406121017154548;0.11694125472833786;0.03546228597353163;0.22682087093783884;0.07246701739348001;0.8558760424351093;0.2084388767452835;0.12345186281638013;0.007359247742847997;0.2639891206159747;0.001506742695538543;0.09030730998859243;0.07446872400198062;0.11040451406447337;0.1376215959266853;0.09471782363009895;0.17169671625597588;0.1729032525169001;0.21861083087653257;0.21270534149371545;0.15237575696152914;0.2129264353973815;0.18854696060721476;0.18395486208222808;0.6023662383150098;0.05408589752993328;0.19763275955004986;0.04698513099918012;0.13237154953158953;0.03324592270253482;0.18227852891309848;0.04445135637369563;0.2195355278604215;0.12120101722881985;0.0;0.001560175691711025;0.3266573941413428;0.5594347825867019;0.5804490583000358;0.4120614142847988;0.1881130163558003;0.02186301083292487;0.07071858104065054;0.24222470631738072;0.123073412928022;0.2757650605769767;0.18724463090279406;0.31052580153588577;0.08266437299109355;0.13696342746545367;0.08251382799606705;0.5217348110221668;0.12462974051404523;0.6533098206428279;0.16835765789666682;0.165714804177939;0.10985894628020103;0.22193260720226016;0.08838472887597185;0.15767069993512214;0.4545061860267224;0.5893651326178969;0.7671170708704756;0.31743321194270807;0.42940773685899003;0.004016953652095698;0.004705481102481648;0.06855555909709561;0.06338348493847012;0.1319697568219404;0.04576324207830547;0.07888191152279199;0.007733495935234787;0.011278331036485867;0.17202934431967626;0.07767036518502672;0.21695769909675136;0.08557147195590996;0.0035958531312589004;0.06434488340419549;0.41229450733737877;0.028027243404357315;0.17500981090696285;0.1616976216617783;0.20008822334588508;0.085070414528175;0.06923433096756183;0.11447573696681214;0.020215569314207003;0.010678253083587051;0.04226618746682063;0.09803947273069943;0.054908064742453876;0.06322486831477069;0.14172156154974563;0.628987750827794;0.01809178141798774;0.03238016356260269;0.15140961350496376;0.05371750744511689;0.2894099168072831;0.2433144294856176;0.5830239679592756;0.11216172528137418;0.6339013331253193;0.6294813920123672;0.4899211415060335;0.42587475586474854
+Diazinone;0.11839535748929338;0.1302965503058924;0.1300990403286101;0.23179721791913593;0.22690509508422926;0.20624547529288953;0.2709302218536722;0.12447606658451695;0.12413425370216653;0.1589399049271545;0.09088086242395298;0.11995880701214996;0.13126058664819457;0.13821808126026391;0.1314780388240761;0.1381139613671373;0.12670057588445527;0.12890694421425358;0.1300838175882087;0.13233921820853398;0.18436213261125847;0.19831422724115624;0.24772429429695342;0.166532611911222;0.15947194440844015;0.04681963264827769;0.296429647101665;0.5745200121357198;0.11548102907456416;0.08372729014765119;0.2445902193826473;0.05418482009752623;0.24075712386761022;0.09803122140948485;0.10378283284914;0.14078585318587092;0.18420287107573619;0.05840262248457848;0.054773959650079515;0.08471648424528531;0.03406907108148034;0.09867441063015012;0.08800063955937143;0.0003457492511841563;0.1283193122397269;0.04002792907207688;0.04679466212453476;0.04373496510650971;0.04290436586294853;0.06584168013900826;0.051366480304026935;0.08058701876047045;0.14906901501306344;0.07822310373490939;0.07351275335860927;0.10055860161706474;0.05429904550074771;0.0636667257550845;0.053994014333378054;0.032324105054552965;0.040915425989748254;0.07146175447291458;0.08642223185651779;0.07836516551754673;0.05650389175293762;0.06125331824330898;0.06390259921424969;0.05389494859520825;0.05669990720723567;0.053583167166508884;0.05034746078915782;0.039183255892262375;0.057057427700385736;0.09568322679871816;0.14258967005851592;0.020936475338205238;0.06959248718468339;0.07384938208285376;0.08082710713062156;0.1853036688979388;0.08287586284737082;0.07800895888942182;0.09273384409556105;0.08350762465568377;0.13985481313738032;0.1293688447906224;0.09610663657417738;0.09129958073147626;0.072720082068259;0.04198208396268939;0.08198737803094802;0.04668543908614693;0.04490607186518107;0.07373365080912027;0.07731005054925207;0.07305823649244225;0.1042539986010159;0.06617257342884951;0.08191851661368213;0.0646474546691756;0.11799894863558968;0.1418719416534229;0.1805489523885233;0.054698419874069024;0.14272822174223035;0.09721371701825984;0.07764031112006015;0.08416946140617942;0.07437506232569666;0.09541433010314562;0.08617399298451098;0.08044081141651271;0.09788407024942464;0.08875243672969425;0.09647012983806245;0.02389366043376265;0.024841623137323656;0.020871453130936548;0.08688455063496557;0.03891101073147987;0.03806363484100161;0.02238466512999682;0.07425915833092553;0.02726727046381159;0.021696972165015482;0.010617030723593027;0.009504355139708164;0.010189058451812344;0.027090357449793812;0.01032473585818384;0.04221614054741471;0.05610301954014739;0.03405084172104795;0.32505059714977586;0.11818895390035014;0.030887834976901535;0.09312224934227735;0.0870058575169065;0.20074634062844338;0.1607662006612601;0.27714839544391356;0.19787769472493721;0.05554043264735979;0.044448826978428536;0.10080140134004856;0.041740447678112136;0.045248998222693966;0.04186557844214265;0.0981579960984851;0.1252163561264206;0.17082791716687468;0.07439399268257574;0.1315883504987297;0.027905874180362455;0.11429141390443849;0.14873212777280823;0.11160866979607466;0.08158189693948248;0.08873998261884236;0.08356972987094423;0.10362304841502411;0.06613390885363762;0.02817410381808919;0.049092412483115716;0.1437294212657395;0.13496128636232788;0.07708341443673762;0.03528955002236696;0.04592670223629702;0.1402713231070479;0.1284011418115682;0.059720388030525644;0.18549577637690984;0.06561684134934462;0.07420654936717612;0.06295680187573272;0.027149313280082504;0.0533352079728544;0.27234579163825984;0.1725058075139156;0.16193463646986384;0.016393028149919192;0.07082287758567211;0.1509906719601078;0.15658895671194778;0.04786392800180704;0.05414455769030902;0.0004902704747707032;0.10679233139208505;0.17750787270685361;0.22700297611010384;0.16181649037812135;0.07679786059436414;0.1825379208581585;0.15669687966957097;0.0783323380488984;0.07684708990203205;0.1583492231280347;0.15976288535507602;0.1203231593803253;0.1841627619371246;0.12042632039376425;0.16611578281541667;0.11038752622050901;0.08415768799287562;0.1220039336739887;0.134013865239113;1.0;0.08896736895229455;0.16416224786285522;0.081162810886942;0.149112071511349;0.11267620643109844;0.09135436173923694;0.03750945078318954;0.13947937017496195;0.18057618179874377;0.12210700974047914;0.039811910879877295;0.11079835409599112;0.1374526507348147;0.07864693190073697;0.019566323513671158;0.2275686212142942;0.20144912176897237;0.09409046326506008;0.10535937018257442;0.0757299416090578;0.08435195692449259;0.03864700171297918;0.041110148779119185;0.038287199252064634;0.057040444528787086;0.06502109207422083;0.025498378620000112;0.04774639431694362;0.05363172303250967;0.06824009093488916;0.0617364774683726;0.04681966950808669;0.3227291020400152;0.10769796159271647;0.1516020313979913;0.20131305888298684;0.11492973297210336;0.023992700788332207;0.007437364182808068;0.035154589433703635;0.09898470502367182;0.12714546513401956;0.08493544148883578;0.07720686259231825;0.04963993527345654;0.17059321632664678;0.06001170638349878;0.04157321896341445;0.14336608951949595;0.26437278629261324;0.1248466087473608;0.06121370688963692;0.043971431644605215;0.4795917892800099;0.09447540537963559;0.01115167141410538;0.10294867247599193;0.042512425951095126;0.21032024645991024;0.3345292879366278;0.1599698085722595;0.08539503217514424;0.07476177467305778;0.12259108322407233;0.25205832123591554;0.06634491086360847;0.03307159462009314;0.1945431836322553;0.004351793059997906;0.028879150629628356;0.04085524024256528;0.12891320690204364;0.018333950112159363;0.10977760981660965;0.04332829374862856;0.1937758000845561;0.022978671468285514;0.029308303218782677;0.26097368356505474;0.06708710776102747;0.05309147258784215;0.040091785807239474;0.02939090830688942;0.026611036556125546;0.045056576513137214;0.06450770250750493;0.6693076431552945;0.02530634378364212;0.07479246547818359;0.16311248802176823;0.5606921153972715;0.053385786420870086;0.03291604517442691;0.026720829399565906;0.11481749393800993;0.03823186659729056;0.072422876664539;0.07050258979690513;0.03180865333793523;0.10378623715214705;0.023188570538597436;0.012687489549461216;0.06532660095914278;0.001070974573751086;0.010335154537345797;0.015954077841626006;0.07572597394754137;0.157226725028157;0.13953181486098226;0.10630815371539996;0.05781165223219103;0.10849297573859103;0.03690349166533805;0.11944872894295733;0.053278916177515456;0.0472258887241352;0.6313831238303165;0.1230229508638059;0.0988059660112239;0.23698147531170421;0.07596498743403572;0.07661051385571852;0.07249799520609577;0.18074221080644057;0.13680343245535603;0.12611335856570718;0.07057557431828192;0.13232953933591468;0.09132371519942646;0.03674341437996532;0.09092699372157743;0.211221214867421;0.18404595143469227;0.1940688779610002;0.1357614092235886;0.020141558476480664;0.020120284375256453;0.40121758707557215;0.4238814879834869;0.050286344623497486;0.07023647535924633;0.08833798345687768;0.04701967372865992;0.006097365097808769;0.05809747531314077;0.12016942538330413;0.08980075440954761;0.09314948750775279;0.010243020965939842;0.09942531140822489;0.0969789142902322;0.09091261617807948;0.0758615702425736;0.08970760959199202;0.09630766936769754;0.0373101476570205;0.03370644053714071;0.2410089928261752;0.0317674602910208;0.062005214245746475;0.35593612120925106;0.18120325357353043;0.19751508744545684;0.12533682209612404;0.17334794902906212;0.14422628845750707;0.002754376248399721;0.005715752876065831;0.08670771125043292;0.03741363328637531;0.20424749824917543;0.12075342944721512;0.06365170140638018;0.11924095688412796;0.18103914066799606;0.1602472495235264;0.274835032430631;0.26019712746688456
+Dimethachlor;0.017696541395117647;0.00047842384565089307;0.007533669696494352;0.05217124298086897;0.04760364244109547;0.007871204655063137;0.0016214639477629752;0.0051616610348828775;0.0052597890661901184;0.008262952758970548;0.009136701686002587;0.002215826850927253;0.01598998536435149;0.001083647836275329;0.006666785255477591;0.005256964676613824;0.005449004862316133;0.0046132589181982955;0.004852846898102893;0.009796732369676472;0.0;0.000978347249856319;0.004212792823857727;0.00042504814724933477;0.029558471235098083;0.018568567480999023;0.05903057621349413;0.025323223201674936;0.0298545405115226;0.0662646179215756;0.0622494934906985;0.032371148842853734;0.01715775324392516;0.040244437326437496;0.016642094054140473;0.010170281366364992;0.07305663366793601;0.020749884260611924;0.008983658078587331;0.017273672214579632;0.0077149326830651095;0.0025986870229514794;0.02897017168082862;0.0005395503176780271;0.0020842148173428926;0.004218756585159466;0.004447494487274361;0.008151569462076647;0.005617329784420385;0.002730895644121029;0.0035731842081780916;0.011801684989342793;0.030143340433163475;0.03646806640727537;0.017042252986517775;0.0018260226829660657;0.005617075376155713;0.004504599800805332;0.004596810504252307;0.05197798214559787;0.004820815852072956;0.004219599596368203;0.004000479013737535;0.0034994800157823534;0.011842108769741002;0.004557645512828162;0.004506912421933961;0.004513241134113467;0.0075077939470746995;0.0047413455157858525;0.003306215104129547;0.0025544933098835105;0.0729893673896078;0.07864984391076577;0.014042405211248188;0.012579339494322323;0.015862704142257412;0.02139582827469749;0.0005579207962319394;0.017462783572798957;0.013153124917956154;0.01352695135391988;0.02135163308768686;0.019939430877733137;0.060169332416346574;0.050575565538868744;0.020369929754320015;0.018384813085797473;0.03393484091683936;0.015257247092721127;0.07853892082471;0.05425863601876074;0.003981733982433507;0.003253249066699044;0.003482998447898057;0.04150611092166805;0.02848661855395932;0.029760945353254624;0.01426605999507869;0.029784731463329838;0.07972546922235342;0.05658410316320859;0.07925174696441646;0.08217814269976398;0.08460364840579696;0.003640543591414448;0.002977292132937231;0.0038818727551555615;0.003936759437112241;0.021567693702479025;0.011917980712922278;0.003974177928301294;0.01077177706355582;0.004510900613349122;0.004254073718890455;0.011917822670816744;0.01849646867140743;0.06463484149539613;0.005042822522411799;0.03351672313263949;0.03051136148541039;0.008373048624818748;0.013330142204634422;0.021139051921528627;0.017922884951346682;0.00743873130253354;0.007114526257251401;0.04902452765823308;0.11568941294917177;0.05801673054222996;0.025864395316936562;0.07544581780658434;0.08391289080475074;0.042998539138875226;0.02478147155895898;0.4395550181817332;0.1091665728395183;0.13834801395936658;0.1331721220301605;0.08047182312078087;0.03267491620034794;0.08035632310796299;0.12881771572558218;0.05657910330959084;0.22630286680256045;0.12454821535346475;0.09316103378501024;0.004552134617485723;0.007467608570395569;0.01886247263613025;0.0645167031273076;0.03474960280906263;0.10551247364391492;0.07217178419495578;0.15378459687989005;0.08266603177179244;0.01910254247688492;0.0160074315028649;0.01721108092701483;0.036353093505008316;0.025970744164245385;0.05709604344051769;0.011910895842712464;0.012213365318166514;0.016238084736096954;0.01815737511663905;0.024175006004510394;0.004430152634652441;0.005082557149363402;0.07906304541309328;0.31783796197967223;0.010955998915865182;0.015564637346931993;0.013733784521563855;0.0362368003585952;0.03243098270206609;0.0005534951989222835;0.029554419295113415;0.07814198325888742;0.0320146733491452;0.036617943490354486;0.0012526858993731668;0.08800938401134825;0.01728449818324758;0.02600183235554374;0.05319963322808943;0.10868372054992653;0.0;0.014605087211685295;0.02278497470440553;0.04292015385092596;0.007501824822370176;0.04144332547172666;0.033380864436910226;0.12631409503975807;0.07939962199375473;0.08358982233653432;0.019478620865320644;0.021938686736711868;0.024114066381264412;0.01966873192867982;0.016568397293611342;0.021907299569815474;0.014560574798795894;0.3251438347630443;0.05808439435017831;0.07148734349284694;0.08896736895229455;0.9999999999999998;0.1217324786507622;0.049980771331876304;0.010485633550887776;0.07969543109907687;0.02249082192411104;0.35547873817208026;0.2572362456303552;0.01494186695390802;0.2758465903995141;0.010527048059532597;0.0054629443843670035;0.07661352375766138;0.018517088820512468;0.0181052403649478;0.021533888790950584;0.00317539476406436;0.0038085998088056095;0.002572721119794579;0.004919034822398953;0.003793106867800315;0.006985599831879459;0.004702560207705394;0.006755942095248821;0.004486373403451208;0.00381272781198609;0.01600909115240812;0.006940303750020723;0.025375728616990254;0.031809501849477145;0.025114770713839336;0.006322036726283591;0.15556075475852563;0.3910219633247433;0.11357247031780791;0.029992678382089633;0.0739017747577379;0.01708782895320789;0.015257275014380317;0.0010398417265176727;0.04090370150483624;0.025269128861795873;0.0040954731573379895;0.0041593597282285726;0.01740796596330337;0.016692619696489823;0.05169374613251382;0.1172384213176787;0.07884040721035424;0.06440163039898376;0.017534743184358853;0.005374559353947872;0.5922770768045892;0.010795164563831217;0.006775385701162918;0.16755135384692615;0.014158089091065085;0.027326211798773693;0.022287970777757765;0.017643325828894347;0.03569345800015094;0.0;0.008895008282805502;0.00048713020844800284;0.11277797309501522;0.19125595681746452;0.005901920003464169;0.09005412263213412;0.0;0.025500700654131972;0.02250907320587942;0.13986413902871722;0.009876649959242293;0.10455296463165216;0.5873938101911045;0.03538754170814094;0.01200426546248636;0.19879651513528573;0.09412350829010196;0.001402655406421792;0.003554888576684396;0.03231838355186619;0.10527974853060637;0.0026434282612440405;0.003210630878734731;0.041702230484822154;0.09967691914127497;0.0009848770242260113;0.03237593622009686;0.19078016596102731;0.04245828161200774;0.23777918778755228;0.04721764384535768;0.03616169278268473;0.03068226565556661;0.17065048472868213;0.05907667425238815;0.12663979330551198;0.003439935308365853;0.021085547165121704;0.07823722221714345;0.0;0.05592815522133308;0.04201206014197573;0.0011230747500943017;0.01126676867258454;0.16627780142718918;0.03613275061808157;0.02452617744001144;0.04037602266947053;0.017087454087009252;0.02812098084221977;0.00841816989351466;0.01507581525390369;0.050696026277407547;0.19195914385188642;0.09355385132051154;0.03249012960167875;0.023594040507153885;0.006150650864564996;0.0968775576265538;0.023025892204357683;0.04737550202554181;0.037538451207659064;0.11484463589288675;0.1161625623319233;0.054984892844493344;0.041637483498924564;0.06851396906896257;0.06325267816629827;0.23362049331595638;0.14191670654911687;0.04979459225028284;0.01443004710254627;0.01635533883171434;0.0009098593191247249;0.001008388242736503;0.0007620849830824979;0.00033511815101365446;0.0012424163208510043;0.0009417018060267589;0.003263289230002041;0.004061862101013534;0.0031833213713542818;0.05516059542015732;0.05518116158217723;0.051198419091697665;0.018666415941058567;0.01672496461455804;0.013785107900589977;0.00868645399460312;0.04936038934470538;0.03230815188056476;0.043164482852837194;0.013116878008065656;0.005852314325854098;0.0026066117062337694;0.006694052444512421;0.0009232080752287186;0.008107965808281182;0.024092213870726884;0.028513488259519278;0.03543217621840865;0.007139854881639208;0.018902287922160716;0.016647653783762966;0.0006186906570048048;0.0063497689211999145;0.037696916999939926;0.025747863776347486;0.18114883060015977;0.06567891288715408;0.03113134500040436;0.11879214569629513;0.05572332504895763;0.048304706350032804;0.15008725734938613;0.14368704499704515
+Alachlor;0.048354404934914365;0.01958301156647194;0.6044235767174417;0.013257465145012352;0.013052237141417481;0.015128168521891356;0.006795345264509201;0.10272688012993773;0.10158704824185678;0.024198602478545054;0.09335417474581334;0.06842334053573784;0.030348182098345364;0.049585777645535525;0.02355818384872222;0.028094543622130198;0.019681004713177713;0.020954805242284373;0.022849600041873863;0.025625934234899905;0.03013594121655863;0.03995612193769148;0.04754024774178936;0.023963358400507867;0.04423740182856986;0.010289808886797789;0.05810372035431846;0.04993903688568529;0.07658860371037764;0.1432306156054531;0.05708844303797456;0.030944731229316628;0.21964880594646066;0.05284670428211887;0.054516248774524816;0.030072754521235874;0.2279423705544054;0.01925296275710733;0.012497956666418116;0.044141732034249856;0.044605623050837324;0.11527941564106721;0.04530512815614069;0.002568906193451845;0.03972129487226236;0.025102012684214567;0.027726168229161584;0.031110439385499872;0.027829771406041617;0.023974761737570096;0.019141068067415487;0.021802555351136847;0.10581727101870034;0.05248380454729904;0.05275521927612308;0.09372743502594091;0.035517861262881256;0.019170574861746635;0.02943907620439814;0.04957253777717457;0.03950824458641505;0.03283431930550284;0.022613511646429447;0.02202702248277563;0.04369854072973539;0.01968431928775858;0.01917366584646463;0.02537116657074702;0.02458500361925774;0.02373705507001989;0.01427496011969418;0.021194157988840993;0.04081247763513203;0.0415197183259102;0.08467779787104358;0.08306656313529273;0.020338754825492657;0.020206433305302765;0.015170720408032213;0.05274166027692108;0.023441220367059083;0.018399316308174683;0.028606884668768907;0.021813911842423796;0.03456448681477067;0.023152589707900392;0.031882951863416845;0.03395299382739162;0.04294106357332904;0.2786781790980546;0.025722950380360696;0.013542580103313174;0.0488598506316624;0.015393327004363876;0.017670032752034003;0.026350162773584325;0.02743871956150752;0.04221042272406767;0.029389689578987587;0.030243184437960688;0.06577145652058353;0.08347400147083887;0.08768674492927087;0.1319091559537786;0.11754456022171736;0.048920624673711305;0.04511156417863251;0.042525339277903716;0.038712825836635115;0.02530204333712518;0.02699556582374784;0.03430871781640495;0.0239903129119177;0.03857033578331429;0.04350047609524633;0.07390893269940381;0.0782662875405604;0.05487745211195225;0.22685717703665056;0.08050870285382704;0.14433244658741892;0.02591079048226945;0.07206475231505288;0.0248868635877688;0.018566802773987513;0.007738299119711522;0.008569678735376033;0.0671822538213292;0.042224179682539;0.052650828158778896;0.026763622693216686;0.2267505523451456;0.14934227989226478;0.07409948831570692;0.21743270535780038;0.1906325812809012;0.2570989400819601;0.20313541202708585;0.14538252339918248;0.16478041082215622;0.07604279551582231;0.11709764595886694;0.10066663780245008;0.06573210489450418;0.2240583198626585;0.16553001096458672;0.1555482529149794;0.21996377716070706;0.021081272117866156;0.07510481311120665;0.21632363335643634;0.10084505828599213;0.042156838656067494;0.028906483445617498;0.2219651960390886;0.1307968773210163;0.062087753740554016;0.047468967022809776;0.05664566969661717;0.053115960594487595;0.07931492846362992;0.07546771310125885;0.01995884199627001;0.1168724627278323;0.10030864637597574;0.0932568973903126;0.12252895917345999;0.09888759327177613;0.12383757912647803;0.0787474006909947;0.10118182687235265;0.06788432841873326;0.012280483836295958;0.08829967775357811;0.0502198502345427;0.011505578293571012;0.011365888762235156;0.012911056597684014;0.046544385700741264;0.052549731982976626;0.053066149453159656;0.017183278799480433;0.17665806268665327;0.048437922638097146;0.0030157094145613337;0.10810783861006147;0.026711924293183482;0.0;0.049551523069692106;0.07253173591625302;0.10738618534941197;0.07208485465763648;0.13343113916845903;0.035102106632152595;0.4517818617329198;0.03768135182304873;0.03803034930503138;0.04220142342000501;0.04161515591801849;0.03677357538070729;0.04172849492587577;0.039915683233412116;0.040435127776789904;0.047547743982184545;0.03462515421651284;0.012048653152382308;0.12716083432630015;0.16416224786285522;0.1217324786507622;0.9999999999999993;0.2065421909250133;0.06567049689866711;0.1856779404227551;0.07526779691164708;0.2918915430978867;0.21965987156231337;0.154999304911748;0.3270141802206846;0.6904054128047228;0.025469997766041922;0.10672970954579862;0.12390490394203992;0.010659698714690137;0.4273557131490831;0.08503466374453761;0.14413322712465673;0.08310453676864792;0.03607696662621748;0.014472904872237671;0.03441166117992873;0.03379381074084328;0.04029224577743167;0.037637138775803367;0.020305106511357925;0.03852833099861004;0.041932817029180974;0.1859983196124655;0.1499921155366472;0.13409243724979833;0.03574892932114615;0.3412615975612453;0.0336315522671048;0.025109047325291848;0.07441209491242376;0.15069216067737454;0.10697147933435705;0.07322606476589742;0.07464613440964495;0.06403371406953665;0.046638700668639836;0.009055853790923662;0.009284764227459436;0.052316023268261874;0.06774768397655073;0.07166699371295852;0.03568482991168065;0.05008979446595191;0.019717247025299353;0.002561385792806978;0.024114257674150305;0.09376321081974177;0.016456807125683245;0.0003790864399969967;0.20940267206429392;0.03630222685029504;0.016942978174415726;0.15930635822289435;0.03432293706564369;0.10217944880891495;0.021241363715663625;0.16104293679071208;0.015674622023939645;0.03260305083467381;0.08883841059918525;0.3049270269764256;0.026377619137693365;0.0052544146637783715;0.02155897667300452;0.02239390870670314;0.05585656158319648;0.06065122968723102;0.06151882424713506;0.09394494203531895;0.034043503617216746;0.04455856715847309;0.1585181824480322;0.008004012385047807;0.031087863937524173;0.012072800452570278;0.044602543132572475;0.2778827491075321;0.08292562597468657;0.04818549664451432;0.0855097486805483;0.22681210903463866;0.018766450899207428;0.036487346927705624;0.6946494277428459;0.6294397861554593;0.3033752643856659;0.21004033283665105;0.11132001879352621;0.024097027788690405;0.011737210018866373;0.011056528528888275;0.021100856549209176;0.10567921300827245;0.12577711673572495;0.23887729462632365;0.020132684339344432;0.04025845699071406;0.231352489724381;0.005722947871696638;0.007321885545665666;0.3168039862228428;0.09782972500127829;0.05963997302494585;0.022347574758540874;0.021190399356522553;0.41982668071147167;0.05868484581342838;0.24563290214460418;0.127444112228787;0.05007655492097519;0.2090944911162288;0.14700015727456198;0.010334687285049467;0.07747279925235391;0.046520209063204664;0.04598545084900982;0.03050589907535143;0.02869930039043097;0.039728847515142655;0.040157156310962644;0.23860584859497974;0.0567442246311839;0.05772221073301048;0.16077942209916488;0.08570553291238722;0.13552266514577632;0.027632024454193424;0.055498992281330914;0.04209485597844582;0.03727949658643097;0.031206122933294955;0.0332104868815348;0.02938854823719323;0.07739013624057822;0.04729982920870329;0.0421080573188548;0.4730495789691276;0.0041625628183897595;0.030574138795610308;0.09183330829280831;0.16088851887751973;0.16729601749579137;0.0010984605972987828;0.2637679534396995;0.009236076071923954;0.1250999505315354;0.16171022041675134;0.1409397346219531;0.13053541989075815;0.03616133700112484;0.02901185193395903;0.03259454838991482;0.00400857914676782;0.0554918446292942;0.12191041144608841;0.09893624724320249;0.2510448749228248;0.06179837539484929;0.08070220645406259;0.053475283383490044;0.04487865979892197;0.054245854658052185;0.05465251038516334;0.1074757442791858;0.1470370924806653;0.3810439315205357;0.15168219339836556;0.016948468255938577;0.2276054027526414;0.21470932941573423;0.23602616240374275;0.2071878076412335
+Chlorpyrifos;0.07030132679286168;0.03196956870884367;0.051462565551197784;0.02133836190771113;0.01854832103620809;0.03466303776829864;0.029803285572276714;0.01747758191255247;0.017968614190818643;0.03079491307144872;0.051286358305512904;0.023924003766349466;0.014371385885949278;0.022145153924408464;0.026892084854792185;0.03697032153164567;0.009734079718675827;0.023038357325500577;0.032279598099471236;0.02754958554303022;0.021335517712421863;0.03154151504419255;0.029347635562039738;0.021114441924273045;0.076302431400913;0.005986935219117993;0.04167641262062075;0.01980914541551725;0.01603668409173782;0.09121122610366972;0.05196426612866435;0.019827729181957396;0.17967179988836893;0.023292739254370413;0.1418275181533874;0.014453718009530575;0.12313175101505627;0.00564522776517469;0.00047182597638488656;0.0757456325618444;0.042126346383209445;0.2614468805609755;0.061637553411556294;0.02720534364049382;0.07342673103151032;0.12377045266310543;0.13065421649692385;0.14315013665891232;0.10285398793751109;0.03993736180037605;0.025833688082593932;0.05553846902587728;0.0628974270903843;0.032484949123103006;0.06999167831238844;0.2670988364176832;0.07706843198877937;0.04609612891972711;0.08187664579483721;0.22951467124164654;0.042368652519301754;0.07331646066865921;0.0590646457641955;0.05560723848281435;0.08450719855461404;0.05069593647179441;0.04764720694851693;0.07519949613204786;0.08291824906762214;0.0748970540076955;0.06816740999415899;0.039241293932141146;0.05114147174087699;0.05350021558800396;0.023606464979847988;0.03363597667149505;0.01853445557585448;0.012267186133163509;0.013406846230220534;0.02256984446124259;0.060459416524286526;0.06062069879412445;0.02605780116501817;0.0188490678211465;0.00736784205345262;0.0057133723372963015;0.026029594959726485;0.0331728063746924;0.046083355389018546;0.3602834099562682;0.006992603471333513;0.04016865122351176;0.05398295973042652;0.04181704351255533;0.046622906426440035;0.04816207623444513;0.06957129912512126;0.026086263984769036;0.0510376848971037;0.040193611021440714;0.07285143090817119;0.03219351260783567;0.03042965713480863;0.04903503860865607;0.3732708306767594;0.08037036318653912;0.1163382961063624;0.10992789103078163;0.09668498946167026;0.05223523873279212;0.043673884732585794;0.04595930048026677;0.06344615706298468;0.09408977134177962;0.06500093549125892;0.05289072571600348;0.01676718953856903;0.09405589286976987;0.074453159222907;0.17563972810703868;0.3577732403100971;0.0099206453773648;0.09831971059757627;0.02468966316994073;0.006924360303580114;0.03463682094967016;0.0328395995221683;0.004007077713427135;0.04384995408615643;0.009977246387769331;0.05818726194640499;0.14576851328587098;0.005175746821706222;0.0574260773098199;0.00887836131059853;0.18530983340527027;0.032128834463939826;0.10207104388895571;0.10205470750592724;0.07899184049651146;0.07734165459739889;0.04025112380386308;0.07145931120165593;0.011603715590878277;0.042400646364255154;0.26121122366585664;0.16293808412828528;0.01319817418858804;0.0400022700116258;0.0735896802280857;0.02456430250736897;0.042986818626874104;0.007070603845961328;0.03458102572516224;0.050493418314962485;0.0356610853787786;0.01279953410674332;0.014101799428642708;0.017017772237915393;0.07914001426626135;0.03401665500346;0.1329228411439058;0.06848819698195625;0.08040355977368932;0.11445251554875856;0.14942462733084647;0.15115148165476616;0.06119632431062312;0.06811951317896715;0.15134530088108922;0.17038731723183284;0.08206512098577545;0.014421290093902042;0.006822949504970244;0.03555463323398428;0.008510420463631301;0.030542479830255324;0.054322272721571904;0.023380473119988057;0.02084009594057996;0.021696615356337247;0.0;0.016773632302284763;0.030035526482378505;0.02198778429575592;0.1355304270926103;0.06476256887882456;0.029386210689523417;0.016875938193920876;0.03617421937085621;0.07472636605478138;0.023152498437515795;0.07627003218987646;0.022049212550344886;0.02138529730054559;0.022821438069703166;0.023109606265270203;0.04630311316904619;0.06044875874068855;0.0402659670325622;0.054385699484651474;0.041641175634906914;0.055922072402610636;0.05903591412473282;0.055618553142545865;0.006664167351186311;0.04866569385911282;0.081162810886942;0.049980771331876304;0.2065421909250133;1.0;0.029484193253417165;0.052587262407103666;0.05901888858463764;0.014679550813694013;0.1044799003346539;0.075467221561426;0.15580093623928215;0.018159080070962157;0.21167682707789848;0.03759798221271863;0.02791435948532363;0.028767302580636155;0.03662321878579874;0.026557499923360317;0.22048416537509394;0.2820259704222459;0.08880165814304104;0.06196211452940542;0.05203861361023539;0.05116402109664932;0.049862260085197625;0.08030731900255325;0.05125487129299044;0.12989211128513575;0.09013946996520837;0.06587271895108551;0.07004062970539515;0.06475369177031513;0.08955412818678858;0.03234750367880961;0.03698366104163362;0.04282566420898698;0.05855172572050036;0.06736646997793469;0.03519017829032103;0.09577340067821126;0.1266329927852283;0.039319667500719975;0.03409112160014942;0.02217093953950393;0.023976667025984683;0.052780919080348085;0.03469481309944136;0.07736510331775341;0.3480019027026223;0.003933942191124331;0.036028678231388646;0.018275751230395352;0.004600224936805388;0.1663433893208744;0.04278237697561547;0.015295922227336289;0.004587367055844867;0.033496771232514495;0.005873155540416849;0.2707405059438775;0.22379627483712647;0.07276995187064897;0.01677605403813903;0.016229163359298925;0.023956765646146606;0.06823805354184224;0.023225292786355486;0.015498458921834154;0.05406678107592673;0.0021425404754716617;0.003220556446084287;0.011162717431501714;0.2253146627278602;0.07100069550470445;0.020175865549481215;0.1679674072512263;0.030164205274764124;0.04247267383907375;0.12213494942383896;0.021667508412500595;0.02095251687782281;0.017563628254527276;0.016634041400914786;0.1394344265642062;0.08744949805632543;0.059296684599405944;0.05477447000233814;0.056094255460327334;0.007790321159857894;0.05786882431358744;0.15197335160953745;0.10592955930672977;0.02623518259727042;0.13548046614766318;0.002975625830936857;0.025875771974528932;0.09617748367989874;0.004397009835264558;0.02119775531683177;0.036420166883281806;0.1861507127852376;0.005753418320776214;0.04196092314599669;0.019533766817890427;0.006434425038165216;0.0013949077492785725;0.002007772424738988;0.0058761615323683685;0.010179093501095643;0.14508669617450365;0.010643720654172281;0.008182622164271142;0.5201812254167165;0.04623364642287072;0.26874714761363205;0.025873713039824223;0.010924079092901353;0.102120938170638;0.04897550476878049;0.04399398786905172;0.07307197870742152;0.04681852480168811;0.02187761375651639;0.04458663702898829;0.016138944786504295;0.015823316695482027;0.0176242651632057;0.0904959772044609;0.050846362309549115;0.05596869495524407;0.005217957966725324;0.0070341835877564905;0.026637893847569323;0.03293846668687979;0.0914910393644538;0.01023945197697748;0.00446320186069286;0.0195555841645287;0.02866742091623278;0.027724583938337835;0.007008527751095779;0.032844951429066314;0.048034611715656185;0.009463123165170477;0.004691541643556054;0.0887435681413794;0.054435796298135185;0.04071409364102142;0.1742162649140131;0.02593224192443721;0.02251822507699736;0.007759689761396252;0.052532141948744435;0.08310981115108634;0.04377687182829175;0.10769826305261256;0.03385848774683355;0.024433590643645225;0.06176660378379354;0.017172280067377546;0.031070749505031078;0.026282453246470504;0.04750246660406574;0.12072749870119824;0.01933363714637384;0.04705189106668163;0.007752832064754568;0.00017006586268005102;0.001703448344009373;0.13559832144996126;0.009211760491409616;0.11045419484111214;0.0649783092669913;0.03005196914939309;0.0018887904315374232;0.07742414517246256;0.04305018039528161;0.1618959216378998;0.09453837918890001
+Fenoxaprop-ethyl;0.4897563071173949;0.4714056248100568;0.4852099345715655;0.47789580702158896;0.48286956929472186;0.4787138123354403;0.2937326565903872;0.4839178150886113;0.48251310837599865;0.48866182171738687;0.20184728998480667;0.5056286244050777;0.28255941310253757;0.47713368767796216;0.4734081423581184;0.4524060011915863;0.4909358021156649;0.483843220675196;0.46874316221563145;0.4792710697261447;0.4827627435768259;0.4792966378160232;0.4775048772522529;0.49042566950352173;0.48815687590304113;0.010409319611981351;0.24054760191982172;0.22770860142326343;0.1623669583803694;0.22287564013335634;0.18841338147802986;0.20073492177966334;0.30606459515637574;0.37004965893003955;0.5676904188383507;0.5091616603525116;0.32209702393705614;0.16019974013204286;0.25085380682458114;0.37956086956735446;0.15448190508786244;0.4359929899930881;0.1145777988818389;0.003945206645612978;0.018541041691940034;0.1778854151750718;0.1764633269182857;0.1735486670691091;0.1811232576356304;0.34317845450522316;0.2729646542361118;0.1244022868792027;0.053199808978191106;0.02371670370985162;0.2905000542957277;0.44863405469586093;0.24789202389647294;0.32228503234668426;0.23917901411880185;0.012566085222527557;0.19323851905646827;0.28801409452941906;0.36048592619620606;0.35333560155848187;0.2362867936652857;0.3070126417577946;0.3191236394964365;0.2545597477647404;0.25121573152265936;0.25239857638701496;0.24478171270053506;0.19357565473619218;0.04232722864498013;0.04280790143476858;0.04097476321264371;0.014917940172904785;0.048550355943117816;0.04394065535927617;0.04526877629128792;0.06613917768740897;0.051037564293508295;0.04777390803661614;0.050931572901541766;0.041077053722276526;0.061541801932363964;0.04324058834075831;0.0730982164055294;0.05577377660162991;0.054714720268933224;0.04225599708439425;0.048622195003224865;0.03450442912605753;0.027867078456812848;0.04703770156338198;0.05203977632908558;0.041614895611356166;0.04343391399428652;0.08094941718986202;0.07240541327256646;0.06320406566079843;0.07993003849202562;0.03586206216489604;0.03442409194781972;0.028186361944226707;0.04883000400796656;0.39325496697694173;0.32505567869272367;0.35419056638285507;0.35661826175059946;0.4328724866113006;0.4190602887209932;0.39719496266603727;0.4143529327017659;0.4183407945938868;0.41266317277725806;0.0704647982629921;0.07024038773019264;0.06272226224619006;0.31737186335536366;0.05662553000887516;0.050997973777094446;0.08410857237918198;0.31510689032866335;0.007365175251589271;0.007499861869232438;0.005764049053807138;0.006734017937286881;0.004677279575051984;0.02248043007217518;0.0047393229209265605;0.03271337900444179;0.18755825622937097;0.084549812903251;0.4445839387228924;0.5027916821543922;0.016808368318272354;0.40951160473591375;0.1742727894312955;0.5632205282801938;0.5917595166493103;0.22005181282455785;0.48844759156520223;0.046591922425821004;0.12877501172428552;0.3002769931215859;0.032880874376387904;0.03016954427042679;0.01361998999611499;0.2585390350375102;0.32546315360652267;0.23013430724440376;0.06436559196683496;0.26439481215437627;0.02492135982480705;0.33706666021962994;0.33942144584159417;0.3093027981616742;0.14054539075502623;0.18437144326259453;0.01439773044557891;0.19057606712010938;0.1155181670955599;0.03824181041278744;0.15546830091357589;0.13828515919809348;0.020069081965221457;0.08782091513097838;0.07347556796301011;0.11130351454637673;0.05266329291444956;0.1027552315648794;0.6890635466509377;0.017153814484436203;0.018108517414301663;0.019668421540424273;0.08187312809205534;0.0022390835061000024;0.03220140332323254;0.24148812646516934;0.4189110318869322;0.4100023253951658;0.022930634753936082;0.19731722438020644;0.471151980434901;0.02994840571662194;0.012245063545907178;0.019184901821843223;0.0007354463062575484;0.2995924675801955;0.3274076231832227;0.38860673237965837;0.37174442868747737;0.2049531117689558;0.3843913050024633;0.3457708531886861;0.32105543936083947;0.311901662709709;0.34484235558446436;0.4300764724020641;0.2025896691425205;0.4852702907528935;0.2098341082657822;0.3123763152051908;0.3583699059652348;0.11283935299429086;0.4978334572133615;0.4693928814136055;0.149112071511349;0.010485633550887776;0.06567049689866711;0.029484193253417165;1.0;0.15869675268266242;0.16809398119927457;0.10287781816605225;0.21459464434427775;0.2682735261780037;0.20264298907039233;0.01595887056948446;0.044713110160613107;0.10513138206902235;0.2074852992523607;0.030653650994549256;0.47496039748893576;0.4991512409964914;0.3500830026103169;0.45416424341277906;0.2996374884466202;0.3825994308014128;0.1902057319285906;0.20001914935983928;0.1831731806006609;0.27240643476428583;0.329484552900085;0.11990821387484377;0.2197245485315895;0.18760624131881334;0.2118953065837932;0.23740269246332785;0.2260425845120269;0.1335385915458957;0.2157914162443498;0.14835248336061665;0.09610045176569096;0.08894227028765599;0.021180805785873554;0.02862236346616773;0.05839474112492773;0.070024621222539;0.034002588963659146;0.12013024927314571;0.12126709776847161;0.02290181477223843;0.42987542317587973;0.06992144898980322;0.02142106157316123;0.04117870879727106;0.2790364633757309;0.10496826688999439;0.09990223865767281;0.03713059399624064;0.12968859114848952;0.002610863164246895;0.008364360331318937;0.08069822547122021;0.07439691705354914;0.2713384288695625;0.30156856944153293;0.28563286960131773;0.24023092774721194;0.019862850774426677;0.15649929974960802;0.21857379315555822;0.15918549136897306;0.08240701488328332;0.30515958097183216;0.008289963215614135;0.07537556006751504;0.056032209071643364;0.05408181299434754;0.016887499628332164;0.0666579049813203;0.03626871475199467;0.40495378185813374;0.04285858873662304;0.03586303707111568;0.015948732359455726;0.27711226628173885;0.031292476899191145;0.13516415373277033;0.19055994763500034;0.07453486252664063;0.06435724267584994;0.052046123673922653;0.019468663207148768;0.10395046676748884;0.1934241989832851;0.3575282172038375;0.049077861911103776;0.0523414632636037;0.03317825879439062;0.02645489345389173;0.19308006536602676;0.045467776205121845;0.1248631056273837;0.048377285034806136;0.14050723811150703;0.03301316734578208;0.024114050648778477;0.055804318104626195;0.07001531848446535;0.013310067095914075;0.004555570368168563;0.002373769542347487;0.09263347008443001;0.18386991390803087;0.4751643931670095;0.13217891605959867;0.09263360883107838;0.04927489915550926;0.07750891199772786;0.10788007572665596;0.05900805609036989;0.1996878582883989;0.1304299467825818;0.42029878290766737;0.08047666940020849;0.04974106137160597;0.02606846298613928;0.1829554348658559;0.02055254599344092;0.29231479618929074;0.04978715158158008;0.0448984221303803;0.05985561121113101;0.14523738961752886;0.04535528895203894;0.06174049190545581;0.3641523316199559;0.4552214425277277;0.4840686307589987;0.2816566568501883;0.20048705399485267;0.09019343511775031;0.03267113430803214;0.01158336738492416;0.015740849032950453;0.017680555260378143;0.023906830792876307;0.04088190807294027;0.003541790297945121;0.0024871618167570104;0.04105070241931652;0.046171040255626024;0.11834811757541547;0.08220549378053364;0.022203039639872777;0.04336770479749512;0.06273983125059852;0.03442244511488769;0.12713542506510325;0.04107760814753485;0.01771453291238792;0.11516052192072464;0.07479790572200691;0.02701468840244425;0.0027639822244243805;0.04337282152302681;0.026728399642425658;0.08428807577950605;0.0703697817244159;0.07179685575663378;0.0708477609643059;0.4556129066509401;0.007465476445401905;0.011828348481391348;0.06520800078912162;0.08121418484146078;0.30160982725805924;0.14399310038462673;0.0665309360593913;0.26801424233862575;0.4827436390029666;0.46889769427851447;0.17992089318196064;0.17883495196186588
+Atrazine;0.26005621950823327;0.23709529977262755;0.2535393655979465;0.24976219451562004;0.25018448981626473;0.24648716135257803;0.16698597328486625;0.4785816664218554;0.4806046605964025;0.32016370644943276;0.7988311877029382;0.3044813899377549;0.22923815044534596;0.24966861564080284;0.2755421416998239;0.27259331406149917;0.2425165330592284;0.24198390800045153;0.23602427561045147;0.24059329074389943;0.24230057995918808;0.24034716135439313;0.24848151154537376;0.243752147713102;0.2608572405988208;0.01784173294020449;0.22417052647501096;0.6412284571442031;0.867052165485184;0.2111699154123544;0.4813773229473577;0.14501439127777224;0.14620039397877166;0.2153623037006056;0.21515586037992165;0.2744677606082189;0.4238114561077563;0.8845970719841091;0.025195471584603807;0.22533521118893482;0.0867060776295336;0.21857657004727316;0.09189533937732583;0.007617623958130357;0.03325244598748783;0.046572205302344585;0.048211167212123714;0.046686073760735546;0.053896637829118035;0.19761851264502733;0.159340248577889;0.06978690812427353;0.161251871072654;0.12293972027465344;0.16932405106541984;0.22465919466267995;0.14129078993560318;0.1788502511124994;0.13911659170279927;0.0646874193030945;0.10760304037875032;0.15923594225303123;0.19436917623183558;0.19124850218164055;0.1351329179055468;0.17201350804994647;0.1773493033887011;0.14730796293445803;0.14293715739638324;0.14598512342864522;0.13985330139722216;0.10901546491546779;0.06685405531340258;0.07242289958056812;0.06187865102230615;0.05347057684881896;0.04384409802260773;0.05264882122525192;0.0024459054931198322;0.06436833825945738;0.03906256850430932;0.03901235405485796;0.044507743859840056;0.04407724802917604;0.07583787562577389;0.0505948942142202;0.015469560164086198;0.01871187218842747;0.0999506918780361;0.0669976584003114;0.008218494309851212;0.003590299557612731;0.012290030131447058;0.00587776320921556;0.007664681714723076;0.0744957952033168;0.06269844027057975;0.05179259712609818;0.013317500880246231;0.02032525237106768;0.04826012671526898;0.06545516867340297;0.06601211316830542;0.027821062089447065;0.09606147839949437;0.22648334754124358;0.18727385008688463;0.20126571216682818;0.19554723881182384;0.2310994311672321;0.2306451421181176;0.22230634588652132;0.22894297451372192;0.22110140952373045;0.22975731356568996;0.0586116504929864;0.053894597604953826;0.12198388258396302;0.1758137250370082;0.1505541899396045;0.024759758896444658;0.07158903219617192;0.17545973215917535;0.08440242974504392;0.039274943566708034;0.019469985528848786;0.019963903670996697;0.08159094199022329;0.0923375665384766;0.09849385453850391;0.07803808882829136;0.15474826182533213;0.10139134792088067;0.4400535352961942;0.2520063030312535;0.11326922108218943;0.665553223782053;0.07967962936781528;0.5159242420571514;0.44791140556978043;0.17531143004460836;0.4395600275840193;0.31091538532120927;0.1299868714434565;0.3105844781159269;0.09190350605172636;0.050895426397695745;0.010358804836038002;0.18569639198859506;0.5330018974835125;0.15744889906356338;0.35787628079482653;0.1463975223239281;0.1241919916949697;0.27282968759282;0.7466891422741798;0.8561499025226897;0.8411621118397388;0.8007125170453631;0.2868291277214478;0.7590930838902694;0.14494941011031479;0.04725139227137626;0.044753894604012225;0.039814058329203234;0.03646076307283855;0.07860623168960275;0.03548943587509761;0.0386702485953115;0.11151395869884657;0.07941144967409017;0.06031646900175995;0.005408034809534094;0.09376969248262912;0.10106744969778975;0.8140170334951699;0.009142215413175987;0.042837277775602145;0.1380482390838655;0.23762314692229775;0.2196573493922999;0.020223297298922516;0.14984485294013758;0.3792290599786649;0.05633260359728199;0.03946239310834396;0.05347103976391565;0.0018485961425751703;0.19196611611358264;0.5919435193771634;0.5609427010410366;0.1990439113649122;0.13536565021385974;0.23936785804798053;0.2925798673544412;0.1967899282803269;0.19271733201492688;0.7281555226589328;0.7301990040632035;0.831339272749505;0.6617468205815066;0.8286882646170122;0.7571533841584109;0.604514628575932;0.12821531968933927;0.3017927484192105;0.7014203499462004;0.11267620643109844;0.07969543109907687;0.1856779404227551;0.052587262407103666;0.15869675268266242;1.0;0.1981828995579905;0.11221415294416663;0.16387769781989298;0.20123325922986457;0.1310020334371846;0.059374212581136725;0.11932421914654293;0.9281315357757983;0.05712262936597924;0.02134329324317954;0.2379425174872594;0.24484266841028435;0.18225118276916033;0.2324492682126393;0.17178846733709932;0.2133436308454551;0.10945708704748339;0.11286311231971216;0.10433193011623634;0.1556011796242576;0.1830963815516268;0.07579301102636546;0.13643494959588448;0.25374652418426114;0.39542309241751794;0.24386755270092514;0.13841997480105575;0.3030699687545086;0.1352742207924029;0.11183546965858542;0.07494923445931954;0.10660144247538718;0.11864763812594104;0.018000883613009326;0.10460369487575392;0.10940205441308734;0.04751066348543173;0.08561930457201121;0.08574011652818427;0.03427328176252833;0.2831758541601362;0.12113487535422948;0.05338075245982802;0.05911895969912419;0.1803805534463104;0.10901015386880392;0.8687771320686931;0.057955065044969584;0.20662320056639735;0.09374116357421398;0.12484882043563486;0.05600016795507538;0.10077851524598225;0.20270978025976913;0.23645012221006753;0.1365804158567462;0.06370375849092051;0.061814854887302186;0.066710726643839;0.2265536608089843;0.12927502186082118;0.08342039281366047;0.23968439454033316;0.03336973596386069;0.06875828379701436;0.020224563891490393;0.03463427928968207;0.035550005281089536;0.0619451479472167;0.057497815677036546;0.7414092123408283;0.23581675712973943;0.03589760015323321;0.10511096147175832;0.14361272109852669;0.0004150888740619453;0.04839499257283491;0.041433313518517534;0.06895652113330582;0.2456501848310656;0.029374524051853857;0.08160949884677082;0.12054437015242085;0.08904944775923547;0.1764385592677795;0.12054336170537773;0.14470705320195654;0.13689987707527285;0.04051865569551394;0.6841361234176686;0.07239842678492074;0.13402498240992947;0.05039452983939592;0.05913460587353559;0.1426647079606729;0.10356784177448163;0.061117321143571525;0.2403263570345215;0.08901754605244888;0.0009773056458673005;0.006491992207532799;0.16336042824017935;0.6573515127843707;0.21836954061850208;0.5936219542553107;0.053620076199387225;0.3271148269769461;0.03447534875226171;0.17748491335828265;0.22059839225427208;0.13536747657645065;0.10633819249495546;0.1720829178968498;0.1060322731653643;0.03344665503251161;0.05530649236369052;0.7264446111193883;0.1620775598038507;0.5879265936807416;0.15767424918532705;0.13248800549599496;0.031042871381085854;0.09760874108719425;0.05548007242034285;0.051494713125028145;0.2788285555165139;0.22981341164126073;0.4005767837184921;0.18691185181199554;0.5412544384280643;0.023145489652354665;0.007403312534857982;0.20861320114315532;0.22466965379147452;0.10821935163668275;0.045724013309637;0.05743209276734772;0.04399714585708135;0.0354765872229215;0.22422455769822777;0.07446270870338913;0.18330237953598108;0.1113210503230732;0.003633290068841381;0.10329046775417253;0.04773634915358781;0.14233670497878656;0.1505152738138619;0.062218561205421095;0.04742403203936891;0.21378552161121078;0.1947086605136533;0.08123886709336883;0.0292895620420242;0.025028960765538524;0.047632210790520595;0.07496394043453314;0.11245950522178684;0.10589569675910984;0.08405504178278349;0.24553398318247996;0.007011970716491305;0.02505580331041408;0.11729440105289647;0.03554511352167166;0.20223711851284407;0.2547351910162606;0.8189126376407225;0.042325344324621136;0.3375463557083311;0.27953793772251373;0.39620946049919414;0.230407695094039
+Malathion;0.20267702416530495;0.2576857918464814;0.22618336581419166;0.21760835611591772;0.21380412847683586;0.23079418937955476;0.12054000007508102;0.21646207720334487;0.2159669589836873;0.22537717748635705;0.24349346943378578;0.22794194356072855;0.12256918408244458;0.21076449864540472;0.20997879284776613;0.199993775887059;0.21500279012936216;0.24122405389540208;0.2544487940401872;0.2425619101948921;0.2165395336984744;0.220597565565073;0.2190059023745668;0.2304972611689544;0.2147624326836283;0.009813510264098919;0.11091235587602735;0.16613811106280874;0.17551212650469603;0.14956355375518005;0.09112910367247637;0.2011799289850897;0.37435739576528587;0.16055578749380595;0.162809968030276;0.2501657286492418;0.21571537496767546;0.14589461727827474;0.011781585228622432;0.11740135151578326;0.0709663842803834;0.1677954815491131;0.03146637758184251;0.012440687721924581;0.0552009233995567;0.037609579399591045;0.04349830435072157;0.03782410877848619;0.042219688435304485;0.11952228766558128;0.08291432445009618;0.06693294514517092;0.011288270663449411;0.009927887284139186;0.06930057861020016;0.17657033395157323;0.12195127861266637;0.13463562330616557;0.08704650738569898;0.02870433487941397;0.08115050036867094;0.12690797173726787;0.1400961299594127;0.14077793424149415;0.12465311988337287;0.13242546938953303;0.13465619904020507;0.09420378971066376;0.0954060868931679;0.09352634227844414;0.08263914654533398;0.07334444355294074;0.07005917976390669;0.08406957665733905;0.14036897954069116;0.13337834485045544;0.03071622459778884;0.04457222122780192;0.002820512516805542;0.02212745568029668;0.038177098606915746;0.029817026961184018;0.047787808838686816;0.04832629185280022;0.0650983582006674;0.04995247619930727;0.5082728586218499;0.5565083334852973;0.08635209951440077;0.0935360675145021;0.012361568322342333;0.07593262773569841;0.21023621782581986;0.06640459073684153;0.0909707540745768;0.1306585246056384;0.12636807595524577;0.19387816719697146;0.22064230171490312;0.2067520379340398;0.23006318290067201;0.17190918367068284;0.20953882973400026;0.028333033972541718;0.16190547928558718;0.14275913967119352;0.1283016939029424;0.13334051212333217;0.13253860065478884;0.1558347926873517;0.14621231673690188;0.13424551452774058;0.15787395144308558;0.1700277933193056;0.1552506771798629;0.02280915426420844;0.020230342888081808;0.0694653214119425;0.13047264003361445;0.08835228171552771;0.04301166743214572;0.02987136518171092;0.12393817091031678;0.01085407727077765;0.04651527700120434;0.021368457941554467;0.025157370855726835;0.03825358274163678;0.11667418530983086;0.05820401154199116;0.06903672084671669;0.11747095525197787;0.11005256656556327;0.17036051806951083;0.2740016360246297;0.09157595093609837;0.20070299586047502;0.15017539146345418;0.26109317945570815;0.2665220897940593;0.1368494524312866;0.24423944775860112;0.12578425673016788;0.1601816038459357;0.19239693552458303;0.028322934201249095;0.24812901125042988;0.007259803802936762;0.1588768550636035;0.4822659636821068;0.17115800879037557;0.3910767070186868;0.05865597524429983;0.06746479554722463;0.21580267573240952;0.2277385923237473;0.20553729479240146;0.1667724457947911;0.16280783599724288;0.16457683315973307;0.17742987214863218;0.10275439538995267;0.04484074008997601;0.05967620813959804;0.04188346563481446;0.023096834154217167;0.07903328813988081;0.021912275292035183;0.030868538967931663;0.17740640492308873;0.08676510350298659;0.03443121908635083;0.0008205347198161337;0.008294191181759012;0.014185041951316832;0.1343905539402515;0.44125266690723036;0.27477572224344426;0.07909247055797969;0.1620737719718204;0.15923890112895692;0.011069519544147283;0.11012205401377377;0.21732635721168767;0.6220494385262967;0.41518150599003223;0.6465039247242365;0.3981478269129259;0.1251545740833988;0.20959740441756883;0.24274318652222096;0.18093878586910644;0.2747149678772703;0.20328546595655358;0.21065976984328838;0.15430514451596855;0.15033075350443542;0.2593255171252059;0.24404808654526214;0.2090184440808024;0.31006977705593086;0.21148041538998388;0.25350174941200565;0.259215260102788;0.0424684849568109;0.2233773566613727;0.3070491256044143;0.09135436173923694;0.02249082192411104;0.07526779691164708;0.05901888858463764;0.16809398119927457;0.1981828995579905;1.0;0.059798403136709526;0.1668891660905801;0.6825579458254641;0.06371552850625084;0.05039275897465146;0.13903450637335005;0.18801708749154772;0.04233518885157286;0.028500318448959817;0.20163776437824918;0.22675483675191418;0.1932816233498442;0.20072887324546157;0.14645185050438206;0.1544372952184188;0.08868105268739056;0.08442040643589925;0.08039222710053984;0.151418183244641;0.14828917086928478;0.05114681025666776;0.0929038271168393;0.0741473068741941;0.16053202262363378;0.09698923581396446;0.09523511901734623;0.08558180432635323;0.0769925124463576;0.06924699667226035;0.05363766241886866;0.3133470386143398;0.0205703273365984;0.34161965433628527;0.36417878711838464;0.4163043494340468;0.576631421234177;0.06152959977255701;0.0617661625096413;0.19998300419740664;0.4780565318774247;0.33963518981580043;0.054192661188721555;0.03811492646337254;0.18793880749116945;0.02905648701222249;0.15750553411873683;0.030787728866436333;0.44085741390277905;0.06428198895480211;0.008690414402480565;0.3071536976947836;0.0620980916578722;0.3394275841869969;0.13742621557206453;0.41409145170945655;0.056938539136873675;0.4552317906308554;0.0462025297442773;0.08878375197064996;0.08072290305846166;0.140514516129895;0.19670165819725113;0.018140273683879757;0.051798630919739574;0.03952559284799175;0.06794926808129037;0.04895638264143377;0.03686391560881716;0.029047743371427265;0.25755772288552203;0.06332870464167825;0.009902351697659788;0.01880141793204058;0.08547878225058504;0.0005844515251315055;0.13215792855331604;0.04729633309977914;0.02819375008833164;0.24508664560376564;0.039679806819519395;0.03711924250378559;0.051867376201937175;0.049719568806978226;0.07720853587087682;0.17111104869272895;0.05590785873550385;0.13276145815798673;0.024742620408572683;0.17998950609498002;0.6099580318832645;0.05694982410632585;0.01073949187456386;0.06457424979325584;0.1448779924318697;0.07999093624946485;0.031804497073957265;0.07063100331319834;0.09003901043244378;0.0386735567300496;0.04275200814903576;0.07667253056328696;0.16608672824210566;0.3524292510948947;0.14171670755044166;0.053032164161280586;0.056446320240816306;0.031145493838339876;0.04916181080124693;0.04853966421582348;0.25727316925603677;0.11278909051405604;0.20142387029026307;0.02361733300875312;0.022592370559049314;0.011367138947130134;0.14464026889767315;0.009396902707773533;0.19883728039459955;0.07781772777196524;0.07445387553961566;0.026704193319722624;0.0593000772362312;0.06647304490896376;0.023780204933730054;0.16221389927201427;0.22774752733837136;0.25689714306443723;0.13947294913328404;0.14509816139469497;0.0083272180616233;0.001975797749769969;0.046018987417647504;0.03683721832678986;0.1645123285238271;0.17060594232578233;0.0554240712792444;0.047135142887355874;0.01159437765244852;0.07086863246851254;0.07591091273579956;0.13639919583857432;0.05988853367150185;0.0019742375785141144;0.035527548745094416;0.007312471169077308;0.09169304309786507;0.09985795974861589;0.4394156641863529;0.038968179296717205;0.0537060406822262;0.043403027664005805;0.46328521353953345;0.024203646629452347;0.0602605863716534;0.06555871627904046;0.5971983555854977;0.06578715369574885;0.3156902514016366;0.5916040556264655;0.22698079097679996;0.03409267560701246;0.04011078928218829;0.07278544451517065;0.038661105381798976;0.12132374365291586;0.11725994640119808;0.13100727572332616;0.0070707381505790414;0.22335623687294914;0.22287331458298382;0.1959842686711364;0.2003708220640954
+Metazachlor;0.03788254427204874;0.0013156805374479278;0.03349578248525311;0.004160487289794061;0.004270495456414846;0.0022401203216688304;0.00278285546565184;0.0010545385889765377;0.001200026954101282;0.00895255325792949;0.018101476941929345;0.008007811743455474;0.003921170484351503;0.0004635907526360164;0.028255021724091302;0.026692042622933388;0.0009426602331272389;0.0007860966436152829;0.0012077830972639506;0.0009951366611721797;0.0022057987639112334;0.0007567395855448623;0.03009118514861934;0.0031924619198360595;0.015290370320238554;0.024870824309764065;0.010031604921013551;0.0425300039897358;0.05462050355040306;0.28865949613034875;0.011570850519015128;0.02994812276017236;0.0691427627294184;0.030370249189114445;0.08933145586313211;0.010214454171460417;0.1286216720918584;0.04283873888337309;0.06161204108837278;0.0085582792621762;0.1270552858008261;0.048847465451252736;0.0803080645333273;0.0011744383421197146;0.06121023362748328;0.04449936989054595;0.04948910797588091;0.06152521113213608;0.0465906299834461;0.015217073084584502;0.031094222949617823;0.11635435532436737;0.08474861286745423;0.026865010705078986;0.019677556673841533;0.04283369347624275;0.0983439115212121;0.06342425412798262;0.10535428223955237;0.0012809277475528886;0.12323529759310575;0.08728746620203802;0.05847124872405542;0.0672944690765556;0.10503755629596853;0.07428372653094645;0.06513373851481946;0.09593195696756181;0.10271894993986533;0.09638174921774698;0.08496794371896686;0.10511609274920872;0.26947306079020034;0.2757644802585822;0.15515704688325746;0.14442191051083034;0.048560840311821576;0.0878337431270621;0.029716955344686706;0.0842993720454306;0.16391849142820009;0.1649191471763321;0.22964597798760553;0.22435114798530933;0.053553372976826955;0.04349045776053972;0.028538665039248227;0.03598103141288459;0.050712466850192234;0.08668746821087041;0.02801036626272126;0.0036770581866530103;0.017272981094513865;0.013653073458407678;0.013867405664072628;0.26079752269794254;0.23519344747079404;0.10792278220114669;0.043478708699345524;0.04640324596892077;0.12403530444510882;0.03570427208800266;0.06677507202037355;0.0795096836427781;0.08137787104085557;0.003282664379076425;0.01739030841554558;0.010493595878384382;0.024155910230735902;0.015155804135621675;0.0136388446908366;0.021891728044575263;0.008672477777046947;0.014813357315070838;0.003489734546984985;0.004450097222823755;0.002626097853432832;0.0029395965212502644;0.002590660275412256;0.1313568025578513;0.06477323830820216;0.002809674980953954;0.001862645828177419;0.025224584626779973;0.06555531232098774;0.024823874499835304;0.023389994279024565;0.03900855415295329;0.0436257889024839;0.03347369924813444;0.03875221050917178;0.12211054413885798;0.1173777102474136;0.2526585547623249;0.004949335090180758;0.10454089073044764;0.1627456952473638;0.2719162344403967;0.2520534749119114;0.19274262472299436;0.11985895099218284;0.05814593566169946;0.1020020936917682;0.06758165161761083;0.15673894246230807;0.019692975862089707;0.07966303385530629;0.0043395799142537834;0.18173587966091168;0.16957334551998887;0.022695450398080737;0.14941701716923037;0.04146230754123674;0.032119823117454795;0.17594631657416465;0.11926328185442696;0.020553296439184163;0.01573427428198914;0.01635429520404229;0.005787978479920126;0.019615587947986603;0.12772541795804043;0.06347228545425128;0.0120533870821154;0.07373888289249159;0.13582500142514972;0.08857258263404966;0.04739868392998091;0.045835213411576786;0.09508292821133951;0.21381791387432897;0.016042172738059916;0.08596998355513999;0.04645119262951414;0.027320435921802683;0.014829269166108142;0.007215225953204829;0.018727037158509968;0.02154796122284565;0.00715701336627797;0.009716073069111061;0.038789652264569076;0.13642878839033348;0.03379516335826736;0.014862083121814062;0.03775529579327813;0.14584380878047457;0.00033786735766194953;0.029871142267914257;0.013967257550779464;0.08534691898110622;0.009412792851863364;0.027471740248037807;0.018784091803543113;0.11811827825255597;0.010403427794503711;0.0077968823886486625;0.012787022352614861;0.024050364663115078;0.011751953072849432;0.020309941126926793;0.023010266008629248;0.01009559796304834;0.04576733065874072;0.06260190791059606;0.09639562587526139;0.10262266828350176;0.03750945078318954;0.35547873817208026;0.2918915430978867;0.014679550813694013;0.10287781816605225;0.11221415294416663;0.059798403136709526;1.0;0.1073652302561479;0.03741735938451946;0.4823112973845651;0.20499490412385502;0.04473600586380933;0.08227709103341369;0.033024999559016825;0.02992932994673607;0.03400028930754388;0.013825545484660738;0.07862874547043561;0.051544268814582045;0.09237342079143954;0.05872644317667777;0.12045869497663476;0.11269974562083647;0.11906931312350605;0.08995080326932633;0.06447554276456678;0.1119958628556236;0.10175706738069822;0.038107571271739575;0.05946952427575995;0.031862265129132365;0.10638674948004273;0.4357106310035408;0.16630619513040734;0.041388362890795935;0.09435575207303087;0.2165996752041322;0.02011212950940827;0.03254412899246569;0.032133171102635555;0.029167484154538445;0.04363980807363543;0.045809890101672274;0.04421247540224191;0.08394198438784398;0.012548164372249287;0.02746875225131035;0.02161238270671261;0.04262315855531575;0.031242350296092056;0.002578190989194428;0.011570930714514652;0.19404518366912923;0.01874702361847409;0.01813925301304446;0.5126410380367675;0.033228360422612;0.021774007749054313;0.11282840191518327;0.02640795742418864;0.01968408175478937;0.018281347382812695;0.022844542364206008;0.020176382307074536;0.28234552611686115;0.0819125185400107;0.005918614887776349;0.022664452855332754;0.013700770676086452;0.02423018790539962;0.03498555454252114;0.027566563244320944;0.07636607350514894;0.06252025886591116;0.1924142650060299;0.04235342327956939;0.022775937349439827;0.0652961707526565;0.26206355989157004;0.022662529416340414;0.2183232471050291;0.30788126925993736;0.06487900990744316;0.014218931653994382;0.0019363879415948632;0.08935969472166189;0.18021697238599793;0.0029454321227262137;0.022007409991327012;0.3028207421349503;0.09111162028682986;0.5208780112977309;0.05699247012411697;0.05645116607131541;0.05735743138448281;0.01644755551289943;0.0005618082143475466;0.017791211391688645;0.022833150399139746;0.11108055645001208;0.1521519493442133;0.024586521059031106;0.053157705888644824;0.158557355559247;0.3191859330116667;0.30439064602755384;0.35139624556461785;0.10883360424416848;0.027305036244470844;0.06348104640751233;0.08425967471065969;0.03113686906782924;0.03881935940215997;0.03746414196744106;0.05218198413772056;0.039936037668811784;0.20251632561433977;0.04207158709490995;0.03216164780560189;0.06511082006153565;0.05934793106542036;0.02399483208573222;0.018810385374554407;0.020700461243885332;0.07620589505627949;0.08965764755422213;0.025517528977642024;0.07188083393393276;0.06674130000074893;0.07992733991542107;0.005418181961251478;0.027607057256702774;0.056154901911577744;0.010519048748182078;0.03973897750310151;0.004741747429272887;0.012404301016065397;0.0258982042173132;0.03318928413212166;0.011298588694145469;0.018840801631692244;0.012529181706285366;0.015841079501103042;0.015443078146465393;0.07225037732183459;0.1459271555578137;0.17017008193785346;0.039911769401882735;0.013539510453192178;0.030857994584352833;0.02046760997003417;0.10747214305389553;0.07782587150458721;0.10154312770480912;0.051636552841611665;0.030042297791268744;0.014481471225704883;0.048273614014957854;0.002339330623733996;0.035995141755683746;0.04490513848956187;0.05302376208667432;0.14685609832985091;0.02399499391038753;0.060006809112780266;0.0030232948038756992;0.0005262398325622071;0.010673681160772223;0.12645873212565042;0.17704950567607752;0.13032913771052512;0.20939192139443955;0.012738308924602783;0.029496811443058112;0.1252810146027756;0.12808393616350705;0.2730231611529007;0.28221288790938787
+Metolachlor;0.3637972302905323;0.3602577752496329;0.37209371162039645;0.3608941188877201;0.3644082869429165;0.3947089858680435;0.19046202711376112;0.3630732158648106;0.3616728597930957;0.36984130838044255;0.13990538082017304;0.38561619123545043;0.2208922438549778;0.3648241530091753;0.35780428357918054;0.34078466872847135;0.37261362829492545;0.369225373281853;0.3593186670080688;0.3673377038257326;0.367029370685346;0.36547807886616157;0.3631582296994365;0.3735742652541051;0.37017854087223695;0.013771569524768424;0.2480541175838122;0.14168321906156037;0.10930838617393232;0.14212733679936124;0.1521549216931351;0.23799611174435767;0.163700342341715;0.2900970215804881;0.28082090635183726;0.3644648076910092;0.19563739534630128;0.07039603276932965;0.012806417671212466;0.291699883738596;0.11075423150003774;0.29863618290847227;0.08254071509438633;0.0010460463084227519;0.00691509203442982;0.012030224559060361;0.012313614572729698;0.011293820530730645;0.013939865995302376;0.2595308661030249;0.2056142331895997;0.07503960696389214;0.05022564531651219;0.13807872932128118;0.20629867844730923;0.3108106118871126;0.1833095671041038;0.2446303069847418;0.17242439451313676;0.21853381731862748;0.13992221409172906;0.20386640472088352;0.2652305078387218;0.2606593352066364;0.17437455439528543;0.23142474767977567;0.24160945760711616;0.18728991683230203;0.18233588443619173;0.1853021439591629;0.18007486428603697;0.1431762954863316;0.022076461436468;0.029817711720014295;0.028198601176712773;0.027912177547411016;0.005262231569168428;0.005672654332641321;0.0009478245580419215;0.015904946150514944;0.010213611460346413;0.007020615264993785;0.008172809077612383;0.007983692482704535;0.018468722819877943;0.007901137923972018;0.05541481179174633;0.060365155539676814;0.023509147136884876;0.027554260961514646;0.003822306031363677;0.006880941466069407;0.020058051400750353;0.009896651867643802;0.012643392761703877;0.03143159307751859;0.016178989769432908;0.024470918609716858;0.022828334153669624;0.03155309503168314;0.05211902223470502;0.01624728033440405;0.02488551896024546;0.023224174757849637;0.0326029758116875;0.30214563635099356;0.2495727578864599;0.2704580372594933;0.2731448220253347;0.32816672357175275;0.32240839950225575;0.30503867323402123;0.3146390731494562;0.3109932391293794;0.31601323610775683;0.07470283487029102;0.10103041275303157;0.07267329132729969;0.2539270017514714;0.043430120964531256;0.06926705938240636;0.06093813107888891;0.2951398319606102;0.007930523600430199;0.007076400159424535;0.0032229011470899845;0.005977151777952052;0.013866028813315319;0.0163021428127956;0.015087503979644337;0.022254853865283832;0.07853919094433831;0.1361616168253277;0.024477833165271447;0.38032080023298004;0.2752602549623747;0.10419797758201937;0.10522360585190445;0.3248363790856946;0.35509066264630773;0.12997875804242964;0.3249264586128795;0.06766239093050054;0.11089859189061607;0.2585042747458191;0.11031082557122582;0.05578501411906706;0.012335690689037615;0.03812036602447675;0.05457752129600911;0.19911483554600892;0.04293196882276283;0.018190954125690287;0.011271719182884424;0.6173301728367829;0.20485567119244824;0.16110135511497722;0.05999715467543784;0.07122708785759804;0.02148511821964661;0.07436853066888459;0.17056627757590784;0.008105971505204602;0.035442681467343445;0.02414012878499365;0.011210571472190234;0.026601475241121053;0.01030383684226931;0.01770179562605955;0.05182457290556126;0.07259450841517946;0.03534294524240861;0.02052335674629911;0.032849327843224294;0.1441240377324526;0.05132260730419224;0.04973061083602162;0.06932549007411075;0.14153837642400083;0.29482393992720113;0.2896854553024035;0.01217677268228317;0.1849354038061964;0.3468531632015583;0.0499550105648276;0.04892358553983629;0.09049652486716599;0.03148532775189619;0.21331499885419763;0.24955486239267358;0.30503751741134805;0.27971849090099415;0.17696084940925952;0.2799063181738416;0.30246665514002413;0.25551910865207916;0.24929146672538827;0.2565935273364724;0.18726897777746848;0.14951249109024262;0.28002070279411206;0.162997590945989;0.2314863488122558;0.31098150689943127;0.11795486428646301;0.37504723106645993;0.2968411880801249;0.13947937017496195;0.2572362456303552;0.21965987156231337;0.1044799003346539;0.21459464434427775;0.16387769781989298;0.1668891660905801;0.1073652302561479;0.9999999999999998;0.22880951635051772;0.28885436842614615;0.03721193443645767;0.017269192246821333;0.07110124310001235;0.01721047798357036;0.018547683644451914;0.33957144169176284;0.3265922050427309;0.2316485029636102;0.31681316570764073;0.21184063220938595;0.2849686376040547;0.13796690553335514;0.1447220772894061;0.13153409637344948;0.20134883059403472;0.2493646174460468;0.09048129568038127;0.15800989019537504;0.15175265623264678;0.16382478887001478;0.1892465068202764;0.16323915643680692;0.19085076338280196;0.0650265023529463;0.028035993187256355;0.025261276667877728;0.04924125410061286;0.05007009557590678;0.031281958517566794;0.034960116859615135;0.050265338118807214;0.057480152550232595;0.08136146437789092;0.08271844363338397;0.030610968194289028;0.34828710087424847;0.04143337048508495;0.019892353160565753;0.09676821731022897;0.21497868187814576;0.003930666528244352;0.07071333308608524;0.0689039164831124;0.1264626610515212;0.0;0.049746768806628025;0.06993600969698446;0.007532055814777191;0.1845175250854688;0.19809443720622064;0.21385241934409294;0.05706960057827638;0.044851722535624826;0.01007586200195927;0.1438577544841408;0.07777328904485087;0.029047395794529057;0.1475593643396519;0.004712383465970787;0.007088553935195792;0.007478057110544412;0.02367497099997822;0.015320591256571434;0.03224942075038385;0.0683592320440271;0.2882098512027118;0.02309425365042701;0.04986629050762067;0.013433702913131524;0.16915306965839033;0.0;0.03911972853977881;0.04408110372318403;0.061209972693393844;0.06387726386618775;0.11393005118785487;0.10199597024476285;0.07779995093403048;0.08515104008070248;0.256461496529245;0.049581515059366935;0.1260327545136736;0.08231704930011598;0.06241298541623161;0.123203600091066;0.13032643740731284;0.09558366903740458;0.0238663604872292;0.06823109337707713;0.033775378110391545;0.1732253291712126;0.028106650025905403;0.024610301326875063;0.06290132774171699;0.0010749572272579634;0.0030142134813833325;0.5003225081409036;0.18885209009842183;0.37033344159432197;0.0282269705815402;0.065902724957239;0.06619903212382992;0.01304027983780643;0.11105616654697176;0.04596415753115946;0.2442215191772161;0.2027446344740905;0.2503098039162676;0.022313423011851373;0.01933655642385077;0.0592528344559377;0.032186853545144736;0.010344712590066835;0.21345799545606686;0.045350399572616724;0.042334244071391275;0.09398108592043308;0.11091522241059835;0.054857914665233286;0.05150317643723202;0.2931771724468587;0.3381659569111106;0.3823720576430794;0.2209862146870877;0.057701480871039844;0.0020533129229043543;0.0029269503832178795;0.0019305775656111306;0.0016235643170551368;0.014700375248505019;0.014878151130492892;0.008111040430176457;0.03299345775133038;0.0031466312143817047;0.22598573266530073;0.041996479561242556;0.08675920433721705;0.07797778523839664;0.003161403536699697;0.02200359411891255;0.0021606929651737925;0.04993985910567079;0.10968867577973404;0.12514006489407042;0.03261632980544747;0.009984593794502275;0.010233869630388491;0.05425164491501949;0.0025745698402324328;0.025306165143312458;0.03176396678041253;0.08484419608750349;0.04259574108446187;0.031567762548936076;0.07692864514962539;0.3541325852053492;0.015057739302134785;0.02103453652681024;0.08867033973964183;0.03615413830238969;0.20144921986346517;0.1477330662030962;0.07313928094358374;0.006738867098500136;0.3661637554861357;0.3697435084463296;0.15920638943142487;0.1632240149541304
+Methyl parathion;0.43129903774641887;0.4872770868575405;0.4493985288716323;0.44023032529610423;0.44474581752885833;0.4547779266894864;0.2676725689813242;0.45416284659555645;0.45171300867039843;0.4535451231916504;0.22338900315777407;0.4615195673402996;0.267868640380837;0.4413823366510974;0.43636291918891;0.4200370283267183;0.45797543651436956;0.47746766121760337;0.4823216909858686;0.4786668317063838;0.4765174430526928;0.5003056474817263;0.48205070152609375;0.47701669243314154;0.44417579070148844;0.029168114147865;0.23378048050855252;0.2678579427658778;0.13149596023447072;0.17092363106003688;0.10588356608824033;0.18789871083738593;0.2654815681002977;0.3392506842807944;0.3593371230368847;0.45991545892155106;0.26650924917724855;0.08589599946839838;0.01523890815710749;0.2856764326171953;0.13167571259125171;0.3095946748295337;0.0653332420965384;0.00753189759245569;0.12876995391816928;0.05562658836261059;0.06724995823802349;0.06498606173534298;0.057672497173329895;0.24685684696061566;0.18244824458818373;0.2245787409923167;0.22687786210598188;0.046913622500126886;0.18136723885031317;0.31755026057022323;0.20336506042909652;0.25238141141762693;0.17500774041374478;0.036379584125652016;0.14896705609681668;0.21101909349011094;0.26527654362566333;0.25760053148862094;0.20390062055554575;0.2420607450938009;0.2506837025445998;0.1853015454887166;0.18685505182501938;0.18537002605950662;0.17444913070180654;0.14066301956088986;0.1550743903291162;0.18414812003104875;0.11410007842466091;0.11621218015447056;0.024779966595561597;0.0739339725397413;0.015270610050210789;0.07791531396648159;0.0963302874958683;0.09295811098403628;0.10612725728411991;0.1037537753873387;0.0445039947890503;0.013769479951976193;0.47310821168520184;0.5120199605058353;0.05746316529829513;0.15357603512201146;0.020115711851806047;0.10174645041924359;0.2271524477482966;0.09530943392294558;0.12205208508684501;0.23719161358532323;0.22851007402810128;0.1946989939112058;0.28030459412697656;0.26313355145123696;0.29010832057774594;0.20387478406104986;0.259331878990994;0.03628305995327693;0.20990403251230835;0.3350090404792475;0.2866997575997792;0.30327484732130583;0.30500978213254565;0.3587631141977554;0.3370359641571208;0.31100964486323235;0.36431823908234595;0.36799798651457516;0.35562376423984454;0.049529065237916316;0.04029921161137677;0.05464687615348926;0.2568864724430069;0.05007647632477371;0.06515438010363254;0.059191143623290095;0.26171639285212206;0.024848708154832266;0.14992278674900172;0.03681414747855407;0.041463467442880035;0.1267815273612444;0.13958502290721;0.17735136412142993;0.07511321388422162;0.03433276024595888;0.09914187558770778;0.27475905101048453;0.490502286803384;0.024661379826049653;0.039512388160367;0.03046947648210234;0.394552892186336;0.44623433453343736;0.5125580825432401;0.3774346865265932;0.13612413527484082;0.4475786285048832;0.28610488259046407;0.06252544191274004;0.06435536880518777;0.07526794852169032;0.19390399952689202;0.23640146267550838;0.21226436487442973;0.2611838020054731;0.09718752200815715;0.03125928670992914;0.32010682934919144;0.23450675754100495;0.1926810598885852;0.07263127229458562;0.08530033081229658;0.010136807798065436;0.10017187714240756;0.09255630053303944;0.03217029728815383;0.10792862042307702;0.09520818463956425;0.135801421188824;0.11588994306281197;0.150311091666066;0.16139062666969428;0.09494833508262458;0.11064225577426255;0.1845049575926579;0.003349780174944324;0.029211015217091008;0.04702312630521731;0.0696408327428619;0.04459926863028669;0.0368885107204229;0.1948843631721096;0.3737063900734713;0.3852136661324686;0.005713034445387217;0.1679338707363513;0.4377499074361545;0.4300478626101901;0.24059101284661064;0.4187350730201952;0.000160991400291835;0.27510886247472444;0.3390913926295948;0.37912491361605405;0.3757358149043239;0.34652688198504195;0.3561857162665298;0.28588229578428004;0.31020220405798904;0.30168987323972335;0.34280947953021923;0.2603966861064888;0.2023020052343964;0.37379493378334283;0.21288123978916665;0.3103301993318481;0.4588756556554234;0.14452340284241894;0.46465166239319805;0.36664482849292596;0.18057618179874377;0.01494186695390802;0.154999304911748;0.075467221561426;0.2682735261780037;0.20123325922986457;0.6825579458254641;0.03741735938451946;0.22880951635051772;1.0;0.09686056381971547;0.07781292887222824;0.13688461299749216;0.11675859610083401;0.07342990783263245;0.038738602715831495;0.4018130031053271;0.36964096825449866;0.2578617975156105;0.33161812380806477;0.23187549507229854;0.28884024803749936;0.15502932226464736;0.15794953247155383;0.14837857622509293;0.25266859564486455;0.2720980426464547;0.09489748663375161;0.18002564779700025;0.13824357869087486;0.1636220375028994;0.17907852632000273;0.1802244715062677;0.1391442551890476;0.043016216105248785;0.06678724293698723;0.10944712882177127;0.07132404061422523;0.0060341972872469994;0.48428506047520925;0.4912054232035101;0.4903384927847483;0.5259123566923554;0.09402815464327043;0.09483820665537346;0.2362284369468704;0.6659816910281829;0.028642073979446965;0.08929816783556778;0.04768033917926779;0.31559869259892265;0.1397223292769586;0.09586250768308396;0.013224047029163067;0.24075506444454683;0.01803095124124531;0.0016813165082972376;0.3066408475458299;0.04303476422089613;0.41238891004113465;0.23788344431055256;0.37417261743182983;0.09476657275782213;0.17256616907084027;0.04733769335218728;0.14843521907030646;0.01935400463086602;0.08439574158150792;0.2808711958013035;0.18454361564508068;0.031421297114102124;0.018724466926742036;0.028187847300683272;0.024173846052912788;0.0652941260499242;0.01480608865202321;0.3594651397088327;0.019477793996908934;0.019590412013152418;0.018386848697689598;0.2396110596059952;0.005266407305478664;0.049105474854939934;0.030347547213937235;0.08685797405428881;0.05947857063233059;0.06317524590640575;0.05762806114414132;0.1083934003332875;0.08617305109225515;0.04828557472114787;0.37303736242997265;0.046713817248774034;0.017530267767937553;0.007934266195933556;0.18871833547311562;0.5660705888484836;0.12647020573799814;0.08402274997754085;0.08623864037223086;0.12051863311463244;0.03168486346042917;0.018485115885816385;0.04158268222157369;0.0015206090492558791;0.0021950744106118605;0.015576535974585939;0.08931190193021901;0.1610904793776648;0.5716689934967626;0.07628104336220135;0.0933998989849494;0.03530737490873788;0.05654742443406962;0.15670482611722725;0.03709298583037002;0.2787882873078052;0.18235267080134976;0.012907039739266485;0.023355395792414024;0.08967175562617667;0.05693021393223126;0.04495083428628965;0.037298758656448404;0.2700562336755974;0.07834512075212406;0.07684732137007995;0.057422343269290604;0.1420859938327485;0.07032554479824116;0.015247755599273376;0.3094048482135195;0.3999446428805248;0.43931336636412166;0.21808506320843424;0.08962469092661329;0.0042351354910766725;0.00632841028991939;0.038736243749378244;0.05347112755309375;0.1555290360936518;0.16972343313564556;0.0648223532798953;0.1177599544127337;0.02943940014896213;0.027124103347090495;0.4079491088233525;0.14376954047630092;0.1149735036598573;0.015516064795080432;0.11832470627299126;0.04569818873355448;0.08793242106536;0.14932677369958489;0.388676281566305;0.054091704250562735;0.08791070701474463;0.05271157860351927;0.41110545602655696;0.02170043190956067;0.08474770715100535;0.044004885517436296;0.5513385646478942;0.08636898160562247;0.09718362551131561;0.53098597149333;0.43316574314350764;0.016041266692541144;0.01813466349897411;0.07051633395219402;0.025980288521919567;0.1616063462116284;0.1689023457861047;0.060398315904502016;0.02859957847620662;0.41454924736381626;0.4015790920812787;0.26997704769562786;0.33569524175870596
+Pendimethalin;0.07935086044462837;0.6887785351999606;0.05405616245631345;0.05254135762007518;0.060494130400480135;0.03600189578490211;0.017502440542105795;0.03257121971143062;0.03220136384619506;0.047704240180292436;0.11260469686180438;0.04270774801616603;0.049069612069023986;0.02848743380825372;0.03808400454787578;0.029176208864888916;0.7201459126334113;0.7074748762231017;0.6849883120291983;0.701707855198972;0.03231529855916416;0.03373855667281974;0.048737256871815335;0.04465249018410648;0.06874690987536484;0.02702027385545793;0.12416733483000378;0.05900083119878678;0.08153215389280488;0.20299688843818203;0.14926243460569505;0.029407962777138877;0.12872912197729205;0.20866390810095292;0.07866194163580723;0.1424284379905391;0.24064415921018042;0.034039879135161814;0.7625475089172935;0.03344295212469243;0.049014728620278655;0.022904053869893998;0.04662507483833345;0.0024076464217501216;0.17552258011318186;0.028966070839480877;0.03285416132051053;0.035394901113324766;0.03438472293421057;0.020962565260619664;0.03744857307614629;0.019847124710475835;0.06871114575833384;0.01657285416561884;0.04125306126432568;0.0212853105222064;0.02740449296376249;0.014743717813409494;0.028322163520960206;0.008537952486902329;0.045385535347763385;0.01979599126858809;0.017912003987049646;0.016090924052484797;0.03258427901154438;0.014877817836286826;0.014686697276151869;0.019606330854434;0.019559570394812247;0.017856636968672575;0.011887076965666462;0.0207144870237119;0.1637488079838579;0.16441943242063542;0.10894208613800344;0.10958784409458397;0.04384635763508803;0.07408643054375168;0.01621185288835298;0.04965521597203075;0.09310621294411778;0.09143794524804942;0.13392496782080163;0.1276784343383993;0.06680590629290958;0.05051659499258408;0.03186141111235497;0.03822986996945004;0.08226994626090373;0.05193269260010706;0.04467431371978158;0.03803970685416435;0.0702662691352308;0.018592523376145084;0.02139854411815976;0.13810812841616865;0.13781005788302783;0.08844985472617946;0.060024107129619156;0.08569982644975813;0.13387492383124666;0.0491878710178662;0.07960389313495876;0.09088369409949862;0.0841862877574988;0.031175538346803342;0.02467081200485773;0.026885164776980844;0.0307907567851014;0.03131594537109359;0.030297254693551292;0.03487116255335552;0.03073409929512032;0.03352549256007828;0.031356241475220856;0.002152821691962711;0.0012524755740732079;0.007926503917164724;0.020314449713260768;0.06272820037910166;0.039285112900066206;0.006772727084465337;0.016308475395705714;0.024775471629965348;0.04482696644999547;0.023781418224276398;0.023924731018715978;0.08352479452075465;0.08847451889986552;0.14776251966559384;0.05933045555771158;0.24927889331742387;0.3563414390194193;0.350355143811452;0.08430398749617918;0.13699684220945038;0.2640867773699287;0.24954738493819933;0.27117238673968647;0.23074068327305114;0.5965230011828722;0.18737595984259062;0.22978877955662697;0.6756122389278719;0.21650027941128713;0.14609127160989058;0.25025807975691233;0.07242893825336166;0.11122128697108229;0.2731432085202184;0.15372507132053634;0.1972924956944122;0.0802902863362873;0.28611534675262906;0.35924704920002887;0.2946229207248626;0.06550234496423639;0.05220197876781731;0.046505024000689545;0.050768148912091804;0.08410588170094589;0.10609002655156274;0.11634332332186928;0.0652534949495564;0.0606687647153295;0.1684933916826787;0.08291857197739878;0.03216043964238485;0.034832982805532924;0.2026970192369999;0.1833193794641973;0.02368414169721582;0.013133525452474955;0.01741935647687156;0.01421380064625381;0.014472958973145461;0.004024991894766327;0.018921592993928683;0.11233614446882197;0.05811213811845675;0.05926038891358323;0.10698210676746751;0.22700945694501432;0.10512043732593777;0.02009107613244046;0.11839891462720548;0.06255207425257009;0.0;0.03084435242468175;0.1082119220429605;0.15727474588880835;0.502314494413152;0.14059512487815942;0.09266646611251718;0.21741717049237577;0.04313575318663595;0.042092536886861216;0.059125753285280344;0.0896079627555844;0.04820708449084353;0.09024834683634782;0.045008827114421904;0.05423750051665753;0.10682388528336134;0.11885885104937954;0.060734474310828006;0.18015199364165604;0.12210700974047914;0.2758465903995141;0.3270141802206846;0.15580093623928215;0.20264298907039233;0.1310020334371846;0.06371552850625084;0.4823112973845651;0.28885436842614615;0.09686056381971547;0.9999999999999972;0.14724054713970486;0.0549460856788382;0.11808249678103745;0.4645641191387716;0.013500299695524094;0.04797147234384242;0.04223357402321771;0.02182993210150706;0.02387708198010089;0.019908809727128;0.017015599762645744;0.05752014605550019;0.04546308717755126;0.059153327604478;0.030186295041925642;0.015580442664135339;0.09375191141721241;0.05197348388779967;0.03084475307962874;0.031365409441912;0.02962122624895947;0.04147686077805387;0.31182059135072343;0.1731856670982447;0.0938813949816143;0.07806980842853264;0.11613713329312726;0.0880296201844834;0.026806587630215515;0.03256124506672829;0.07566914329865257;0.06501371915558263;0.015483732964420103;0.01616213756924888;0.05981284001263255;0.04149456958115228;0.07867686334392326;0.055202474233404145;0.11309356061938709;0.34696560102977175;0.07783637749877909;0.02529216560822695;0.1832141427251603;0.031850063166536983;0.01660916522495449;0.304818220002557;0.0397742916483448;0.03370525458845812;0.18940468373543182;0.059014195521678935;0.0890944535228812;0.12771476521649272;0.047732311747985666;0.10908151962740723;0.22828163799853096;0.16192587149863732;0.1232968362533841;0.04450415305171045;0.0060910815583981445;0.03785123993489685;0.03779101834323428;0.08038716844776715;0.05109646845821162;0.10028730680214865;0.18199196559689668;0.05876613189819971;0.04986644703719295;0.2144354596766191;0.039606670133757425;0.09760589802081666;0.004486458610216757;0.12269477272341414;0.09473614964902835;0.04790052940760706;0.10698987120510389;0.1082736175258891;0.20038423449262618;0.013272623539501153;0.14550452490505442;0.47044964125314553;0.17657827232606463;0.40710699201868694;0.16592005107973454;0.19312454874011742;0.03745921203463107;0.05125937899868758;0.010938544494164325;0.06505855973621921;0.034553361373754164;0.20545287172753296;0.22468939529201662;0.013857885838639077;0.6768510835488041;0.13797980542972224;0.0020333738419751842;0.005707678092567899;0.4142203613322183;0.1604177414699695;0.09496145289667338;0.022559294731389942;0.20097324592180174;0.13407517324406829;0.03409967969780338;0.20983333580498736;0.23199896051029642;0.12356027245180629;0.3445748645236029;0.15069908504065907;0.02667570955117558;0.022857095069543032;0.18348378145364858;0.07320503449194234;0.03458052041073435;0.04610528232435181;0.12282895750622053;0.12002214229165256;0.19367930119017668;0.062324755299587815;0.07736671040091055;0.15222854289540216;0.10365571015302223;0.17148935419762923;0.05964909192186986;0.043026059469607074;0.027607885994775164;0.004253061108291759;0.010011131862048783;0.0204503780708836;0.01646952918229566;0.037458976983146236;0.004597527309504819;0.06234819343367394;0.06446804340986853;0.013186619534038452;0.03283927584859936;0.20757421997166245;0.3652657537446208;0.11957717891053549;0.009111769508254016;0.06447954846773128;0.03357928577558154;0.046321778992942535;0.11905775000943787;0.06940340130579126;0.08707662337621241;0.09103007358871114;0.0408627755729583;0.1939402136024453;0.018268282009295436;0.030832868814751484;0.07668939863746058;0.12076647435782129;0.1808897180929919;0.07090107039301106;0.09639667632599148;0.2369962706615452;0.051231105984174075;0.05989637165059388;0.04070291712025796;0.09279888677458017;0.28155549915032924;0.18152274633696688;0.03594366374906858;0.051746808955688554;0.18119544430421988;0.17635863684754324;0.2858965029914426;0.3064105089065634
+Phosmet;0.004405415104014027;0.001146023064831574;0.15188088609267517;0.0011750197899771037;0.0015391973714299842;0.004867815494008129;0.001885966016983647;0.0;0.0;0.0;0.000590254123848055;0.0011621219174249241;0.0;0.0;0.0;0.0;0.0;0.0006661373758307794;0.0010868013838946002;0.0007021559868314157;0.00020073014823287358;0.0003528882231137119;0.002734921904325665;0.0003862259336327332;0.0012612576034300915;0.0034065672587679017;0.04705949071637028;0.009242825751607231;0.01617418314582531;0.07549208656391859;0.010398570817139229;0.020794400153947984;0.15395759020157007;0.008877119120418503;0.01784051885055169;0.009132193834455762;0.020056691736554732;0.008812842257050913;0.013719302912432995;0.0;0.00283854762990091;0.01834797709427821;0.005796162444837541;0.003635947683706586;0.0100556072716145;0.0039099911040814785;0.004798372022560025;0.0035238999861443147;0.0051800991608141585;0.00020449303035516834;0.0005182144036651939;0.0028453311778741147;0.0025108457992305154;0.3977502815781346;0.041397875340583555;0.023404015555559793;0.0013226939570817101;0.0016626372133093515;0.007530249935834152;0.004004370783231675;0.0027350297163316563;0.00656672627643389;0.007037223747259322;0.0008623910374386534;0.0027432386190513734;0.001616985471401996;0.0024026363330178057;0.007669028001433242;0.00663118471741239;0.007650682049144205;0.00645495619663065;0.0021731487747135335;0.02887849670152558;0.02899685907782341;0.006408698964978014;0.08396821668587086;0.00967942123720529;0.011832121692448159;0.0012114242129349384;0.013051134642149353;0.009069300195635172;0.006196316824177189;0.01140452657840884;0.01094317058857021;0.0061246959564022485;0.003922411168574757;0.015226998200091572;0.018680417077687715;0.022507116477422304;0.00434134472202665;0.020762180624079838;0.018462674147904472;0.00778107920602903;0.029246623064175147;0.021485750144448083;0.04212624019875329;0.025790145069354186;0.017251405947777992;0.007254602696201038;0.011853441889373711;0.018625457618439326;0.006656570767810452;0.013749768702391005;0.026557562549582393;0.012385716020137187;0.0032852532471726826;0.006433007099517321;0.0019369791162298596;0.0008034131449157313;0.0009883429425808449;0.0035615290403357425;0.002095673667371874;0.0008808153266927978;0.0472532255152558;0.0019801796765047002;0.00015112119806722863;0.00035907145551410813;0.005111838346938624;0.0027404761690799483;0.005366383509605918;0.004350697214892269;0.0031972638804183637;0.0014016700176120674;0.005676792890143166;0.006802190440254635;0.005201941411019443;0.00522953698678225;0.03596382364421431;0.09803939118069044;0.044538451043752654;0.02717337171061169;0.01777577696469756;0.013062198846115336;0.013771396392772436;0.000785820321925898;0.0076680733502975705;0.022131642867900404;0.06298151062265399;0.04467143378907504;0.08544579337841483;0.0186502525584128;0.014582298637322518;0.030951834846628452;0.030099246733775366;0.02526751475043693;0.043481809583529915;0.026069513382712312;0.0006531104736638134;0.01985645648509401;0.04838969416158694;0.0;0.05961414370156148;0.012997515619086474;0.013265205141024633;0.05180414944626319;0.029690234463935684;0.003166001881248636;0.0014242941788156875;0.0014685926652459637;0.0;0.0020591046589658506;0.021246865411282324;0.007761110662311978;0.054952125337643015;0.01419807577356839;0.02999535425413931;0.02282462161614749;0.02162060982109135;0.02658746881239992;0.028416969518707324;0.03318652610498093;0.013392394326460031;0.0;0.05681060338848905;0.2932152554106681;0.0011749066309640456;0.000867279900208564;0.01558814391754135;0.022270080107936525;0.006846627344347861;0.00919912087353763;0.0015119056245890114;0.004980263173927149;0.010830373773603645;0.009127100947945312;0.02114135695263536;0.01301601879935734;0.0;0.17128198392273714;0.1131468611748242;0.09213347379112866;0.008379107388235982;0.008956134521851771;0.0;0.3952969316227542;0.0;0.0;0.0031636797371087095;0.00270132266800945;0.0013457890885547306;0.004492524105113691;0.003748341785508455;0.003545055852130108;0.004209526246251728;0.016590864247888124;0.0;0.010856392335481977;0.039811910879877295;0.010527048059532597;0.6904054128047228;0.018159080070962157;0.01595887056948446;0.059374212581136725;0.05039275897465146;0.20499490412385502;0.03721193443645767;0.07781292887222824;0.14724054713970486;1.0;0.007504300637352612;0.03447563405074948;0.057192724379072475;0.0018081102302133119;0.0028755357796895298;0.007303664831897674;0.04597103838677979;0.032552952168881176;0.00925776888493614;0.001422996805185268;0.002327343295686799;0.0026244964685052654;0.003106129081622887;0.0034445897773889506;0.002982668766817624;0.001708436167919833;0.010295229253050504;0.0021189552442498647;0.003293994722196071;0.0026390687882932107;0.009907948553018506;0.027191420577526583;0.011006771812126044;0.003624592075075921;0.006577185760040538;0.07563463328357381;0.0;0.0126593638544274;0.0009455292772255383;0.03293974765645903;0.03179220345468645;0.0018948486913381404;0.0020394546283127126;0.006447552608925316;0.03840768228190229;0.0329754469005896;0.006294470296729604;0.00847697476508436;0.002076296031901395;0.0014141131409864153;0.0;0.04383458226740427;0.05683371622338867;0.0;0.01473743057129324;0.7825733735002876;0.010879127042736265;0.4785710049281532;0.0029792150924810566;0.005652355935020197;0.00016216628579105395;0.0676352810392324;0.00045962349150722206;0.001426255105246425;0.00486247614283797;0.0002448521296826178;0.0023482843956818744;0.001078713061455486;0.010005542615948024;0.007016205909147479;0.006288245057898369;0.007649709380425891;0.022444581360737157;0.04371332331950503;0.0010690314658912158;0.008157745546271293;0.004912678583588647;0.0006142645942995952;0.002479023857767561;0.0;0.020308791961900552;0.021233126661970362;0.0006925812369625515;0.0003340428849533818;0.003706455564500913;0.014518519220555545;0.0004977181199058982;0.0;0.5282220730354528;0.0036333628487960393;0.04889518661823767;0.013338775025293171;0.01696776374797693;0.0002912999120199436;0.014719808598284376;0.0007102101028888233;0.0014947834742779563;0.01511415167318916;0.005921472508594507;0.02550095912463513;0.017618474998748634;0.0;0.17800766842094873;0.0;0.0;0.03325130919148717;0.007200313802748945;0.010529543966685788;0.00016470167891890222;0.019329674555399582;0.03704049956008212;0.0018711304863755903;0.000814183622586138;0.053793512026695134;0.002799223679301933;0.0976819852133125;0.011613369977585724;0.0015361146530947544;0.05110967068118624;0.023972747132282292;0.0002663400703531065;0.00044093292774483516;0.000837861829038903;0.009951955625981269;0.010391510363958833;0.07989963036132577;0.005176700265430822;0.012263944708549305;0.007584886860688637;0.004560370251484905;0.04279259440291312;0.0009498342107673444;0.04153472964256487;0.0004535506175717345;0.0;0.13071441676508475;0.0016667186848041892;0.00156969305595285;0.003688540055908256;0.02424002146876936;0.06097170357280659;0.00010321118205485729;0.0014864082389894953;0.007959656363185684;0.01598294740663868;0.1281740313422093;0.003848331332323059;0.0014197207718442003;0.0026323486619903953;0.0;0.02748152668593082;0.004247004311295577;0.06005810543922893;0.07835122224060574;0.015664730361821907;0.0031984601826148553;0.018845408159714416;0.006604419248091959;0.024840186379144896;0.02822703355032752;0.021672896684202646;0.01727564622887626;0.0036617802846663516;0.023908045025619978;0.00359836599916655;0.0;0.0004090691959260539;0.032545390758662536;0.02605124347475178;0.01009007899064571;0.2740072049636721;0.0009844487757561023;0.0041884613675479765;0.0956487509970942;0.05994012829386188;0.0695536176701099;0.06757663229398125
+Terbufos;0.0402384169181862;0.010818385857876832;0.0;0.004016503505781795;0.0041327612004829675;0.015625010777812098;0.08034580845831356;0.004030802715649022;0.005152518769013992;0.006552277012873634;0.011634679525590627;0.019366026746432244;0.0016764226066252926;0.010195030793992426;0.0007545876950342231;0.0005468314121273929;0.0;0.006288295050283302;0.010259336903986527;0.006628308479181367;0.0018948800102999556;0.003331242694409237;0.017345089693938675;0.0036459485908965617;0.004748912739896824;0.017745944059881853;0.004336996622472556;0.040319981447458186;0.03876805157063301;0.057967044772314257;0.009680583438123846;0.025550154035795743;0.10935497819874615;0.0024729977673628735;0.02572830421371847;0.17110505773543727;0.2030452962270068;0.011957093536336035;0.001441958907623681;0.008018971351584445;0.004693027403333108;0.027503575209455823;0.008916466846262162;0.008881429023254095;0.039675877675711804;0.04168102833722202;0.046511808915790695;0.0438407784660268;0.04656014011557773;0.009196449923827052;0.021476023225681106;0.0015431644804561493;0.023240922311185082;0.003045520897049386;0.0708497392512102;0.020883908391234746;0.014481981496127014;0.007882611426386755;0.005902311436763687;0.009315019670531544;0.006491186027365078;0.014565081051495636;0.01279593656929477;0.006812758693570861;0.015122964220566061;0.008689502638229464;0.008695605984798455;0.00822009262789384;0.011329126905524357;0.008889653438024699;0.005295495244001979;0.006135242318496805;0.03191968232696506;0.03044877366900237;0.06691050055230904;0.024572785261959076;0.13362360623059805;0.1366064270856798;0.014491585625412093;0.030575724517487027;0.03137633871755981;0.02830702848443072;0.03246399843913549;0.028696031894235956;0.037010147893164806;0.03861001107876109;0.10648861034618742;0.12151031550034362;0.028883257331588332;0.03082346186082704;0.013343312737488887;0.008386001452104982;0.05781428839981243;0.02426725087035564;0.029837726089216803;0.032911232748849266;0.034332394615956496;0.03893590885282865;0.026047900426492916;0.028285649408699366;0.04126888634136422;0.0564314738460243;0.05770149305930748;0.03569929612744199;0.027627843584764288;0.02261118562364507;0.00933670734040896;0.013617366990321114;0.000671195542827913;0.006988902215663988;0.005170061453755934;0.021961393461718902;0.012604079834118612;0.04707512880962621;0.02597153911939852;0.030096205278903086;0.004077889623861209;0.01599498518094564;0.005664219906623387;0.012058929933394;0.012648369520622874;0.007570430669047868;0.010111356557213588;0.009282263094268517;0.013974414310274422;0.12368760969012352;0.08361150232688051;0.04027825169032028;0.03933730578245246;0.04769680081972968;0.10196282828843879;0.09641493610440477;0.04267292529269428;0.17889037612307893;0.00863436814887112;0.054452636262791496;0.31600673712404403;0.1307528436546369;0.0759790842106382;0.08106766761825668;0.07265101981378563;0.055873783309426925;0.19299776925784334;0.02746414993385764;0.2897042402935949;0.026670664234473396;0.060356858956313486;0.0015393116959396655;0.6554406980364857;0.05792348884598252;0.3180382258506222;0.4203933581918233;0.05927614552603456;0.012565721649158196;0.10315159652719809;0.15772758068714277;0.06538693704374378;0.1651045362388094;0.14327460178158136;0.009902200353559156;0.06802476094874996;0.05884707973660475;0.05163165097874877;0.08345596206259534;0.0533654728328058;0.13514850106973786;0.04195452918187391;0.030672456786847484;0.03888201361189065;0.09021919443472066;0.06857882619678694;0.007783549261823345;0.00844986807314636;0.001164295811418536;0.0023175494029167446;0.0068597854537374115;0.19957246277143253;0.021711691675302854;0.028704302605336626;0.009382074336604101;0.009338557457807558;0.026762453505628222;0.0893091491086566;0.00809678018957022;0.25189861105637146;0.08113417184498317;0.12935751990039657;0.02425496248603892;0.049064437774666854;0.20762382554062264;0.18058541008119966;0.042931142113074985;0.15644509401036322;0.3590646619226184;0.06451859127787732;0.026046506893484665;0.027066319513111614;0.03420596527030705;0.06611098935593303;0.027924341419260364;0.04515436811711135;0.028215907117246003;0.03574609175170372;0.007206349551831711;0.20902593398446656;0.0011320798655099478;0.09974308021609554;0.11079835409599112;0.0054629443843670035;0.025469997766041922;0.21167682707789848;0.044713110160613107;0.11932421914654293;0.13903450637335005;0.04473600586380933;0.017269192246821333;0.13688461299749216;0.0549460856788382;0.007504300637352612;0.9999999999999997;0.17436342219864961;0.03362279678754058;0.012860100122240068;0.024820642476638288;0.020727233278481944;0.044061970391228104;0.030158019784216318;0.020269940340293068;0.014134149508016844;0.0074232236497132455;0.007953658597975472;0.009626211059123714;0.019775863819020457;0.01397053366957176;0.010680772326590387;0.012225110625240133;0.012621351557718105;0.020834407659998208;0.01840359515020638;0.012119120680672616;0.05525236952050311;0.5626376331764508;0.6145207013641009;0.09593135897193725;0.028956125230607612;0.7878223790233504;0.02177438585916476;0.013625178829485524;0.026001314991832662;0.1126148496361673;0.03889977148047937;0.03931848366315521;0.05634509105630329;0.17237531996945882;0.3539446847791852;0.004615779605645118;0.1260517981948979;0.013245474784049891;0.752001095217056;0.002793442938100225;0.007160546188683461;0.06526997802176224;0.07445467971146526;0.0;0.06841198108665239;0.07965684954223462;0.15024349637113013;0.05260356274643974;0.0755999682823736;0.006779554001230448;0.06841021270577008;0.30722796157039034;0.0917268017571327;0.6645527471263395;0.06591549014442522;0.042341169772144666;0.013019036341252321;0.14735680487349162;0.037484160240845985;0.008579744156620037;0.047648156025750586;0.12404625681191649;0.006907876719210249;0.27785863802682875;0.038734445280915374;0.013233000077741952;0.010325343883455029;0.040726317684132034;0.0;0.027964819650214176;0.02206485719848793;0.016006806157157993;0.003153343884082427;0.020602475935460374;0.05253635981650795;0.000817115406693884;0.0011468335035211105;0.04626450683395801;0.043330183539168565;0.10746053605072589;0.05020816725134996;0.06999042984769811;0.5574469220084235;0.19090245380818374;0.0;0.015008970827393903;0.011142910009118708;0.23292028967715803;0.025655088348561696;0.12035069648197629;0.10546612068361338;0.09951567801713458;0.0;0.009407807727351523;0.12713170976011115;0.3015150591614761;0.01715365936697539;0.15395426115680988;0.00698273888620864;0.1042133789503491;0.031782023369291104;0.02105545360540545;0.10997063555010761;0.02042255539613285;0.03206189035056739;0.017830451463590913;0.709760447101028;0.022701557766398688;0.026815707094768302;0.07106923087755315;0.009461945028009299;0.5958914783373943;0.014841910473417867;0.013081963384585935;0.05717965905863473;0.018325299172250464;0.02936960690042804;0.02193810343461856;0.009716612233980465;0.00897824494447515;0.0489514611759843;0.03410769383569706;0.11139621302452878;0.008110072131683122;0.009037891805692163;0.07315862115862051;0.07041800780561278;0.03701140941451695;0.25750460937300534;0.03558205333545658;0.009547174114323827;0.002872989126481405;0.036750654443605354;0.06701942270688577;0.1806755910591556;0.3291762811231814;0.002006161179127501;0.13891119087680032;0.07759023404287099;0.20549189880938995;0.1593713584414719;0.08929710801941357;0.028052642256970368;0.084131013402035;0.07105825978969557;0.12410907794197452;0.011774163992862078;0.018423060484297447;0.02563339184712916;0.1909228850561288;0.09279943350863032;0.050393122634169375;0.14605004297479252;0.019912826514428144;0.02465258158535805;0.028645629640476074;0.08862101478648896;0.03578113835864604;0.11405214886910671;0.1255403538368902;0.00492248634625445;0.005116963947174304;0.2371145321168075;0.06751517362035594;0.18778030076487118;0.1875387758604876
+Terbutylazine;0.11781030925184857;0.0954269242478144;0.1085589202329588;0.1103512607005261;0.11090946186007077;0.10610989742820011;0.05411602409816547;0.10113900792590622;0.09991777747982812;0.15780808806190352;0.6703623410407687;0.1079330528738399;0.23891205582654695;0.09651148905821935;0.0958601905741407;0.09149402548532122;0.09962097978200818;0.09809400123859019;0.09506241140634077;0.09743253423123278;0.11287570705932275;0.12225904813201559;0.12256933168259448;0.11415481178014872;0.1213367198739664;0.010466443318069247;0.060271826310158746;0.49304615730677287;0.7709612941623742;0.13832761917877423;0.4788300565772369;0.05839985707491234;0.11095836153066321;0.07793616595134469;0.09249275090778991;0.16621993322339323;0.3282171485834934;0.844559915522971;0.09519343802096894;0.0969228370636328;0.032128341576433746;0.09196957821734976;0.029006756678773674;0.004946973438794842;0.08164732732773486;0.05408174179835998;0.05524163320383167;0.05057327070082764;0.06224605473707865;0.07373543334056289;0.058566921562160666;0.03934035182098331;0.050504027592906266;0.05344170438736051;0.0714938590070763;0.09331368631681981;0.05331142863707581;0.06700163270954167;0.05561978239318882;0.015947809485557077;0.04140755178658982;0.05875698098715055;0.0735346872929735;0.07188836964231932;0.05107769492209238;0.06541123816890483;0.06645831557389871;0.059167684387489324;0.057685157091523866;0.05853583822963282;0.05441249611615171;0.04253504568848834;0.022321748402664685;0.027991735690043908;0.032854407571422294;0.02715458675800069;0.006767634597082317;0.007704298995469984;0.002517065444423166;0.054464756272043224;0.008778088807480001;0.007017286620294898;0.014128162980950909;0.012952582018916053;0.028454275034459336;0.018102486898813046;0.0047470243393481736;0.010070022365445536;0.09857131948345928;0.011888907870950073;0.005820710660044812;0.007723740275095483;0.01856915646950932;0.0056561324357249235;0.008208857388116752;0.034067424918142936;0.03237302585363472;0.04938293155160433;0.020428752458387954;0.01901356000522089;0.052998609869597035;0.027144291635728533;0.03004889538445746;0.033879235745247815;0.02407139948304696;0.0951965928281191;0.07732512346995597;0.08298008416302276;0.07458426626449394;0.08779395219851341;0.08727430944757565;0.08568246884726449;0.0966403059535734;0.08955123094364292;0.09155245909077009;0.014522144963243585;0.011699254536963842;0.08654118490811694;0.07001187526322236;0.01752761204255535;0.014478060023978691;0.01312225351446391;0.06724142733420943;0.07348419754021418;0.02694661541895516;0.006838233437095067;0.010386656597518503;0.021364569126805545;0.027865025252481492;0.03312922678135322;0.04561532404070319;0.1650118113613956;0.07421172513378423;0.4288027022272728;0.11542173002191299;0.09700927428970045;0.6696354923513126;0.08346881513869447;0.3588739700986312;0.2978236435261861;0.11578515304802953;0.34353287389785114;0.16357182846055263;0.04982535694500802;0.22184705859095802;0.03496641308123234;0.05967033082853005;0.04388937147145366;0.23659569094497981;0.45573427216508505;0.2034662952327958;0.26980725777734577;0.2362678344838967;0.14538693782165896;0.1608202476166374;0.6490926730121049;0.8396787632243286;0.8304398363552952;0.7997071895114124;0.19170097985254794;0.7238876290927673;0.018670002097327873;0.034433030388927664;0.016653846833722296;0.014485330653038466;0.021103684272142795;0.0713508091809126;0.0067635862398021844;0.009218346916594115;0.1426407907435251;0.07738647701498787;0.026255983204939846;0.00449046261825456;0.04031157462089993;0.04851614856826819;0.7877683060022717;0.01128784314405485;0.04124351036703774;0.1430354096127195;0.12373935864322587;0.10110494191568224;0.0019000044993335873;0.08827602654155974;0.24371139811186016;0.03252689392897389;0.11335941269067815;0.03404881384758596;0.0012555186183971538;0.07887022825054782;0.2963456037222033;0.28794207569829877;0.23063871649426634;0.15123028240672723;0.20877142000939117;0.30901162456271625;0.07241091304003207;0.0695047545898602;0.5999285797709354;0.6373907097927934;0.7494226316597179;0.5266544396272724;0.7335614754880238;0.635464986949467;0.4897593033693361;0.14717600608144762;0.14562568690741462;0.5183595374133316;0.1374526507348147;0.07661352375766138;0.10672970954579862;0.03759798221271863;0.10513138206902235;0.9281315357757983;0.18801708749154772;0.08227709103341369;0.07110124310001235;0.11675859610083401;0.11808249678103745;0.03447563405074948;0.17436342219864961;0.9999999999999993;0.12040672230363736;0.00630447611330931;0.09082611687558467;0.09972454113411153;0.08025416431772991;0.0966889704349849;0.06454910286064927;0.08240529565402259;0.04138936208989084;0.043578632562395817;0.03975722120797396;0.05894494358294439;0.06877451360753221;0.029132864330699282;0.0555700983540197;0.12095368882230609;0.24535850288513886;0.08866202779158079;0.057085997880135145;0.1666807179386456;0.16693391437949903;0.1779393049223104;0.13643264373655115;0.0950930464499572;0.16691988028599494;0.1103393344910567;0.05560746089204756;0.06569895337477644;0.031120547631405805;0.04237330121455161;0.04289357369947519;0.03125547064144912;0.12801842794209198;0.10002223545418065;0.016255414015700888;0.046474746983543654;0.16160805726222685;0.1790475868781919;0.8171852949416653;0.05150785569177211;0.07020220051823077;0.36071059104727626;0.11969355940933649;0.02334936392568511;0.05309073375917931;0.10094040677213194;0.17343969067147402;0.38204325997508815;0.04045117656849051;0.04612066518079424;0.1076401966360653;0.18037182876078986;0.1829741597387405;0.03857895506690315;0.09917667914205947;0.020615799310156332;0.1328517049774526;0.02200773423094693;0.010868026139020456;0.01581478730728468;0.0276712981249114;0.05083321749287487;0.5955461057947663;0.22628533404796106;0.05820783843179532;0.06779340532359351;0.06289086309062243;0.002383540665792968;0.06473135545377162;0.016067292218755264;0.032828868829785335;0.3524896103879331;0.052527319037190524;0.0379704200854623;0.0449056213240062;0.07496326379917265;0.13817704840205938;0.060122028226345985;0.12479148062842738;0.1440383015343269;0.046851574637258676;0.6137679973176655;0.050900316715644975;0.038669155915927705;0.22489529007633746;0.02632251878390502;0.040634826364679424;0.06318052853909935;0.014028858359523392;0.3318661145769716;0.07628999646228474;0.0;0.001974822795999231;0.1472319744935985;0.6322623872535366;0.09563376393394273;0.8217239089580635;0.03498312657792554;0.38838549219725765;0.05061608824732782;0.11570029582038033;0.24097093073671502;0.08711180784243099;0.12313426839262459;0.03184616953055001;0.23152250154130594;0.062163099737281104;0.03964081101817776;0.72697966170184;0.11964988729730727;0.5255686426779789;0.16326591318433187;0.13147176151492074;0.10646407081795468;0.06527132857014552;0.033677073746761974;0.06051113415271655;0.17406788319410738;0.11065317741628984;0.25322096757886886;0.1359067756028034;0.7651432845564855;0.015160646370314638;0.0035665618099700114;0.35546249962236043;0.4118007752072361;0.03301466373195256;0.07042495277034483;0.03589177792594469;0.024860341838219974;0.01949144487332879;0.03963634633978167;0.11480676194570598;0.15450914591633938;0.04527274321321685;0.00491320357500369;0.07640337250859044;0.02628191706084186;0.737160287828631;0.053025019681873696;0.0387580138850495;0.029495837053846754;0.28785282089010916;0.29506485417879313;0.02408834334384391;0.04341489337239544;0.006531954790592034;0.0841865273332053;0.09360219454385049;0.08497092987646515;0.04412086285654728;0.08494404360500327;0.12952136146849383;0.004254485214226594;0.019653650918646817;0.052703090782733095;0.036003034390315505;0.4048745089577065;0.2115484546282179;0.798984291203939;0.10369478821219076;0.21731740738207253;0.2019213257261825;0.3321455302287253;0.14809372567415943
+Trifluralin;0.01686905026209651;0.013965235722581164;0.012999006084922117;0.010820237981095727;0.01732643637884612;0.017876965026649132;0.01852312016270554;0.052703710067859816;0.05264306457654092;0.017915632168143267;0.08723516620031484;0.06161463160465126;0.027266699742774566;0.0012211554950554654;0.01120016404282176;0.005171890432205201;0.00949183334480342;0.012039007261727923;0.018849018103554955;0.01761201460871368;0.0072261036340677594;0.007041387557802996;0.01564876331251654;0.006261897695479126;0.015392914927167187;0.012215976512692623;0.05790806302993563;0.076913967241866;0.06846839407482452;0.0393077593045489;0.022507150552987763;0.008438364462299267;0.15047219578034834;0.033535800777938475;0.016948162268160722;0.1631248868335499;0.2543437484247164;0.12093013183502577;0.8060393514047588;0.013181746995908178;0.03345575618516527;0.02458887286422985;0.023592533199137056;0.0008377134244015423;0.025453059586344164;0.015342723790381676;0.017054652273610273;0.015735464450807805;0.016778907307156345;0.009358888941530188;0.021908483114522315;0.07285599346357124;0.022718316579285927;0.024024489178850448;0.008042929013670177;0.021337518027424573;0.015805304280815634;0.004517225996041032;0.02201711839825369;0.021503435731099658;0.03043528809377346;0.008302536477252093;0.0033837236326738473;0.0030909265071074558;0.01966457052947966;0.0055588193449518895;0.004815435486507428;0.014302060129066391;0.013116255716759935;0.013335147021834609;0.007670661456435926;0.013033462457160227;0.009223253313118043;0.011913972580980144;0.03768351632633492;0.017678248579316356;0.0037157642254257513;0.0008033241521728361;0.03794244980952109;0.035365182913089266;0.006191009470775002;0.005706898989245377;0.019075301719208293;0.009874059927541127;0.016944055243359298;0.014214666308924463;0.03454850246358216;0.03706535843893392;0.03266122804144046;0.011970107478669636;0.015555199374338332;0.011992921130570395;0.06091548039164577;0.009739374587469296;0.011320742529345425;0.005340905617265158;0.014571256544901226;0.020611271325924458;0.024451384527689052;0.016692808215048795;0.04003890157529711;0.09040389347570182;0.08915907755710292;0.11204241759930539;0.12027166560893746;0.005811117145706006;0.0034655564606373033;0.0035043161629055228;0.0035510551465593996;0.004024443730980464;0.003047563938684121;0.0028548145171209513;0.007537679554436436;0.005594759654112574;0.0034934132899178635;0.0008382247912356414;0.0004712188911127877;0.0017811562744767533;0.0011135491942407818;0.03680158911044536;0.013060137598916471;0.001906889350785937;0.00035893592087965883;0.006590596703634155;0.001257513761087248;0.004502137548854664;0.004671317738227445;0.03570362141822246;0.03643775015043826;0.03797017851686174;0.02095047611994718;0.11204416706110717;0.18043527171072904;0.31449904713882576;0.030266497272679157;0.024922038876525086;0.0920286299382567;0.3096661684909456;0.101685185526289;0.09125610372787663;0.3934879066425512;0.35137515373300454;0.11273016230825784;0.4551242499237566;0.169641664576277;0.05884833592749318;0.07505442981299809;0.021798611605933264;0.323538391429583;0.1955877944075619;0.05263203159097748;0.12081759021875994;0.679917746142919;0.06701219608329674;0.08514765759910793;0.2010013623518039;0.32115414729999864;0.07393672244993157;0.2545355683578505;0.01839498451701541;0.12305260990258961;0.08674504450440107;0.028158781839246826;0.02248330697478014;0.012251816816974006;0.0253275272601869;0.02806750674675796;0.01593327314138787;0.017182724435979204;0.07024126092554851;0.030379934451422303;0.06771277538804546;0.007233675847614429;0.013685867975918187;0.022462199563293036;0.0529805382152114;0.009596808163387151;0.010722550616277726;0.033410180706937576;0.011798805078140295;0.008988855691113197;0.006174524428005877;0.012283955120005746;0.007904467972876774;0.038122168944066046;0.06015121235156946;0.04340579874138801;0.0003667750125211657;0.007801322656198033;0.08579074496786321;0.0919373634317015;0.34431483234773563;0.11218212743450094;0.05343974352907468;0.09646668763736015;0.0226899681053604;0.022416814044623406;0.05073277186941707;0.29724146510339594;0.06815864700901048;0.050836030377268304;0.030555863496875103;0.045837256486729885;0.0378040740982806;0.029186529699759507;0.012708468880869442;0.1108309545799423;0.07864693190073697;0.018517088820512468;0.12390490394203992;0.02791435948532363;0.2074852992523607;0.05712262936597924;0.04233518885157286;0.033024999559016825;0.01721047798357036;0.07342990783263245;0.4645641191387716;0.057192724379072475;0.03362279678754058;0.12040672230363736;0.9999999999999979;0.0034418098338159057;0.0459183075601902;0.023338341546728477;0.03152484444375677;0.019962302578264122;0.00896822114686794;0.004018516122788703;0.041029719909776934;0.03187351484322441;0.04228838525101817;0.017883391252021628;0.0050775166556225985;0.06186310490194216;0.04188119706338523;0.005770779757028482;0.01465012513203311;0.012268956593486048;0.03449545046759056;0.053210120561179026;0.0514371543097552;0.05082426619733064;0.030900053332042383;0.045976161065684744;0.017720018448030863;0.016842849462790303;0.022026155557231752;0.055748505376518875;0.02802944504121029;0.021345440007312755;0.021318493932204863;0.01987812151088086;0.015680807600974428;0.021699570402359834;0.002914402744901461;0.010863159277813424;0.22811160556922763;0.05269074227682449;0.00493187432818255;0.0041223367458730125;0.019699525285392268;0.007936254048944151;0.009979982171856553;0.01167041427247649;0.12728965215585514;0.1039880181968278;0.05990371048272871;0.06084153031655457;0.09931789733605335;0.007417356941813614;0.08698038362156119;0.06766800382198226;0.05435153488543558;0.16817679312884112;0.24611769113211193;0.04423534784246119;0.000589288184424883;0.006013575550774655;0.05084524066736889;0.022051581982071553;0.21303675468330247;0.0041338392556013424;0.05827014880694655;0.013416613821690076;0.05815372084298063;0.03962519888845359;0.03942506432287543;0.0004978653039119259;0.03333869367734309;0.03826020465643962;0.011949724391124088;0.03451411735358864;0.02771331444326325;0.042220669648661044;0.00256028500626239;0.011240077154580584;0.17362550207970964;0.0343068030869116;0.0648071923895786;0.06137498518865358;0.04384146093393048;0.02019962484881972;0.024678495390724288;0.024140346666114344;0.004221083260735248;0.013561696019454079;0.016860827519142748;0.03608135910671681;0.048354064823385834;0.5906463884546178;0.06352655894227971;0.010975843558515956;0.012613074965473783;0.052904125219017495;0.04819635159173613;0.12477158569156814;0.29281744709278656;0.017017339517591223;0.04626954710684841;0.006299950319223063;0.02648820106615353;0.06997770217419708;0.03119266017993576;0.043472044332839264;0.03417644914959032;0.04388656582718237;0.01606953379689857;0.01854570816828646;0.15576330006100594;0.04525332648815213;0.01202660096403585;0.012989633358819665;0.011099131443459446;0.011505540687870104;0.012399634948174696;0.02439919012911174;0.017490161314330743;0.03838231317916387;0.04531860056991215;0.051141833207009886;0.05222646680392491;0.421231815149749;0.0059516789269156885;0.004950805915496103;0.03688884745537054;0.03571516429665771;0.01694229855174356;0.015910523813148027;0.03619112109016089;0.06359069299987133;0.05044913929204614;0.027598983072834683;0.07881833761925053;0.221451219912329;0.02515251151250009;0.0022353766644664552;0.0384637061793243;0.015131092767868245;0.03602612823002095;0.0497093934782897;0.09526969734769815;0.12889061790632067;0.06037849864125937;0.07035858692688482;0.045877877784337606;0.012947520085652203;0.009102512390195818;0.01408825273052193;0.09880906248647381;0.11828667716827902;0.04707268415317217;0.07835013078048855;0.14432690877751217;0.055061640555906545;0.05585417907280078;0.03739413612869029;0.0325157833106827;0.11727659994359518;0.0859951162228443;0.03587882523076367;0.7663526459976552;0.11208395014627191;0.06704216927853984;0.10199516662045226;0.0852574772349589
+2,2',3,4,4',5',6-Heptabromodiphenyl ether;0.04563985044416301;0.04419572598269495;0.03237632492003533;0.04567490763872813;0.04376335459911102;0.045957371351402765;0.10801998204823351;0.0482900136163192;0.05045307526361499;0.048917141941544326;0.02688433843579878;0.041229355647762936;0.12044310723816715;0.04979286658622625;0.04807256522209884;0.057276646490837385;0.03747488324366414;0.043165611734721145;0.0460523682800099;0.04286973727108414;0.04680288748530092;0.04973865566929844;0.050303196508682375;0.042143624500579846;0.0441253956524367;0.025154296417872913;0.06191343992145543;0.022751764787704763;0.01306769617840414;0.03594482646835222;0.011021106252817174;0.0989424787591854;0.02201368943372255;0.10907985970474476;0.0441282231448813;0.04029715294948957;0.01929162057817891;0.008332086865666213;0.001476560508590045;0.04765896185199036;0.03778718634188815;0.04464063900058054;0.0341705934036335;0.1503193820192636;0.04426941085271668;0.032522608724422836;0.034113035905908876;0.03685455599984875;0.027179322211886736;0.05514181672976679;0.11122989296607404;0.011048844631749719;0.002536235668908583;0.1241054634403225;0.03567392457936277;0.03842406882770606;0.030108943672678648;0.030832173286344813;0.028734104880050907;0.014311353714221386;0.04154093040363573;0.029399189737653316;0.038251836709981266;0.03517074390127069;0.03331511064968774;0.02555289635726635;0.03066759643943648;0.029396423915680706;0.03144954324235896;0.02885643444627599;0.020488784931581103;0.03745247249515906;0.21505585508934943;0.03630520177579289;0.01995091185938104;0.03715967248739776;0.010217261104732247;0.019770833946484146;0.00011791332390326691;0.009721570364164532;0.13953588297996025;0.12894813895448246;0.029876011187360555;0.02953396308438593;0.005656525704119414;0.0042639439670154955;0.021176163943409564;0.011200396138210012;0.011518433811646965;0.05308366062189206;0.0013176147997032734;0.001457386565653435;0.025105759828422156;0.0013971923226774093;0.0026664958891208707;0.08236227725890749;0.03907874814837593;0.01690724614455013;0.007679907494481028;0.00678619364619042;0.017844636905561102;0.006430443636384392;0.00815252611422367;0.004871103625479849;0.007021499270691709;0.05872631700300699;0.06583805239728872;0.0780565284291966;0.08198875343030151;0.04870530698403392;0.059202165147070565;0.055996527656850016;0.05290798382079936;0.04314512747642151;0.08744122467849877;0.36424676730434524;0.3706095508595521;0.3259724175006234;0.1965491449669957;0.5613731348896426;0.24321257616000821;0.36789696257885296;0.12444394607256806;0.08379903744604296;0.05465618999419152;0.06334490569656351;0.038217811681747614;0.06896224611172824;0.009357638135521809;0.011134091255288182;0.08350060030380066;0.006586418742699738;0.10707716635980631;0.05104670513874963;0.029913850334107817;0.008136330328091884;0.006134882269941741;0.009817867269841048;0.034225916775294934;0.03450780896013689;0.08263843881722747;0.03822222380431058;0.024561590599146206;0.05519579186605737;0.0809806965756862;0.005724109998250437;0.014983185237756663;0.009273001029633382;0.05050601802724822;0.03033882308320172;0.011288195919011763;0.038348577874491696;0.05696465828067392;0.04574972134511803;0.05379942767753236;0.060726555710104886;0.012677926426590741;0.004207728432424571;0.0061394269209750114;0.023329074182973055;0.0064643342936332995;0.049579568770163465;0.05222133692172812;0.036948338698026766;0.09824092549761236;0.05565418850471812;0.066966437476395;0.06276295404293436;0.06588552640444253;0.06113240074343404;0.0395683903067281;0.08278635583827487;0.0;0.02957380374390866;0.09811723505963932;0.008900738375509091;0.0029324344275761145;0.010271415794258857;0.021116097757681734;0.09133765985625464;0.09670141651786157;0.005824189447357488;0.019302941253669686;0.051673443663280534;0.022987638139192638;0.027120340141024983;0.0032444945169562704;0.0;0.11005752659329673;0.0450173546501277;0.04019422489048671;0.029279806318405894;0.01253641538178932;0.02138764991225975;0.034781165582080796;0.10092867064895517;0.10154052421637534;0.05542128849393302;0.039444827004438326;0.025666845109806442;0.06572458590009984;0.030829570216124275;0.05070103118591869;0.03775414550016132;0.058989679696932244;0.03575664781954946;0.036194281853756144;0.019566323513671158;0.0181052403649478;0.010659698714690137;0.028767302580636155;0.030653650994549256;0.02134329324317954;0.028500318448959817;0.02992932994673607;0.018547683644451914;0.038738602715831495;0.013500299695524094;0.0018081102302133119;0.012860100122240068;0.00630447611330931;0.0034418098338159057;1.0;0.03355133917269956;0.03132788281459598;0.0361673510456713;0.04149264587489017;0.032603650639969874;0.04058042045601824;0.043090077240851565;0.04246339418534726;0.041045289727214884;0.03612519527780687;0.032754162259946096;0.042181193348376174;0.028780398084511365;0.03641026544639966;0.06351794336401667;0.04883466011868794;0.028352648662439688;0.010222331589845672;0.016191104617042255;0.009646046135877544;0.01752696144477035;0.050035851864468496;0.0;0.005748650693910477;0.0024027965321809716;0.006641914857558852;0.02957231310932714;0.010601261723493167;0.010561400158553929;0.02237586994892611;0.03836458016508578;0.025096287584409047;0.041346231039500005;0.04455944289626368;0.05370753731496454;0.007879992644929317;0.007003916710564542;0.03388732307357509;0.020608873223908152;0.007393566436325298;0.001560793789822658;0.004472626663439173;0.005619809550047382;0.10908532829137765;0.03580974672508007;0.03509863841770851;0.00595927312615727;0.015312397049929859;0.0014732556014701917;0.00746524315230865;0.011474136985298889;0.005848136390665373;0.012652471766901749;0.09268084041344199;0.00469061967562844;0.008191924848566385;0.04546317186303919;0.002057826414646479;0.018521820750114826;0.034264347942253644;0.030527770673252796;0.0011921819713146908;0.003202155313635448;0.01211661097453557;0.07100795857610322;0.0;0.005658663899730999;0.0088307465705741;0.014065541214372642;0.005265954246530411;0.03505688306393832;0.0078044421966087215;0.11736323233057075;0.00870139029185812;0.007883325071549164;0.0008967533836447083;0.010205194870848899;0.0019006806464196984;0.007560341191650591;0.016769903413913708;0.004928361379912292;0.11473842169502911;0.01686036968000755;0.009596681431064714;0.010886993644701443;0.004830447782441653;0.020629525099853305;0.004262688368518341;0.0006692365633093953;0.0;0.0002639151773264231;0.008681720321939894;0.015968168028021153;0.02595767342991406;0.002025287799835282;0.032748505784579385;0.012659989002822404;0.040292362400642906;0.008570487042069978;0.007311207375512879;0.07224533863019722;0.027057919612125943;0.0014259096972246204;0.00938283493712128;0.013647368057246716;0.006217847959963979;0.003329530725221109;0.0020661228736410537;0.02308203641122739;0.054755807349802066;0.05451857732483312;0.010462942693942061;0.006326394730815365;0.06271499594311261;0.0019224792058549418;0.018963835953260986;0.029417430990571113;0.03301952901170597;0.03623333311727097;0.004537954496404408;0.0003182452549882195;0.13284699958666196;0.0696428936066438;0.06009271697826242;0.02166277148533487;0.018001566718778207;0.001085740627802792;0.016217091116544347;0.0033003366488355526;0.0032218323786084176;0.01597415349571982;0.047744347517743285;0.03498874187480373;0.0064904666437182275;0.009721393236652099;0.01605536812029081;0.025783191224737365;0.03628863397529109;0.00218916427326791;0.001626313049246679;0.0021925987077531573;0.0012162773070307712;0.005907430998290815;0.0027144894032737872;0.011348761639995883;0.014348030322381185;0.010720548848485263;0.008290132151204476;0.007223130877661214;0.012980419407905413;0.04148061157741554;0.0006568402383771876;0.0016814350464901529;0.01131122085875973;0.002604673425208572;0.011207978485680883;0.011752838486563676;0.004633936615387043;0.05279165609825575;0.030752451946260993;0.02791163179635817;0.043233830437791256;0.038518437729193764
+2-Chlorobiphenyl;0.7513327810198344;0.7569741895053612;0.7766801383552261;0.8480539530670494;0.8388764715060534;0.8125145235719518;0.7495307462089127;0.7728204997303613;0.7699914767719821;0.8072273141564624;0.32871558558632064;0.7864478458737367;0.4592054058079686;0.7683376727358207;0.7580102471036456;0.7241814862308145;0.7880053845662869;0.7771921137765753;0.7523188560113571;0.7702553249726676;0.7725713360349716;0.76609108978855;0.7661393337762401;0.7862983257296502;0.7795834225082615;0.010501307920138517;0.4057603198691126;0.25743568799659283;0.1963072404767539;0.20703613022509215;0.13694994380301864;0.3235471481802435;0.3539424677047376;0.6651796895941285;0.6521390786543833;0.7607905166530288;0.316126319023755;0.13269667178059474;0.011444210508659392;0.6246813696293355;0.2457680545660246;0.6785369454151591;0.17717866238270452;0.006076635083702941;0.017025820268371784;0.0055578500960776975;0.0062785498977951095;0.005624074395055403;0.006110855002062055;0.5578651724721966;0.4622297839970493;0.16555084402764964;0.019009093535170246;0.009986811753763723;0.45387431222219377;0.6889454557734991;0.4064008051659495;0.5098678744701379;0.37126810727559056;0.005121439118428212;0.29499500476372614;0.4890364004751886;0.5808593801043571;0.5755016202885197;0.39666097491902896;0.48632648866797706;0.506077550445649;0.3904321336755705;0.3839299919980526;0.38589556409067516;0.3743777661085901;0.29061626881504754;0.02304065853820798;0.026234066404586538;0.012089699020630748;0.013645950102374984;0.006164970508976807;0.0028551140701224818;0.03140046868336029;0.1160411283314629;0.05760499650827077;0.05067744881988098;0.08716427920765367;0.08525615003563476;0.0720562183377862;0.021350546998367363;0.13288376570251895;0.08888803049716223;0.03564518618405798;0.16736208699170874;0.0654904707438646;0.003650638397118958;0.018565306532908714;0.05333003395796395;0.05789362620853631;0.03883505893050915;0.016256892293648625;0.07970011455440264;0.09519074356284181;0.05039718973113719;0.1107716488036143;0.0274617551869174;0.022150301623220906;0.033335761356906336;0.04767852006422474;0.6668533910295752;0.5519208543798877;0.5927674383195146;0.5951104489039544;0.7037074025089256;0.6912691527587923;0.65443646944641;0.6716365393077738;0.666091210889659;0.6893116350107733;0.14046124775877533;0.09089483493600796;0.08956928358602977;0.5182131801506547;0.05518722157939874;0.038111442912572326;0.11140384598049477;0.5160301806845128;0.027698469102949874;0.010005889677187794;0.004794280050487473;0.0021269572842959085;0.028453342368085614;0.03108212085438623;0.020619183102590272;0.033144395518888155;0.015690219532472204;0.14581588314247335;0.05385008372126078;0.7964547228697965;0.03605707353405907;0.13403332608182664;0.04139931188939573;0.5719499490474683;0.6396352916058452;0.29159901952976114;0.5402129239642641;0.08589825926789649;0.20707160546206596;0.4192047824989008;0.05381010732356242;0.025122480170500682;0.02909692368526618;0.06311363107760208;0.08572237145089523;0.35926260331714227;0.05407401081847095;0.02981196205569578;0.006129306998906526;0.4958574412138867;0.2853769935764895;0.3187027911991147;0.12150418925663233;0.1490319747834037;0.013622404915790415;0.16621121521263937;0.05940207017839983;0.008903001365263345;0.05794442736015707;0.20069622313740923;0.07819760261654056;0.043119529403271295;0.21778766959282628;0.2199545566074319;0.03685025049683607;0.05441971122431431;0.10556596776769316;0.04364661737216438;0.022559359167484416;0.010958972979342094;0.104986400922469;0.01797765259422212;0.03664421079328677;0.29804404725502065;0.6175045862246072;0.601322167559482;0.02839400813597497;0.2793379971519281;0.7081171889710768;0.06014178793769204;0.049059936252546565;0.027554087937529167;0.016342714852537143;0.4530530328592389;0.5279846262422437;0.6003058246786313;0.5835628059023785;0.27761230608369064;0.5853241600396789;0.5622337318644487;0.5240215583289295;0.509370859175316;0.6159539445685661;0.444722931657537;0.35784131937220587;0.6806695180590072;0.38881605814216774;0.5831523348399007;0.561145061270622;0.10429442830551443;0.7921678470033272;0.552408717596356;0.2275686212142942;0.021533888790950584;0.4273557131490831;0.03662321878579874;0.47496039748893576;0.2379425174872594;0.20163776437824918;0.03400028930754388;0.33957144169176284;0.4018130031053271;0.04797147234384242;0.0028755357796895298;0.024820642476638288;0.09082611687558467;0.0459183075601902;0.03355133917269956;1.0;0.9487486231904573;0.5741524483572156;0.6971037204181503;0.5143135731230248;0.6132566288691609;0.3002388362773988;0.3092291982434032;0.2875943913500878;0.4499492898192076;0.523018358876918;0.18991473484942953;0.3623303299315804;0.33506038339808114;0.341689150555785;0.4003467704776207;0.36410213062975216;0.17717888751341268;0.08282683175961975;0.16698213439266751;0.03513708104466256;0.09659457596904167;0.00891245153007879;0.016523589034251714;0.026420716076577453;0.057741543179775895;0.029570195506713935;0.20811807746805205;0.2101838170610073;0.025553644827766377;0.687048732285707;0.05298093016464208;0.06730894797934325;0.016228073253592056;0.4094530500141035;0.10652374943520214;0.14953895550778415;0.006401266995726121;0.19271819404976193;0.05335901603271048;0.0014531410010151442;0.10292673351251198;0.0030196531293518875;0.34089112980885933;0.40910927764793104;0.4583630110508407;0.13388486880354306;0.019792086931873135;0.15132268542808272;0.44561927067117674;0.019050843600879462;0.047779561244285264;0.3529137429632957;0.011342700730975253;0.014286228581819141;0.010463493467981633;0.03681173343202045;0.0018548394633377482;0.17524852238736924;0.006420275054633972;0.6101352108016395;0.02130290386006363;0.011727953058396651;0.004206535867527515;0.3934878699376676;0.0009914719555764017;0.021077518341655443;0.0942241314110404;0.1890397444998522;0.08447937809678355;0.10707083428545401;0.0020766327264752646;0.1730687366687924;0.14688490776039181;0.0863039406580021;0.22999124586245337;0.014107099683933845;0.019813906467887173;0.004611050511547837;0.27401496628008465;0.06566723571623115;0.2071370055801942;0.016001049987547276;0.25282329064979747;0.04435926747339357;0.0728824120551843;0.1407035142985965;0.05817881620696416;0.0004943946310838085;0.004842448249875875;0.004835770977217925;0.10086265929269489;0.2683027767785128;0.7575079714248715;0.08002513048990434;0.1441861076542269;0.006472404478621818;0.06796777516473511;0.1440781525418903;0.04594662702202619;0.3196266254271868;0.1534144700601911;0.014164909182801999;0.0014154929602517483;0.11938071604442153;0.01409323573905042;0.027684373417063625;0.01765356782727151;0.4640414328213095;0.062310689719260424;0.055226373285847605;0.01449580676218849;0.19139894689904965;0.04184026111393852;0.025835809111707124;0.5377383423092095;0.6794717730660766;0.7543934436951267;0.49298316032426853;0.12833229177149724;0.03145542978373045;0.0351436299233469;0.0007823228490493641;0.0011763984861541995;0.01572058383244414;0.01478436504905784;0.014356467253785334;0.0012108407105258167;0.001449534238957652;0.01559265559533162;0.054074102650246106;0.09889831805761204;0.13054777386768648;0.0018064813479091747;0.07278948132374201;0.011632732911510837;0.024834978090559345;0.15772542120746538;0.03470970162443431;0.04459931417230165;0.01398628991701911;0.009097062241211649;0.02622421593223391;0.01920843599791918;0.012521815445468988;0.019227192792797342;0.07599350926949695;0.07504141086573354;0.0506257301440348;0.09454945617253756;0.7378998332260074;0.010889924156277778;0.013260674918745245;0.04668039184301423;0.027928447731599474;0.19800518622538196;0.17285468806809462;0.08267942092533102;0.0009980964999407125;0.6516903422850507;0.6639705573547117;0.152647996208716;0.1694183013806351
+2,3-Dichlorobiphenyl;0.6662317982425312;0.6756910217799165;0.6825708917130109;0.7604354611472942;0.7490634363331108;0.716551067515675;0.5976283643193688;0.6811283572271386;0.6784554794352569;0.7231371745234119;0.2726978151515859;0.7186154553802859;0.4026116061041748;0.7855555354551111;0.7155696521683201;0.6988387310893275;0.7110380104182848;0.698450353037056;0.675215346189743;0.6941904069006319;0.6824073127168597;0.680934252170933;0.6902286805878048;0.6969399735256575;0.6965849576209544;0.013980154373080799;0.35189584716741035;0.23237194183226637;0.17423979969890915;0.18289873009850352;0.1211433546022024;0.48309048390051457;0.3715304443969265;0.5235902869126909;0.8570906050173533;0.7426951347001256;0.2647974889146671;0.13294199322651193;0.03436815909163945;0.7327217349111254;0.4346327092748295;0.967860352985188;0.3473291002667501;0.0012017956511416496;0.02532210418871431;0.01776199087418865;0.021036230658054704;0.019419193752509153;0.019058599395086365;0.7124407164827209;0.6295028323180177;0.5701769470628641;0.023196018527145403;0.010592724555427403;0.5887076849600436;0.9650088961051814;0.7104482324810765;0.7838547226037884;0.6402477617035527;0.02030727638573879;0.5257933886371906;0.8057679531104308;0.8817683689729021;0.884487631156837;0.6843034173849888;0.7690194730951412;0.7724861566629094;0.6555061032805315;0.6534618961605135;0.6493013244642821;0.6550603750690751;0.523664427874756;0.024989533642620482;0.028770206037589265;0.015580849640397292;0.015625937505828354;0.009599282221497467;0.007984792324262543;0.023945624335695852;0.10470583872009517;0.042507089270145806;0.03546109589993257;0.08610307127525454;0.08616921524110592;0.07468960212251345;0.027184237711996472;0.14368694775079713;0.09797924667364541;0.05968276353903219;0.04961626437391758;0.05937766063625594;0.001538060152409257;0.008679424498767236;0.02861696690192743;0.03156363958391223;0.04631351349818193;0.023052416254527194;0.06585004051349402;0.07705481491152888;0.024412963534971605;0.09851669428809533;0.03070438211042148;0.02829120351973006;0.04099609845507316;0.052234119431213435;0.7078672292593869;0.5510251013592578;0.613069797740925;0.6227801536135145;0.7400641275264903;0.7512278234018935;0.73390246291997;0.6741325020726948;0.6506441474565301;0.7066734658485399;0.09666352278991734;0.08762085141907551;0.08513390652682987;0.5408968790412865;0.19739684525956394;0.05890883854200945;0.10643406749052148;0.5495297587564224;0.019407042689565196;0.010165256181629565;0.004997121697779412;0.0031872658623886586;0.017991320907486678;0.01790075491182059;0.013567095983526317;0.035176630133892745;0.003395200105196988;0.1183899714666318;0.0370472353910648;0.703869400939133;0.008410500245833688;0.03613038158311735;0.003313700453893329;0.5068571308370342;0.5731505926702967;0.23271910613485328;0.47316845342855973;0.08024956858149691;0.17887254365183625;0.36722322602257296;0.049079665274748094;0.04906573440020151;0.033209182568076145;0.07785648866368343;0.12383539744926951;0.31722250804174673;0.07529095951669136;0.03563516347184572;0.005572087392098458;0.4433905256691501;0.25507435625144836;0.2823545875723419;0.10827553834570612;0.1370330256559877;0.012703705864566138;0.14348523464982915;0.15768885117139675;0.013027995256698703;0.04913212079032416;0.07687877269443454;0.03996903353063345;0.028984670358394173;0.05985429347533692;0.07897432299396116;0.028574710329567682;0.1474621798063314;0.17442151102889583;0.053817934236676315;0.011304125044382057;0.010343446279052447;0.09662384138021804;0.030759765504059768;0.038755277915788325;0.2598382339985974;0.5419359815825101;0.5253361735420583;0.01691831969971087;0.24775599469805007;0.629531242437785;0.04682087419257821;0.0669965733827377;0.04274460100432417;0.030527605588209356;0.3954817549474763;0.4735674028548316;0.5380348485535255;0.5192616441165063;0.26074238390695015;0.5142949828246773;0.5749165806467191;0.4559353803446688;0.4428206770728512;0.5355338991745577;0.43240104843459687;0.3151585885738198;0.5929343545438094;0.34406896877637394;0.504597761751774;0.510238695788575;0.10522227555206715;0.6996312131774455;0.4964054377114055;0.20144912176897237;0.00317539476406436;0.08503466374453761;0.026557499923360317;0.4991512409964914;0.24484266841028435;0.22675483675191418;0.013825545484660738;0.3265922050427309;0.36964096825449866;0.04223357402321771;0.007303664831897674;0.020727233278481944;0.09972454113411153;0.023338341546728477;0.03132788281459598;0.9487486231904573;1.0;0.9040395424652786;0.9590964343283906;0.7990509519150802;0.8652422186299961;0.5228035151946651;0.5358332348102794;0.5052905700202505;0.7188261407993162;0.7762615150408452;0.34032309775743386;0.5939378852713351;0.4078332904890203;0.41888688326744167;0.48779770473995177;0.6103425188127595;0.15416565329836676;0.09481205792408524;0.18915612829121;0.027098954014088968;0.07010218413356153;0.0005421699879031888;0.014787868894665736;0.026335148672996606;0.036419240574694416;0.0605915482585064;0.1935815559628196;0.19532526210717402;0.023933946514816458;0.6373500188239294;0.04643598579549254;0.015135631842664433;0.015345902859720052;0.36314306220325104;0.0647514696169526;0.13878010619641584;0.011415843312131226;0.22590167155920327;0.05787543104815662;0.0018351456048643355;0.11374356155507975;0.038949274177049915;0.3551671413584408;0.43008193771440956;0.4145817277104829;0.24619221323352664;0.10323832410197119;0.16890773649612154;0.38052675493823646;0.07138373948224935;0.049024135041325634;0.31858054501621486;0.01531209653924752;0.034007972975448865;0.009710137505493557;0.05972261973959743;0.02385544788668141;0.20505235671466882;0.011095047609476943;0.5530854284915548;0.021007146606868466;0.010457733221400046;0.0381860159671908;0.3838789220783833;0.0026368398334183922;0.04088499754434258;0.10461154257088755;0.14158303293229146;0.07114044295051968;0.10828327363605171;0.007856440912989118;0.14550962105060888;0.1266497195209677;0.048570477098632735;0.24650366296555748;0.042009851289129284;0.004413119283593952;0.00622345373144972;0.22850920464804078;0.0609196162756729;0.17489422356701065;0.02072343005146068;0.6073182322109513;0.012342045989222325;0.08244687656016823;0.04805796637397793;0.04589935720639995;0.030667450666486205;0.003984797751644526;0.0044826947075823735;0.08969450678798715;0.25493910580157925;0.6270726475159739;0.06493137011786793;0.11434902663368524;0.011398897932110364;0.02344321365831111;0.1504711697086895;0.02745577201868547;0.28786822458355776;0.15181047832870373;0.04728847548545874;0.010095617431733999;0.1227408883858017;0.005989297303638762;0.029991376120488425;0.016636038409344234;0.42206947678042916;0.05927933589825657;0.052868501652913;0.015958848638534966;0.16722185328510894;0.0440950938642902;0.024447857214284763;0.4991580790443307;0.6085367807589667;0.6788846148935065;0.4249108897817256;0.12366577691199335;0.029298922497921414;0.03261059784538318;0.0037929815652881786;0.00696454565163684;0.6285912335633757;0.6987708006215859;0.020548367006355393;0.009285352724586898;0.0018688445147737073;0.016736683521618636;0.04615269438053484;0.09227696613475102;0.11736932093588608;0.0007207430491695219;0.09446720493390712;0.01057164338515104;0.006221121982325401;0.14119835298836866;0.02770203288481359;0.018748615732632617;0.011875249554812733;0.002409685721331024;0.020637596218557708;0.013369621878420416;0.014403264727688601;0.02247234836473907;0.05773910320620435;0.06774852034017391;0.056705957608450194;0.08374105766464673;0.6436774801849894;0.009456194387120458;0.011631996800567665;0.044904695642807455;0.028850184757492934;0.185649406731661;0.15167287824254638;0.0785832965980081;0.0002656241009864315;0.5723149942823259;0.5844186529889008;0.1404859549177433;0.15289185256222845
+2,2',5-Trichlorobiphenyl;0.4384856293521075;0.4354238018560809;0.44377389788821575;0.4505438124172957;0.45423274376029454;0.48852116283818425;0.2532265223361759;0.4423569105491887;0.4405692067158407;0.4479177121719345;0.18990221726954107;0.4907071851391764;0.26721821819494945;0.45868196874898487;0.4400131274116668;0.42091836137782396;0.4545580238281074;0.44770128417875577;0.43595694625813786;0.4455530901828436;0.4414682647480949;0.44363147258112;0.4561634383325282;0.4517134600087791;0.46068561809985986;0.021610268783916607;0.20752372074621903;0.16483260215347922;0.1112192613911785;0.12688056772770462;0.06615076016067396;0.4923305495128695;0.28613681187910267;0.3479539809849312;0.8471453534721164;0.4601682575921007;0.16929703330193507;0.0893777256875766;0.007616575506139934;0.6196376675496692;0.6210994512094303;0.9287594332388482;0.44958467168157173;0.006113688770012638;0.08016260204643685;0.0630005667309253;0.06612045462703804;0.06657639546069212;0.05670639447632666;0.6827777955082841;0.6788754962559944;0.7525220658531596;0.007106192460003357;0.03597928177526057;0.577916312377587;0.8949755677386353;0.8450526909856656;0.8055037992572927;0.7728555253287053;0.025316043969682758;0.6755127630151262;0.9618099529886602;0.9013910218064431;0.9208096270649639;0.8600051089290747;0.8118994177647874;0.7982472164037435;0.7449788048975867;0.7457404903469005;0.7372321964005178;0.7286718643157214;0.6256950315538347;0.09294221334622288;0.042520843983652634;0.027723935677640373;0.02665384257888433;0.10938695526541514;0.1062684130588561;0.011027054707461615;0.018143279764658286;0.04369991458879299;0.043100583584421925;0.028433309559807638;0.029370123097142584;0.0212961404662661;0.010845928284189937;0.039804644070222495;0.04484279024628397;0.03657546464892751;0.03289968377043499;0.0054077609088668014;0.0019064943420285534;0.014542197668662816;0.005013193709206309;0.007414695201557606;0.06299069940524417;0.036975472030957406;0.0306783978511311;0.01456919183509459;0.022486381657310348;0.03699845859884748;0.02569772303021304;0.024949377145434617;0.03413003759232332;0.0354945269839009;0.5862896349783586;0.4284168235528086;0.4802894495406355;0.48249901943934337;0.5725941180389789;0.5979668899612364;0.6015415474606565;0.4981544666564863;0.50993095647737;0.5643676492794566;0.0793306258207024;0.0755016896127999;0.09791565994490457;0.4156212647989768;0.266021400693435;0.04234800346610774;0.08807033390102507;0.4211533039137385;0.0213878289764681;0.004900222099527207;0.012649286632473205;0.009208981203866465;0.05300038292311547;0.06086903093855291;0.03985520590603774;0.06268470723242729;0.010310661875468656;0.07552348131910892;0.06312040452822522;0.4520693532428376;0.01921563834288422;0.019810994333724748;0.01227967009227094;0.3976987751154844;0.4393496216507085;0.1920928561592491;0.3166240273820039;0.06716266417061284;0.12666335663694103;0.29518012017241807;0.023686080767979876;0.01824783150805106;0.01392322865699095;0.060762232015696;0.1285181368409775;0.20417733114438966;0.09432186386895311;0.04431588031175673;0.009197306512218463;0.29803057779259867;0.19655006996135557;0.1823728664379383;0.05835118118234971;0.09966835055461616;0.011733704727879973;0.08624640307538525;0.21231608603421445;0.013559334650468708;0.07261472996554869;0.2149826842674384;0.05926751633652405;0.05992950870378196;0.25115852739469724;0.262413169372933;0.10893970054460499;0.24416468621753065;0.12152238835277948;0.012117507615366173;0.01652904952730823;0.03332852610021517;0.05739866045839652;0.04111865522279421;0.0450274299245331;0.16780729356691085;0.3480459339231084;0.34027348859384376;0.004287638492506924;0.1616834264814025;0.4102669642759564;0.03479868223802679;0.1129735160496489;0.060927683580840664;0.039609124542078426;0.25240637934483856;0.3224138477889275;0.3682829577475092;0.35766808843759457;0.1732687320909354;0.3336008792951575;0.41347195340519094;0.2936900953248796;0.28507961347176675;0.30541858881250783;0.24433723518324293;0.1802593180539665;0.33251260550203593;0.19108268812517196;0.2758851305624435;0.3206096550116728;0.13401968049076424;0.45285050026023854;0.39124994705110366;0.09409046326506008;0.0038085998088056095;0.14413322712465673;0.22048416537509394;0.3500830026103169;0.18225118276916033;0.1932816233498442;0.07862874547043561;0.2316485029636102;0.2578617975156105;0.02182993210150706;0.04597103838677979;0.044061970391228104;0.08025416431772991;0.03152484444375677;0.0361673510456713;0.5741524483572156;0.9040395424652786;1.0;0.8829938246160881;0.9611991255391358;0.844960778577482;0.6774724428180948;0.671438794103361;0.6702173296006428;0.8108644106541518;0.7906665767495384;0.4751296671424685;0.771932901399349;0.40295684297229956;0.3839742243137337;0.4567333389956407;0.7681227131032565;0.1245442282457111;0.10410229417546986;0.18175638819899032;0.04769561541781402;0.1002258214013261;0.0;0.009224578619846413;0.027080372520934457;0.028490647468775377;0.06968735003356272;0.11936786042522257;0.12128555939558402;0.02724026423294612;0.4462080860945314;0.07668042863966107;0.010066959412078974;0.012892258167864877;0.2532655727378034;0.014512355226416144;0.08691225538883053;0.018439408244805493;0.1892819067186985;0.07009674207786312;0.0023319217199278546;0.11419374940492846;0.035255681835624886;0.3199380476654112;0.3342997515021885;0.28294930579678934;0.08615795766304207;0.11644805930133278;0.10068396554599263;0.1382855243406071;0.03391097528521716;0.028759568867112454;0.19637645820804742;0.01384211633028436;0.04599134605297034;0.014833138298407334;0.08700977204394572;0.19909742229578925;0.15922413335082347;0.018524706138295786;0.37026051387915193;0.015942999726473197;0.01112947540178818;0.12558888100742027;0.3161611895001035;0.0007818334820418784;0.041254173717141095;0.11279412488928323;0.2005081801559997;0.0458634536337092;0.024209872123239655;0.0010004357610405984;0.09343588891220696;0.08226448506057324;0.02566197608627277;0.10546079564587955;0.06888273510634561;0.03993605766644009;0.010255618655746949;0.1495872030398998;0.048367577862533144;0.11294918963345231;0.036558462037079215;0.7702719617928238;0.027390750848838956;0.12355717627722389;0.21466555159169973;0.03151421793510773;0.07337686355524982;0.0009304394534036508;0.001572295340816499;0.06193200878511758;0.19199316970663918;0.4022753283353793;0.04236790997490616;0.07924137783160028;0.011830891276406704;0.010850756033876108;0.10403393570266173;0.02081718059765209;0.1911048961062122;0.11299958317764486;0.015927669168554752;0.014959852956344085;0.08282698939380917;0.009889358927781741;0.02118414181042362;0.016163761621632054;0.29290869754502674;0.045331987254621356;0.04209012786581593;0.004818274674632345;0.11667295486043963;0.06271130059412156;0.017421252603342673;0.3212303128968128;0.40382819959784794;0.445554560308096;0.5164186103474369;0.11301399959161794;0.0037560634314203387;0.04726343960960941;0.005010825495349359;0.019264462257118756;0.06776754111062304;0.07290798634817065;0.013974146109573295;0.0035925684106651277;0.00253756246959696;0.02361687203275188;0.07200546552662217;0.09764849205806235;0.11805612153292092;0.006853685947231638;0.042377842968264405;0.027716926684604543;0.08960115218049614;0.1413355238965211;0.019016552436362456;0.18881381594822735;0.04387794112341542;0.04275424314011575;0.018391064914227928;0.03136433837267987;0.036297889359141;0.03545552173231064;0.05676445516184065;0.16646466006641492;0.03168679464678693;0.06524656278557113;0.4175235536075681;0.006906359780592778;0.007668015790209141;0.09469263445862251;0.06588280368202026;0.11964793563372424;0.12183198120900086;0.04614549879674101;0.000462899172877458;0.4246548523935481;0.4596467227429169;0.11532422985812806;0.1323269305931256
+2,4',5-Trichlorobiphenyl;0.5978142587594828;0.5992844223899276;0.610567855976963;0.6117238935927861;0.6174587090755561;0.6409428171265258;0.33335842878447347;0.6097409960489747;0.6078786626975069;0.6176272870856901;0.23445850442186703;0.6526500311564991;0.36334711841745554;0.6075856500800545;0.6030004169836152;0.5730401832912474;0.6230936821199975;0.6159643749524889;0.5967111736655258;0.6097027960572973;0.605948409975784;0.6133638274154286;0.611423823371507;0.6244227626783667;0.6261429024880886;0.0106538200842287;0.2826896671572568;0.20436514410363119;0.14938324245476023;0.16032151787886592;0.08822677042086546;0.6543186320680997;0.3743215508142753;0.46717573761337944;0.8720262118288521;0.6117519797697013;0.20400923257727935;0.1238034664635731;0.008653365112446512;0.8450572018191601;0.5614089701125852;0.9878678699773807;0.4931768675009566;0.006625289366830485;0.02699068216116534;0.02284576580114208;0.025171394530311773;0.023113855514523583;0.024039694126867656;0.8590704057117678;0.7817408336540542;0.5623305057769198;0.0048419907705526035;0.025468642665630845;0.7492040994719918;0.9963292654514333;0.8506602430113652;0.913510767187961;0.7718349804303534;0.02152275830089437;0.6524695937910289;0.8676030250832956;0.9605285803053363;0.957206873260944;0.8241775896268901;0.8952662650173038;0.9072688526657958;0.799363771026272;0.7878474582027433;0.7950831594000397;0.8009506629176575;0.6764776123823881;0.06464303363026411;0.03212699841793447;0.019716311388064935;0.02096024555900634;0.0763829023986451;0.07554008062618013;0.007570328595454379;0.01622912072291293;0.032726897722421176;0.031847176970308276;0.0199733556746045;0.019776031543388452;0.015517047492909329;0.003646104784404274;0.02546799005341468;0.02938303779469379;0.017866010495874125;0.02159567261970315;0.0033472799316378176;0.001397018014639635;0.010670411016768836;0.004137681310579818;0.0062641611055454845;0.04899357979220359;0.025246442497309167;0.018397258274754958;0.011341106990343764;0.018635107876499774;0.02961114184804869;0.012946109238947994;0.017806634141935812;0.026632320547687535;0.028101019775046913;0.7621275551128325;0.5607552716950414;0.6398807208722854;0.6444156729043509;0.7691589236505265;0.8119099859352837;0.8149918468240337;0.6763097928226726;0.6828808752550487;0.7350951842722021;0.09858507684923382;0.0988203361230603;0.13030131070358236;0.5742560959664845;0.17604966330539648;0.048326285082759456;0.11904167474816083;0.5854295327003041;0.014048407488483;0.0031174097138007943;0.009555609874783787;0.004862607351215367;0.0348626903974268;0.039516411099800655;0.02621389082315705;0.045193149170602645;0.010035412739956687;0.10360438606362775;0.031038467414221695;0.6218096881230714;0.014155891294155473;0.02295555573241751;0.011060393075445615;0.4435338677502251;0.5089843931709295;0.2122360603085211;0.41068930586154034;0.07343400262266755;0.15840228517750093;0.3225626731361149;0.03212973565573806;0.016479383875860495;0.018147176586585743;0.06527762621858745;0.10761302434391767;0.28204305247719863;0.06991281633687044;0.03616341460241547;0.00509599701374374;0.388218008082022;0.22424262084844288;0.24236613654837114;0.0789845281832249;0.11406702845803067;0.009737240516606108;0.10653858083658953;0.18964757004153387;0.010824890317364009;0.040154357150298775;0.05609526238801583;0.04647217086641754;0.029664427305085825;0.03968482022916457;0.056508450944452594;0.10634586122884986;0.1578819105078163;0.10957741889869788;0.0054904791689404445;0.01228840616912568;0.02363155387966914;0.07915558007856671;0.029187347034534936;0.033284530694542847;0.22466770311297313;0.47957504127778106;0.46879516978305685;0.0031904627299583765;0.2217252774607649;0.565892330418537;0.02397579584037323;0.029527880731907295;0.04121854183184826;0.02782362765807879;0.3396564992796103;0.434739900859068;0.4881786481934432;0.4696532998195443;0.21479656740579783;0.458004575815705;0.5729921108096948;0.40582476722896377;0.39413306579781987;0.41688733219416435;0.31448037941360324;0.24020889389706218;0.45421309977318797;0.2585399078323963;0.3749168322094388;0.44159058555304875;0.11485104270712658;0.6259674946862401;0.434162600516018;0.10535937018257442;0.002572721119794579;0.08310453676864792;0.2820259704222459;0.45416424341277906;0.2324492682126393;0.20072887324546157;0.051544268814582045;0.31681316570764073;0.33161812380806477;0.02387708198010089;0.032552952168881176;0.030158019784216318;0.0966889704349849;0.019962302578264122;0.04149264587489017;0.6971037204181503;0.9590964343283906;0.8829938246160881;1.0;0.8707295975350997;0.9699378628775971;0.6512493179464468;0.670752053671898;0.6319346702758892;0.8134205971672627;0.9098377396514062;0.46325394509521683;0.7133481051438918;0.5225331468089989;0.5129699389831044;0.5982090042553007;0.7376267058601886;0.14978258830291777;0.0929349084974638;0.14574138282469815;0.04157048413678034;0.08230818389333414;0.0;0.003414038414731653;0.021472824354952385;0.025400738581593262;0.04989627318220488;0.15451655626829672;0.1569731090461645;0.020286275525581432;0.5903808600387903;0.03977407550175279;0.012961821567340928;0.013465214599455717;0.33853984395205133;0.011516849521791916;0.11794325494723748;0.013444320886936133;0.20246051673245996;0.052966000470545525;0.0018005961037256774;0.11656819031979898;0.024081903679875966;0.3832498309307737;0.46105987243665425;0.37031529419154174;0.10934542499156688;0.08705640719722767;0.0803866088541316;0.1709602938934598;0.01812504094631188;0.032090601022438915;0.25244160842252056;0.012375120669755836;0.033290472589427696;0.007038580624371281;0.06468952001866224;0.12217776370171092;0.1115306667161018;0.013501087126422734;0.4871371743776464;0.015334564300544225;0.009484036462730433;0.08600890969990056;0.38567517242999344;0.0006397427532501735;0.03646246651530479;0.0624520104848431;0.1325672371683248;0.06314892952068893;0.019686206502005296;0.0004341963441511236;0.12914474948447746;0.11345819649418759;0.021589575541076714;0.08164703803966744;0.054449306898866956;0.027399729854982093;0.0035189936976901285;0.1978419683599346;0.05410626430478603;0.15603309801788323;0.029965290376888228;0.4810144310342065;0.018733321647649293;0.07369515250861648;0.2264767566017053;0.036401233022654834;0.055568201087117054;0.0006840904076505928;0.0010564965340314303;0.08175573470017827;0.24486432627035953;0.5530909578091223;0.04686233518347453;0.10065029566543317;0.004959879754820157;0.01118820628991791;0.11877849186363545;0.021946733395694203;0.2599619606200087;0.13638964090557082;0.009345192932160367;0.017175719814823725;0.06076939977989768;0.00787930443852631;0.014865293041373902;0.010271569322062378;0.3768433221512072;0.0540745716417075;0.04901124505773729;0.0034205562031637154;0.1484258965922566;0.05232011210837421;0.02410057071306336;0.4399769330866876;0.5480605915854944;0.5963125442892382;0.457024023216139;0.11992237625733965;0.0027538028895607277;0.034043250664616394;0.0035595537837038622;0.014846621562027266;0.018776935552195728;0.01994753723969076;0.008398320551251906;0.002356910242942026;0.00155291082201214;0.016307467782275195;0.050376598399816334;0.09620963854055127;0.09192889957568928;0.009083542699525365;0.04118329879509671;0.019863239929370974;0.11325400726583287;0.131476697420044;0.01250429871343317;0.0411517472203466;0.050227555568691594;0.056978937515089104;0.013645225814916439;0.0280878410691572;0.02484998987135023;0.022769633087448192;0.04271681744309089;0.09803645248636951;0.0178931951369382;0.04233955759182327;0.576036585529106;0.009017807168256342;0.010314869335336829;0.08618482112639946;0.047209270934448676;0.1540648733301357;0.1407906747837972;0.05132289920233367;0.0004714708550810125;0.5321575872920251;0.5594372251858248;0.12841423410141228;0.14183815846488648
+2,2',3,5'-Tetrachlorobiphenyl;0.37382981691673345;0.3761750648654451;0.38029694023994565;0.379482324678011;0.3832225874784258;0.4048477634590616;0.20519180976424636;0.3773468504795051;0.3765193523743478;0.3826957569618357;0.17574799781896502;0.41533130459596873;0.22436052825949507;0.4064472486830421;0.37771644920235087;0.36232601081918553;0.3915608994229903;0.3866607129319857;0.3760999850781789;0.38425490296453585;0.3732315983073271;0.38083027117779517;0.38990019816289917;0.38679690341791506;0.3948926875814805;0.012196667018177143;0.17526329427945342;0.1449620055589904;0.09920753569212985;0.11438582081105717;0.061187496762647106;0.5422189300143982;0.2772118640662582;0.2835934655278318;0.8332086134748832;0.38676137863648097;0.14961464920074816;0.08209483361283139;0.00592484010419158;0.6469759914919385;0.7805036107281831;0.9070744713142788;0.570280013895032;0.006302091095468251;0.07272198691630224;0.05735829651647474;0.06775291242111633;0.06608703273280554;0.06300919200351159;0.7518004904837725;0.7884584959877057;0.7653348644417802;0.0038532695924351173;0.0180050376717792;0.6696401004093879;0.8800272055289117;0.955477271778348;0.8884049963052527;0.8189698128159982;0.39521878848671776;0.815317968279216;0.9928175228609687;0.9180506471386431;0.9401916142323223;0.9637888566791682;0.8990111428315692;0.8842806233835442;0.7758415152785859;0.7823524978103259;0.7728116783582313;0.7646388524405613;0.7628495345142008;0.05931862116918415;0.04224193898048553;0.038025870877326826;0.04914119343840982;0.046935285587685845;0.0500872848169613;0.0008792992370258667;0.009310285878534781;0.08026591564681791;0.07723663684614596;0.025290123567643995;0.02525050494891897;0.02113661962115008;0.012741295017351833;0.02030998025602736;0.020922536272906706;0.041018158050122336;0.059572347196938755;0.0021168306178778805;0.0067163084518718765;0.026617728819522693;0.059255705535174355;0.0623988757558532;0.07206492045083548;0.041150535440261926;0.02210135272851724;0.032627238711849714;0.03864290168674756;0.04496782646319102;0.029676458125197522;0.03169157905756134;0.023446674599190268;0.035580424490742106;0.5961677594266281;0.4237353296291819;0.4772227616507707;0.4714108820251415;0.5585389719614641;0.6008076914677838;0.6198539858347731;0.47302400989330445;0.54229933731417;0.5777368069698294;0.07566721603374603;0.07150847633328059;0.07782735643289314;0.404203684420074;0.28309779588109696;0.11140837599884104;0.08737802236831058;0.4178814921454458;0.01989633934306914;0.0060904374413619814;0.04414166433665196;0.03287781305207657;0.021349946627342624;0.020521194658624373;0.01633932242888418;0.07993470565973548;0.008008072208458419;0.06634441439324293;0.0718146351626793;0.38380995401662504;0.021951225217001435;0.02830344290804418;0.021829522365695173;0.37591331947829165;0.4164532450981318;0.1945560666778145;0.28842237460508113;0.1007200969222591;0.1328604499854665;0.31184422345438556;0.020988237941034996;0.01179203352963365;0.0171758241292453;0.037129168276985154;0.08055727767051449;0.17434698005737215;0.0553712596837626;0.04271284810527547;0.008812845739606038;0.281215431130558;0.18299713729703707;0.15360141678963476;0.05142674749712092;0.06916156762245376;0.013746464562462368;0.0701046919504207;0.25642691211303487;0.014828206578061862;0.08574229301284263;0.23164908023955444;0.0764453860974093;0.07623835104858731;0.2694318229417125;0.2775499901881158;0.08494221830101882;0.21785059051721825;0.11254301993916717;0.007804433786230326;0.02084122817896385;0.019403061039781174;0.04904754462769069;0.03593065978493231;0.040254803357514565;0.136074250953259;0.2960224873443888;0.28950591330022135;0.0;0.13977827972742093;0.3535828139978901;0.027744002582715883;0.054728758405971765;0.03902069475819683;0.03483500264631278;0.20814294806139644;0.2683021744910829;0.3137432872740719;0.3117403240709272;0.16521220565657993;0.2835046774111085;0.3935460316539566;0.2500811831392161;0.24261741771635062;0.26019061137829;0.21008070466728165;0.15421537075230884;0.28214563300643086;0.16207018505232207;0.23341274473148418;0.2769129145496099;0.17878130991372915;0.3881308412691209;0.36118951845559233;0.0757299416090578;0.004919034822398953;0.03607696662621748;0.08880165814304104;0.2996374884466202;0.17178846733709932;0.14645185050438206;0.09237342079143954;0.21184063220938595;0.23187549507229854;0.019908809727128;0.00925776888493614;0.020269940340293068;0.06454910286064927;0.00896822114686794;0.032603650639969874;0.5143135731230248;0.7990509519150802;0.9611991255391358;0.8707295975350997;1.0;0.8683175553176004;0.8172775613322267;0.8080214609218038;0.8113609769900276;0.958849679284792;0.8726460589463152;0.6154313772313311;0.8391454488642541;0.45797050015561624;0.4320027164100875;0.5189772928435927;0.8299509490390407;0.09953009668972546;0.08744253508274433;0.10020592726836336;0.04752772060912136;0.07964729608805043;0.0016140388134119753;0.04729843127380646;0.061618614916276813;0.05807299019573291;0.05144743442310502;0.10227301068873912;0.10389085874443435;0.10808935649516725;0.38681664294827617;0.10122800669454304;0.0103146487730591;0.020116338466176498;0.2265967607246422;0.012051181426357773;0.07474076930797345;0.031539973849112786;0.11398558895401491;0.1161015798605162;0.0024112828057585374;0.08923191777475781;0.03380305280649122;0.27587108980040026;0.3499694117077973;0.2699843750817648;0.06727409147662144;0.038219552915573704;0.025706080475614977;0.11313656739592505;0.032202153216423654;0.023301761328576635;0.15894198875133875;0.010349601938437267;0.0380326465105413;0.018801711482988773;0.07448704875687809;0.01494156708906245;0.13953840399333814;0.03153297001308024;0.329937968833306;0.018931087758597132;0.02221057228660925;0.03440447360783841;0.30678077727478265;0.0008128070916342249;0.023755258705172994;0.10466804575541964;0.2047781930792389;0.04365506883659202;0.01334335985579212;0.001354286673203312;0.0802936135604737;0.07150250434664027;0.02401877439233306;0.07008201776552132;0.014788335987323622;0.028809050614513578;0.011285561898282974;0.13200431977348717;0.02741461484907284;0.09774987998595588;0.016924690834726176;0.6768193063060786;0.04245898936431282;0.036749848680345976;0.02436788254515018;0.03153557914274008;0.003672457033459331;0.0010150011234023044;0.0017378790576472606;0.06247598418939585;0.17718068136968035;0.36655196422878844;0.031617064381293226;0.06570225081394465;0.013541611889128247;0.013880791411653666;0.08830200278661984;0.01645660844445242;0.16415461183197694;0.09448795213852756;0.008907024408314129;0.05179426282121967;0.04433162042264535;0.01961049155570259;0.04050572700512502;0.01850915953428621;0.28125389604504936;0.04552602897461009;0.042157690861048744;0.0039720136223888895;0.10614436575587478;0.14253576370186025;0.03741669012282205;0.27853837085693267;0.356740696545585;0.39283538320995376;0.5100727619562914;0.098169061112268;0.0007259558878522978;0.00473754188809203;0.04001867610748571;0.04530059737848638;0.2505897350319494;0.2792037819407231;0.01959933108023596;0.003516215450123718;0.0025919463326485085;0.010984648012077642;0.0319450512716284;0.051222966254883893;0.13320484685614228;0.002600000300982993;0.07117249818272259;0.054199921015916676;0.05932676007677248;0.13959110672820416;0.02856010674100836;0.204081678126959;0.05108263328909751;0.04173743084817923;0.013988756679079343;0.01522107094260571;0.042127666633396434;0.04227761408874206;0.039474892728882056;0.12098021253060585;0.062099733812832444;0.035473503878968374;0.3602055720253917;0.0052934566893258995;0.006464792308325797;0.03898556135153083;0.015810810204199346;0.09745062503304186;0.10424690887290947;0.0572577719238783;0.008925517407353931;0.3372227564738126;0.3271687843270528;0.10427354652385133;0.11892832652180535
+2,3',4,4'-Tetrachlorobiphenyl;0.5043507146861804;0.5061832727678827;0.5121537845132714;0.5083773947031613;0.5141495132293823;0.5266358429612347;0.27044710253805937;0.510950969912731;0.510150072465096;0.5184870644369886;0.19338635581106392;0.5466794076721215;0.3023106265768895;0.5274453853314499;0.5085842158655524;0.4851883532988573;0.5267312261706196;0.520790987861904;0.5050052340248794;0.5160387614196535;0.5057015521857139;0.517200733285878;0.5200831701848602;0.5250890938618936;0.5327495078499203;0.008968312432230627;0.23518138507648323;0.17251842508087456;0.1275706095784783;0.1406092898488011;0.07522222953786706;0.7354864150783608;0.3500383040918804;0.3829803324187952;0.8448098016121021;0.5083096043433746;0.17383093281644832;0.1098525757879278;0.0072271149043519846;0.8724890755131625;0.6746352777866563;0.9527010965212278;0.6176804891314952;0.004107733446788788;0.046297032962872034;0.03623017452570459;0.043200245858645556;0.041687017129036864;0.04002692914238307;0.9246642928603572;0.8772411776702025;0.5618395208891742;0.0031576631080533187;0.010844149656349127;0.7912198463345806;0.9642800374885027;0.8882645050695611;0.9777457582688477;0.8719596104760251;0.46525807719354095;0.7581981051671702;0.863440494239899;0.978398488722574;0.9671618750997153;0.8440353640469049;0.9638288463193229;0.9748045957530271;0.8761250708075365;0.8743998319273125;0.8771398878474128;0.8806007333485562;0.7991823944942702;0.04482239050046253;0.03428426273862525;0.027292437869852224;0.036767045311507186;0.03573988743177597;0.03791825073260809;0.0006765181979499894;0.010981941528908822;0.059403915193945195;0.05715347438771481;0.016542459970721315;0.01589120523843196;0.019804749122622523;0.009120077861767939;0.01892015548297693;0.01965682630014669;0.020373611246575444;0.0360976278814227;0.0013571346702488777;0.005168987362716094;0.02076158907596245;0.044050017731485196;0.04677913623302114;0.06250357542346399;0.03014930707635741;0.017559832883284852;0.0249248852978691;0.03603165067796832;0.03847491589912047;0.02296107925535114;0.02409359246210762;0.02105260070910564;0.03107147462697881;0.7560002178420037;0.5396421565173783;0.6217373368142834;0.6199834753328396;0.7385739226283939;0.8035974791074316;0.8274099468987481;0.6297330315919624;0.6100134862524352;0.7377923592408722;0.09262747900718563;0.09385395339421841;0.08925570203425212;0.54155605586606;0.19028053407620044;0.1520914147998373;0.11506506070714803;0.5716490502542785;0.01261889148581335;0.003910486112269934;0.012465302814799534;0.010494307713073931;0.014734153874861176;0.013996952124636988;0.010805707076574791;0.04267164614877089;0.005549817797227897;0.08630295761783098;0.02856090551882797;0.5189974494050758;0.012432599544687296;0.02734778324265153;0.015599186739955844;0.3775477664474542;0.43713068755818335;0.1849986942265901;0.3488380457328736;0.08768094236618533;0.13272626630328818;0.2807101701386906;0.027539345044437835;0.011088689662639031;0.019113750624797532;0.04472020865287158;0.06627770012564266;0.23614548698726132;0.037472403143129274;0.033573993356705;0.00585125029665115;0.32526624969113666;0.19205608198313784;0.20224171536403945;0.06652004866697628;0.08294676005268588;0.009062892422016097;0.0854033976075697;0.1344935964828496;0.011997350583387318;0.04656965460815431;0.050517992494402995;0.03975315999400786;0.03732103835084086;0.03210783580457245;0.04725486831492235;0.05953562324911043;0.13110643864749777;0.09615723324629508;0.005318183950346464;0.015733113392141385;0.011885835214870315;0.06618132658895907;0.028339859165881588;0.03095471784720852;0.18331042220927893;0.40124081814115103;0.39204092777464405;0.0;0.18829493319858082;0.47846111522242074;0.021172364197114216;0.021795248541144324;0.03346328279312154;0.027577225359552787;0.27862159714465473;0.35769700864823367;0.4082791926785151;0.38922270202848525;0.18937368770347449;0.38269953828747877;0.5364903931506294;0.33916049811407994;0.32929770303830097;0.34818420843927717;0.2583033765471661;0.20049052555132374;0.37862416882140865;0.21568679186599532;0.3117860927297058;0.37266059593734546;0.1394232850533461;0.5258986662941513;0.3792041581425653;0.08435195692449259;0.003793106867800315;0.014472904872237671;0.06196211452940542;0.3825994308014128;0.2133436308454551;0.1544372952184188;0.05872644317667777;0.2849686376040547;0.28884024803749936;0.017015599762645744;0.001422996805185268;0.014134149508016844;0.08240529565402259;0.004018516122788703;0.04058042045601824;0.6132566288691609;0.8652422186299961;0.844960778577482;0.9699378628775971;0.8683175553176004;1.0;0.7557385000092671;0.7800283580334626;0.7372093235145397;0.9050443892598488;0.9778737426166384;0.573314524057792;0.8149054641466015;0.5942290151356924;0.5703117424049776;0.6668073758716919;0.8455531952987884;0.1209266173483558;0.0734130139298327;0.07457659315691122;0.03594996557489267;0.06843758002738971;0.000249246925484742;0.03061117636612176;0.04586193475385809;0.04743081936237008;0.0261490894727435;0.13212659909340194;0.13445523900736664;0.08218397760244191;0.5050169893914801;0.04731682353887035;0.011044551387005854;0.018966986613135645;0.29013198349405567;0.008880818885955117;0.09815581925363;0.022640363025554115;0.13782636819454475;0.0825038692092359;0.0013748896612539986;0.08641669501480247;0.015711850615107013;0.3408681662930143;0.46517306800966485;0.342003379549184;0.08464487229882145;0.03073977062029127;0.022482282706035688;0.1403724567957902;0.02891780113880258;0.025767038600284124;0.2028139567572904;0.009313765941055385;0.020586059874557378;0.011824272091247694;0.0498093594412101;0.0116470998110128;0.10439491270205081;0.02259074423419207;0.42292246434405706;0.013241057210274031;0.01971241638277358;0.028089869834374264;0.36554283267004267;0.00048670115003541684;0.023027759412753014;0.0501254808312286;0.12839375116096263;0.056392019721744895;0.010412367602389632;0.0007347754507309235;0.10854597210045891;0.09595320759124241;0.01733979274207277;0.0508650357221465;0.013237069093720157;0.00829863910865547;0.010291481737649941;0.1686884221615138;0.03534853197687759;0.131526173570823;0.014318446293407908;0.4020573681702134;0.029781751420381426;0.023454176292413313;0.009858384488288826;0.02945134678916602;0.0028767560860095817;0.0006900292691507571;0.0006229393225367713;0.07439761676169274;0.22103996857092933;0.47796854822838325;0.03576975430509881;0.08501725451590017;0.0058133586709859545;0.013160555860503279;0.09915426288695396;0.017359814003910776;0.2199416901037771;0.11377273407586777;0.009063813270446192;0.013066323318929226;0.029523176601155894;0.013750159075673715;0.023772346974058587;0.010291211526407119;0.34571080632747375;0.050404475395435536;0.0457812094660994;0.0025211051093670675;0.12613458356447346;0.07367725058727286;0.03846060396892942;0.3729468792464312;0.4701637652503697;0.5123071088217784;0.43326925942034883;0.10649614138741366;0.000505911967303953;0.0021572592166944995;0.05129450847833249;0.047305250120581274;0.1505648770592221;0.16857918486477577;0.013596129283667846;0.0025834446307818485;0.001958606085994431;0.008132600341343839;0.024291845633113734;0.05807143975736896;0.09525691248127979;0.0011407692596307065;0.05363285003194383;0.0326352472201322;0.03619959805426509;0.12466956273897528;0.020290725115861562;0.01467643332113054;0.014854978050683443;0.005998109290072138;0.010356731358274543;0.009723090712883287;0.03199788649245679;0.029153308863421223;0.032217676914992104;0.0739247385306054;0.03827404205804935;0.029629762321183868;0.48272985115358985;0.006895183008206271;0.008641017592807726;0.021527862392718283;0.015741053131294768;0.1268360607902536;0.11398889763380302;0.05110132179393939;0.0069743935586734146;0.4277854121164531;0.4257127422145168;0.11060601505479387;0.12040055943475189
+2,2',3,4',5,5',6-Heptachlorobiphenyl;0.20118838634978697;0.20490368857297542;0.2023232417072532;0.19742598752201135;0.20147486319692784;0.1995515842833135;0.10379075294439076;0.20055031214069854;0.2010226105562128;0.20638811647598704;0.13149108104144133;0.23176140977873594;0.12254664819903349;0.20420461460344622;0.20309669299750263;0.19335961058396126;0.21196845152582186;0.21112443277358234;0.20471371999142562;0.21030477092172747;0.19658463639554002;0.20669525253065318;0.21318649055551528;0.20985206197812353;0.21234234487755593;0.031428301157158396;0.1034360195034098;0.0755384868660977;0.055841365226957845;0.06079318109692207;0.04968682677913367;0.6128753391102592;0.21818890042703817;0.1548959732474884;0.6456487212043172;0.20837772800942414;0.08125814098685342;0.05308105076100382;0.003915950275644844;0.5736257220010745;0.9794917288260375;0.6731909790452971;0.7748585747319675;0.016343306932278673;0.03175385021779248;0.026194292232533913;0.028131797192140432;0.0285961928590712;0.026432718995429823;0.7239429625768925;0.8311366577775527;0.6630926003990709;0.0005682811664424639;0.002377035066563883;0.583662118430703;0.660238641402876;0.918707651795175;0.8331821331746253;0.9516925859347917;0.12395239688594185;0.988076890790572;0.8256404032630488;0.7902055294141701;0.7998094108704544;0.9104857173253088;0.8306039841012971;0.8328079762816063;0.9338580619191905;0.9398431538854952;0.9338920864255594;0.9106835966102811;0.9578513180121317;0.007448312547194031;0.030687596487694712;0.006004301908692886;0.012131290556290452;0.003026310333122077;0.0021400517297659846;0.0006223828484348265;0.018393537104135087;0.03712539308889832;0.03488896746730035;0.007975631839658603;0.013299805439659225;0.023669326991865854;0.01491519849774413;0.0281964438652693;0.026638034740277663;0.028627623914591213;0.20960899255862617;0.014251580353937457;0.01271757608877025;0.108032772119044;0.030027378621562816;0.03631182808070794;0.01787404849937714;0.01058238822622871;0.03889989452650019;0.0767166838267134;0.07747418787482425;0.07833076466999409;0.07617331437687627;0.08082434308052316;0.043274392903767014;0.0499436041009723;0.5171576702585894;0.38550112835637923;0.42529535208696506;0.37997456922410516;0.42979542777756874;0.4979676293267615;0.5452828775574698;0.33784876808511827;0.4049622763220203;0.4248047938623613;0.15982391418771982;0.14931409806264065;0.06531666656963317;0.29946858728120657;0.32586180800311;0.0834123003988638;0.06793719144053899;0.33675844915855246;0.056485568080717106;0.01391241070871659;0.022984811589149605;0.01591241718885906;0.015838676896773412;0.00983954352637736;0.002530814590410668;0.06455454068031766;0.008113913018951709;0.05453240288490247;0.06220153669955519;0.21033957174843135;0.04258451357173349;0.013009507233989182;0.00979552159718743;0.23562027674326524;0.27583781003320806;0.15585596570056903;0.19908805076723934;0.05794105754380148;0.16475034575882902;0.2206392417395965;0.015047764326838433;0.010099422160394335;0.016226923544308974;0.019761840463886033;0.04195711770439828;0.09573548561250031;0.03194048970883844;0.006583027984667215;0.00964014931137777;0.20910405886358707;0.10344993158223353;0.0762046259046555;0.02775395072464147;0.03424473832747573;0.005038749435174361;0.0390892988954531;0.05615520500884642;0.013370203505529912;0.0825637434285357;0.13281024287284643;0.07834845515120861;0.14505778903715763;0.1375391548249366;0.14438551158786844;0.08434503549751476;0.17269847047907538;0.0636996064703577;0.002602948980729639;0.004461467238655273;0.003296206169717627;0.026434127171135142;0.0097654054814221;0.012517756769348722;0.0762824701741764;0.1622771445598285;0.15909955838920595;0.0001515390300498735;0.07799893499343599;0.19336400178025487;0.02806859241868422;0.06404116517917001;0.0076317477856545505;0.009854206560696167;0.11215327430804066;0.14928006183791107;0.1741927143087543;0.22660263821788568;0.12982600987887372;0.15302944022064588;0.28160923444058794;0.13768311516267176;0.13398419626181374;0.13665786581183614;0.11660601105211561;0.08184629592347861;0.14975106102378166;0.08512281140079007;0.12286755189858099;0.15914031802493991;0.09272524948725756;0.20721017005947948;0.19483975871949016;0.03864700171297918;0.006985599831879459;0.03441166117992873;0.05203861361023539;0.1902057319285906;0.10945708704748339;0.08868105268739056;0.12045869497663476;0.13796690553335514;0.15502932226464736;0.05752014605550019;0.002327343295686799;0.0074232236497132455;0.04138936208989084;0.041029719909776934;0.043090077240851565;0.3002388362773988;0.5228035151946651;0.6774724428180948;0.6512493179464468;0.8172775613322267;0.7557385000092671;1.0;0.9933597275006204;0.9959768024525664;0.9141596348866814;0.8369943080776975;0.8321732751146584;0.9513882973432344;0.5324215751880642;0.46538558719717166;0.5566484178591724;0.9564327869329373;0.04863777798998206;0.015298970273665167;0.014610782513498396;0.026913805006455616;0.07936012209139703;0.011522308174902986;0.07949069627066915;0.07867458007779954;0.07558719979475773;0.02089318613592402;0.06030536807550653;0.06111100697913531;0.03382115083950881;0.2248754394223823;0.07810497104685912;0.022739745788449072;0.006670128988597476;0.1630116324722385;0.005292926321166475;0.04806699514269291;0.030003298410954934;0.04567191904358106;0.01526991681787072;0.026583208834844933;0.07539962317989934;0.019303075394903363;0.2615496565640864;0.25834093276263936;0.22738594109861415;0.032543093754341154;0.005581337342388861;0.022358337516421776;0.054755374396713415;0.005257565036647323;0.026165614039339945;0.07962691954873868;0.009403796174968794;0.004783875060434743;0.01066628878765436;0.002464823814847023;0.0018389156588284029;0.035708561626638914;0.029619925673689672;0.16972518824317995;0.022575827763921905;0.012447723478113189;0.010693832989925583;0.20936639347557962;0.006029937840613015;0.008681653670669264;0.053957114236324794;0.11456960854270301;0.028374769976908534;0.017338525925032138;0.003010133196482082;0.0434176703891999;0.04137577611725568;0.014859897834962188;0.03155441698824031;0.011155589382232507;0.028430889414953156;0.002645237112111969;0.06756172886851058;0.018623445868567765;0.05118395952341668;0.009452978332173408;0.39067826618765583;0.030631622070205623;0.00967421365326433;0.005840378402166513;0.07410835204518017;0.002196475047027335;0.010685157751771444;0.011607374157978677;0.027601940674371647;0.10654127795847768;0.2547981833015461;0.017854961338067875;0.03279497801698158;0.024544864586921886;0.022086607102227762;0.03698448126808561;0.009895715721540885;0.12122037416435881;0.05190439413213118;0.006683787593925079;0.01636904373441515;0.012450234131589532;0.010746456866651568;0.03398148537183461;0.00999954464065364;0.13232400311621928;0.017385315509661114;0.015464055302157826;0.0035552896834639518;0.0844796708268706;0.04343185916982357;0.012188021565634902;0.1633139071133092;0.2840992531051052;0.217361779783433;0.30774688614063944;0.0335482088200476;0.0005046320866893382;0.012465482405318399;0.007004388611863888;0.014888267135936755;0.007617960561078051;0.00752539837869757;0.03598594482339809;0.008228568563231575;0.0025754484761481566;0.00650735513323323;0.017832385950388233;0.04810685474077575;0.07805399256438744;0.006668825515784279;0.020181304920757936;0.0015245994185724872;0.05397027048451038;0.0680587949779856;0.022307372764975828;0.2086212030518799;0.008054635825824736;0.004751254705379208;0.02148082918793413;0.015733945512916223;0.02217318499896685;0.02401804787766001;0.04084348840004616;0.08248860446608282;0.006235111681369359;0.035351590988885594;0.20556235752358856;0.003394619862146314;0.005533457737449946;0.014444952210375913;0.005777501933346587;0.052224645825970875;0.07029925068216328;0.032225012100677894;0.0018290721545271154;0.18039759276651998;0.1796027782428552;0.05167410879644035;0.055133306975097635
+2,2',3,4,4',5',6-Heptachlorobiphenyl;0.20949080963770345;0.21195592676342567;0.21154623890196114;0.20625096259472545;0.21016920516930362;0.20799486950965332;0.10818685826636414;0.20901330055522085;0.20932690786539385;0.21459257534351997;0.11873960675577426;0.23946538225443798;0.12682310747842349;0.20991415010619174;0.20948354449204676;0.19838803790389115;0.2191329806735701;0.21824010710603003;0.21100998225231174;0.216276252448052;0.20522252373867117;0.21573565536557637;0.2224152235929694;0.2182027815244556;0.2210955040426545;0.03143541065279695;0.10454352749677569;0.07744021692964911;0.057370482988638935;0.06437978648515973;0.04986649111887208;0.6506039125645195;0.2230067025542306;0.16011290681768237;0.6558856586533439;0.21522559818451578;0.08060127565504561;0.055615300067069814;0.004601297866999124;0.6053736253468895;0.9696942326495087;0.686479097116619;0.7970166611882537;0.016370405735375664;0.038316910366718394;0.0327444872951697;0.034771783291049276;0.03509170963317323;0.03346458738177238;0.7519769768767172;0.8474284925054174;0.6482029461510312;0.0005911370699220587;0.0023322256368310985;0.5923978164680402;0.6779983390989578;0.9173132415279888;0.8494501880300763;0.9585746464025873;0.12348898502106596;0.9896820344978409;0.8168659139369885;0.8062231914096023;0.8100993854536532;0.899821316238179;0.845586192422299;0.8504630511092152;0.9497474417707235;0.9522755198674099;0.9503756192978846;0.9329064013302639;0.9775595824668982;0.008338559616486703;0.02948309997503902;0.005624693769998202;0.01671547929981935;0.003941995576000118;0.0019241648525300861;0.0006119266658295004;0.02050193743076329;0.04074836552733378;0.03736555499664255;0.01008081301248769;0.015584494935851099;0.021268204489193407;0.011765660977316796;0.026517285822812264;0.02571849578382864;0.027570555727318105;0.21940940804694722;0.01569488188711872;0.011385281591730259;0.10426703347841841;0.031218368502277265;0.03726818868805243;0.017206404650220025;0.010412233868011583;0.03873076432519973;0.07484627920065719;0.0724315481562893;0.07642626003784697;0.07200811233378922;0.07644040607974524;0.04214132273535846;0.046582458401570236;0.536827221411518;0.3802106448717792;0.4426379432667903;0.39751286472456304;0.44959069935702795;0.523676279742194;0.5742026804997238;0.353414263043253;0.3991015088274237;0.44009623800351133;0.13447208631165505;0.14244675874086185;0.06649395674012373;0.31617937969763127;0.3152246635268559;0.08794863731709873;0.0694267762526937;0.35165724422784966;0.04534166306606567;0.010822155199227832;0.023251349147714116;0.016796282899905958;0.01150927210210081;0.00930548128182117;0.008627676692092304;0.06261435876867365;0.008744688564752159;0.05048759402674095;0.051023134662568234;0.2184881364237308;0.04446236800020691;0.014944067132423257;0.011770328121877458;0.219783350500173;0.2646480591308517;0.13563681079493883;0.18786106453335308;0.05020215573294962;0.13634163096947;0.2004614052897571;0.015579672092270397;0.010489343353400417;0.016848500192227354;0.022377951145068836;0.03615832018351367;0.10396014355782625;0.0270435089879551;0.007048853170716918;0.008092090578870554;0.19320723164557127;0.10039733053406925;0.07933031795300662;0.02812000605933298;0.03473084195901047;0.004587986054939309;0.03765980792042231;0.05526414965078164;0.012148654994088636;0.08459845979914382;0.11470041250203694;0.0738317164006918;0.142250756366444;0.10957274034616182;0.11749268905026283;0.07958757617664723;0.16536192181053702;0.06259839510017577;0.002944905395252981;0.004174884547683914;0.003022033231505945;0.02775762333753976;0.0009841642172521725;0.007483909172322007;0.07967648336076398;0.1704928412158372;0.1676557766666387;0.0;0.08153237571863733;0.2014929689424533;0.01736243410566479;0.05471187355249517;0.005303115593656518;0.0001669247493596776;0.11586238189846566;0.1549282210442155;0.18009485244456114;0.21433684006358256;0.12434210962512683;0.16024433007255018;0.2929964160489239;0.14164641223192742;0.13783557546482492;0.14220370908281973;0.11680480719145209;0.08481677005801963;0.15573881296137443;0.08857790748201567;0.12776282600409986;0.16211629885049017;0.09101778217423874;0.21623179051877392;0.18955329769632145;0.041110148779119185;0.004702560207705394;0.03379381074084328;0.05116402109664932;0.20001914935983928;0.11286311231971216;0.08442040643589925;0.11269974562083647;0.1447220772894061;0.15794953247155383;0.04546308717755126;0.0026244964685052654;0.007953658597975472;0.043578632562395817;0.03187351484322441;0.04246339418534726;0.3092291982434032;0.5358332348102794;0.671438794103361;0.670752053671898;0.8080214609218038;0.7800283580334626;0.9933597275006204;1.0;0.9931283626466971;0.9126515542595205;0.8529589501535295;0.8285233078925164;0.9438485809992887;0.561268253283578;0.49054395514481286;0.5835721833846532;0.9576225642331277;0.05151328612382461;0.01986207528402898;0.01586646681492932;0.017998556482612633;0.08028403907592824;0.0094685380578455;0.06963402295364361;0.07024909219753199;0.06858385839651827;0.03676594381785429;0.06306040801087133;0.06388039814744713;0.03224189723316405;0.23264020578351874;0.06644081199327895;0.02278696414811176;0.007161168168728601;0.1654371906691405;0.008618999383413319;0.048838459980000706;0.033533678602548155;0.050774454428721846;0.016113566178135398;0.026239765221688492;0.061056763925330985;0.02617710762267177;0.2630369376443518;0.26944224439889286;0.22512873310482084;0.03360920378827768;0.004478172681387229;0.021063981604379507;0.05840227775650453;0.00844191215390683;0.014507060871930851;0.08539890884043622;0.00808653994736684;0.012175109239051352;0.009042217094768327;0.002795625984782306;0.0015594303521156982;0.03339160144358091;0.03315088524966764;0.17492064113678404;0.017899819036739012;0.007452856362794843;0.009198101905761017;0.21318392258873137;0.011524948127965482;0.009124746015381685;0.05154058787860436;0.10634908425346506;0.029062627520300897;0.011511142808389703;0.0037094090539456807;0.04448728187482843;0.04319024582413987;0.01777302702827024;0.03100314319043637;0.012457875292482209;0.0283850587437397;0.00537109278179816;0.06775788058774465;0.018895040584714924;0.05392767554909524;0.00995214575602942;0.3759416972850269;0.03040628508682812;0.01124703273529344;0.005209300695921845;0.057241788768912526;0.004523334089025937;0.0003519718227007133;0.0008701269335264298;0.038163850579072546;0.11246190705364066;0.26206139545887963;0.016311793381503816;0.03490996762327736;0.02104330487753605;0.03137187066838616;0.03961238820523011;0.008133778742147643;0.12598500866010556;0.05109915716833597;0.007345539529433574;0.01667165572085946;0.012795361873436533;0.014541697358245217;0.026420435185475384;0.009660715069697443;0.13583051305835425;0.019499901410938617;0.017414959641974245;0.0017203135070496328;0.08377671886153105;0.04264420257105348;0.02161604308655249;0.16645124553373616;0.2888004984283378;0.22493719483306746;0.3056897319226276;0.033762118624173464;0.0;0.011696972160713331;0.006767195539513942;0.01377532753758788;0.007211704259805182;0.007036049941597299;0.03409500178774668;0.007551448215970852;0.002808280554032632;0.005986446266737047;0.01825897846812245;0.04530497429648082;0.07371853043724512;0.006599573258358229;0.020565291580109557;0.0008139620940599746;0.05146051967643386;0.06621555075298335;0.02026228714206797;0.15980976024588023;0.008044257023948414;0.004861387789806109;0.018200842669021448;0.013798561127144159;0.012481308379637098;0.013730900935678816;0.03977161274347681;0.08004312634687658;0.005310279996143841;0.03386868650385145;0.21055534732386827;0.0037068910635299564;0.005774140468928786;0.01633237646741846;0.005171377131464916;0.055928485233851334;0.0724903261664599;0.029041135520306745;0.0018436764421019584;0.18950599320915823;0.18976832274374775;0.05456195709341725;0.059734777165814525
+2,2',3,3',4,4',5-Heptachlorobiphenyl;0.18511653870192107;0.1871877541527721;0.18705986168319502;0.18152677705728185;0.18529384451996825;0.1828164524077738;0.09512160554242237;0.18359022808104558;0.18392244465668905;0.1893532648449878;0.12804884032784428;0.21496968362607552;0.11296730694989575;0.18454553522571027;0.18464744114962978;0.17464836721236812;0.19358625574684574;0.19278351227061974;0.18660925914544035;0.19141633604104022;0.1800287134422806;0.19003156381115188;0.19645145528635682;0.1922067963590483;0.19462727647349434;0.03463318066539354;0.09540237558535948;0.07140877320644909;0.05319837547559778;0.05814157338399617;0.049340486560540305;0.5993551153933;0.21254786398895534;0.1428836309310755;0.6382976660406123;0.19294093637496829;0.07645274114119432;0.0501739509352644;0.004282715378363065;0.5547483798758704;0.9845221413991317;0.6559187097946443;0.7741838247885603;0.016157088284708077;0.03794454085929463;0.03279494475773056;0.034716396256350264;0.03505838687486828;0.03349845550007504;0.707347189955664;0.8191700466039131;0.6595180559186268;0.0006353324294202727;0.002541060084173391;0.5719288047394909;0.640949273957159;0.9127428626324069;0.823348962964634;0.9458925428605985;0.14330208229809768;0.9891199429102382;0.8189362798980362;0.7741749932817662;0.7849129070537872;0.9077368641903395;0.8217639510084805;0.8233156765258782;0.9262077495178895;0.9332327604347151;0.9261436820380908;0.9009576218989308;0.9542137048547095;0.006760339540235931;0.027376193571119218;0.0059040709759748495;0.014868717358078851;0.004098070945255045;0.0019685391636113997;0.0005721601734717275;0.021265492441745873;0.04196948564303314;0.03823895903310861;0.010538036243436397;0.01622676625615314;0.01724890405759346;0.008047786179388108;0.027234033561726028;0.02620207651512301;0.031506310865044906;0.23004768058022423;0.01647306629555256;0.011700960186100097;0.10454760214143524;0.03125374099642553;0.03736823133310365;0.015781549749035596;0.009542134096940892;0.040047473618904254;0.07527343886638517;0.07473862747761036;0.07713771726603427;0.06622543663352058;0.0712786183879359;0.042302741699791487;0.04869816768333128;0.5007363500064342;0.3775290830766143;0.411211776297642;0.3658800560308891;0.4129604176000572;0.47976289630783653;0.5273176292985468;0.3226724685078504;0.4043993696510376;0.4106403548831542;0.16245043769072148;0.15277896644659317;0.06510679903753018;0.2859522515219322;0.33063981282625654;0.08863676335208609;0.06369830447467634;0.318495265640518;0.05849315007402795;0.014650671883054713;0.022901789531147413;0.015292804623971073;0.012541796830349798;0.009848948704662677;0.017897433488242194;0.06282120829192071;0.00856551368987105;0.05268941008255703;0.06519637509185477;0.19321845106857025;0.04724268131503463;0.014114856390620996;0.011264945214998755;0.22859939833032983;0.26765440282917763;0.15462294619043837;0.19036589847248633;0.0578822872547646;0.16408719909149808;0.22114735512460104;0.013742015712349285;0.00964513062575649;0.01480510789270319;0.019984841185988575;0.04137033065285913;0.0936564086726074;0.033399301375246236;0.00636972845490962;0.010400697700743582;0.20077901326450845;0.10042845495558077;0.06967834450448325;0.02551514131107442;0.031328631526303455;0.005498342148149766;0.03557766312626939;0.05905212079096897;0.013190726280361617;0.09284424429833675;0.1437944026288048;0.07590577400570352;0.15380852750917032;0.15149920533260408;0.15815192068856873;0.08408464500457809;0.17392849952147915;0.0619377806406125;0.0029713849320219614;0.0043786084492711645;0.0031327513006850797;0.02448099260768508;0.0011889985382478436;0.007156366117602442;0.07050452258819934;0.15047776507251026;0.14814310691405727;9.444544901699705e-05;0.07200444071863604;0.17807164126168742;0.018239472933602372;0.06604517367112704;0.004630168743976303;0.00041931538714907047;0.10223422044235403;0.1394388239978868;0.16351458813826195;0.2173139865673221;0.12181938666229125;0.14299291134466185;0.2696931107669297;0.12687926587958598;0.12352914250339173;0.1256728494150142;0.10704488355185686;0.0759816410976392;0.13751274446949008;0.0784804426340123;0.11305932069145225;0.14508463409476036;0.09219657489918488;0.19039291929325045;0.18788390191205168;0.038287199252064634;0.006755942095248821;0.04029224577743167;0.049862260085197625;0.1831731806006609;0.10433193011623634;0.08039222710053984;0.11906931312350605;0.13153409637344948;0.14837857622509293;0.059153327604478;0.003106129081622887;0.009626211059123714;0.03975722120797396;0.04228838525101817;0.041045289727214884;0.2875943913500878;0.5052905700202505;0.6702173296006428;0.6319346702758892;0.8113609769900276;0.7372093235145397;0.9959768024525664;0.9931283626466971;1.0;0.9081377066222422;0.827906948152648;0.8261317206086483;0.95264827358138;0.5231163187952794;0.45508763054309603;0.5463195902814086;0.9556491940889995;0.046081596769377876;0.014689395940882857;0.015300957826687691;0.01841972924205464;0.07861296319869554;0.010361546216918623;0.07545786405894;0.07296220513278631;0.07115161921006942;0.021167654693480725;0.05651864311776541;0.057299640948887155;0.033770665978000124;0.2124000414533087;0.07957073224195914;0.024999145505617465;0.006542088532415832;0.16109559641337293;0.007443981587484886;0.045348853997423624;0.03673900604315239;0.04538087423671766;0.01457307986182788;0.02461922860281262;0.06210109430063996;0.02700712235637133;0.25189902107821077;0.2454059588097812;0.21239189891809712;0.029533234264086453;0.004089595720196955;0.02116988163856775;0.05249624134548434;0.007277838723424063;0.01591313594168613;0.0771322019846643;0.007292278524531609;0.012639505664688263;0.01056425109924824;0.0024450479762949833;0.0012198221254611306;0.0356371761200659;0.03633713121315628;0.15649014135257366;0.02286806383042129;0.007876599700834258;0.00952903873240085;0.20061399485143805;0.009755903298446948;0.00883881673843798;0.0605490168838104;0.1200469113516264;0.027391560598010477;0.016631520016819872;0.0036441438518251255;0.039879800344801895;0.03810361987346816;0.01764051667846943;0.030960265299534863;0.012080904671415019;0.033529263673675105;0.004843723277505844;0.060541970050586855;0.017576361161900287;0.047353562732936526;0.009876174331157823;0.39570152167376843;0.029947527286302515;0.011523575282598604;0.005563036484618192;0.07387129001703306;0.004050635333889731;0.00043837366371352884;0.0011319773569611051;0.03486541264891916;0.10288115158320733;0.2436751531371475;0.015769057878545153;0.03105371817607395;0.02186059008193626;0.032393547536415476;0.03547458941536007;0.007234570678849054;0.11669796177684962;0.05093847376873635;0.007548528064699185;0.01594939623563968;0.014029828117773306;0.0126329715061156;0.03496587504772016;0.010867777804140616;0.12197150079595726;0.017679420863965154;0.01569636183345061;0.0030263746670998537;0.07982902069827547;0.04443456628488633;0.019152588775831942;0.1528704696643998;0.27058464240688823;0.2022375672360774;0.31245873020308246;0.030864222591548106;0.0;0.012823488353937344;0.008194459838968954;0.015147307787145244;0.006941899237890701;0.006940740344216889;0.036580304984013115;0.007738877242429922;0.00286181237638394;0.00614221781464091;0.016426055536572167;0.0487718517076059;0.07768984201539397;0.00705528015066305;0.020404809144533756;0.0012139132611419863;0.053596737208031674;0.06630545002075086;0.02113385840516047;0.21336912925886747;0.007852587902684654;0.004934029149397709;0.019496723605440854;0.015375709240255058;0.012583592247627956;0.014281092188264314;0.04028653371860021;0.08506540210815343;0.004975725422597887;0.03462143782557788;0.19173268303319874;0.0032648749275614192;0.005097000429434403;0.014576351260738028;0.004933587795766506;0.04995953082609922;0.06877076577466489;0.03125284694015676;0.001811419148276369;0.169762787109096;0.1683146969867756;0.05160844416588359;0.0566711436003959
+2,2',3,4,5'-Pentachlorobiphenyl;0.32892383125740376;0.3232825904645986;0.33065868004927695;0.32218647522087446;0.3263163466630477;0.32815392624006795;0.16848817655721102;0.32704536669135015;0.3270811499902932;0.33465404487921413;0.1621625484862638;0.36539843416473233;0.1940325606787415;0.32782293450259026;0.3253102179638466;0.3087141468191648;0.3362449517703115;0.33309786494992666;0.32244321421070404;0.3294361235187533;0.32291582669589314;0.3339587543241529;0.3391285786932449;0.3379516764034182;0.34403836520940584;0.03271253561061954;0.15284552215266423;0.1230895306780808;0.09169904556333264;0.09691886859108427;0.060183581881185264;0.6315485474151405;0.26260875423232677;0.24580291670531354;0.7942151932136541;0.33564635581103125;0.15946167949291523;0.07761752401293225;0.005821692329957098;0.6889609406290736;0.8767094258545484;0.8241283306287769;0.6865969722837647;0.015614629126171703;0.06656164126126281;0.0529161140903684;0.057643881456894586;0.05748605499996661;0.05432852279550267;0.8099042421527513;0.8635330871915761;0.727167442177223;0.0014148547285383337;0.0021380722001911844;0.6873280694647041;0.8141801946180933;0.9908631754194188;0.9332588069045277;0.9616190832129207;0.1460863868037238;0.9089880919158629;0.9585680793376739;0.9325536077221455;0.9409565319884099;0.9833310080579012;0.9486585349003075;0.932570644020827;0.9438235558238817;0.9500991041241317;0.942130032982109;0.9237668809130815;0.8873849628387455;0.024504467817432384;0.03744033800449506;0.0772796773084383;0.08577558420419167;0.009266161731320114;0.010222018077281913;0.004929251764770254;0.009885599924188838;0.06393547286858166;0.0621739881630196;0.014535356216128694;0.015192122343938269;0.032453020377565034;0.02103644654942824;0.0345035365470671;0.03346012610612444;0.02249332165881746;0.10405862307126214;0.004463168274442911;0.024003842946518705;0.07375226951921168;0.06897871584887295;0.07658701573819307;0.03895244859507124;0.027651627444266535;0.04053435045497062;0.08242895398435396;0.08480097170533762;0.08989746203451049;0.08397416049955952;0.0916780556566289;0.027197668223880596;0.0713013053928525;0.6316753073443939;0.41928869003032254;0.48985546140992914;0.47472590594808833;0.5573559858781937;0.6193256226093804;0.6528223522748007;0.45889098646590615;0.46420093121360406;0.6082859095173649;0.07216315470992629;0.07247058892882886;0.08043475563990346;0.39958046573504374;0.23347159876954016;0.08680730568153328;0.0843762210319238;0.42511313955780383;0.021482023864072077;0.008378203869481548;0.018247841896100646;0.013904612196431495;0.015246333705847284;0.019664188559380708;0.009775404450421145;0.05055265703906;0.01761390651780522;0.06247546895063355;0.062321666653442735;0.3337024296319584;0.03546231167443454;0.031001296230391807;0.03681487667668165;0.3302650372439196;0.3745295064281287;0.19839168652926054;0.26316441742152025;0.08462111921977378;0.1427876265843815;0.28343340118744725;0.020414749314093192;0.011936301947566586;0.01958822441366404;0.028758617378059157;0.05323583390705662;0.15134174690915128;0.04383772658899342;0.013472074414944659;0.009408851048619996;0.26138838473973;0.1566740631739712;0.13987468282339416;0.05099665982686829;0.06245038356519874;0.02281156944337729;0.06834691491396429;0.14860965418799066;0.011590889115040649;0.07350756344408525;0.18538423545499577;0.10571721328399253;0.08577632211726945;0.18409947654627143;0.19320221749974587;0.09248321786345745;0.18142388311880803;0.10029019781392393;0.009837991815326061;0.009818245452262626;0.0034836471877107717;0.042985958622428586;0.020774405875706177;0.01964313517300263;0.12024460117371831;0.260849868887251;0.25540632136690233;0.0;0.1246270764790642;0.310991686213136;0.03033180224601351;0.032320234089082696;0.021343121034095195;0.019002619759182156;0.1795964811882022;0.23136274486522385;0.27179174917504595;0.2865797656242743;0.1695439903873453;0.24543612245203644;0.38525495574351293;0.21736841882705163;0.2108977316717339;0.23261151840591407;0.1854349908774479;0.1409231585468312;0.25082371426047073;0.1451168052169348;0.20705966514799895;0.24645042896345723;0.08917486176282871;0.33800714976352986;0.30545133522575185;0.057040444528787086;0.004486373403451208;0.037637138775803367;0.08030731900255325;0.27240643476428583;0.1556011796242576;0.151418183244641;0.08995080326932633;0.20134883059403472;0.25266859564486455;0.030186295041925642;0.0034445897773889506;0.019775863819020457;0.05894494358294439;0.017883391252021628;0.03612519527780687;0.4499492898192076;0.7188261407993162;0.8108644106541518;0.8134205971672627;0.958849679284792;0.9050443892598488;0.9141596348866814;0.9126515542595205;0.9081377066222422;1.0;0.9349464112801863;0.7458454030476028;0.9591536485949463;0.5328184739018132;0.5008605343627058;0.5981610212215625;0.963876669367795;0.08628624297190889;0.03159140178202236;0.019817194692980954;0.03580316193083337;0.07459488441866374;0.0009947304981739635;0.12505714985909713;0.13113045218503278;0.1251622141803908;0.028027334886421017;0.08950289501537992;0.091266072385146;0.042340087688114106;0.35036150383597114;0.09609996694252736;0.010596357515640697;0.01023944163287051;0.21652173553938675;0.01988420682812812;0.06549956646244852;0.022009783514269996;0.09132638697284891;0.04668188472406331;0.008989737127564785;0.08554271685021447;0.02863082436259432;0.27149643655245415;0.33391021082303096;0.2750335596923476;0.0548681651793001;0.022253996474724484;0.010692762331597808;0.11928893077623991;0.02247283402371701;0.019958039216757276;0.12567891030892975;0.008576153552324543;0.009846327522800596;0.015397635451126374;0.002881911776806711;0.020683678203791567;0.053812330044625226;0.021890030534370216;0.29647639398415526;0.021512272619035253;0.02624063197300325;0.04753055430096572;0.28589396386669513;0.0010591096547921475;0.018149259142133705;0.07859321611068411;0.15696279926908707;0.04067390763837965;0.013671922799186338;0.0019303407655516132;0.06979730870622886;0.06423055250343708;0.021903487507611136;0.03452409935307456;0.013827568335256805;0.02871573816468719;0.009417268653313425;0.10869300374059396;0.02314581850672035;0.08666841999186545;0.016481901123597396;0.5407574538391879;0.06316544120508129;0.015454570245633624;0.0028199875184180385;0.040145612969652356;0.005308233952605769;0.0007455388346841634;0.0013030774563960066;0.056025319749243865;0.16091948536132203;0.3624045199962279;0.024571086968898988;0.057787123349826996;0.012478344802206075;0.019684270332014187;0.06292072565193789;0.011425118831995826;0.14933450399678583;0.07834287044519717;0.008334048221806068;0.027812432125549746;0.024229978377368275;0.01113048543862116;0.049987084337923496;0.015659448398096167;0.29326625302701587;0.02641054945623054;0.02358081987999047;0.00392874241571152;0.0972795957160722;0.0540099455472353;0.03608478418209566;0.24544367577483983;0.32293054520273784;0.3458059019404228;0.43425340651909156;0.08106069730930991;0.0;0.008797505403526881;0.03673201674060409;0.031981306267135017;0.015396109346971333;0.01598648250349421;0.011529994972769344;0.0044036952672856875;0.0024323664077602575;0.004910477055184355;0.02103344228218446;0.05445433359559647;0.10431925350289324;0.00574617315574706;0.022958069216908714;0.026971268465266554;0.05983101376853959;0.10331854922711989;0.03213651493893994;0.17595414953271016;0.030802912579422585;0.01663967772917468;0.03079423619350711;0.029378617887001565;0.05713766189732738;0.056693278996036926;0.05465182557309389;0.08284585149070998;0.022490276008999405;0.051391603501814466;0.32436003545572273;0.005104470051500439;0.006945612505838761;0.024963079260004347;0.01872407496459514;0.09252584185556656;0.10231208737210859;0.042257875213890156;0.0011170664046881034;0.2997441533037787;0.2920755108903004;0.0939831956056046;0.10411276944449463
+2,3,3',4',6-Pentachlorobiphenyl;0.4115691716383306;0.40821730887636504;0.41419451626244114;0.4068015343564537;0.4119398493043239;0.4098037956307565;0.21254948677645227;0.4130890326374112;0.41308485641763687;0.42131622351954234;0.1569014163569474;0.4485068914345306;0.24401127411232632;0.41352252105307913;0.4106160694131418;0.3898047294890835;0.42440158945828893;0.42067029966282404;0.40685040805836636;0.41569918934656686;0.40821043002106744;0.421583043671464;0.4255819725978514;0.4267296255499354;0.43233584999142877;0.022204812666138198;0.1895504472779101;0.13975705992418178;0.10637241584954608;0.11127305212711826;0.06352613783292702;0.7564631235400242;0.30870853171539214;0.30920088130877915;0.8077733678537155;0.4108057323094951;0.16072914244751374;0.09602016016898784;0.006771003597809551;0.8385412998880482;0.799327361671652;0.8973258809479776;0.7011783033314042;0.013198501763506463;0.05171034713322493;0.04151656158338276;0.04530981679562264;0.04512157203196531;0.04295144544388169;0.9204326647458897;0.9094005761863114;0.5911944686217735;0.0009202938192899432;0.0017365043418064424;0.6872839636661742;0.9074392748565718;0.9221975864746775;0.9967062400321913;0.9280796433910017;0.1063375355574957;0.8449076800289359;0.8726456579993297;0.9641891459635404;0.9552867853921165;0.8735028379233281;0.9905097145292661;0.9969301249932111;0.9531113033893228;0.9419767855509813;0.9522414451074448;0.9554265535477202;0.8824189432822966;0.018368105152861518;0.030020814206290415;0.05564217325679473;0.06041201526142298;0.005340281244855195;0.0063721218929817195;0.0009429705682634047;0.009955457472769163;0.047659799892771845;0.04637412639635778;0.010862363368968888;0.011453018660654209;0.02702500677813432;0.015472798855597365;0.02786226176557438;0.027483541140400906;0.012428533584864343;0.07321706319091703;0.003636679606437861;0.01788558130009784;0.049243600204160166;0.0516430385476929;0.05658532111314023;0.03000912125584268;0.02087407533074042;0.028598458005657475;0.0557296096307993;0.060864409465691764;0.06560842975254168;0.05384948180886805;0.0602583907696783;0.01968242228019103;0.05181460751833792;0.7403687926034408;0.4914784763983602;0.5843775785197789;0.5728959564903595;0.6755839427344396;0.7534842321885534;0.7894498710116253;0.5621808950807933;0.5532192255532965;0.6561277886088596;0.08409804984194647;0.08805551159677416;0.09039888025615309;0.49237776334372296;0.12361514145723912;0.060333203778778696;0.10486264762660946;0.5269892734947815;0.015500205633417665;0.0057636689872174705;0.011469479281907618;0.008944675455935367;0.011941010507752928;0.015135859412526683;0.00666944118500548;0.0372637010471466;0.010495608903972137;0.06930883920501536;0.02594497867246211;0.41933436358924975;0.021191297014118857;0.026214684792882928;0.023835283095321087;0.3055077027499299;0.3658515536199922;0.1731437925344464;0.28186056624039496;0.05609207735369935;0.1113825299545393;0.23491409164666568;0.021699304905045187;0.007796949260636008;0.013166582356301963;0.03416751874431953;0.0413250972379113;0.19048365281811466;0.022303925845973707;0.011228420262121293;0.004407921493884459;0.2674166523718972;0.1524800069292528;0.167686252052489;0.05841674300250712;0.0704229976426395;0.015377488458646461;0.07438300470231494;0.0752641405632865;0.008028079171873845;0.0459250233888219;0.06494070624944251;0.05647461589815515;0.054605476375088204;0.031065045190312023;0.045050701249859014;0.05738183282962189;0.12992761577959694;0.08945592163043332;0.00711919136256111;0.007276559607812831;0.0026115346617585256;0.05369995151916247;0.01641212580732402;0.014290056735381392;0.14925999577880428;0.3277918603108457;0.32076317570074103;0.0;0.15367149098296914;0.39007790719602836;0.021968905084438613;0.009256847767384765;0.018292801789624148;0.015208745884931894;0.22602619868072235;0.2892591369348292;0.3308652926999294;0.3167109778174883;0.17174059443506134;0.308527716521207;0.47863436504580514;0.2739609355984107;0.26603784822448273;0.28644076008432173;0.21648291538362202;0.16815843200221595;0.3105728932553368;0.1777178031655734;0.2554366607532407;0.3053470720014652;0.08464988083995224;0.42562069421661014;0.302860144237891;0.06502109207422083;0.00381272781198609;0.020305106511357925;0.05125487129299044;0.329484552900085;0.1830963815516268;0.14828917086928478;0.06447554276456678;0.2493646174460468;0.2720980426464547;0.015580442664135339;0.002982668766817624;0.01397053366957176;0.06877451360753221;0.0050775166556225985;0.032754162259946096;0.523018358876918;0.7762615150408452;0.7906665767495384;0.9098377396514062;0.8726460589463152;0.9778737426166384;0.8369943080776975;0.8529589501535295;0.827906948152648;0.9349464112801863;1.0;0.6902685611817516;0.8830817759585109;0.620115724774627;0.5825386649197992;0.6862276504922415;0.9066954537000163;0.10178842810234441;0.03144435250127181;0.018481341512825197;0.02454870279768233;0.07229861095535833;0.0007017419140142054;0.08438393853326333;0.0947857524295318;0.0917773201381002;0.0227308997117606;0.11208690413991287;0.11430775004480857;0.03187520788189815;0.42375117827366043;0.05243451800757638;0.010609647172722747;0.010257968845217175;0.24688423058245088;0.014445193463004732;0.07968988161651173;0.015081785736672421;0.10622142678451095;0.03528472038275709;0.0010678294899976678;0.08055519868929044;0.01542964782450662;0.31429921538649613;0.4066292058124195;0.3114500517624257;0.0670719238721818;0.02093143396118412;0.011863640198108222;0.13038584368475195;0.01808942757276558;0.019475999463722103;0.1567498824574234;0.008064176219181245;0.0029100558835612154;0.007747369465217976;0.0015325903752065743;0.015697994150371854;0.050700888524190545;0.014977659332342484;0.34929405248249407;0.012338990878333773;0.020615894351095298;0.03578715062445254;0.3270822485876172;0.001182537344778932;0.015046797145105458;0.046934958748544815;0.10853907304137501;0.04925089050367859;0.011149359119736508;0.001233882074018012;0.08713168997519125;0.07688137491043504;0.019079993093431977;0.02739110176246306;0.008993363348414878;0.009889250771487822;0.007843867955405301;0.13232277088567057;0.028401993435560647;0.10768211247484355;0.014122763781599542;0.38110965690314247;0.04458878471234037;0.013597030610236871;0.002293898812916548;0.022462723138115474;0.004501585729547374;0.0005802116569713859;0.0009377848674927608;0.06255935126097398;0.19060382402898904;0.4193303813002369;0.02709865689811472;0.0692163042292505;0.00735808446812294;0.017140915145144466;0.0738522114566063;0.012275178357095429;0.1844252368687861;0.08842977889090575;0.0061454282272889035;0.02423812798448675;0.018495625436087654;0.0058343605991406896;0.026571082586136344;0.009508541247325296;0.31767873917509115;0.031107795090441533;0.02729743692629797;0.0032749305687920036;0.11221190699576691;0.040695750134863796;0.03669777468926958;0.3059271955294653;0.39256213902583253;0.4181520437790196;0.3900608846093255;0.08116767870478057;0.0;0.006804497524435639;0.006859249606808539;0.006605484279432876;0.0078952843031421;0.0079930861618192;0.008567218757250571;0.0032653134907324175;0.0016832673042180542;0.003778273081200294;0.014436902713441358;0.05205518172928267;0.08389163183336616;0.004450147544562675;0.022655843389616737;0.021460604402208146;0.0436754061933478;0.10039561963638569;0.022847725809480406;0.01933124978279244;0.02210041373876292;0.012906248005195116;0.021791485912021322;0.021560114603161203;0.04126733452432233;0.04043363152935341;0.042201460274173;0.06254733674130189;0.016473142830234096;0.039597953077010375;0.39569250940995637;0.00591111729151894;0.007859644990362518;0.019324690916728404;0.01651868585348355;0.10919402140123495;0.10543194313695983;0.036250335091362024;0.0003759282838313045;0.3558045536115034;0.35542515956586385;0.09301832817379224;0.09983202384693853
+2,2',3,3',4,4',5,5',6-Nonachlorobiphenyl;0.1132810252619536;0.11473047435585924;0.11627723313355108;0.11266570573747113;0.11532286862843864;0.11063162856675571;0.05664781475389515;0.11152708593482635;0.11177839840523396;0.11742264443645588;0.10682977576791235;0.13479012494353793;0.0743690271109922;0.11248495109397015;0.11413899721500222;0.10715972900711994;0.11839820907256286;0.11805660988645518;0.11608062535584004;0.11866346328356334;0.1087607633230509;0.11702951672800742;0.1254765350387445;0.11773004010422612;0.12476352913355648;0.025625853239808278;0.06167179789585378;0.0451655237821062;0.03599981433375444;0.03575245994433012;0.04053230312275534;0.5406441817234051;0.17656921424355612;0.0975062162607698;0.4431715726711656;0.12398732851174078;0.05315999767114371;0.03368776875973511;0.002729711038744955;0.450120841288509;0.8099464839125088;0.47403540858058063;0.7593699157458051;0.0266597530868261;0.009927045765147378;0.009003775159512884;0.00953842578283681;0.009529749259802137;0.009570307390690811;0.6023432227465406;0.7314958632647722;0.4837465715400893;0.001124378579524464;0.004982520999576809;0.49210586956510205;0.46710474099785965;0.7496559539856111;0.6914579659014737;0.8143835763380936;0.047318427146273774;0.8101815771939894;0.6201392539287636;0.5929281504574996;0.5954281342721781;0.7417356741724914;0.7118092931579144;0.6976197637938027;0.7984250411360794;0.8051994740151062;0.8000556080126406;0.7794471565889333;0.8027040887316462;0.004512266781813484;0.014695562196481195;0.00456607854907149;0.016984215340532377;0.006640452355450029;0.006486108837661884;0.0001637281189861275;0.008186182458243792;0.09167759465165282;0.08736909933132739;0.004412633630795077;0.004617899526719679;0.013228966124760145;0.00980945902675082;0.021198061905302344;0.026441541644974424;0.022396099521856137;0.3319880114853566;0.006959037064378026;0.002709084536183356;0.033207075886565886;0.005327615147149531;0.007202667274162724;0.017925490710022998;0.006566682906967795;0.01240210718838715;0.0201225053899972;0.027890874927776515;0.03255035910548564;0.01523987208335152;0.016791805519455503;0.024794002148458606;0.018262902397555254;0.4456591406722391;0.2794213009570917;0.30492510983179055;0.29393148604072733;0.3172673841913813;0.3823506999887266;0.434290508079848;0.2390676171032796;0.420351638368162;0.326526570112279;0.060038309760802405;0.06792119130112885;0.0596286196322879;0.2145168094826114;0.24527121932970156;0.04558597365340684;0.09795789939938616;0.3036725123129877;0.06820245075253735;0.016061872765030856;0.03849545251584408;0.027408600662853347;0.01881582352635843;0.006196934883782638;0.0024322607547548917;0.05885828774780131;0.009697193307466271;0.05435165948927191;0.06334094183044044;0.1165626916337814;0.060445521120948295;0.009432731691638059;0.00802955530873681;0.17153703774673063;0.19552192215072714;0.15518323072881157;0.15861143517418447;0.060315216498483704;0.1926572597763823;0.17571132833837103;0.011120168035630318;0.01001863696269461;0.011693472382861433;0.011708814688398681;0.04177649458031804;0.07308358096902057;0.03655090384278267;0.0048198051586477286;0.014442216447199688;0.16826179553406928;0.0699871524264971;0.04184164904553543;0.017407877174519765;0.021769752588580327;0.004572861180313578;0.02417647615538043;0.045133503846613285;0.03007355413323261;0.11230952100595916;0.12685754032652338;0.07480973962788476;0.21064332082205797;0.12428813629987259;0.13047546211804992;0.08441952561956029;0.14642459697776342;0.06746637315990722;0.00486861962279622;0.002464465648525741;0.006585213906967339;0.015742243014957625;0.0016105546614693402;0.01523230942296995;0.0484907648986687;0.09336100699174524;0.09373435913143313;0.0004227705252705795;0.045504289323158;0.1108388570813637;0.01694021053239443;0.06465025724102522;0.014809102289902412;0.0004437599954832067;0.06381770406326363;0.09414940229006996;0.10887789228330373;0.1916899545441193;0.0686095101045986;0.0952420868601119;0.20344736762956325;0.08681349964126851;0.08518872582572018;0.07866558182681767;0.06574762356043791;0.04939168393471152;0.08561909482499107;0.049364041604344086;0.07136365239126981;0.08849774840340834;0.053447376302540435;0.1175069898133524;0.12616245365920095;0.025498378620000112;0.01600909115240812;0.03852833099861004;0.12989211128513575;0.11990821387484377;0.07579301102636546;0.05114681025666776;0.1119958628556236;0.09048129568038127;0.09489748663375161;0.09375191141721241;0.001708436167919833;0.010680772326590387;0.029132864330699282;0.06186310490194216;0.042181193348376174;0.18991473484942953;0.34032309775743386;0.4751296671424685;0.46325394509521683;0.6154313772313311;0.573314524057792;0.8321732751146584;0.8285233078925164;0.8261317206086483;0.7458454030476028;0.6902685611817516;1.0;0.821051911723165;0.48481020441042216;0.4042062512174239;0.48709921822405966;0.8243570695500116;0.029070534519067697;0.009274882275820098;0.011714759325744985;0.013353604711248284;0.07465150670226234;0.035698681989120774;0.01917602055615037;0.0149156502461589;0.015169185299712885;0.028410121784606678;0.03824807542505217;0.03864732515699279;0.03816773757753759;0.14204230225441483;0.07029318472682139;0.06235125462878212;0.012118520123342887;0.13780175501573635;0.005195643492261857;0.03223134005915684;0.012353387018223127;0.028603941753496575;0.001643430005814055;0.025920885028286093;0.047794496847059935;0.013978812132364538;0.21597395073641806;0.21121486748030163;0.1329361777356565;0.017536861164782536;0.001775191228092472;0.008694002081662596;0.02769644030398599;0.003087215450726912;0.017810206314880377;0.052247505995517654;0.007349348350508663;0.003799550445130975;0.0020091011917824603;0.011098877761074695;0.0005121767805643398;0.018312943924282447;0.011893633298590566;0.09634355118528415;0.02291867750294412;0.006298927969326325;0.007524690522632748;0.14599419943504718;0.017864426263118176;0.013100119350863531;0.053705603713789796;0.08811694581248992;0.016581586319214893;0.019405655140719923;0.004172118155706183;0.025284822604579732;0.030833503189451543;0.008701055178667478;0.01922954959011959;0.010221382989825648;0.030314657336115228;0.0026595449158548345;0.036436484934850834;0.01076500209639345;0.02821296029767954;0.007211870531920359;0.24520592083762513;0.014068548096386895;0.00651834454389348;0.008087767231684698;0.10713493319402555;0.01228452133104915;0.0001656186135408298;0.0009985182663008769;0.018435553456411582;0.06879838453142104;0.166301957534958;0.009439594903145146;0.020390148905228965;0.020595180871259305;0.020619968099072367;0.022597593064778265;0.005658083221719854;0.07726767200809227;0.04123450021519642;0.008428635000121459;0.009505774813072191;0.002747617698962221;0.01072296861190573;0.03322852617763558;0.014241804020754683;0.07130017966928248;0.015754417187619985;0.014934262187761562;0.006370512065944327;0.059499552139959375;0.044750675036611;0.007675019917421735;0.1209230605190049;0.18554372152114143;0.13180467195168785;0.21489345098386814;0.01911433128093953;0.0;0.008312922383553136;0.0068104119762871194;0.009032755181217659;0.008842789239128125;0.008284088732420402;0.041433630100436374;0.0041906807303688275;0.0011333254520920623;0.006280266198957656;0.014507146761561751;0.05378496455328976;0.05728079534349667;0.003824817239006782;0.022526009558215005;0.0015911448330970406;0.05266600205801331;0.05174497089003316;0.01909860389801087;0.18983235060666348;0.0062668407022750845;0.006911631809626544;0.015440153814780228;0.008135973734239639;0.00355910659107852;0.005065677101093867;0.03497729139647239;0.06608625663703119;0.003518773014506696;0.029899701861442588;0.13416177035388496;0.0015363606989051927;0.00252338035637438;0.02457113946601572;0.003975941932510941;0.03135030007043052;0.04946304181966402;0.025818432210336723;0.0100985986893639;0.10688200444796396;0.10619609455023311;0.03649350559644575;0.038921466584489514
+2,2',3,5,5',6-Hexachlorobiphenyl;0.24268522789397395;0.24302713109930552;0.2460591290324057;0.23944461067348566;0.24343796018357558;0.24090948119411884;0.12533459716772047;0.24242765213019496;0.24263664755340703;0.24866082754218855;0.1549249520687848;0.2791809111505492;0.1461506566678812;0.2440211668631991;0.24257112898165883;0.22991070252006107;0.2523686105996905;0.2505743063337379;0.24243829621096905;0.2482174874458957;0.23867196491891476;0.2493159478329811;0.2540755966886906;0.25222524021886206;0.2548106439670196;0.02012709748204591;0.11934085393366844;0.09739719020876708;0.0683456892119889;0.07134624360596493;0.05719948398051032;0.5956095414615491;0.23055296140544035;0.18534274577881135;0.6990832685597888;0.2496316576684943;0.09599817724581143;0.06125119541724708;0.005032251981570006;0.6102774620782087;0.9373113631868826;0.7438744054768562;0.7422948866035312;0.014334064047546412;0.09253962238995232;0.08224526363572038;0.08840034749169824;0.08799525257292914;0.08761083569134644;0.7614312262690633;0.8542129829197168;0.683129510709481;0.0005772433148010223;0.002057561095337;0.6095419279731615;0.7226488418043404;0.9568860514495587;0.8860452862041096;0.971925990444525;0.9856465796434654;0.9439036946901227;0.8201459592887146;0.8168131505981504;0.8157992886918927;0.9589262590999185;0.8973851909112357;0.888345268136972;0.9410337267717113;0.9362336321383173;0.9380620588829646;0.912582750513033;0.9060340707755309;0.0109984580965677;0.02649949491060192;0.006241517358016742;0.03208485320282904;0.005964347543466898;0.005276314834112563;0.003645580795514361;0.017555093829240743;0.038001490254063866;0.033917705953084715;0.01114639176157981;0.015615341182143807;0.017428574036641813;0.01053732958216847;0.019911046091608833;0.019717748555751525;0.026662514335446894;0.1607381022177303;0.012090923120642935;0.008318667991949748;0.033521312487619095;0.041099611464432514;0.04225626273193163;0.02121906383657357;0.027909719841648153;0.021264998378576618;0.03667861829718461;0.040763466964455757;0.04510668303642675;0.030719072885133102;0.0340475121266709;0.019816665778449448;0.02696520878188998;0.6160568158774093;0.39510477761818763;0.4306412198585819;0.4112103501530449;0.47271935676088894;0.5368710084204587;0.5759323211361742;0.3792661750157453;0.3861225919129466;0.4854856757550819;0.10012544275449602;0.068430007556206;0.06317549903695895;0.3351157627612521;0.2887886061845647;0.1897778253328621;0.07347615570478414;0.360739460152044;0.021011230741407972;0.016248945779420845;0.01516823076945821;0.013655547619873733;0.007242142757919567;0.017954020627742578;0.0061455792077573365;0.04586199923519211;0.0075193806629494;0.05903521118897816;0.0772467383149143;0.2559338370576337;0.034137073927018396;0.023981161261866026;0.011365816740697624;0.29537611911685896;0.3302943017729355;0.1910024184278532;0.23346135317864067;0.06299069640505886;0.17421064776063555;0.286272282748285;0.01638425485193831;0.01127772355943416;0.016585892645865043;0.018821691917658905;0.04782557129775882;0.11748308348023202;0.035059873893060645;0.009875373489346135;0.01077341542060058;0.2418887828716379;0.13025554378401627;0.09240456911028061;0.03336648512774136;0.04060583429664281;0.007059569316101696;0.04631965592326794;0.07487964965839103;0.009131059604364583;0.09163618606686981;0.19009757406205657;0.055461542209572695;0.11451614064653096;0.21532196865131806;0.22215259990212446;0.06526574124347179;0.1859272856686859;0.08768649849811731;0.002612976083684146;0.008024946539465424;0.0027168308674081062;0.032547925309049444;0.006035553434157976;0.012369777391001667;0.0904336944475872;0.19604749598154944;0.19234759205884178;0.0002437266221728848;0.09354190079034332;0.232846354460463;0.01548679275324534;0.054603243355289224;0.01074317655058007;0.0054659562198613;0.13460262074563237;0.17821326577400215;0.21191623518198793;0.257489672504153;0.12673271370034161;0.18669194844606976;0.31980888390297885;0.16397967240306788;0.15937374113790806;0.1647760527998375;0.13729821032576078;0.0976843427573622;0.18012314927006706;0.10197658695550195;0.14775637143686446;0.1845613739630124;0.07381608126819438;0.25037719155790894;0.25124192079213925;0.04774639431694362;0.006940303750020723;0.041932817029180974;0.09013946996520837;0.2197245485315895;0.13643494959588448;0.0929038271168393;0.10175706738069822;0.15800989019537504;0.18002564779700025;0.05197348388779967;0.010295229253050504;0.012225110625240133;0.0555700983540197;0.04188119706338523;0.028780398084511365;0.3623303299315804;0.5939378852713351;0.771932901399349;0.7133481051438918;0.8391454488642541;0.8149054641466015;0.9513882973432344;0.9438485809992887;0.95264827358138;0.9591536485949463;0.8830817759585109;0.821051911723165;1.0;0.5316378429239428;0.48412329636786394;0.5804658318498684;0.9944548479598305;0.059373323873820494;0.019990097141754676;0.01788564511234084;0.020727133835853;0.06930989773622379;0.0012404007238497423;0.05557170772436412;0.05415258582666122;0.05138760298950573;0.019198107252055993;0.06991229821850631;0.07114493907124518;0.034086366222284635;0.26820010127101973;0.09508278743902071;0.010261511712575994;0.010236208023225632;0.18865361097312638;0.02163468408430151;0.05476493179987854;0.022712127440454494;0.05545626526432038;0.04843740697411537;0.01950158026205877;0.07161412065008912;0.028685845910847198;0.23865171974037433;0.29002280616553877;0.22017479407765733;0.041580194975932495;0.005304334142453625;0.016221499034428707;0.06869852655195416;0.010582119346854326;0.01786077212924175;0.09496532352974209;0.008022438720534516;0.010513185095342971;0.011137325141107837;0.0032505813800545913;0.0031908358196158426;0.07680344565110787;0.022880287766167157;0.20576811151825253;0.030360614212592854;0.023053552748437962;0.006590418659097586;0.2431354589584819;0.014861962995624067;0.00934919077855269;0.07290433811318335;0.16003745463809443;0.06223362139822788;0.013044362038290567;0.0023482197713643083;0.05204085629895062;0.048722193571480825;0.019351722521722653;0.017295764389977493;0.011384086326935963;0.03619399759552091;0.0068828935943093415;0.08182386792446218;0.019665366001177007;0.06327648486931356;0.009918047474108042;0.473360033134856;0.034684991712512235;0.027336225320801745;0.002264645313603615;0.06733483969610464;0.00619586280190195;0.0005855099851362964;0.0011327095107231437;0.04974894677912715;0.13016099972386724;0.2703506088920933;0.019341232796438738;0.04252623539609917;0.013874730456886503;0.04465753000122676;0.0490286820674241;0.009409437605754769;0.1409176704368591;0.0625948403052017;0.007278374497362682;0.013101833359053955;0.06099340254552146;0.019474747495042966;0.039809678875384766;0.019518328129092554;0.1596486302928095;0.02079249753181616;0.018671884218475612;0.005465623796709943;0.0967926998783077;0.05284847757334995;0.041467605971301065;0.19125382121599083;0.2538718051059303;0.26020354914881505;0.40320883450235134;0.04425371213386708;0.00031023310801457453;0.016346955792797505;0.015358323506066088;0.016621254754760475;0.01642421517643095;0.018892319483926927;0.009419425188168398;0.002906139419110338;0.0018295375883429562;0.001884847085075437;0.01980680098144876;0.052296537801187155;0.09401475244857009;0.00912092492020498;0.01865637280109455;0.01637790618179111;0.039153980951840354;0.08527462788072696;0.029930348587695613;0.22948197820868074;0.013687773455466262;0.007760970031040212;0.01092876011474691;0.010178907429431724;0.009161189685059704;0.010384487117267024;0.03356838627035377;0.13471458000817876;0.0031885852994620934;0.02831691643404737;0.24653855617084497;0.0038468676724209274;0.004462501818138539;0.01839082337868817;0.005742836195455003;0.06341907120236735;0.0805686896450098;0.03981111746410688;0.001350542513642751;0.21989063278839072;0.21886047896002706;0.07520998797244996;0.0866119306764878
+2,2',3,4',5,5',6-Heptachloro-4-methoxybiphenyl;0.2046665290334008;0.19607045878572665;0.1968651705615914;0.19481846831431773;0.19770035725910193;0.19554776399975993;0.10169213249773947;0.1975892284550149;0.19827041555061464;0.21244680267699564;0.13391334294455243;0.21949185962831158;0.11902386908121397;0.2103738169082104;0.2001237817530964;0.19009717227459855;0.20307663934295045;0.20220784728152338;0.19552598485167294;0.19960048959657045;0.1973795876180665;0.20507518272045147;0.2174250717603879;0.20518132021351607;0.2114282667022899;0.019653127586322282;0.13232787769248455;0.21197083983918844;0.14741698084111055;0.17664913818343708;0.09479558929632871;0.6406469787469462;0.24216126507964308;0.15082965890582636;0.4364355895343151;0.1946045442175332;0.1209609036554692;0.1478855597414207;0.004374427674058953;0.6297432835375092;0.4759427617746693;0.49351152278823107;0.5448288627349003;0.1078386913143878;0.015923677595482223;0.011041646139610803;0.012806032955174566;0.013332241252884151;0.011448484106752936;0.6797155785392792;0.6718708003923763;0.16073984693785048;0.04708805696098765;0.05807360274261458;0.5731614375988134;0.5097937886427915;0.5084675935804399;0.6121019499657364;0.5613028613547577;0.1513348734020396;0.5165038474117077;0.44135233634799054;0.5418654293625339;0.5146963802339213;0.46062762568455834;0.5942245012744284;0.6166083758506469;0.6012713542120292;0.5757199250960923;0.6026118947762178;0.6106319921739044;0.5932387375238855;0.05334392645406735;0.014270384912137588;0.0047946664861373426;0.016823542086385965;0.0043942461538654665;0.003932667298121622;8.663598791134656e-05;0.007630600063347746;0.013898840165804035;0.013854624106064053;0.006907112228934931;0.006506873123731501;0.007269457558750345;0.0033318923638842373;0.009667684699723733;0.009849660999670544;0.012667780554270444;0.21151571384835696;0.0028859270487707053;0.0023760181658241185;0.010060241889295333;0.005459673920290812;0.006828699928649129;0.028238295291788357;0.012356841712760847;0.009618742706933213;0.008235881725159926;0.022486348426497896;0.022579671003606062;0.0068247132871743915;0.009494212968465488;0.011532116710399111;0.014785478436406846;0.48975041564190297;0.6717437506538845;0.38403875312426244;0.5442002383962135;0.44260101762549914;0.6157463725185929;0.5926177095974581;0.37094865593918924;0.33187461127727613;0.4287596579228749;0.08342722918232595;0.1313564333252437;0.08269192605675256;0.3336054458924803;0.19055065437350338;0.06514814813761965;0.08335325881044402;0.3613471464704674;0.05976069787553841;0.024131325737395314;0.0931856294097438;0.07522159418711262;0.007404409360120888;0.009548097842842575;0.003907950675958725;0.0903740196906635;0.017314581162401702;0.04065203116587338;0.08641833564127095;0.20069244408322354;0.018982473761111545;0.06122369040709209;0.024967481791163985;0.19965466221556905;0.21063503123701627;0.09739593461143602;0.1785614841532473;0.1313542349453971;0.06882957434639612;0.141475067622864;0.06584915223722476;0.05030248778720928;0.020396719307609456;0.05100322664692775;0.09768000130454853;0.09487005963388627;0.14958630952859997;0.0197432984444261;0.024107169183962707;0.1401200619611905;0.17851167125599804;0.12562311084928438;0.08335819635905582;0.08342102767894598;0.015815796647716904;0.08797247963447778;0.13956250145745988;0.14370183699034472;0.1329204011854334;0.28573351715912854;0.15785739831602716;0.14383342020094897;0.30737397071437295;0.32810703306397127;0.08603916316897152;0.08677705736335516;0.08274838642620784;0.0369454328136829;0.06070745705923227;0.05742659311777538;0.0849709643302082;0.0016592810464788601;0.010459083664986915;0.08141240088430057;0.17188909726002552;0.16721178161895311;0.0012312131786723103;0.08822187882297179;0.20277089245159463;0.012691722595913172;0.025542656692502445;0.018247749273166435;0.0004430725943509092;0.16536343683143806;0.15189008820887673;0.1820425373017292;0.1567740732306977;0.0884292088143246;0.16515538302962768;0.2943160518746183;0.12966450445842365;0.12578720490517553;0.22262194966136095;0.20514157344867365;0.18434736460093112;0.23263337211705787;0.19664542219134037;0.21768134232048772;0.18757069790938688;0.034958018045775904;0.2159622292893228;0.26071484013700613;0.05363172303250967;0.025375728616990254;0.1859983196124655;0.06587271895108551;0.18760624131881334;0.25374652418426114;0.0741473068741941;0.038107571271739575;0.15175265623264678;0.13824357869087486;0.03084475307962874;0.0021189552442498647;0.012621351557718105;0.12095368882230609;0.005770779757028482;0.03641026544639966;0.33506038339808114;0.4078332904890203;0.40295684297229956;0.5225331468089989;0.45797050015561624;0.5942290151356924;0.5324215751880642;0.561268253283578;0.5231163187952794;0.5328184739018132;0.620115724774627;0.48481020441042216;0.5316378429239428;1.0;0.9061115478752032;0.9640709301294805;0.5487465536567545;0.045329803635024375;0.022417768236896736;0.017470478837687504;0.0279097112177679;0.09449846700584107;0.020428263258025527;0.02342785172696753;0.021839484077382832;0.02920850280981445;0.02293747846829636;0.08083362866943125;0.08258813263016018;0.014337759868741357;0.22597755168612427;0.047905026491487916;0.0218455944438136;0.0053152243407422976;0.1158633922327519;0.014653708818670166;0.10030182834065586;0.022939623547424754;0.06813727533432783;0.009646481942995696;0.024930205305940766;0.0431087528438237;0.3027940185901036;0.23814018735566023;0.29071041936554065;0.19394620678930366;0.03226975332085884;0.00565457363595953;0.008408927315139316;0.08275290062184826;0.009341829323437424;0.016534350185505264;0.10998143771820355;0.0041120222144175236;0.018500592805499705;0.012765324271067859;0.007588876907921105;0.00379605128042393;0.02565655440877405;0.02302399076276048;0.23138657307362973;0.04074556993428768;0.004657911924244561;0.058488633883343466;0.2122741926271074;0.003023239825300561;0.014276616930980342;0.07510873418392079;0.0910198473583841;0.042862909925901825;0.014412546528339357;0.011457292090720876;0.044178560132330055;0.043360808611783444;0.03042774757388759;0.09189640969034928;0.019709032035442334;0.02257608040196226;0.002264785851031945;0.11634900416884127;0.014308382540031495;0.05316658574393067;0.02109818395408105;0.11558347841921882;0.006852925598541813;0.008218915703872042;0.01626994141585743;0.028958659030551614;0.003623764881114913;0.0005502118752214495;0.001322612500311216;0.03015862610296296;0.1577559487219421;0.18590989174586178;0.05314915779993673;0.035890967286539024;0.023619739380701332;0.031496817194694;0.12573430360118537;0.014466818681135021;0.12247317114286246;0.07904423001120225;0.12801119292076402;0.01943588128940818;0.008771479936363619;0.0036700800384225755;0.06662198771800233;0.023567218339283887;0.16225013708724798;0.020361717021778566;0.016453895605516425;0.01679427384437505;0.07582532865450932;0.054243713065697675;0.010351568455762794;0.157297998607015;0.19559062673475638;0.2603124544133794;0.30269240228807537;0.0689947097757481;0.004197978409949508;0.007802743328268253;0.00541483708655445;0.00796185777906026;0.31263985620069323;0.007363939420810442;0.0057959009511583375;0.03340232160601202;0.0032850524638470507;0.08188492647938658;0.03720731925908229;0.03507646961863517;0.17893771062164315;0.002345908100432225;0.0696332811180148;0.014121523628250959;0.019400987117001355;0.18921930382746716;0.04836659181069472;0.012169047221710975;0.0045978670423568345;0.009545209669655443;0.03754417251423568;0.004280960947359954;0.011875879520661067;0.008246396268189434;0.013500382070283954;0.028740346581138283;0.0021166318431468717;0.014057590910484523;0.18895500701550066;0.0027200753005072143;0.004375889190120901;0.1266335674468777;0.005604532395984931;0.06562358677915477;0.08618749393170443;0.07404543018243148;0.001432362390600985;0.1760516876706206;0.177227667856848;0.0880237550302972;0.06992238111265867
+2,2',3',4,4',5-Hexachloro-3-methoxybiphenyl;0.23835725864008908;0.22725456020730353;0.22917904150091806;0.22749291556229276;0.23064403911500622;0.22777856576737354;0.11955940539869973;0.23108681875944537;0.23186263041048574;0.2510070246047075;0.23447503237615527;0.2642473782785935;0.13690635416670446;0.24261073467272232;0.23115211365210925;0.21949261466460707;0.2357761680128209;0.2343293754118754;0.22642582374015302;0.23138302396176894;0.2306695098189199;0.2376634462655739;0.25052624158049197;0.23832375167756867;0.24540803686446253;0.007688860875006139;0.14781527481138465;0.2927994474246735;0.25059080333680556;0.19536842330722065;0.15265944409239796;0.5660313348399804;0.2837289392937416;0.17520021868190438;0.44571976966075005;0.22644980983994237;0.1778104809732351;0.2865329590766598;0.004997282765595888;0.6082053504346023;0.4093429560901459;0.48173081445924226;0.4566109210692855;0.06346114139565236;0.04143613725867518;0.033696578744570105;0.036341871837459204;0.03705609966512135;0.03398422165233197;0.6276278427950975;0.605473420128233;0.14998855823317103;0.04445975254657299;0.05420910105046725;0.546552787870066;0.4996329242101854;0.476338807570941;0.5764024999566626;0.5169211614527821;0.16423115672273975;0.4546081218811863;0.41685071639284077;0.5201497369268314;0.49663039213245336;0.43388528297715945;0.5562416788192154;0.5778290195882025;0.5538644385564372;0.5300668781709895;0.5551846416091679;0.5582662069452632;0.5179386501539406;0.045922107714944475;0.013716072122438304;0.016262806502033662;0.02554084374480901;0.014316336174515195;0.007112499872332072;0.001649539240666947;0.018152069374324394;0.020379148071473674;0.019103401082762393;0.010231254998625245;0.009818055818796734;0.016056437709500108;0.009399168296803878;0.016012263993921427;0.013625099522498912;0.04756837431457246;0.254438716772887;0.005883514020485638;0.0032259108109555647;0.013862636806527844;0.009350064869411543;0.010441031560981966;0.028618810382265672;0.007917064867800779;0.02174162818705146;0.018801068115153252;0.041361869068317444;0.03641658765238398;0.03960809773719834;0.03596687511626961;0.05296048536886426;0.05184277824764704;0.584680981867717;0.3203029531784365;0.3837175994636256;0.43155107732388515;0.526316540707375;0.5654621142010803;0.6688603604212678;0.38859710501867817;0.3461071628385588;0.42022753674222224;0.11579182028558525;0.09460298965176646;0.14949605508371325;0.3988042144857331;0.19181865087870933;0.15632790497318516;0.08147522184271537;0.36188558953705335;0.0716567239865811;0.01932265115779045;0.06843215692278729;0.06110031318488581;0.03008822329316561;0.016207217235246152;0.022671920759336026;0.15333413119652192;0.034898836698880525;0.04856757638529097;0.12840224794671676;0.24062690950774432;0.07198856535044769;0.12890845744873483;0.03209180006558642;0.25408006291759117;0.2636044092425676;0.16759616355994597;0.23635259403855732;0.1691993649329349;0.08826268240096653;0.1806550946072033;0.05438605885046204;0.14561449787846378;0.020626415455666767;0.09869089139990361;0.18694419176649382;0.11059319735282076;0.2175668088189652;0.06451254026608078;0.06346788022951692;0.1736232896828179;0.27568351375204464;0.22301712804450025;0.18293185461841835;0.1775789649842066;0.09133874358000264;0.19569999814565514;0.14571224813028813;0.25322118264890187;0.10457151872446498;0.20896959948218513;0.15088301249144911;0.1716912846520993;0.4526943024570376;0.466500436367993;0.26623790803475145;0.15888878287729646;0.07448820794123445;0.051399591620858116;0.07201215563978153;0.05387505204657813;0.18833073104208106;0.00985143801199738;0.05227963873691383;0.09512403450061437;0.1964247909869191;0.18892181091262064;0.001873471854849258;0.1112048072824573;0.25248759245302765;0.02227142479584028;0.04354808634479083;0.021438873990361155;0.008540840950720508;0.17596239183257997;0.17267979738251377;0.21258633732490695;0.1802777697675968;0.1866868117484538;0.18334073040364673;0.3217365422165344;0.15278516755771807;0.1469480483009771;0.3038630434323114;0.2823443614657722;0.27584009152037386;0.3068127078898993;0.28712568939162136;0.302947497108675;0.2613258916011124;0.04907581198116912;0.25476168563539003;0.3482994512694925;0.06824009093488916;0.031809501849477145;0.1499921155366472;0.07004062970539515;0.2118953065837932;0.39542309241751794;0.16053202262363378;0.05946952427575995;0.16382478887001478;0.1636220375028994;0.031365409441912;0.003293994722196071;0.020834407659998208;0.24535850288513886;0.01465012513203311;0.06351794336401667;0.341689150555785;0.41888688326744167;0.3839742243137337;0.5129699389831044;0.4320027164100875;0.5703117424049776;0.46538558719717166;0.49054395514481286;0.45508763054309603;0.5008605343627058;0.5825386649197992;0.4042062512174239;0.48412329636786394;0.9061115478752032;1.0;0.8909397176133774;0.5010395641455685;0.05414602969214404;0.033179538341951864;0.028977457000621203;0.051638730844206275;0.20265098731495343;0.02667952825641093;0.02577226614311787;0.034260463390579185;0.05095759514827309;0.020635796956264177;0.08740603738678643;0.08934970682854737;0.028033928931295655;0.25258297790442963;0.055721936990415395;0.019705006061055613;0.027159309215891388;0.15183720453435226;0.009778302579944423;0.2081066748810017;0.031117030319676567;0.09313272555213549;0.025959993707374417;0.0161676720218049;0.050115426846003744;0.27517251376368557;0.25979952574196385;0.309830718995583;0.2163562914666997;0.04169395809394232;0.007349874641663143;0.010615200756506375;0.11742869152121484;0.01746578959195214;0.04688176349552066;0.13839407702761614;0.007871164363705756;0.0444191301425401;0.026525226597236266;0.04999187368719011;0.02852954534139789;0.04401039801741211;0.03117306832457989;0.3263917509440903;0.07059442180647992;0.004986410747294454;0.04981689523341159;0.21412359483762464;0.001856360653149674;0.012941161987498681;0.10371883389853602;0.07460307683188358;0.0641986932422275;0.010167138924330979;0.013074441282396099;0.05372362985235942;0.05380272824071499;0.03857785455214484;0.07963423100623473;0.0267750369931954;0.036682674366900155;0.0060507652875172405;0.1946459920490547;0.01786865448384332;0.06319358753234237;0.02294949720708464;0.14156870111121198;0.030482250837077764;0.013481539820840107;0.04791720598039566;0.05698616735670308;0.0036055173412756847;0.002465585775638723;0.003829617242656767;0.041604901311148045;0.264514521003413;0.21803607881728929;0.11998919643965082;0.042981000678421755;0.043952780589960175;0.046823044485559163;0.13639731402269648;0.02387754043266384;0.11712476549512506;0.09355020561137638;0.14807871247378385;0.015825692397542696;0.022604615862458342;0.00839425597447029;0.17139831692411078;0.0422043310599438;0.2308514033087923;0.057398954085727066;0.0527731093755846;0.018205314634374914;0.08991842859167333;0.05839414777977418;0.012048447415631932;0.17886517360266485;0.2361267886288996;0.3156730986835574;0.3127792153151886;0.13558464046818053;0.01906451042843007;0.020129268245442467;0.0134719409590664;0.036082352404681446;0.26447122968563613;0.005358132453636583;0.13572395639901613;0.04669279120682183;0.004236401114476135;0.15324383872635663;0.05292263571308954;0.06302963187936275;0.16323147594639495;0.012315426904351374;0.07950453698841933;0.022079011548704713;0.03481102994936268;0.1822196551593404;0.08416590464868871;0.004247417112215675;0.016455507018683174;0.046125193164656776;0.1254874882404465;0.009756283969604302;0.037813343391615566;0.010945460050904535;0.019655080220379734;0.058195097664666275;0.007408203402509504;0.022723546118193924;0.21828921393838036;0.00392820749219524;0.00717626409328103;0.12796816216224188;0.008347891563582774;0.08388773158652375;0.12780550580373584;0.1706379989577756;0.03044557612954857;0.2192420691251863;0.21908783199405843;0.1314425012025761;0.09431159408139042
+2,2',3,4',5,5'-Hexachloro-4-methoxybiphenyl;0.2786520374605804;0.2676960986116454;0.2695742837502249;0.2657586786578174;0.2696896099631286;0.2683276001414807;0.1399727167304137;0.27144189256779966;0.27226014476155386;0.2858892191612626;0.15118696887004265;0.29775061282679877;0.16122636906644386;0.2846351687898852;0.27233254769590365;0.2588229303535315;0.2778246301470546;0.2759671273095357;0.26679578637764184;0.27264870759068455;0.2679365382304082;0.2784206856360768;0.28857286487755945;0.28030186616454095;0.28957925795445844;0.009434387431054026;0.16352830294037926;0.26143477866014325;0.15901463438786978;0.21829379975280597;0.09812431872698743;0.658068234480056;0.26560529867132066;0.2061511033158264;0.5132293903258406;0.26685615049677397;0.1660265220843977;0.11557220965161115;0.005348151258947133;0.6781516108589323;0.49674739564510406;0.5651095353213693;0.5361544238809598;0.07291120689072442;0.03517576586755474;0.02866030586902548;0.03204348914757116;0.032177932414081074;0.02980535192838049;0.7283922732143165;0.7186232396591504;0.1830987270825522;0.03606659875576928;0.04691469110637792;0.6355025629015167;0.5846725103434103;0.5686453511911864;0.6780033203069947;0.6105479636051095;0.1615012170235894;0.5407975569988708;0.5031300628796992;0.6166020456694892;0.5885844325790323;0.5214064936395407;0.6567678305168851;0.6807673382330001;0.6496200663662886;0.6213187270751767;0.6504138265220312;0.6538332796525627;0.6093489408703933;0.038253958706597625;0.01303170149973893;0.008966272597859126;0.021738760661114555;0.007991580076686686;0.005280338532296175;0.00028684426654137054;0.009980708547785804;0.01626631447176959;0.015926212292881162;0.006976594255866568;0.006616302830918219;0.011781860049438873;0.005355276125125493;0.015315327129555719;0.014690639863935722;0.02963998728755725;0.18160087113466408;0.0035131184325869523;0.0036616424437965487;0.013992950274246402;0.019017146872253313;0.020160958633559174;0.03049322242656555;0.006780266948478551;0.017723719692879468;0.019675924511006693;0.04061182747115144;0.03391963662140795;0.029290737378290105;0.029430320677340256;0.03792306006410328;0.04326185491657518;0.687827811150699;0.376334667922815;0.4490182413640512;0.4513148941483649;0.6144493847251996;0.6034199961928737;0.7696248900844177;0.4195211349078388;0.4092849153377089;0.4930578646554673;0.09569471971728413;0.08425963431961608;0.09996619769520071;0.4187105990419347;0.2096252458795228;0.06821545985703459;0.09308663829613036;0.4157947390771867;0.045946072075367196;0.019210208073648857;0.05693122847111653;0.051677668868807695;0.007220667475734448;0.014296843191035635;0.025404588362180108;0.11577760813638986;0.019826219801244254;0.055078032101999415;0.08971100962339851;0.2772941131320366;0.02557705928981025;0.04947877052137029;0.03067067623045434;0.2637037397033553;0.27632012841569165;0.13523754608598354;0.23860084732507633;0.1713586955770998;0.09187336171000664;0.2064864562732383;0.03959548835987099;0.04960203403986957;0.020334721340784814;0.06289060754698925;0.10925874884071671;0.12351064789428744;0.18240952852020792;0.040735240591080746;0.013149609502566837;0.19646652992622907;0.22646817702456096;0.1320140430304048;0.06799846589029647;0.07028107728376387;0.029987979866956505;0.07927025407437059;0.135322687407851;0.19270799401213196;0.11212179906717189;0.2465764795152413;0.1420993196528285;0.15980353635223332;0.24571533255530809;0.26385439008097145;0.25509999586505944;0.13635649438313416;0.08246078042443628;0.03404729374265307;0.043389534210033;0.04618617198485328;0.0636853911051715;0.0018514989507914343;0.011508715171199894;0.10233305303320292;0.2240368604721599;0.21868269728357023;0.0017401501120011692;0.11908682712370941;0.266114661718539;0.015494239989135532;0.03580562848395088;0.01757461389949717;0.00046634971758937926;0.20016560770127137;0.19966561555908705;0.2412358305484611;0.2217076227770833;0.12918601236462818;0.21486647617052376;0.3608976542387555;0.17869145315361365;0.17305573191386925;0.2599778946678711;0.2302915364777358;0.1962365707752508;0.2760816448366108;0.21206296124737298;0.24897149920261222;0.22792695637178448;0.05356561970122941;0.2914529115117207;0.3312560270237617;0.0617364774683726;0.025114770713839336;0.13409243724979833;0.06475369177031513;0.23740269246332785;0.24386755270092514;0.09698923581396446;0.031862265129132365;0.1892465068202764;0.17907852632000273;0.02962122624895947;0.0026390687882932107;0.01840359515020638;0.08866202779158079;0.012268956593486048;0.04883466011868794;0.4003467704776207;0.48779770473995177;0.4567333389956407;0.5982090042553007;0.5189772928435927;0.6668073758716919;0.5566484178591724;0.5835721833846532;0.5463195902814086;0.5981610212215625;0.6862276504922415;0.48709921822405966;0.5804658318498684;0.9640709301294805;0.8909397176133774;1.0;0.5966489255368786;0.06059050407725134;0.03393688601571056;0.02471089860842068;0.035561030692397154;0.1104762602642585;0.011058049084353438;0.03200443115816583;0.03481138503018099;0.04568900603284328;0.016173363033928863;0.09655133962904071;0.09888112399960124;0.012188802292853185;0.29094876934362374;0.055968234575377335;0.023728787581351423;0.016200515787941086;0.15879435808863848;0.013345726582868792;0.08439874736139781;0.02565165674481131;0.08897703673460029;0.01624364983987177;0.018336867533836208;0.055888445760209356;0.3456914519014752;0.2781838847611073;0.34170558514128;0.24071439426454985;0.04544664395849783;0.006661052881345445;0.011834983613111071;0.11789122809423452;0.03331711614209274;0.02367328249834097;0.14259478696842207;0.004616100273090899;0.025385200724195797;0.024466098538103664;0.015131857512900082;0.007793744500591723;0.05275384478026919;0.025708735816870252;0.28271893477549526;0.044295299632299535;0.009263765894276462;0.03744105275776558;0.2488252981352809;0.0019232974496177252;0.011680402171167064;0.09156423131609366;0.09237905750742746;0.05231512213428287;0.011366964407260633;0.01090267393512862;0.05890136850305103;0.05796275659000114;0.029592094019963867;0.08327347785768649;0.018844970458915398;0.025598570894733993;0.010241769461071108;0.1315858050954394;0.02034837610075607;0.07160388050260058;0.024920328943303663;0.1297137137799998;0.02106721265771948;0.009152472834065246;0.020899195748164536;0.03650189199445957;0.002114520983360797;0.0008021185193331465;0.0017834487268914346;0.04317627948104271;0.15547846148786348;0.2566212944280653;0.04238831758929685;0.049681728180058754;0.024252180367788805;0.036061967711069155;0.1501418219651474;0.013799164690356028;0.122926818907054;0.09081074994432614;0.16342973211729728;0.01464151396144288;0.012838923858328428;0.006348170711692167;0.04949153712322558;0.02425738416179989;0.2009056000822957;0.03648119159332112;0.0325107414013661;0.017785553996543;0.09213871967994613;0.05459895705707333;0.018198831690445245;0.20782531542864557;0.2609987622082069;0.34050677581064;0.34806531109209876;0.06768600112979235;0.018803026767237357;0.014528922732334065;0.006991623908717321;0.013863021619685684;0.33831053131626726;0.012801192157291853;0.006332938328167815;0.028235480657360427;0.002495272444041106;0.096436062519873;0.03897561128499665;0.04924542978984183;0.17174578706905028;0.0037599322324430567;0.04856476542046731;0.021952734713574684;0.03296174790914874;0.18986088158134182;0.06538280798579052;0.03750097543488674;0.01009546103340028;0.017618430980633936;0.048688886436722666;0.0054172952768994104;0.014402922867071387;0.009039308044853622;0.01844074745725224;0.04541475043148945;0.00850571706133496;0.020183342768119037;0.2591561984906943;0.004209376867968892;0.006717610752352677;0.14996229922820437;0.008166687361147035;0.08602391206909565;0.09366892507162632;0.05384005388014231;0.013853667688775599;0.2401508393459443;0.241763158993476;0.10531796786561139;0.0938643626333852
+2,2',3,4,5,5'-Hexachlorobiphenyl;0.24962903303934147;0.25057057930973603;0.2526241273309961;0.246510214725702;0.25052721797566685;0.24787399191746265;0.12909182290172988;0.24996234634295425;0.25020968487422546;0.255872919078933;0.1423233372167475;0.28494650087989326;0.14991107885150456;0.25150566282274656;0.24979940798020786;0.2368145039500299;0.25989700959466033;0.258275667099935;0.24969446099567277;0.25565275660800385;0.24589463921952415;0.25697663229335194;0.2614135451413288;0.2599025307965063;0.26265242823116386;0.01903846717992521;0.11874816739058992;0.09686947852738954;0.06798754763524395;0.07116656957141275;0.051695262582811624;0.6195345431819127;0.23422275342235238;0.1899784362030506;0.7034594160608283;0.2553760510919072;0.09340440616626741;0.06305599037764481;0.004889630580814791;0.6331498608865496;0.935353723523858;0.7636567580102905;0.7612657608647984;0.012604166882737834;0.08121155511936994;0.07117146901544501;0.07713697230958722;0.0767195569907173;0.07620280070818947;0.7786657409527052;0.8595173636649681;0.7005229072039352;0.000606742911587223;0.0018907875724867873;0.6206368548300287;0.7468690615128998;0.9663421347966987;0.9105417765215863;0.9886643092443437;0.9943530693133283;0.9569189911003152;0.8151050311599852;0.8419803861367026;0.8362502876751005;0.9585898117784768;0.9248930161900027;0.9130281090343808;0.9682736857574528;0.964667867102543;0.9661051588858992;0.9442985655749442;0.9340067631911441;0.009939328987808655;0.024793792125811627;0.005643382996853767;0.03160252555606614;0.005616789158892286;0.00518788405562651;0.005486465011347908;0.011334192156699511;0.031434821922302195;0.028019729138394386;0.007415879831018637;0.011250919076379318;0.014826370806136798;0.008350536700282128;0.017811453994309594;0.01780979730704471;0.018046496456058127;0.16233584723782393;0.005589069004812929;0.008219422795319705;0.031202711352065714;0.034811841261331626;0.03600950593190409;0.018987440689292215;0.02214028677154043;0.01324836111698884;0.03136761869223029;0.033128200216047385;0.038937161142498136;0.02866482141900522;0.031799777413717006;0.01779326614727758;0.026114806915154755;0.6077766358503218;0.4032321799545377;0.44165787542793594;0.4256308760636139;0.4882032794334848;0.5561666598128043;0.5972101999267039;0.39134624293725806;0.3915939547046192;0.4962567952486089;0.10042807959569539;0.067258901417008;0.06283817693437665;0.34577168422526355;0.2974771086031931;0.18372297692606923;0.07454809089334845;0.37435064211246316;0.01933927617239673;0.016319338174086283;0.013872063595372075;0.012330342924053292;0.0071019028279382624;0.01871282588903833;0.006054811611707497;0.04230004782932655;0.006361149978410949;0.05582063886091038;0.06129554772057389;0.2640254646959964;0.03298775962406698;0.019545338239716898;0.009431140664391867;0.2676114975877229;0.31235738966158727;0.17428570452841632;0.22141952758059594;0.05406062764722477;0.15011720478478696;0.24784406861707647;0.015892094288050794;0.010118238471223052;0.01458204850627245;0.01921671451027224;0.04099447263691554;0.11918815596406065;0.028292149839630732;0.009060756078478453;0.008530111086256283;0.22701178218582002;0.12103535814486677;0.0951747205012758;0.033685457273079915;0.040882256727713825;0.005895681625511751;0.04560609735404683;0.07373649798773209;0.008119697196688156;0.085460113531003;0.15361062106445894;0.05351202658943693;0.11064228358304899;0.16365524982973714;0.17191311389229744;0.06270501990766472;0.18486266759899464;0.08771522586015516;0.0019776181334787753;0.0077639936459857565;0.002518540132110061;0.03312074629396876;0.009736895742208493;0.013552739415138366;0.09262982623145308;0.20121744210823392;0.19761576913270415;0.0;0.09558740595172298;0.23942281300212456;0.01592329778095175;0.045741095731403315;0.011356264338151375;0.009146944132479275;0.13767236313281847;0.1821354159291469;0.21332591606167037;0.24574798034441106;0.12734921296345325;0.1905568385029763;0.32889257684716394;0.16795799821957536;0.16322850305377998;0.16925846677915501;0.13935786205779493;0.09996627116421386;0.1851752917393286;0.10476142831697989;0.15169860633222695;0.1896937388005667;0.07276129771583997;0.2578317866746932;0.23456172066316924;0.04681966950808669;0.006322036726283591;0.03574892932114615;0.08955412818678858;0.2260425845120269;0.13841997480105575;0.09523511901734623;0.10638674948004273;0.16323915643680692;0.1802244715062677;0.04147686077805387;0.009907948553018506;0.012119120680672616;0.057085997880135145;0.03449545046759056;0.028352648662439688;0.36410213062975216;0.6103425188127595;0.7681227131032565;0.7376267058601886;0.8299509490390407;0.8455531952987884;0.9564327869329373;0.9576225642331277;0.9556491940889995;0.963876669367795;0.9066954537000163;0.8243570695500116;0.9944548479598305;0.5487465536567545;0.5010395641455685;0.5966489255368786;1.0;0.06042113952230245;0.020045479229406034;0.01833481141360545;0.02032835672977344;0.07045581374656883;0.0012319545874107832;0.05260248387037019;0.05407441326408456;0.05069143738146938;0.014272026334847041;0.07232584891407491;0.07352616866854894;0.03179095194094705;0.2723967158221723;0.07797430790509438;0.009794534430220204;0.007971934101872169;0.18705265334111545;0.01933245665102795;0.055300594254964634;0.02054116172819954;0.05709052349555279;0.04491268493976713;0.01924081399869296;0.06797340905741586;0.029085511420418552;0.24095039855474867;0.2973394744661983;0.2304425387117665;0.04260985315160635;0.005370922797894843;0.017232791029619846;0.06900080839765772;0.009033646683276133;0.017207128514033943;0.09870107685416259;0.008245176679873147;0.010213665339839636;0.010694459417316962;0.002763642688415174;0.0030186341713079345;0.07390361362866005;0.02069646996661987;0.21039085046523237;0.026091493775836364;0.022404866217918144;0.006069046568394033;0.24307454823254745;0.012127900061147705;0.00968225710241995;0.06451226874751304;0.14053417295595907;0.062370442629687065;0.011452854671735298;0.0018969131695881797;0.05320890045456223;0.049445598179598614;0.017701426051746443;0.016088801338462917;0.010854502744289644;0.029317858427026305;0.0053193257969440305;0.08331525868087354;0.02058348899434728;0.06492026359405031;0.011300404740051197;0.45747200445838127;0.030799437670471493;0.026505096443252083;0.0021846937840251644;0.054728070948029166;0.0057123802521984535;0.0005172560954728668;0.001018144846232344;0.045095503189094895;0.13092539281610677;0.2787722949566549;0.019354951876173466;0.04294875213670159;0.012048970610741668;0.03660163852422373;0.050247267128163575;0.00901568225057295;0.13809243106508878;0.061382341246078685;0.006840557129901343;0.01577027915727704;0.05782120313199501;0.011479899044124543;0.03223066601809643;0.01746418313049576;0.16286377044211306;0.021218669090638395;0.01898915161285772;0.004863726615080597;0.09630335468745316;0.05205877219718194;0.030923602498205766;0.19493318451318875;0.2616070434174629;0.2656856686918429;0.37825682671784455;0.04503394159239413;0.0;0.01573442945852096;0.015289778587385977;0.01580258060368859;0.01527719645047206;0.017637758684356394;0.008694758317609992;0.0027545757537540986;0.001850082747280614;0.0020368283360799096;0.013091763505258562;0.04756831162197069;0.08613820920410327;0.008604790068629044;0.018684854307684087;0.015082674642351922;0.03707239011446755;0.08103366274868729;0.02909614196428105;0.1704811701715307;0.012591514710395163;0.0072986295474864946;0.010817946133740267;0.010035851454313377;0.008862598945732379;0.009926138048181534;0.033555633294577655;0.1311831683525574;0.0028635733618025006;0.02861598326920563;0.2491171577741381;0.0036941797724176647;0.00450216206149626;0.0178658045071732;0.005801705681389108;0.06457688968639055;0.07967083747343238;0.03531375777067507;0.0011437579088484206;0.22159769106540153;0.22182403636033596;0.07056255790392091;0.08034523157647287
+Praziquantel;0.27241741359360916;0.22580535754918876;0.21785144468754647;0.1983689492071675;0.2002801784156989;0.2015558738682759;0.10668346027369358;0.2583093754166746;0.26155105338755347;0.21560523856226627;0.09846354619858752;0.21637989292017265;0.11726255723682671;0.20610370772122416;0.20793817020311783;0.2080190550248908;0.2092175650807819;0.22113860698137208;0.22436541571642243;0.2222195734453007;0.20860051029889048;0.2082230997039996;0.230730754618443;0.2128852030962198;0.20351770692153556;0.007907975489906252;0.14259052335122693;0.09284973563230173;0.10375817530531858;0.16549666665537685;0.04943265696117196;0.059687191628607236;0.09650820492439444;0.15005424097173106;0.14920797835116853;0.20289962554241195;0.27603737864292777;0.052221188605019876;0.014225793145787306;0.11363518507809828;0.041396510105030905;0.14852730216742394;0.034907087164974746;0.0;0.01703624506511919;0.013394235138394772;0.016126415959882026;0.03218049254000024;0.014600763169163873;0.09167622986306624;0.06818280031200934;0.030117913857279945;0.04851811325862337;0.030551639367810367;0.06815324657501329;0.1494553936316081;0.07908866610231409;0.10046967603727326;0.06429217441613856;0.01240328988948579;0.05282552492901048;0.09460275102799928;0.11804450119348786;0.1161037224276368;0.08049950495091494;0.09644479559716333;0.09875877902516113;0.0707342992891397;0.06762263685270993;0.06979434823680357;0.0624240025739921;0.05088470279713218;0.052966266373752534;0.06830063481503681;0.15922444737050284;0.08029954141082637;0.006383098094076065;0.009196738591145026;0.009630672728634907;0.17184972211341984;0.03822196800067619;0.032372959712439905;0.054934097125599705;0.028909241936437294;0.06671372860525962;0.06220804386186405;0.03421807419465993;0.032229871018725584;0.0392738519698418;0.13594523119075946;0.019050481065427144;0.010914544836437187;0.03704600663500748;0.020397358450489695;0.026980063669765;0.03870106012099826;0.03161994611412971;0.034725400197213305;0.03454531233906876;0.03991088103201576;0.07814703366365552;0.024973644088040828;0.05166254243905468;0.0694023849313942;0.05138648701621886;0.12998352554383988;0.11423537988209895;0.12022292912491789;0.13850790723756393;0.14802695827809687;0.13903889088704607;0.1406004051236951;0.1496880385394091;0.14847865584974915;0.14315480813913373;0.025365944408846507;0.02413586885900839;0.022846868934201466;0.11255619054950403;0.03818942485886634;0.01489376619628915;0.03678734936176751;0.10760308956510742;0.012416902220052924;0.026871257291272037;0.010242414270102059;0.010838794555867412;0.13510168502568548;0.1342098407656832;0.11722285513235987;0.0440664712077072;0.26761706475960484;0.2453412612705181;0.06185100615545309;0.22170684651359465;0.2976605432979004;0.2639901911847623;0.25322327277057477;0.3411724005170275;0.30909595150630964;0.087545865936712;0.2198172237036873;0.10809983387918258;0.08114565735977206;0.22997946637789782;0.05905358392152326;0.13801617563470286;0.03210739616497359;0.03541064336796337;0.03396881016564506;0.11439707662064681;0.03370596763023333;0.06872474312241833;0.021934166839209897;0.38502099307788273;0.18233608840874985;0.17318538098059344;0.10171434860599149;0.15785566052452976;0.10932041173108989;0.11514068806270865;0.016074680093129744;0.08061253250751035;0.00959825214598165;0.013549319925695087;0.010370019382714203;0.025978532836877906;0.0037524723689901667;0.006255448191214275;0.12676194409036032;0.03809274376058707;0.02159751664374699;0.011070129181286994;0.02614499299292388;0.024191298018234893;0.07250242531339413;0.012527487299457584;0.002906493930634237;0.10502654064855466;0.16529818932284407;0.16160603007628116;0.08060999390552973;0.14945120128126255;0.20420297559727932;0.030215156675129584;0.12266331200643285;0.13008457342352975;0.0029753912795190585;0.17053673730750432;0.26510527490836416;0.300998556340593;0.15404587825065733;0.22042710630288587;0.16852548077208648;0.3381666756833149;0.1611593890375942;0.15878010844289583;0.15692344897894933;0.12738267948329068;0.10048043037385279;0.18545472353039905;0.10972352970394784;0.1480312822636908;0.15362170888071003;0.29085346993326855;0.20549186316645052;0.24780295428170518;0.3227291020400152;0.15556075475852563;0.3412615975612453;0.03234750367880961;0.1335385915458957;0.3030699687545086;0.08558180432635323;0.4357106310035408;0.19085076338280196;0.1391442551890476;0.31182059135072343;0.027191420577526583;0.05525236952050311;0.1666807179386456;0.053210120561179026;0.010222331589845672;0.17717888751341268;0.15416565329836676;0.1245442282457111;0.14978258830291777;0.09953009668972546;0.1209266173483558;0.04863777798998206;0.05151328612382461;0.046081596769377876;0.08628624297190889;0.10178842810234441;0.029070534519067697;0.059373323873820494;0.045329803635024375;0.05414602969214404;0.06059050407725134;0.06042113952230245;1.0;0.03831346693680683;0.013139738515541101;0.11999757581228308;0.16069179721756835;0.11154553907263022;0.013210157744915015;0.09736070312986721;0.06727488223877079;0.008754710151303401;0.05290040494094932;0.05217715510851329;0.0567694805467151;0.18084715830254725;0.09937898347943763;0.009513863418731786;0.041020019081842;0.12129862344449023;0.005543970662701046;0.05602984525116158;0.05165192803860467;0.04776847154790029;0.012553018209722877;0.6679008566148631;0.08524358796977556;0.008871209873923026;0.10770872901259954;0.0940434708743127;0.13164914866062116;0.05543851436256836;0.0913733276251231;0.0112462317963262;0.08591857608591245;0.09413402501361341;0.0588527304490702;0.08045523990066257;0.007047534329689068;0.007747038425792383;0.0076506033292118025;0.017452930862742883;0.07213673662114752;0.05275717204225337;0.05189620406156487;0.2353092193601554;0.03548160295661719;0.06782202783837424;0.14034278903256395;0.10973138791797292;0.0046700063690371645;0.015315182717622602;0.03195816704543102;0.035175138365642185;0.16514472879579334;0.10188113959939421;0.46176333900992433;0.043781096547250695;0.05989709847161519;0.4159370837473126;0.05605137919636003;0.6285926264161376;0.3061927680913542;0.07225880382103904;0.07448549190395481;0.025643036292897516;0.05234554372829842;0.021841429995076843;0.050938921348715305;0.15330531411749448;0.33790672482326267;0.047603894673202474;0.022314274387352562;0.2707064762866388;0.03551821200323098;0.058393169722991536;0.4744686388741478;0.21022179468753277;0.18354726880889147;0.02753859233825826;0.06370559718700834;0.008502212845619042;0.00515377819419858;0.07870212265250731;0.17173592265661142;0.1333728010804278;0.14015677879650076;0.04063234941127109;0.0025891827232429753;0.0705341643590403;0.05007513627562046;0.03060260430100592;0.03220299895214513;0.16699663491752795;0.09521166719542623;0.08764234990266423;0.08040505293671359;0.07133803666400905;0.09454308917797431;0.12083277772192645;0.3143054422914077;0.1941548271700851;0.22941323467247957;0.0883834213909716;0.22704752580048856;0.03303925540051923;0.009836508449310095;0.15103798355037956;0.16206453064967594;0.10469254600021252;0.022820285659630977;0.06616401688548534;0.06746549708029294;0.01269359570763678;0.009556974808449152;0.04199213983203977;0.1386376668587725;0.1493257040346708;0.0003792778333684366;0.02124493770171861;0.027727851553690726;0.03175938012755325;0.1989414315000658;0.08603536404339537;0.028196160420934518;0.06024749993701748;0.02939745413076119;0.09586162298583656;0.010974351283807464;0.07437259604927461;0.21761012859902437;0.21738673060615207;0.28018794523447155;0.23983269925931056;0.20219268442615698;0.24391614651742777;0.04014604230347856;0.05711774017379023;0.05278299885339922;0.07775454603397042;0.1869360359192429;0.22722425056239437;0.025069622132969198;0.029442157308020443;0.4650140383775361;0.36736270751806416;0.2883692864266196;0.30621301093750836
+Mexacarbate;0.059502040495399915;0.05881774723835488;0.059386373955410014;0.08591587202610823;0.0883799948035847;0.1399031909002663;0.06480239943292791;0.06713298505691637;0.0676768916919673;0.0616410047018876;0.057034238769167134;0.07125789963415659;0.03489903187616639;0.059103173196808995;0.06359438817096895;0.05838430869256684;0.06050816675438407;0.05992438173675877;0.058229914697860895;0.05947894363300749;0.05995358626357292;0.060292581632840216;0.06772936875612538;0.05962816825395875;0.09689840585361426;0.043591227694290975;0.07745177751227915;0.40275714548010966;0.05538128785182204;0.08079901801780687;0.09826558239488402;0.03140558257527294;0.10414348182376944;0.15703873068133511;0.05038605249737133;0.2499213328562302;0.2030315131062551;0.029531553586624352;0.053932032370385095;0.044765770592780245;0.0163022202521502;0.09483548246293447;0.04878168248363442;0.0009052805009892439;0.24994294046731663;0.039953039451792724;0.03961713731146605;0.0396481979838744;0.041010676595144506;0.02870821557651027;0.02035352584542628;0.022254442160160946;0.34239201205542713;0.30388607113752947;0.04008521319247159;0.08983724878692602;0.025093272196293252;0.030996929951787818;0.022139995085848522;0.009565191939240759;0.01930645601901462;0.08031753874584034;0.08653180695606243;0.07905764518737812;0.028979862864521665;0.030427688466363734;0.03085150316578303;0.026395736928747828;0.025984673528419176;0.026298422863131617;0.023202434881464506;0.018743781174713238;0.0648897465830191;0.0766191689042265;0.030685177744299387;0.027349554055272857;0.5183483309996576;0.5164775010918635;0.3362262162055245;0.014088515150900831;0.1158154726667249;0.11537882411892315;0.043632951890462714;0.03868554848987552;0.021207805996441245;0.013052353644421106;0.012404991573567696;0.02095605818887735;0.058125233991818195;0.008562934570618876;0.005330674459299227;0.0160789320824255;0.06654853486777475;0.10543421068151777;0.11525489022962761;0.06785374967308139;0.06579057597215705;0.03456376912460921;0.044769791946806546;0.03745252364336591;0.09546718292466023;0.04343318987515598;0.05179627062935142;0.05595523512347399;0.05086432497795649;0.044168518058546075;0.03403571879845739;0.036090647394687383;0.03780045041974489;0.054881123426735276;0.047212456256704255;0.05083486965461247;0.050527707713845356;0.044403260596269485;0.04240693347217889;0.01095971501897153;0.006125748811867116;0.006619045815210061;0.03812716657977855;0.0634189285811503;0.004843825165710379;0.00931175831212071;0.032539389029459694;0.029841853146816977;0.011662502531039608;0.018764233712690204;0.020477161075663837;0.02703274097501537;0.045415143274794983;0.03222517522377557;0.09025392447099656;0.31573646424700735;0.041054861444408765;0.3472898844429401;0.07439430317965105;0.04173544747804417;0.38507871457039383;0.20030026980648935;0.4585065386437794;0.4711716012710448;0.07751814646499466;0.16592623049594318;0.22332194683314266;0.05660269234819028;0.299339423407749;0.09005064160548404;0.061999446626305035;0.08012356640563441;0.6048564164727785;0.12357906533524701;0.31120331888714337;0.3876423325790127;0.2211594930160449;0.049820925397671655;0.2657929844791138;0.23282275011155681;0.09815334783108055;0.19233716664170505;0.1515331507496292;0.10506846796818967;0.12462678723124648;0.1566468173535602;0.025581668040785963;0.056385245828611576;0.02108077559255116;0.010769134211609813;0.028534712800689543;0.0035304294017874313;0.006208904554980081;0.08234465384829077;0.3151483581095024;0.020523673892383316;0.025398610091883808;0.23731556345429114;0.22832246367211223;0.021290047312558576;0.05117243999635067;0.01128467259776074;0.46742196368356226;0.20198816513947937;0.15833075821832762;0.011987898017351355;0.08433837549119419;0.08507272500098773;0.10392763169771511;0.17395771605726715;0.0330625681283809;0.0;0.038077496233310665;0.3526879251230265;0.32740922166394726;0.07954378733549873;0.4061836564291275;0.35055568237967516;0.08961212777514033;0.040316808238562735;0.03901475736857704;0.05832132774795609;0.15195576236892186;0.029495544078120682;0.09397543644889297;0.03961024420751622;0.05091234631740607;0.052683743795093246;0.13243604924040497;0.06057879318889444;0.4627935199943753;0.10769796159271647;0.3910219633247433;0.0336315522671048;0.03698366104163362;0.2157914162443498;0.1352742207924029;0.0769925124463576;0.16630619513040734;0.0650265023529463;0.043016216105248785;0.1731856670982447;0.011006771812126044;0.5626376331764508;0.16693391437949903;0.0514371543097552;0.016191104617042255;0.08282683175961975;0.09481205792408524;0.10410229417546986;0.0929349084974638;0.08744253508274433;0.0734130139298327;0.015298970273665167;0.01986207528402898;0.014689395940882857;0.03159140178202236;0.03144435250127181;0.009274882275820098;0.019990097141754676;0.022417768236896736;0.033179538341951864;0.03393688601571056;0.020045479229406034;0.03831346693680683;1.0;0.9812281262304458;0.08863799076430717;0.22749432489329474;0.5945254618860772;0.13589218273092712;0.03321465991545396;0.12494136133935259;0.047734035627438005;0.3090551195557587;0.30808972089669384;0.03901084028724625;0.056021742985139955;0.37791700212386387;0.03987122968039139;0.2383273392577424;0.31987665162620765;0.7628305730855763;0.029594507100870963;0.27141957945167033;0.07532301169623848;0.08109879715554809;0.13567976497767376;0.014063553652966127;0.08323204400906677;0.2627982650685164;0.303274840716566;0.34393945064209636;0.40353674503075815;0.018792136830072925;0.5909201794820321;0.11497701732295644;0.770753093451201;0.09610105340911838;0.08941493854517049;0.0009177064942778445;0.14236581663066175;0.5175158246776377;0.350379829625491;0.016619777185562384;0.3751672824807635;0.26893122023089566;0.3350733990377816;0.16163318661594292;0.12264618508047846;0.0016186489488376201;0.0371353617335033;0.015832653429542022;0.06023072808709735;0.09754230580364803;0.008028808426812717;0.006216263616945183;0.05373456854128911;0.02143615969073582;0.061139376007669534;0.06669218992607208;0.14727564128897266;0.2199437726777091;0.13641036128292516;0.012836220562521145;0.05858586531396508;0.49206766922469997;0.015151051893684816;0.017060113636834153;0.04029527051845712;0.01948440778393583;0.03294908743520171;0.01818185864728442;0.022135540692187015;0.0907386326010699;0.022390667941337625;0.0;0.004888416646116234;0.11993378144704882;0.2623754239980178;0.05504318536610551;0.16211790243600913;0.03238746200661374;0.010451561163869697;0.04439502140916798;0.19561110296763673;0.09888328355742712;0.0338702137904998;0.0748439985278581;0.16291953282853083;0.5440931924646917;0.06494352587116455;0.0794343629001757;0.1813711090630032;0.011215119920171136;0.5565398953983453;0.15520672687151849;0.1582564439491108;0.041863339652599994;0.07423479501006172;0.0595251815976667;0.0298949569100929;0.07663739026803607;0.1090293093261065;0.1993082648404976;0.02790891340260248;0.1362063610223259;0.010340249018812642;0.0008576976800577066;0.005606726666060599;0.007264098532264142;0.046242792034094524;0.2724527920381691;0.4604917980578772;0.006372096702529448;0.003573015060668623;0.02736916385407904;0.27559696802541095;0.21492185595848523;0.027477079867706516;0.007933476502039776;0.08001195253171793;0.22638226437416506;0.005625351705842094;0.033933387363711334;0.02741311002263973;0.012063660559677869;0.153646328638535;0.04238746341584446;0.09571778594565013;0.011886826986323425;0.02576245548093911;0.037959404576210484;0.07499520974832072;0.12158399438303347;0.08518728559510802;0.09442310570835993;0.06126253601445819;0.002165573624849844;0.004343480185983885;0.04850986587683068;0.04416954998069489;0.1761136763169578;0.0826078693451025;0.05030805063217921;0.1331820800755849;0.19153297742265343;0.14379158324017635;0.15767797611001277;0.1961893280957181
+Aminocarb;0.035356711992262;0.03480779757612119;0.036746064373213136;0.1053037273479811;0.10057425576129705;0.254258533222348;0.1345718100835168;0.04447827591007055;0.04519120106077691;0.051385017291483655;0.033726998029414305;0.0415217068881673;0.022615766936800716;0.03866812122930181;0.04054660656356829;0.03395870482158365;0.0362219921301248;0.03552315739633395;0.03453079626438569;0.03534138446963491;0.04912416927497381;0.05472082517529421;0.05642497476968287;0.03680392918737849;0.06804933560308606;0.016278706565527035;0.07623795025968637;0.08488300529384625;0.0412282657966976;0.07053743051887887;0.05881124195954265;0.02236012085078888;0.09737957995677582;0.04006731191453017;0.030576756432387366;0.24734204831891737;0.1556770048886075;0.02120401771939274;0.04266900356555354;0.033546016122265265;0.012114844856642248;0.14476545249658312;0.010542458821166438;0.005471073565091931;0.1777773011538246;0.03993451216088412;0.03924261061909658;0.03745600582912161;0.04027358203012924;0.023223776424447003;0.012486089422203037;0.019388619874184145;0.042773848413734154;0.02560206444727146;0.038445010368031135;0.13633236218502917;0.016404810235595837;0.017936536834348763;0.016224604706354513;0.008227667386711799;0.015661066223716026;0.09371160382544148;0.0868874604233307;0.08365532398736217;0.017549996199675982;0.017443018135314764;0.017822242544066804;0.01791123571565797;0.01909266121615371;0.018181949395383715;0.014124951347794455;0.01526519436015184;0.05255121470808138;0.05995931391078088;0.023037010356500395;0.01978694268890205;0.02398313042619673;0.04025640431263947;0.0034836561793713853;0.03265043557501116;0.018551246916611197;0.0174501005187373;0.05200960534739697;0.04886739653365751;0.03665809026394311;0.024380012228408708;0.02393801081812007;0.03124859341458101;0.049611438737179464;0.01046678059929107;0.02157440188608958;0.003433626018287073;0.018075644968045434;0.009754872471533017;0.011604376595271203;0.09016037007678344;0.08571293225426016;0.03555558638409474;0.04808046815586913;0.02088981975870481;0.08306145270001704;0.06142426723470243;0.05611246964291858;0.02908418314821376;0.0709336436341748;0.030283663382226194;0.02277385250896442;0.022147665441355983;0.02728882737963974;0.03613121714630386;0.02650846971271166;0.03571491488425044;0.030624451186168865;0.028079319125582827;0.02781531262800557;0.007966312942826763;0.002140522538707914;0.0023910307701207646;0.02257494399719015;0.043961690456036234;0.005836847613542058;0.005042130099697149;0.020216550841745642;0.028389211951059874;0.019493870675994614;0.00957932343856456;0.009978008661334114;0.0426314384084571;0.06245515284112616;0.04942893387092668;0.06474508129002043;0.2716752596534551;0.038636554500673125;0.3544973533337622;0.0683879548735432;0.02879020926120152;0.3464291093222802;0.1334064023066717;0.12491648415344257;0.11574995128494646;0.10383143127361928;0.17289653849714245;0.18883566925624604;0.07165201330813398;0.28518411178880376;0.05506799616706659;0.03423062825325305;0.040298989774114544;0.6545949816490578;0.13492741323601826;0.3225514871159392;0.4050356112329815;0.21856373058097073;0.049306342412023536;0.260828315017867;0.18273912288318497;0.08181033742564008;0.1879404341575477;0.14008041948315342;0.08296922457096643;0.10191670854705195;0.16852994493824972;0.026234676178101227;0.0526527824130644;0.02298517138325867;0.011771947172597108;0.0412789774749836;0.004585324930568403;0.009419805418650834;0.0768975020637499;0.24963373118404958;0.01844998769771727;0.014430335524460138;0.023529001928754498;0.025524835188355837;0.015946907380595572;0.05371574960752842;0.011371328887681697;0.04049354853869169;0.03937723098528301;0.04489322831244036;0.0034766660968971277;0.06308294456647409;0.048447040249636544;0.1129937129180737;0.19460319738171092;0.017614139657509555;0.0;0.02798041297785972;0.3591081866404406;0.320910756449926;0.06932053977915427;0.44267752716865827;0.3604293444657446;0.07212354207974714;0.02509716423804477;0.024279920218690243;0.05709326287002105;0.137139059609769;0.03688384854924353;0.09526424319944422;0.04678434868811425;0.06677420361481574;0.050400206402861344;0.12591527438484726;0.03696864789717652;0.1549417358493067;0.1516020313979913;0.11357247031780791;0.025109047325291848;0.04282566420898698;0.14835248336061665;0.11183546965858542;0.06924699667226035;0.041388362890795935;0.028035993187256355;0.06678724293698723;0.0938813949816143;0.003624592075075921;0.6145207013641009;0.1779393049223104;0.05082426619733064;0.009646046135877544;0.16698213439266751;0.18915612829121;0.18175638819899032;0.14574138282469815;0.10020592726836336;0.07457659315691122;0.014610782513498396;0.01586646681492932;0.015300957826687691;0.019817194692980954;0.018481341512825197;0.011714759325744985;0.01788564511234084;0.017470478837687504;0.028977457000621203;0.02471089860842068;0.01833481141360545;0.013139738515541101;0.9812281262304458;1.0;0.3668308598661382;0.3412317536945927;0.6527016890734597;0.00832359922788668;0.012291576342227143;0.05224620123214222;0.03821406906330247;0.06965001670299242;0.07159152408352608;0.01061337992973117;0.03622993339395323;0.4084071849476604;0.06522833866377285;0.18980152804556275;0.29775862428045824;0.7765404517113152;0.02262691450601994;0.10429744022828409;0.1337126108350376;0.08340281972844893;0.0019011533588315578;0.009947033831792369;0.17306982648526092;0.19309803215824903;0.21835141809262;0.230364547973035;0.33131656580575697;0.008166826628103096;0.6648008180846975;0.12856951225903304;0.8009626563735452;0.08213109581315188;0.13468752161306707;0.0004019337031977268;0.18302766958450106;0.08560870806302948;0.4021928283021093;0.012679577001315551;0.3582855599346102;0.10312163616450878;0.3235753965260352;0.17102095196579892;0.03442542179180327;0.0005446361413670229;0.01854832607797248;0.0;0.09790857406512525;0.07430873605964337;0.005832711509100801;0.0037127762012745136;0.059901093142823304;0.017812947977403758;0.008472217746427922;0.05805138775737323;0.09158057878969476;0.2528433971168607;0.11229334022793995;0.007507153035953286;0.02767827214531712;0.5123415644827638;0.01826038560397339;0.010692854188033948;0.32024803667257296;0.012090153824132581;0.0642930087074753;0.034628472016556194;0.0005531058190715842;0.09201404420087442;0.012637151904267367;0.0;0.0017290883184257536;0.1358955737958079;0.27190499647847655;0.03368619263290111;0.16714609352345525;0.040787134409060864;0.0226361314688552;0.09198140752035444;0.14161680498443993;0.11765658168605367;0.025498616817659723;0.048737981851182895;0.13655986148007138;0.5872426805175737;0.5331980133003774;0.19470549315957442;0.17710259061910544;0.03480292580637421;0.5750539601292236;0.1468604538715165;0.1496691908571779;0.04949511045649769;0.058685319972661264;0.04571729182512512;0.019677020156371176;0.056000548574639625;0.08471718276195542;0.19633677106477918;0.02067215510874951;0.140058025374147;0.019652511160688568;0.01338392198212378;0.004913118955426433;0.006181615449442969;0.0009001135668655119;0.24520691410306622;0.5016305483774096;0.0011773886461383925;0.0016756257383618476;0.053636199793923346;0.04523371316520898;0.20369376808610945;0.04662891563365026;0.007182807383596507;0.0578747086996464;0.002782023453064142;0.008282474706280539;0.03609009572798518;0.027372298545685562;0.0233641141618731;0.1164356624118815;0.02685806868439231;0.03279150784547328;0.04628479102268796;0.03627193007185195;0.044858806767974435;0.05925220974093347;0.11316825900537321;0.08155031507009117;0.056979888258800085;0.03877005825335898;0.0011225241548735347;0.002611390006361197;0.04897341418086363;0.0221093865954751;0.12807294497933908;0.059135070625818104;0.019294508622779635;0.1153296773127355;0.17832489828623493;0.1079307993685684;0.13159948623904494;0.1611360617918086
+Isocarbophos;0.018700869418921844;0.028304319735456027;0.027896569385649658;0.03285798457172223;0.03385108059573439;0.0428193572794273;0.016031418195647813;0.04885422812530064;0.049114008915177365;0.026856734217137544;0.02687543599357258;0.02478684832567769;0.014513664588057001;0.04115106020256041;0.03580542724517326;0.04519266041800486;0.02885152187473423;0.030086216678612374;0.0325615700938769;0.036598123460171134;0.05303425573788193;0.06864834014244499;0.07432729856002053;0.04954678483952224;0.03722603312435318;0.018147693488021466;0.050352574768044014;0.10536964759825967;0.06570966690320806;0.15303352416873253;0.07006346986774235;0.04187408369257255;0.04191242838980211;0.014988632047589708;0.028777080475041718;0.05397280321424822;0.08935110545889723;0.004169795160797336;0.004655833258404145;0.041302096627333355;0.013564331500572343;0.025611466945270688;0.00951933458384462;0.004483602095538934;0.061645645483069215;0.04950077626846748;0.0563538294928029;0.05719980729621579;0.05497623704968849;0.01980072123423966;0.009823685729902406;0.014940510124890656;0.037373183534748194;0.043879256377657085;0.08055604014330361;0.023802590401639172;0.028600653572635748;0.02250377357768103;0.02116534350516249;0.017391649618841376;0.01684963679427153;0.028155758705899744;0.029516155787732604;0.023496181538860048;0.02964937558085378;0.023035274331457734;0.022390785317123352;0.01956641550471633;0.019886354074466425;0.019965339332718764;0.013267514362071211;0.01508053413325213;0.06380788629833763;0.05766908686409919;0.12776690472406765;0.03390475344547436;0.023738652449021392;0.04502279034263284;0.03198884435123277;0.423414957316138;0.039648152419454144;0.03795032512988325;0.10602888016355798;0.0859094640526439;0.018226436001680564;0.01550078277148619;0.01142844471761993;0.02055442746102894;0.046218863536356035;0.0420838820578998;0.0053775811331451765;0.00802847201709377;0.07241548471844442;0.0072163119911774;0.012339743239199789;0.15971148798847745;0.17017846525510563;0.04461162659698483;0.02834618945207097;0.03500328728039157;0.04428733201231016;0.1322905102536442;0.12393265876945579;0.04180862864032999;0.020072254010228916;0.03231373960994235;0.025147240162852424;0.022784879056446033;0.03199637763726727;0.030596315459258786;0.02409572204230276;0.027811513165303746;0.026000444381701276;0.022001018518753725;0.04109050534487022;0.019327752842816535;0.002349221953970301;0.003588937983478347;0.010348579269033287;0.04540744367245279;0.039967510347624635;0.002524889415678958;0.009305955863033899;0.01715936488446378;0.014060616411364992;0.023512672408124668;0.018098533775716;0.02812110109374966;0.033021955824729055;0.03762966242031418;0.0959321624970048;0.04183695204543136;0.008478667652290628;0.1340760602010435;0.036238493982371854;0.016610551260075462;0.05566321510487254;0.08415757753199311;0.15758346309570223;0.1203957538327657;0.2721486851287778;0.10811400982522228;0.14460506005570137;0.013270379155623149;0.12471432305659771;0.03162184352606214;0.0380399110744819;0.046903381561984835;0.08625103812380815;0.1466199750739658;0.014136712545669785;0.24955713360657575;0.09281173799245344;0.057734444971324676;0.11188174800547997;0.19657793219968736;0.030287417180425533;0.02493819243747701;0.03428106305832872;0.01369560410376625;0.036119401608514665;0.04886592583562458;0.08104858607110615;0.060804924102607606;0.16291501508507553;0.2518668534355262;0.09408952343506317;0.038665269181573925;0.04639859715086745;0.08728062413253682;0.078422928412981;0.021933437401378753;0.011225810269902419;0.03432437797514014;0.03979602884111398;0.010834624079403169;0.012714945414869935;0.011818669337420172;0.06800026094860459;0.023114846164691307;0.023543737698294168;0.019271101987675857;0.03194995912942692;0.04030626246660953;0.030753380213408916;0.02459137136449001;0.3374849782509627;0.01283980516951531;0.030116379333350388;0.12278136553326406;0.1642836520142166;0.030283200349804758;0.059467295384709865;0.0386422097323078;0.01476193223897111;0.015581504430971635;0.014973775843149639;0.01626614966573194;0.07256306708537826;0.007470389932492585;0.02099791162638083;0.014584218354955951;0.015166574912329787;0.049881889843709136;0.08939550799718682;0.022342010111481438;0.1740777221495597;0.20131305888298684;0.029992678382089633;0.07441209491242376;0.05855172572050036;0.09610045176569096;0.07494923445931954;0.05363766241886866;0.09435575207303087;0.025261276667877728;0.10944712882177127;0.07806980842853264;0.006577185760040538;0.09593135897193725;0.13643264373655115;0.030900053332042383;0.01752696144477035;0.03513708104466256;0.027098954014088968;0.04769561541781402;0.04157048413678034;0.04752772060912136;0.03594996557489267;0.026913805006455616;0.017998556482612633;0.01841972924205464;0.03580316193083337;0.02454870279768233;0.013353604711248284;0.020727133835853;0.0279097112177679;0.051638730844206275;0.035561030692397154;0.02032835672977344;0.11999757581228308;0.08863799076430717;0.3668308598661382;0.9999999999999994;0.5297882698600626;0.02678204049828966;0.013750732253243645;0.024875231161085944;0.06567650764491237;0.04388019488261838;0.032511133217685124;0.03231716381194411;0.08638963255220918;0.060069906010806376;0.02918955349046069;0.015221823356470118;0.08228646265788943;0.6118898400859373;0.03463681902834437;0.006838509016880729;0.03093940498502141;0.17551815394534792;0.1564596010181886;0.0007975579085164003;0.0568781520607542;0.6127490268307167;0.09554769656486156;0.1586746775556405;0.08495039057941314;0.03410329507041702;0.0924979078072051;0.008053560794061632;0.0493341224642947;0.1042154733266432;0.032356962135990514;0.04838090321241665;0.025039920880767348;0.423376141460876;0.3237837809814121;0.10011172078371357;0.005815632463639139;0.0776754985045214;0.029688298681279788;0.07157113918731946;0.20288319499726815;0.12493767039573112;0.025993315365914885;0.0645145748370209;0.0006926067003402467;0.09051785540016158;0.01381591271936384;0.0450763360888989;0.02162451718701755;0.11572988367033242;0.1998970869454002;0.004142472118080795;0.0851447305170553;0.1683719588517905;0.03370738239059876;0.08328931857659166;0.01990655240733395;0.023311434125901746;0.07333997403683402;0.0058787858960481585;0.006805281322128992;0.7428503932944845;0.023914786793190465;0.05694892742604832;0.002978837868122299;0.04134694922147099;0.025896314106071686;0.013304385928331393;0.011111708840967413;0.00013503308776607217;0.21893449884776683;0.03675006308456011;0.016991588941390866;0.02893854406477841;0.034778441326101556;0.04920454138182728;0.15920316232053153;0.07691880524019834;0.044348707419532625;0.016644783847592604;0.24308746026840553;0.04952716011514016;0.04913229848869061;0.35606347792375603;0.2902984161984017;0.07946724823268146;0.06060721570885049;0.04549014505630212;0.12900003799237095;0.12895758469551696;0.01772257466852056;0.07491420233955218;0.05720604026649108;0.007160036741059614;0.022615410364608034;0.06845478577295135;0.0483076252658698;0.08651008292145367;0.04863802222094384;0.050758019456987706;0.006045434967166634;0.1835280648663783;0.19168248673569846;0.03180623772235201;0.19960602580299847;0.24759607921214002;0.02447398305096295;0.006509884684875538;0.08472041688821051;0.09692349647723007;0.11728031714957744;0.04854830973872926;0.0073228120397470465;0.017445919139373878;0.038631721808470215;0.09502226788816791;0.04640642715656154;0.04619989787675547;0.03341162248057983;0.019416478469326315;0.02826241004189425;0.17853088713660356;0.06762540379213801;0.17460782022838148;0.06987273486666165;0.06419316375558064;0.05610175233043573;0.021812880275725574;0.1292550822060029;0.026057354349665336;0.0005825686289617582;0.0010414845107730544;0.09091211102682226;0.013631563845273765;0.12495455466345329;0.10151257925520085;0.025994142644800086;0.08454481163040009;0.11978182572900264;0.1251211768946397;0.19797039817127957;0.23758939346985095
+Acephate;0.05617277863802359;0.04130841675401408;0.06977249964239923;0.04824435882595298;0.04418036872371308;0.05758314352721304;0.1008848635158826;0.06776712647200127;0.06924726624011732;0.06765622808902079;0.1148092185749314;0.08782920959061445;0.10427860208890015;0.12384507871134014;0.0719791935069598;0.09074078155254149;0.03666424433241038;0.03916172829122951;0.04284200721418465;0.04342829036665045;0.05989780997696518;0.06787874908690726;0.10470746261821025;0.03132007318114114;0.04057637947105417;0.10794302310498036;0.049421759517340284;0.054752007719374864;0.05106976096235635;0.06535005718719895;0.047625014984481094;0.0772509393716496;0.18236240792459815;0.09909992148615707;0.09442508914801344;0.07232120303920951;0.11827982436095993;0.019554484765493683;0.03037078808967341;0.060530319781714303;0.06151146135199826;0.08066006726535686;0.09346464277735785;0.0029929234427881024;0.2591139810884346;0.029170350113333687;0.03058201492870353;0.03061695368691265;0.0297761046984629;0.06369032083861534;0.06603605213022126;0.04487247728762459;0.11990407834024414;0.12785011551871084;0.06216364852037646;0.07345461135636114;0.07065769678183884;0.07343545849932334;0.07157164304472302;0.03249736657965708;0.0792499473753093;0.07362856942516695;0.0673643937197543;0.06265391313623594;0.07075998215039396;0.07141052273664746;0.07421510872441942;0.07595019773998433;0.07558637659261713;0.07630473282380613;0.05459612587212548;0.07039991797367477;0.02476020573659533;0.02919019170293576;0.045085498480920944;0.04248534194181171;0.05423416383117684;0.05935805208214249;0.07308643848779799;0.12612854656680336;0.036962566881976945;0.029535497345325804;0.06121927487903795;0.05767622937610574;0.08158561764233856;0.06852434459236564;0.05489377716844422;0.06781445972517997;0.1531410168786374;0.08262173754542498;0.10856326322514231;0.019457045361472528;0.044454234589207636;0.022153680953661107;0.0251007107130584;0.10085386165575362;0.10107560588605446;0.16991195256133565;0.08619192735285734;0.09754647353479647;0.11377057921954982;0.09073066725575761;0.08934057081898752;0.08997982676816069;0.09107177475677244;0.06858855813577347;0.07833888177456956;0.07451028213181292;0.07629050185468718;0.06059318446291993;0.06286064872435487;0.06871611857351553;0.06152933216794801;0.06783550705729283;0.06927880801868869;0.12279183420649607;0.09855090997325895;0.10313485661716336;0.04629671070125694;0.05775289140545477;0.009320698996119725;0.11254715444127783;0.037335458652378854;0.07617194005170612;0.03728055838790429;0.05031918322187561;0.039925849276890774;0.08256348861389962;0.0308837868178693;0.027004077682433604;0.09893140655269907;0.1436345498131387;0.10135131802943317;0.14792487704034551;0.051452448832526046;0.10653584103347345;0.11663598042790384;0.14489487799467013;0.08214149919841002;0.061805630389738284;0.20489429529261907;0.08837206097510658;0.06752625738164415;0.051680715492782504;0.14695500743909057;0.029029766239553768;0.3580359165633771;0.0021576982523224177;0.02546728127344785;0.168052777963756;0.011907819312972405;0.13894121119444702;0.10586809093074959;0.040420489977464134;0.1469632705262791;0.06570222587908771;0.052946500901871064;0.061667149835470385;0.0557487187164506;0.2312625539536847;0.08368517565017376;0.07382706981538055;0.09058242880740053;0.07523743310251307;0.06060464832859296;0.08522080915617737;0.1889255243375434;0.023363134394624833;0.03157920876853354;0.16423449384142286;0.3286278904640057;0.08782500932594706;0.06280925645850119;0.1619371117920112;0.12416242437082603;0.016869957419057346;0.07864132871105131;0.10571968293053982;0.07064797739462796;0.07578270449420589;0.07800156993039574;0.05170163345898234;0.08976923913691243;0.04852871677440028;0.05658255304751136;0.12026343064864413;0.08447508796349952;0.07722542739912755;0.12231775814927895;0.11543438149383735;0.14274340932861748;0.04957929592727716;0.33091127583436514;0.03782672126387032;0.11691246370579049;0.12124469115885807;0.12061372338019775;0.07338806821828328;0.07585871511347214;0.04868400930775673;0.08356712452414533;0.06041620450733512;0.07243920432334962;0.043978766167971375;0.10711997381015091;0.06496645036779747;0.11028753789674654;0.11492973297210336;0.0739017747577379;0.15069216067737454;0.06736646997793469;0.08894227028765599;0.10660144247538718;0.3133470386143398;0.2165996752041322;0.04924125410061286;0.07132404061422523;0.11613713329312726;0.07563463328357381;0.028956125230607612;0.0950930464499572;0.045976161065684744;0.050035851864468496;0.09659457596904167;0.07010218413356153;0.1002258214013261;0.08230818389333414;0.07964729608805043;0.06843758002738971;0.07936012209139703;0.08028403907592824;0.07861296319869554;0.07459488441866374;0.07229861095535833;0.07465150670226234;0.06930989773622379;0.09449846700584107;0.20265098731495343;0.1104762602642585;0.07045581374656883;0.16069179721756835;0.22749432489329474;0.3412317536945927;0.5297882698600626;1.0;0.048434223223122144;0.022387740573461636;0.010575003159068695;0.058518489539375496;0.07113569835874646;0.061585301948279526;0.062095179212089485;0.026759732850565085;0.06945576292373132;0.12970800077517206;0.024566017739584844;0.10097310958455832;0.5093112001463816;0.006937319884087074;0.027753465090704067;0.0938902565930342;0.03122088239585483;0.015184475443589798;0.0978496190640078;0.025979650971179234;0.16298551569760905;0.24812813005219292;0.2280405822577779;0.3105800991671798;0.014721944952197296;0.037916287924086994;0.005911175247340629;0.11588956204753807;0.06254416707136483;0.032915553214599276;0.09118176121420499;0.023176572254547084;0.018365057620450317;0.023737456370301568;0.17849138573192272;0.1678886832393641;0.10810154080225183;0.09405791765659316;0.10480960911070197;0.03626279924559002;0.026380640027864218;0.08187792883124087;0.05821458952883433;0.010375613423621234;0.009333448469610808;0.0645608914166131;0.06025968456130821;0.002637853079432041;0.03650893168685126;0.06243878824204284;0.08880253249057178;0.03175767286425679;0.15820173245485208;0.10619978396892338;0.10481499866501183;0.07450926120892691;0.0231997210074961;0.09215079085184585;0.0031087772964183877;0.09366302983079974;0.6070338904315863;0.04736846043143769;0.12307812305303152;0.06690206726937105;0.02841173783114043;0.07059027771945363;0.04223198030768056;0.02164609337495158;0.02138570297363922;0.07535375950777917;0.03622184694732687;0.04906864185713994;0.08796055103595585;0.02607365316200227;0.02284463881440252;0.14412432515694734;0.08536239488033817;0.06641720147679175;0.04802797271191931;0.040168191758461154;0.05423657411039593;0.015767857922086244;0.23467154240829538;0.19779015774627365;0.07608742715680747;0.04263132985985836;0.1022762776698805;0.12998668118341114;0.12831365304255232;0.013977993371692626;0.047610421816113385;0.11151569302188716;0.03229713998736998;0.039901254068886095;0.07934531692756547;0.16406774403240906;0.09089542686462682;0.1739904735456625;0.06247376879732652;0.06005241428507081;0.04912293640712578;0.041357005411233626;0.018835591723891702;0.013867148719656558;0.047682006348431394;0.007135533421764374;0.0077626055895333125;0.09190057568601187;0.034717863684654175;0.13808827468304177;0.056216286414005716;0.011979076280547504;0.04327146242772781;0.04323423472081569;0.15841595708520068;0.08649662669966784;0.018766078632180487;0.028901816055321498;0.03450123786186915;0.0788864361137172;0.019427798808791755;0.05808988217312967;0.029408147888374148;0.04713488026484752;0.07330379859461547;0.12648737838144442;0.09391003981958895;0.07074026746703109;0.051742734190031434;0.00032862866427558113;0.007628342236123541;0.04413733275743064;0.0660846926801177;0.11778615238726658;0.20650713258987308;0.10497001224940017;0.10427483523552922;0.12851215235430455;0.1443167680163643;0.13512647372027317;0.12271395237074852
+Carbaryl;0.010824581707986466;0.0012746383602653558;0.0005730565684927435;0.0017795658441995916;0.002677593938289012;0.0003133447067529608;0.000998047870218765;0.0003863850246185077;0.00032460350270308036;0.01527742008761935;0.01080127578763164;0.008825754015099167;0.0;0.000912292707000802;0.0009259243050140657;0.0015641302236032008;0.001056013874371443;0.0013113476545472728;0.0012776993424642915;0.0016240533773885662;0.0;0.0;0.0007114038379832399;0.00041416442199566705;0.0008788461031251346;0.00557730166331002;0.005144680305054896;0.043847885397673404;0.06116780237598268;0.10990461307617257;0.007306328984737296;0.01109092057197913;0.01352302396080968;0.0037790527663429828;0.06876409983187018;0.17828747987629812;0.26269962037199435;0.0255298979881608;0.0;0.0;0.014106469631763055;0.0;0.018723309395430404;0.0;0.0890242299945211;0.0006752472178659075;0.0016235744423346821;0.0008865144238829517;0.0015992201430156338;0.0004973756755604559;0.00032596173459710883;0.0001412796863798812;0.0009581302730138565;0.15539039783599898;0.016383230817431566;0.0;0.0005342398080299553;0.0004721171208448906;0.0009390622895446447;0.0012096205096985388;0.007351606249442033;0.0008448856390691909;0.0001832454517782422;0.0006381026236626565;0.0006062594941547904;0.00048138497648214136;0.0004731924240496227;0.0005381464370559987;0.0007549459192072994;0.0005888391699161682;0.0004906369735894672;0.011926560696818678;0.009937621634199366;0.004575806009722438;0.13596256977286653;0.1419346439551953;0.00012602427257383525;0.0;0.006704217859359147;0.04813572930082163;0.040115937412690754;0.0324465512042829;0.025816811613763535;0.026771802108935355;0.030885218567241163;0.023622755173974483;0.05934035413432284;0.0448423443092556;0.020718463904036137;0.0014454513022218488;0.025235025269678763;0.002653428638318126;0.017929596355536242;0.021879269582304087;0.03292312388081124;0.0029896971614352514;0.003200269198287789;0.04658938973959699;0.03530432917476576;0.027675775625827938;0.07455715236042229;0.010317245367199955;0.00695791815535084;0.01628179529624804;0.01356634401929498;0.006734466232331817;0.0001855181392774289;7.643258712732014e-05;0.00011507107276372529;0.0;0.0;0.011065658180618833;0.00070193379644329;0.006148098793414666;0.006996030062869222;0.0073479475689863325;0.005210099473284213;0.001780687595558338;0.0007711561384172777;0.006131949068995897;0.00015518354575827956;0.0005245801987997507;0.0;0.008698989158311231;0.0006366909192552512;0.003039738038972015;0.004735316615978957;0.006738611085725056;0.0029320564647739517;0.0012497199043347374;0.011695852950087533;0.2935493692217649;0.014551477442991833;0.16784647952065926;0.03162248996228129;0.29928219469803846;0.3881204871231305;0.2893325464451257;0.0929103456951781;0.09158527419479408;0.0017446892395189424;0.10194588245114655;0.313161991178185;0.0034353529732742472;0.4126246509352719;0.0034924523808329325;0.09223332799717363;0.0010440530882096673;0.6594664407324393;0.011085418085887956;0.3349957170371661;0.38564405997395335;0.053204938221361256;0.019069044377685536;0.14560225106365637;0.19498326142349065;0.07060318053509848;0.1832401014588121;0.14864243517931694;0.051067769920768176;0.08018513323519214;0.022097326587289853;0.000381273773078256;0.021888592062150276;0.03886530427325674;0.0008421887599594544;0.016388040643631537;0.007237477810182152;0.009605320345893592;0.029708328500186513;0.15224288188700263;0.009244360886128775;0.3435868888297186;0.25805053272443423;0.1669755810884808;0.024835140924966793;0.06831574303777119;0.00023346373830839863;0.008676204990741562;0.0029394374975883677;0.0020021094108429766;0.0476588983792248;0.11126590760527709;0.00016463912197478624;0.12236150186377272;0.03304025209477574;0.0001562160537062123;0.0005356013481700338;0.012234304411163353;0.21876149830816544;0.19637090153512837;0.03470577388838978;0.3871182490761166;0.37977712260315377;0.06892246367144379;0.12251298875621495;0.13022112934362207;0.072963777816137;0.134912092826177;0.08344605571451874;0.0793927413892037;0.09126922978608983;0.08010522332921803;0.002756919131784766;0.1016905556758811;0.005166159014580962;0.11057906040854858;0.023992700788332207;0.01708782895320789;0.10697147933435705;0.03519017829032103;0.021180805785873554;0.11864763812594104;0.0205703273365984;0.02011212950940827;0.05007009557590678;0.0060341972872469994;0.0880296201844834;0.0;0.7878223790233504;0.16691988028599494;0.017720018448030863;0.0;0.00891245153007879;0.0005421699879031888;0.0;0.0;0.0016140388134119753;0.000249246925484742;0.011522308174902986;0.0094685380578455;0.010361546216918623;0.0009947304981739635;0.0007017419140142054;0.035698681989120774;0.0012404007238497423;0.020428263258025527;0.02667952825641093;0.011058049084353438;0.0012319545874107832;0.11154553907263022;0.5945254618860772;0.6527016890734597;0.02678204049828966;0.048434223223122144;1.0;0.008708621401034991;0.009959458972054459;0.03281223257741347;0.06806156196606084;0.3972126554517843;0.3978834905892341;0.013473239698371645;0.00720470932574558;0.4063139521036624;0.00016714399426274906;0.146624108445525;0.016289264798536957;0.7016681377528089;0.038447144816389854;0.23686590992637144;0.34605112309148983;0.1138506286856607;0.0;0.007464882522643566;0.03380960032513569;0.1639702195253067;0.21898622699563988;0.11189691954002491;0.010248789446398532;0.00034978094871132055;0.30845337137570034;0.07869562011275984;0.6853451670906069;0.09728986043863067;0.005202669638730515;0.0008539483428314427;0.05692282518901892;0.000423049039858697;0.032762049707336774;0.22013321799200267;0.041464507302238676;0.23734036243609619;0.2763125422645947;0.04673415749572908;0.005682286739971111;0.004887506278255456;0.008651724253109403;0.00026394903878238364;0.0;0.0002966625597344397;0.009308521767895078;0.021369752023177147;0.0066638339590324;0.2953163554450797;0.0;0.0012291184102601255;0.10100727839290162;0.06568688146270614;0.021042214266009072;0.1640052798505803;0.016120961381438852;0.5557683833203698;0.0008811709065930547;0.0;0.013535727387997694;0.00015083584469141232;0.3243874905915266;0.2804893027340777;0.006924601956536811;0.10554019051597863;0.10314767287169428;0.03001773166707489;0.0425846778665204;0.027358823998705574;0.329371346311446;0.003318044876556418;0.179709536849328;0.006576811220972419;0.016467159896238686;0.0008241840812834294;0.028843919749328775;0.16311591992736132;0.07017688031131344;0.040510856199689506;0.004096652467151952;0.6633768228055207;0.0032647954552111115;0.0;0.06775698306692277;0.09131749982239384;0.6101326187249898;0.015197428222750593;0.01731708333339989;0.0012474507392898331;0.022917761862255363;0.02427356801861537;0.03705553780993843;0.0001433367732449455;0.013336436060966647;0.04997763466996682;0.005604650825645794;0.12682461782749554;0.02461620184330008;0.026262927751355136;0.021676483613940648;0.007790757096425313;0.008996100747104973;0.23440845749534908;0.5786610576870043;0.0001646111049280874;0.0031086518391320516;0.001509705049611785;0.008793420887135873;0.21270908878613248;0.0012700296238953531;0.00014394017803214364;0.0012958438905934368;0.0002724925763705395;0.008709680676567143;0.0010616245192560918;0.014884653519746573;0.01690082866478165;0.0025061897568684284;0.0033859358638549785;0.017736114349503868;0.008438455192601689;0.00196263042434365;0.015150144782032943;0.12038331508922342;0.11264600993178937;0.1293373490265091;0.08817905160955776;0.003604135495515952;0.0002009363514696637;0.012047957881364688;0.020344979099026144;0.07029834694047131;0.16897627567626447;0.14724925650546677;0.011198672520611748;0.008550804773688168;0.29178750440558904;0.16565913278162875;0.19320066161155736;0.1430157698712594
+Mevinphos;0.0060737483224225595;0.0028688139119573478;0.00890696587727335;0.0005139446466468508;0.00045305199812673675;0.01936536005294521;0.00014917965049114512;0.003140786471717207;0.002545203343540602;0.006554645410220769;0.04228091388126885;0.01792741184860775;0.00011238577060221472;0.004561989935178139;0.008623148356085752;0.013976682341213726;0.0017772661154752407;0.0024356655508769066;0.0032922679604868495;0.003234841321441639;0.000413111725086428;0.000325656266351182;0.006105171113431217;0.000959893153582093;0.0023606528406484493;0.02248424475345555;0.002548909124788704;0.02417436295462812;0.015287909231555128;0.012297846379110636;0.013285114059406366;0.009463358696877807;0.01125378384246006;0.140617031481448;0.0217058137208041;0.014217574459957711;0.18178029068600973;0.009553057319153705;0.0010861422380285862;0.036031790129930005;0.07438072341827306;0.004488117315003464;0.008409398893133703;0.0031007436356282675;0.04792946433016778;0.057313197972528034;0.06468193138730018;0.0642962105873307;0.06181305405553737;0.004652128040766819;0.0054442704991202835;0.0006735159044604579;0.01932944373171998;0.023591153218285206;0.0051544684759285775;0.0016653137394596824;0.07091777864103352;0.05716709106132342;0.03063760041416625;0.034239678695172936;0.06230890385704021;0.029335706001880422;0.023433604768596412;0.021032409724690462;0.08083748347498314;0.05635189691864126;0.05770843453376918;0.03360877740854583;0.036421621345189115;0.03418987692590836;0.023606394742297396;0.050494526192896294;0.019493846068293873;0.025380409240512908;0.04019758075092877;0.049501903041197594;0.2575987689184099;0.24751698028008265;0.019389012334680773;0.01776936182966037;0.022298882003006233;0.023246215675095855;0.012527220136769057;0.018359889272381382;0.03321963065149303;0.0013314328069281977;0.2096542449607139;0.18031709190438677;0.01709651190022674;0.05542210517818702;0.02128955827720705;0.14944835808525272;0.3584189552920307;0.1659329415825235;0.20849989566469582;0.027400544695745935;0.024388617667990758;0.2228251949667523;0.4973485049925022;0.4611778895675569;0.45660881774213247;0.3804731993113791;0.45161982154712244;0.022803228661414363;0.35340560957604317;0.013010884921483246;0.0048917580676685005;0.006025804346756874;0.005725040792818612;0.0029054041720437307;0.0055599224446780905;0.008100415094412314;0.00034868074149426326;0.004184089879432621;0.008933161211068033;0.007989237018392338;0.00849025331569375;0.07018027223989946;0.0022111041853139606;0.0075692765826676466;0.0034599152882956244;0.0013523618542972933;0.0015858645004752684;0.012408579498494821;0.021111934725657144;0.006088232249011036;0.006812975889754163;0.016238168936660767;0.01988030990398397;0.022643909626405764;0.026630857654667186;0.06433599967900233;0.0010119031079295802;0.07050028974413074;0.000938323239083792;0.026292324029806868;0.016052924053199344;0.024573875143891383;0.21629910089624102;0.22793877792511213;0.1376844947306122;0.02722091261382344;0.02307206829556842;0.05167086774717612;0.027277686547705255;0.007265338202611736;0.12678530028304225;0.0005230185093166887;0.047363248615229676;0.04010347985857617;0.002946404172661357;0.02637407076756278;0.08241469115430422;0.011171923120700599;0.03216483096752744;0.09005198991301365;0.02527333635694644;0.012235977441445663;0.010664738901097407;0.02693907119381949;0.031005942961541345;0.027015583714600007;0.008250971283895204;0.015639386024411183;0.03397658437666631;0.010778209811819655;0.05390001884504797;0.012647036183174783;0.01395104000279219;0.01779261861006659;0.04126811518720328;0.007084740554101868;0.005459848844712231;0.026222971688470872;0.01859600302240373;0.0;0.01500472195964868;0.012469496577562836;0.016629108982364332;0.005268205007651543;0.015125914533423166;0.004000026887171125;0.0016323178786609087;0.02454839362041683;0.1377009066380696;0.07398810038475441;0.0013792423197455622;0.0011363652126335998;0.034917880054825115;0.007925479749379512;0.012156484463389778;0.008495938903487878;0.2881457108354556;0.001809580246270541;0.004550643350864365;0.011890768668916408;0.01203891701237836;0.031091530148567123;0.038951312765351416;0.0360874125113176;0.026268191865222067;0.025123706761782803;0.03053982696812698;0.04227743022723658;0.1171137777049993;0.0004585529767073863;0.17724876835098713;0.007437364182808068;0.015257275014380317;0.07322606476589742;0.09577340067821126;0.02862236346616773;0.018000883613009326;0.34161965433628527;0.03254412899246569;0.031281958517566794;0.48428506047520925;0.026806587630215515;0.0126593638544274;0.02177438585916476;0.1103393344910567;0.016842849462790303;0.005748650693910477;0.016523589034251714;0.014787868894665736;0.009224578619846413;0.003414038414731653;0.04729843127380646;0.03061117636612176;0.07949069627066915;0.06963402295364361;0.07545786405894;0.12505714985909713;0.08438393853326333;0.01917602055615037;0.05557170772436412;0.02342785172696753;0.02577226614311787;0.03200443115816583;0.05260248387037019;0.013210157744915015;0.13589218273092712;0.00832359922788668;0.013750732253243645;0.022387740573461636;0.008708621401034991;1.0;0.9464935160175946;0.9435290084886738;0.050543588005613815;0.01511322935504898;0.015569444446527822;0.11629711382678;0.08376062373028542;0.03306066818192256;0.01266557317961822;0.03461396099762086;0.14414490681655961;0.03950469846013173;0.05614776459415547;0.009381699703698218;0.01140543390814572;0.0031244215610262568;0.060444436722110556;0.1078377504398836;0.0009538134733844858;0.17603487335017343;0.03495366582032123;0.21379072052553455;0.009813147471063934;0.02638161461079107;0.2274527913778232;0.05067631384869866;0.21823756947235728;0.12018142909947342;0.037846928113097755;0.016823944916383535;0.013047876747801987;0.014994784428380838;0.22462801870250573;0.04910347897802239;0.05181087605791387;0.009599659406959553;0.020259199108909883;0.021016636023801483;0.007635555031672187;0.01728326207714513;0.005318948706881021;0.0;0.009480418089340107;0.021151350966192545;0.012811771598413929;0.00013945446735817544;0.0554226801704044;0.0011143475748933427;0.0;0.007822433332181663;0.014336899666217286;0.10520060330132469;0.08976615567450015;0.07449278233736296;0.004753650761663647;0.02757459667103861;0.014096680598029362;0.0;0.003794137371571158;0.005658537473289529;0.17597787555517802;0.013335255564814621;0.12155772407960974;0.024927608098180575;0.006321088707427817;0.0;0.00016935111578359158;0.0029476517231897775;0.0008445338138911449;0.3159919193150139;0.03113843077399139;0.13444260921619847;0.002489541590349854;0.007891746840656487;0.044740719591504156;0.02157918074049657;0.0030749512049279243;0.012860414537782345;0.001849661880264632;0.004563911018559799;0.015170784786968811;0.1606111250175465;0.021191707534648545;0.02462292979125079;0.02411992472669892;0.005175340804069356;0.003935891087571335;0.3453084257547;0.08418126149824873;0.05653241329072895;0.00022379151183798593;0.0011237262736273758;0.03568424988228363;0.009330606153008592;0.08741801440846851;0.016810056013336117;0.1203106141550007;0.004554810692658702;0.009484866238609627;0.018386107454843596;0.07515761620677529;0.08926426054883593;0.01784391762517182;0.009029543942420134;0.01291519867506425;0.008331116162116906;0.1606012355567689;0.09654986490416628;0.023531443842890177;0.0035364364972027985;0.009138073032526952;0.11182559243760044;0.0173763471401371;0.025965900444411757;0.18523808389109647;0.02488443697310046;0.03619614371554911;0.05750837643823952;0.19782649885413936;0.000612953258152012;0.09501688962698208;0.047520303900361084;0.22171844039137564;0.06921578932909069;0.05889197424031189;0.244615722794097;0.0009779324094272045;0.02091017645716179;0.020699074894425427;0.054436338675482185;0.1548366416850737;0.0227464157159345;0.058542579607427044;0.0023151364824614226;0.012621919968422832;0.05836114088048441;0.06297592750375755;0.05300989615707701;0.0833933983294341
+Dicrotophos;0.011135989965595455;0.01852429279547044;0.0264896373058361;0.010374264966205821;0.010476411651782416;0.010776189457951064;0.0060537014467922715;0.011136934289606496;0.010694186145080121;0.01122597184704724;0.015951939721384326;0.01521271856228176;0.00647946742298365;0.01254669834946177;0.012626446211534827;0.013023920633482051;0.01484452934521432;0.01656826119944659;0.0176120751151066;0.017313095185293143;0.01337861059504155;0.014289357016312799;0.018509059256041384;0.014617523712639212;0.01680346966272114;0.003529306763496126;0.008397453409972317;0.04839735958077683;0.014348659952116868;0.021536915261299226;0.00978642450045219;0.00766957643677889;0.029315501339849653;0.032246529818723405;0.025698236118786938;0.03219571580870136;0.0801232452859705;0.0035557690458461358;0.004398045607876693;0.009939906647530626;0.07312778754290031;0.022183261578977195;0.011721030512023643;0.000593361772376969;0.022971901039062177;0.02336567787025791;0.027013776997563847;0.025521262596516884;0.02528676879548107;0.008901026707717754;0.009445894931865876;0.021698991298523373;0.018518038908632517;0.017052320069608627;0.01359890064060774;0.01968775115873717;0.07997751676975666;0.06826891042625081;0.03838086926412479;0.03764816764822157;0.06464905929967353;0.043546270428481366;0.04158970636558094;0.0377528645199103;0.08797215035079256;0.0704156309053163;0.06899443338830215;0.04203021498664124;0.043848179049066155;0.04260661427512337;0.033219254452171124;0.05604157597381421;0.012984634200189108;0.01498450104918654;0.05330111274867979;0.04012258047666103;0.04369354897876243;0.04168718477647079;0.019814685029220118;0.04815594340546347;0.01885256939258427;0.01752041025616137;0.009357671402974506;0.014670253140760814;0.034620834502014315;0.0010465081015538801;0.2364716277894427;0.2073935486971328;0.009814993797111227;0.0525394540747557;0.016096403085313547;0.15371093130745858;0.3606799138769837;0.17606528041425604;0.21960897558636736;0.018471156460602833;0.014938102299657615;0.23093486800863278;0.5197704506381844;0.47954815850286514;0.47173553500710347;0.39974962022987204;0.47252854229558405;0.026964577858061563;0.36939428018278264;0.01659121890927104;0.012279257627504463;0.013112854813826399;0.00887053838411066;0.012726930346027775;0.009086964329026793;0.008550569753709401;0.012735475326198318;0.018821098371485042;0.01779884656842201;0.006907691525585818;0.008237150573144099;0.005938592241521778;0.00847708799154883;0.023419003689900693;0.0016106260384165995;0.0073691075165338;0.009215172024900091;0.024590724564393165;0.026047850108715926;0.0035419764658294545;0.004939700243750605;0.009418222622084168;0.020233210910104854;0.01221500533062104;0.024606848950331675;0.35674200663177086;0.004299767096283726;0.06444831637441598;0.014068080485588646;0.019327221780236478;0.024104246141995748;0.02578029846477602;0.036964194975400565;0.043191188899034796;0.062430906168480134;0.016870746221025027;0.02206866351392526;0.022610287951399282;0.01793499166003621;0.018991071353671018;0.03297275684842861;0.0005284512627213297;0.034884109516203216;0.044891542318400104;0.005452202044176161;0.05151937662695584;0.008580229119626716;0.03921078590447166;0.008359937330909053;0.026001219527921834;0.020896032887888442;0.008208512878121252;0.008410974528464416;0.01617915254522367;0.02509458007675693;0.04602572158408481;0.025450000592325998;0.010712933092332816;0.021628507898737936;0.030105004232640273;0.023705827116031603;0.013436737844956786;0.012529481395445796;0.04331129799213196;0.055090910246622576;0.01855840506053368;0.0028198457328686404;0.020886841278929535;0.01781003794280701;0.0016549384981795583;0.017803906338877355;0.02604247334009403;0.019192375733833745;0.017130192660571406;0.017394344177331256;0.010479741574692768;0.008184608938732938;0.02910243061229584;0.20113466763694013;0.005776991589293649;0.015633090676113407;0.004842365396283432;0.03593388316861271;0.01451983728500566;0.026559315591449403;0.009510072358686386;0.3117681828915196;0.031971406972388004;0.011130847620659239;0.007783242134231906;0.007282148520647796;0.030835914711438827;0.06863936469576026;0.030916853523932027;0.03886541256055995;0.016874650079429388;0.028665970203161934;0.050191664544664685;0.037881880553788785;0.01480133523519862;0.03770636097802241;0.035154589433703635;0.0010398417265176727;0.07464613440964495;0.1266329927852283;0.05839474112492773;0.10460369487575392;0.36417878711838464;0.032133171102635555;0.034960116859615135;0.4912054232035101;0.03256124506672829;0.0009455292772255383;0.013625178829485524;0.05560746089204756;0.022026155557231752;0.0024027965321809716;0.026420716076577453;0.026335148672996606;0.027080372520934457;0.021472824354952385;0.061618614916276813;0.04586193475385809;0.07867458007779954;0.07024909219753199;0.07296220513278631;0.13113045218503278;0.0947857524295318;0.0149156502461589;0.05415258582666122;0.021839484077382832;0.034260463390579185;0.03481138503018099;0.05407441326408456;0.09736070312986721;0.03321465991545396;0.012291576342227143;0.024875231161085944;0.010575003159068695;0.009959458972054459;0.9464935160175946;1.0;0.9550062159031006;0.046058060212707495;0.011897430626737671;0.011794385757530296;0.09902933832639808;0.08185324412524878;0.03234579656011246;0.0033143846729066827;0.027632452222023655;0.025546754394154877;0.026446288256858082;0.01316032016782516;0.0023217794438252295;0.0024527975875942437;0.03645441199856788;0.011051937559291769;0.118764859348252;0.0012831671823892183;0.16512426789984902;0.011650793122658579;0.16055384421992633;0.029926943350891563;0.017082203065576597;0.035134919793383936;0.03715662984146117;0.043940570534678;0.1595790588630554;0.017970237414553496;0.0024902098100924486;0.016781398805109312;0.015279843831472635;0.020274122407339765;0.007402342707700818;0.029103435691114822;0.002430471019945224;0.06186112263119623;0.006171933086286113;0.0006418523094256215;0.014937787210330442;0.026180909940894954;0.004405536800106194;0.0017327063378330648;0.00446427673981717;0.011802023025963206;0.0015700915749335951;0.008700526485896826;0.04632311605810698;0.002265584622897846;0.0019730807984173395;0.04572276953119578;0.10945484669068739;0.030866748727892718;0.01743371366813831;0.0026437602281899402;0.03074190964005572;0.12771307833385895;0.003226747493109657;0.0042136533182796955;0.02371292058445515;0.19555633339013231;0.013504133373897517;0.014289929303950304;0.012879257763609014;0.0005983603224546636;0.0028958536985962996;0.009570657454680782;0.002591692775453887;0.0038922875620818944;0.34682657271304057;0.03150316594623179;0.03464391714841521;0.0028765887303142906;0.0020553090183797573;0.053470698379328906;0.01908544111088388;0.005010387183905492;0.013703022191032749;0.05232754029946712;0.014923858135158292;0.009395203086972488;0.03955173779599943;0.016350340908386028;0.01284403358060675;0.03456470756098291;0.0027222260281009555;0.002228373199766917;0.008751011967583119;0.013800485680090707;0.051326230835017334;0.0026819173655677738;0.022563296230833908;0.012542075447856528;0.05999978660814387;0.015152555338536839;0.02287469900558121;0.003144040431603163;0.006497603601037674;0.03421513891760713;0.044157188907670376;0.09683053186640775;0.09347770138258385;0.04451269892490103;0.01110451160978037;0.014013323642564541;0.013300566624070557;0.08193000769119693;0.05285433616666951;0.049252523891384806;0.0012198822447364106;0.010920208663950439;0.03016629544422017;0.04449619026624609;0.04803353576381002;0.2374002443916282;0.008759768018223039;0.05925448304024482;0.022437134171263064;0.2588713681877046;0.0020117192572443724;0.04938796902694168;0.04374386329784019;0.2521991560246723;0.029756881222335805;0.08322313311135027;0.27800711354991403;0.012908407090996783;0.02494819262572296;0.027982530550596057;0.05638623356998619;0.018211970247069668;0.029741229845956733;0.03912638601130085;0.006483726695393724;0.0034711799877352274;0.10575227165944598;0.046366231348350745;0.03478585696689152;0.035843502317569234
+Monocrotophos;0.025589015986564025;0.030597074974021917;0.059302579623023016;0.030533061878630537;0.03080979896154605;0.04950732497299336;0.028736437011796765;0.02788523854834393;0.026639072641148932;0.027109587871372867;0.09389240192894227;0.02641898165033159;0.01392708513634427;0.031693918718746494;0.0216610567453979;0.026596493183732854;0.023243943283164772;0.027682928127445206;0.030270258193862545;0.02988782883952674;0.020766130280191374;0.024927248423245806;0.033592611155534524;0.02317947766132167;0.0232407708126315;0.02149425791462501;0.061968912532358984;0.09266668626612874;0.07654829323434556;0.06889773342457328;0.09578188863493838;0.031086170639919513;0.07670755804955802;0.10723211483466068;0.03074986862502357;0.04057096211380208;0.1745370812385206;0.04229288627370032;0.03368288936559859;0.016956612314567424;0.06803665846129042;0.022715369229006417;0.031025189843602224;0.002333102770345898;0.09057141530230144;0.2224315140425933;0.23134540703300632;0.2227008216705046;0.22877269198239814;0.009558088062565325;0.00668532342263071;0.009942312829409;0.035200663901337095;0.04949159373412327;0.023854951890885358;0.02069577691776014;0.07333860659906719;0.06420319073311605;0.032832892489238874;0.04754737816406691;0.06158713097281374;0.03954102722075387;0.04145164112354948;0.03565386169997447;0.08166365138783532;0.06498188015860862;0.06510555808380465;0.03843438589064035;0.039317203712735053;0.03931151803595381;0.026267512611114187;0.052414059405238064;0.03750832943874836;0.03714974705065741;0.04835693458756905;0.04545891005111708;0.14828265713189986;0.13716880830799555;0.05189418883397953;0.09112558726481856;0.05251373460432336;0.04922541067258378;0.04106762655723098;0.04734457377872811;0.059600770876618005;0.016368207960241875;0.2513879933952427;0.22423895031693541;0.08264950607305264;0.0799673943166789;0.05415796852887529;0.16131646008872297;0.4000897621320606;0.21200567436229786;0.2595778280258198;0.045442723417773404;0.04725277639722359;0.2646738034362259;0.5749471983897777;0.5212398907823103;0.5290919314512276;0.43805209611917706;0.5075640275989295;0.06154695423470938;0.3868234008681355;0.029306633651646187;0.02911823028247076;0.027301491120141252;0.024250365906287586;0.022492271461597976;0.020821934063236423;0.018357033796031867;0.024611568353016634;0.03307957382861465;0.028748029472533607;0.013605329093212853;0.007775726141388408;0.015006342963202666;0.021814650122683847;0.03829402725322305;0.006436712768678362;0.008317110470861755;0.014372227544040748;0.02826975404519318;0.010292758975129896;0.012830906314937772;0.012680100900576308;0.04718126316260883;0.05629753757570042;0.05312518401439649;0.09276221099962349;0.1558722741486554;0.022869658559568577;0.11295599077113132;0.036946820426212265;0.08665407271024293;0.09833092251403518;0.14811686558935655;0.18779667840060985;0.18895020834172255;0.14085175387209445;0.13163610682777804;0.10159623347471461;0.0773598897676509;0.10123556700605132;0.08874896225349965;0.14047759481358993;0.09226086707755173;0.08589235348429808;0.10818410911274579;0.04417188825450118;0.12897233178604398;0.080234737298336;0.04999338667818075;0.15553271606028815;0.1304539783344818;0.06751737350125768;0.0555596145556021;0.07868199409364328;0.05243918688584363;0.08564775465641954;0.0977815628454083;0.21263514289786023;0.02175132236764346;0.020902120671131577;0.016554502066111938;0.06489033010025745;0.011940746533806433;0.014469891009142933;0.15429343479248658;0.05168251562124177;0.03778058598960043;0.03861623025597251;0.048882098756059686;0.045466728399876366;0.04622838654777893;0.03982637883494194;0.05342156403712904;0.0858234848048349;0.040793862272225534;0.03586904290546222;0.047289380919444395;0.04931903302556546;0.0702732460850047;0.16970544410673502;0.07637033651511431;0.040071046791698275;0.022904467709189736;0.03147925268714628;0.04626964841443089;0.05944809456224431;0.04968597939537371;0.3435629269907306;0.04919344665409434;0.069039754907415;0.017102787367552007;0.01714655489645025;0.06052909463011737;0.09666367901131391;0.06366569698236409;0.06643672111800754;0.052273701649598596;0.06250336257983055;0.07623919941545063;0.13404950099334845;0.02126423521276302;0.15056117236552724;0.09898470502367182;0.04090370150483624;0.06403371406953665;0.039319667500719975;0.070024621222539;0.10940205441308734;0.4163043494340468;0.029167484154538445;0.050265338118807214;0.4903384927847483;0.07566914329865257;0.03293974765645903;0.026001314991832662;0.06569895337477644;0.055748505376518875;0.006641914857558852;0.057741543179775895;0.036419240574694416;0.028490647468775377;0.025400738581593262;0.05807299019573291;0.04743081936237008;0.07558719979475773;0.06858385839651827;0.07115161921006942;0.1251622141803908;0.0917773201381002;0.015169185299712885;0.05138760298950573;0.02920850280981445;0.05095759514827309;0.04568900603284328;0.05069143738146938;0.06727488223877079;0.12494136133935259;0.05224620123214222;0.06567650764491237;0.058518489539375496;0.03281223257741347;0.9435290084886738;0.9550062159031006;1.0;0.08591144570095272;0.06694130341551278;0.06689513845733341;0.10538900465142265;0.10411800841534007;0.10437476492149182;0.009624747526845553;0.04051207833534091;0.12075853896336107;0.04528520806302469;0.04106412806154077;0.03806792228208697;0.09519639478655116;0.021398225681894954;0.03888703298036577;0.13420911227483512;0.03391339766518896;0.18350316709027994;0.09799764455054953;0.1959534743391611;0.030079130522432933;0.054512605046777275;0.03214623244986993;0.12290229091154409;0.15099723107479002;0.21885389676189262;0.06713766785341299;0.003219506625642606;0.023879127264716034;0.04830904069788395;0.0390770216442474;0.02344170009114616;0.08703098257473944;0.03749843605863258;0.09426195788311843;0.16409914726745306;0.05404358626605468;0.018647712830753803;0.01644265402634496;0.04285992085409711;0.07382438763044405;0.030259365910521144;0.07827432024576601;0.027516624819567202;0.07967800191433178;0.025635675750213922;0.007943363609305329;0.08338458825404489;0.12751012499112846;0.17170324297602207;0.10561823272361381;0.04547398016625121;0.02614475841497351;0.07197521270335082;0.03908000938564628;0.020113230408486806;0.03669406165473304;0.010524595636708196;0.22728750172187057;0.034514504693282586;0.05094533783185787;0.05810069153919182;0.018959104547684014;0.0013637899800824325;0.001774644243642734;0.04649435809598807;0.03542501538017599;0.34820609503099204;0.08035560830020563;0.1072805134883642;0.020552173312602166;0.0410312715379032;0.09296496536175397;0.10502927082868077;0.008404179495070718;0.05684666680221925;0.07436372605184925;0.01081767869138527;0.042722063385077634;0.13531014417582132;0.10722949236007166;0.040254154004933325;0.06627916807580331;0.022334601494956245;0.025401311271264358;0.03446034916466582;0.050399351034147735;0.08267493168897055;0.021392678930154445;0.036345467477923825;0.05135651995323748;0.06554158639362956;0.03795072994233487;0.10335957404348967;0.03469295785186193;0.031444004694761093;0.010971231570058804;0.015113091617855722;0.1136089815858098;0.11923836634655316;0.02246506155593724;0.012518952796743091;0.014535398827425678;0.05205068628407342;0.14983923930141424;0.13370279667826906;0.04920149537367035;0.0073026587525178545;0.053834068780530396;0.08423584142896938;0.05862287721803496;0.034697235252151556;0.2331035284860618;0.04187751011484295;0.0767297201195119;0.039998602647268094;0.26264059935084183;0.008851396887481365;0.04896358220360912;0.052981704623729094;0.2797881134788976;0.08085605398746247;0.14657585315433763;0.3146562643683896;0.04696849957630876;0.0074152145075084604;0.010415042942823662;0.4546739969130314;0.07406706272482186;0.0943529077765489;0.0896929070789441;0.05739405139583286;0.033745219286484315;0.12074487251457405;0.14942020900177685;0.14426815557108;0.1633740133739675
+Dimethoate;0.0015252340320940218;0.056828882350037115;0.00210794112861196;0.025912220284535728;0.02702228043774786;0.028557425916365065;0.010408391774784835;0.020195391640653003;0.01762514664338862;0.009052844406969367;0.005431171815976524;0.003155631443179911;0.00033210438195128934;0.0006550235919647569;0.011209810043657214;0.00788283023724591;0.004154926082181933;0.034298739232835995;0.05364726255884697;0.03634773884796457;0.011748937468493313;0.019771033127869743;0.01425677584381064;0.02372091434084801;0.011597272263641016;0.012944871406911286;0.04204999467801683;0.04256250035105154;0.010633380493029546;0.06857444993269289;0.03441220027101971;0.1406922584978387;0.07670115429791367;0.006451261333210736;0.2092269928441352;0.03360347181662009;0.08205642400736851;0.004471175411266119;0.008488044818618222;0.00775876804055136;0.023745283524887625;0.030492453289779658;0.03041692085403372;0.01131528866827582;0.10237320110628331;0.04668075285812122;0.048206091785217814;0.047620097822074464;0.05036744287072537;0.042628825236246226;0.032508058505979064;0.07455492443474747;0.14498899583952318;0.03647817951010599;0.006840960658733735;0.03283733496264133;0.04783470204391334;0.041628929599069456;0.03909020414832118;0.004066056510723956;0.04393789810419506;0.04599527295174686;0.044289575050740694;0.041615333574083875;0.05082136416542081;0.03869946646272808;0.04256886713780737;0.041861053544330666;0.040144667840207766;0.04229846046305401;0.02756074979552447;0.039541030022822755;0.07756391385431352;0.09102967282641798;0.10615887277171306;0.09865717749810847;0.02059641400353483;0.04504890640508463;0.0010597887763249716;0.017857073897283467;0.037465828385980775;0.03476658441106201;0.050094594744396016;0.05243363721347443;0.03162053586586524;0.027563523877305807;0.4436664436183822;0.5053827574977028;0.06662931632787207;0.02017181426397159;0.01147096242943135;0.03165664229136146;0.09725907283096527;0.01362164613596163;0.021900160145918397;0.13115096426050254;0.13164193311787245;0.08718158013642406;0.056545892980516016;0.043923245375354844;0.08233736784467578;0.04594262488781544;0.054505908074902215;0.03581331324506375;0.03483865302812052;0.010882840486405119;0.014351120037639518;0.01740698931691733;0.013107292190059324;0.004952397308779971;0.0033619656559613137;0.004666208044008706;0.004829077584336668;0.007862762616855867;0.006859841695606124;0.07893623428857138;0.09016408567941568;0.017488922870041983;0.029420425104132755;0.06887843149927686;0.049423931324348816;0.01244214724906198;0.015919737304630283;0.010668969162014128;0.07492444564153572;0.021069962009511573;0.024600195419860717;0.06332730589369533;0.06175364448130869;0.09309889235305017;0.05682750235738741;0.12472742165754694;0.007886229106315463;0.10218746804577039;0.04887284618309381;0.03623604186542384;0.029056779217242562;0.036825751960459466;0.0581014023899404;0.05328630282717258;0.03775751016875511;0.04280350693956602;0.0869911078144012;0.1530579458099554;0.024649059955460847;0.031310151666290295;0.04377166124674899;0.06220296791013134;0.10028907485722113;0.2222205462127309;0.017996595494982934;0.2688607027584757;0.04111651961600244;0.0210528669903445;0.02400563233910979;0.05935676609195427;0.018956958849269474;0.014174962560314974;0.015610763556600706;0.025737704587320914;0.025439129366657636;0.1487171590843002;0.02664954924039517;0.24861907764336638;0.09954851845086432;0.05487722664764532;0.09526998079129094;0.0851842055873616;0.09840085125755148;0.04863729217596628;0.27656043637801003;0.06666701707678722;0.008923576321675078;0.020224216338604703;0.0444231272129481;0.0011787063751983395;0.04044963394007862;0.007627489430213085;0.017770028561035548;0.00922867874702238;0.013477603647858598;0.003152610767090426;0.011794558941029999;0.020314679748912393;0.4326744773557608;0.2428964871610137;0.4383271127819895;0.0;0.0030447766064964285;0.036677986163162105;0.04782254804898562;0.022083410331553165;0.11440068494074046;0.025116753916476386;0.02174469077368516;0.029528760434185404;0.028585699183903135;0.011081708619936228;0.04494829555802074;0.021121835238219772;0.021904472123460087;0.02251024226587067;0.018734151595597586;0.06301397880320261;0.1326333731190807;0.0009476354351159962;0.0381364509483572;0.12714546513401956;0.025269128861795873;0.046638700668639836;0.03409112160014942;0.034002588963659146;0.04751066348543173;0.576631421234177;0.04363980807363543;0.057480152550232595;0.5259123566923554;0.06501371915558263;0.03179220345468645;0.1126148496361673;0.031120547631405805;0.02802944504121029;0.02957231310932714;0.029570195506713935;0.0605915482585064;0.06968735003356272;0.04989627318220488;0.05144743442310502;0.0261490894727435;0.02089318613592402;0.03676594381785429;0.021167654693480725;0.028027334886421017;0.0227308997117606;0.028410121784606678;0.019198107252055993;0.02293747846829636;0.020635796956264177;0.016173363033928863;0.014272026334847041;0.008754710151303401;0.047734035627438005;0.03821406906330247;0.04388019488261838;0.07113569835874646;0.06806156196606084;0.050543588005613815;0.046058060212707495;0.08591144570095272;1.0;0.14301773854614455;0.14273460417774916;0.7815344442069663;0.2736758611838892;0.07541212150781944;0.018482892724024074;0.027238942973070432;0.008453805560852337;0.03571278753335985;0.07138217265118985;0.01606918801217674;0.23184212862003026;0.0018426749462630064;0.003133725331489937;0.22343187337006803;0.03615634101431221;0.30092841794924247;0.09923486186631944;0.16648434916416407;0.042138892430678546;0.27575960228031443;0.05110294855571588;0.30496531644014396;0.0766591283360694;0.025199169656485953;0.11063060083510466;0.02067201748220721;0.04577903162434243;0.02430527206652513;0.076963549989503;0.06720901902901961;0.029632213150846715;0.01579489931647563;0.040115502622639826;0.02729176547735442;0.014265557132439514;0.0185949095726435;0.02164326546857313;0.18595114355687548;0.10677115694740488;0.014775032419142043;0.011588642122937774;0.17309899224991335;0.028333309561550238;0.02157158047450596;0.000262622820464047;0.16219722201248807;0.0586809733896532;0.23252568089500963;0.04083043446113284;0.010039093091541215;0.00853597163094247;0.027527984551321792;0.6134246235732379;0.0008512678521751999;0.010357496476674553;0.020690168255323178;0.02924278771024545;0.029352541240475954;0.03845206927575871;0.01321524829152542;0.0027109960947331252;0.0;0.001056851857673515;0.018319791287578307;0.02411783412868151;0.01581681621149476;0.024278087551101217;0.01139095231551482;0.021160296129385605;0.006777343817621318;0.07510885246882106;0.041000553856901406;0.29175512296704165;0.045815635355146475;0.0431334157153938;0.01447758680024639;0.017609053604814115;0.05286784469261262;0.03264633995518904;0.05601742361128394;0.02307238461430475;0.024690795540995823;0.03161310840007583;0.035848691401874494;0.012558720597497597;0.030781727217147017;0.005908399457961777;0.013624536304798304;0.005435179030424646;0.02668311070415653;0.04654654551842964;0.015970763401091267;0.001378614185502064;0.010255399063956264;0.0014041102881577675;0.002418703398797077;0.13723549876860247;0.4282527772971791;0.047816022696285286;0.03445028601246133;0.0016646933148118982;0.014805343079227942;0.2735545881713984;0.026777543437964235;0.047234542747131084;0.0023880727207691806;0.021998374230890762;0.004884447892651141;0.1089740538589041;0.028152847363316143;0.40250528524923135;0.036068329069651975;0.0369384382048182;0.016949907599827795;0.38660150045872016;0.018516570150246704;0.040190962511601744;0.027960277122858843;0.5186459833926761;0.07373632314802663;0.07223523283254253;0.49723211711820337;0.006012495896855901;0.0021364258194810004;0.003423733960187719;0.05909936593075939;0.009788767438723233;0.10789315279753064;0.09331177647522258;0.006761658516835164;0.007879266978654511;0.03027872827609156;0.03610245767017298;0.12005016455773139;0.1483671806190231
+Dimethomorph _isomer1;0.17389916051376483;0.17130566458804516;0.173785230838421;0.1919226848178844;0.1904234728098787;0.17751724517436673;0.13172609157389623;0.17740607074791073;0.1760848259845599;0.18437486621262045;0.0825959713500963;0.17754474904312792;0.11928761944138251;0.1799748399123212;0.17412154326868895;0.16900971377138724;0.1778660166217858;0.17573381959123296;0.1704883065140232;0.17430499359959864;0.18810293439876852;0.1903954888421258;0.19390652118527432;0.18778054156338791;0.3791039978508687;0.02853196389825955;0.09757343774402862;0.2804414002718411;0.061194106313723955;0.3122550017404698;0.049329693070883925;0.07149526778118516;0.09462607669218237;0.18901981663361664;0.13175268070653567;0.175232416326311;0.2640990548979169;0.031205821008444188;0.0029291612930958887;0.13899103982987462;0.04678588877874138;0.14837134268375632;0.06136162685182486;0.000759965453303036;0.17477250776299935;0.006255800989272227;0.007699024245617672;0.007021205404958833;0.006433037228012275;0.11750973687958105;0.09393287663047181;0.03935475333324362;0.17794562159830654;0.16686226878450083;0.0931649365182662;0.15284783691551057;0.08134613338377102;0.11033203626496683;0.07656524348842346;0.00040087157435787904;0.059850522441612874;0.09867131071935545;0.12410777583348433;0.12249863767608987;0.07703807577036834;0.10349422773796597;0.10904356593051459;0.08280371721233797;0.08252063731516054;0.08204494329724803;0.07982431355555049;0.06136778343485876;0.005830267988604994;0.07585854420279657;0.033180332423339266;0.004908018265000904;0.06656635717599405;0.07324034973624031;0.19975050660385169;0.08848915685447424;0.05631328395437523;0.05316313582244586;0.044965221214168856;0.01397802008613878;0.02680535054785283;0.01376780383621895;0.05389404443594252;0.04471953348253026;0.05657867830116129;0.022698437192458468;0.019209761032977096;0.05803567848477028;0.07999958177982522;0.07971836273768285;0.08453480865973016;0.007546532544240187;0.17703263949910183;0.052936495251958156;0.12002663872115665;0.10450785083216366;0.08926155603997987;0.07016729654421415;0.08359353679589139;0.06200420500951183;0.13840498175271396;0.13913189763582415;0.11451968823857758;0.12436558387194349;0.1263141393029404;0.15178259536784472;0.14956150390964063;0.14048070911911803;0.14916442455290424;0.1422656530039711;0.14533215754800063;0.027897856534221305;0.02804009363926513;0.024627194123230934;0.11247437629208089;0.020388875507608567;0.01528698205974049;0.03517644414906008;0.11373077595657867;0.00753544206149035;0.0010303861438997418;0.008459512999748156;0.009019369820786188;0.00024967560187975305;0.013991092972079068;0.00019456125820607566;0.027104110672286956;0.5413653189095955;0.02903746868382121;0.010013078415264068;0.17779332154697275;0.011363004036728418;0.07526533997781973;0.05337466751509447;0.22038693565890027;0.1854444117400731;0.060744348357803506;0.16583992754992846;0.015379917440493133;0.04422323549013375;0.09075697068721043;0.03768709515836728;0.01350335806769956;0.004686465967179991;0.013628687478666962;0.023059064047337964;0.08007855296885065;0.0029152691094613227;0.022898405727585756;0.04136989594489661;0.20329746947505287;0.14625049229218318;0.08895805492186017;0.03964257044568273;0.052884018504951724;0.09487100916257007;0.09669820694229955;0.024204026418958857;0.02098592859626093;0.004533453891997653;0.007584663383376282;0.008870816015186515;0.01709123361576327;0.0028366362641525245;0.005209635286669111;0.062143005452834923;0.31727486641809516;0.02374706873489183;0.04578454765323508;0.12910916141096943;0.1237560516916479;0.03598933165258646;0.055805565513761674;0.0012457231137804922;0.32054658807059716;0.22980961699993957;0.19872343867426168;0.04407313915029137;0.09535299980534519;0.17521043321867558;0.028641784346980302;0.010361695828076145;0.018220264747930794;0.00020853219682334632;0.10516889596956001;0.13678514137912426;0.1687726049843478;0.1453625302943132;0.10834501790520149;0.1622508165476651;0.13308454420075608;0.13035390235520591;0.12724038766141296;0.14061589308228256;0.22939957231169317;0.08763715041305963;0.16086495421831035;0.09443643188800642;0.132802767492107;0.1330482442745657;0.054647884993573106;0.17990258892430314;0.17794071263085015;0.08493544148883578;0.0040954731573379895;0.009055853790923662;0.02217093953950393;0.12013024927314571;0.08561930457201121;0.06152959977255701;0.045809890101672274;0.08136146437789092;0.09402815464327043;0.015483732964420103;0.0018948486913381404;0.03889977148047937;0.04237330121455161;0.021345440007312755;0.010601261723493167;0.20811807746805205;0.1935815559628196;0.11936786042522257;0.15451655626829672;0.10227301068873912;0.13212659909340194;0.06030536807550653;0.06306040801087133;0.05651864311776541;0.08950289501537992;0.11208690413991287;0.03824807542505217;0.06991229821850631;0.08083362866943125;0.08740603738678643;0.09655133962904071;0.07232584891407491;0.05290040494094932;0.3090551195557587;0.06965001670299242;0.032511133217685124;0.061585301948279526;0.3972126554517843;0.01511322935504898;0.011897430626737671;0.06694130341551278;0.14301773854614455;1.0;0.999766299428012;0.009108753126698236;0.16177701424281055;0.1341602986585227;0.01048059535253883;0.043738774305758676;0.12298388581087787;0.02481384719484541;0.11386144373670223;0.0;0.7280295949358191;0.027337958715710806;0.014758172229764912;0.027876239835901803;0.008698090718530936;0.3338181698200488;0.489306970841903;0.2888982364966413;0.10349439308160235;0.0037747596369080718;0.04923991597611706;0.28142976162393046;0.07786856172405086;0.019727292161434356;0.09528360508682164;0.01643045855226976;0.027614430383827483;0.25186793676224584;0.008350478746846444;0.014354407955319866;0.07914579454307905;0.0;0.15187171788477896;0.05743598410290289;0.027974211691461;0.032213731823634344;0.09141196613914167;0.014060115395560877;0.026769364459185905;0.02700592894228039;0.1353223491109595;0.019355228176791958;0.05242841173973261;0.0025050577443226267;0.03686959806918905;0.035353953156970645;0.0463005530893831;0.07836276335906027;0.03685797872358311;0.3814123562012679;0.04786705631105983;0.10021738302463014;0.02583971392721241;0.04437266010061892;0.015348668327673766;0.043475140060388245;0.1776875423275339;0.033787925996858405;0.04235520601962226;0.05754054692415347;0.005882050373213257;0.0008145557049644617;0.004816467883135513;0.03576406277390146;0.07537890033144141;0.16215261612833728;0.07025145256770685;0.03247397119403294;0.016460942507192045;0.017353140252531346;0.1621897968009825;0.11589468981322908;0.07090280744998971;0.04783857532363783;0.012743862644463484;0.013007194956118654;0.025480461087447275;0.01151953297305215;0.02600502168373674;0.046653399476840704;0.12990385079067054;0.01704803183342615;0.0152377655600445;0.00671348182023729;0.08107889855157534;0.05873429193319239;0.008320418256462922;0.12134185515071788;0.16032642904761535;0.17802030946449005;0.11171617610732323;0.055512807219331634;0.006177968017169925;0.006952034688748026;0.0022825481200275887;0.003373809684758519;0.036221477481820724;0.02859142557276079;0.022932066258345114;0.0030699993708300883;0.001993895553960758;0.0406896397502262;0.17037231634093725;0.14028098812666545;0.08675919240722915;0.0025735155984423115;0.0588744992395553;0.030840370093746527;0.0099412452950939;0.07578224088739816;0.03204884931143765;0.007114345298029021;0.034221939343786756;0.017264860572482155;0.06428912739445515;0.003835960221122719;0.005657277962090526;0.02902858037726065;0.11110526649455135;0.0326813330394253;0.09627842088562533;0.1119755216409739;0.1634848738980538;0.0026695037589336045;0.004534891797793064;0.014737276958723277;0.04238746060702693;0.12859635463259456;0.12232162176053274;0.037064418709599777;0.003978525315187461;0.2630611162241152;0.2929577034490025;0.16673762986393673;0.13613729576468475
+Dimethomorph_isomer2;0.1751841681000355;0.1729887770283606;0.17559198826757516;0.19370714830664118;0.19225807912078502;0.17940641688590095;0.1336493209444873;0.17901856015834508;0.17768027141291357;0.18599585987163986;0.08305391398078965;0.17943456064765004;0.1208949387444105;0.18192467094195588;0.17535442956828387;0.16982380813120007;0.17960644944319004;0.1774428748581602;0.1721370632865687;0.17597763637027639;0.19009336906244823;0.19275345308013878;0.19488660393710597;0.18929856581640533;0.38107802279076214;0.028288795005127716;0.10178350895084173;0.2780944716307788;0.06179718740697168;0.31391187250363245;0.053446307848499755;0.07314486928770189;0.095502961343234;0.19010747994924954;0.1336916477524231;0.17597142059728593;0.26565182580206387;0.03166306185765225;0.0028208185621703082;0.1414005307684663;0.04728209503377825;0.15068885947821706;0.06177828131116552;0.0007603723786503819;0.1742280917376776;0.006179588796779707;0.00766882256459501;0.0069736029502557185;0.00635107574567123;0.11990289298704217;0.0959625565793225;0.039981579411878986;0.17677000134489187;0.1660510453068949;0.09512446161670544;0.1552430398411666;0.08299418203532641;0.11251277529787977;0.07795767046909026;0.00015040998470165052;0.06065785456578417;0.10026454427227269;0.1263656845796643;0.12469615063472908;0.07852199679466802;0.10558041981826412;0.1112034805219706;0.08443053920790944;0.08397093959588499;0.08354939057519248;0.08144065944143056;0.06231455722822715;0.005370645303456934;0.07181692889064599;0.033965840094711444;0.00492675264224857;0.06824434420645943;0.07364697933938025;0.20345197040843818;0.09449618277103083;0.0568227195479249;0.05375976450522464;0.046911619903993854;0.01623700969747088;0.029182054086206458;0.01586011276522547;0.054250433734564785;0.04497819707953665;0.06089872340565455;0.022055545118785377;0.025214525041541508;0.05824810423174529;0.08105770329829202;0.07926204517775234;0.08368162601443895;0.006672516930977548;0.17081418759049782;0.05363623398845393;0.11924247509631546;0.10378669369275903;0.08906157762693925;0.0699474792653504;0.0830567524329113;0.06195298044209791;0.13984248232906854;0.1414061832856437;0.11619565603215136;0.12627858701392836;0.12824211898576357;0.15411396334529717;0.15196677730447022;0.14287483215418886;0.15114997742788416;0.14427620743783198;0.14754854238930415;0.02745268637079702;0.027587448629129197;0.02426505830180994;0.11424583477634417;0.020225057761890514;0.016243312677838934;0.03458475291201686;0.1155342263004315;0.00743472450628963;0.0010140131742735756;0.008292710281878226;0.008832361001043837;0.000256268936474089;0.014324290198454282;0.00019969915500011427;0.02656954996592888;0.5422625627226374;0.029367646884327813;0.00933163014838846;0.17977651596878613;0.010651781493604344;0.07642606034459194;0.05495892963037314;0.2215181963685449;0.18701332211244287;0.0607219048521075;0.16767916742423936;0.015551809575240251;0.0447441418521524;0.0917504449371509;0.036975623624874165;0.012946873279136035;0.004767980856780181;0.013700321092275862;0.023042260527138664;0.08095585808986286;0.0029510798018092897;0.022686970877901842;0.04159635363362313;0.20519898787699267;0.1484147073390586;0.08973441022404959;0.03990689384333465;0.05319468456130499;0.0948526206125326;0.09644423049856025;0.024081092538647573;0.019809964884168776;0.00452303144246886;0.007914281740091754;0.009653345115250699;0.01655337395974735;0.0029448831454438186;0.005369871598100121;0.06194064798654787;0.31672628157033117;0.023609760005491847;0.042653166266109065;0.12842864246347338;0.12325140484288737;0.03611959584420359;0.05879390418522577;0.004848754924842505;0.3190436864870384;0.23021255776023108;0.19966309648988048;0.045591344938989684;0.09591080881250966;0.1760489069231308;0.02894299237184603;0.010408163649646664;0.017593577083901534;0.00022478968947985126;0.10610341532415554;0.13762377467646353;0.1698661304707821;0.1471128566991375;0.10924373019269362;0.16236472954391803;0.13485541430742434;0.13143819101575918;0.12829183376900385;0.1419264022475828;0.23056509959042648;0.08845012590192668;0.1622771263775271;0.09526946717950514;0.13399987872159502;0.13415952824814636;0.05443638893723695;0.18172866960848932;0.17913601031162543;0.07720686259231825;0.0041593597282285726;0.009284764227459436;0.023976667025984683;0.12126709776847161;0.08574011652818427;0.0617661625096413;0.04421247540224191;0.08271844363338397;0.09483820665537346;0.01616213756924888;0.0020394546283127126;0.03931848366315521;0.04289357369947519;0.021318493932204863;0.010561400158553929;0.2101838170610073;0.19532526210717402;0.12128555939558402;0.1569731090461645;0.10389085874443435;0.13445523900736664;0.06111100697913531;0.06388039814744713;0.057299640948887155;0.091266072385146;0.11430775004480857;0.03864732515699279;0.07114493907124518;0.08258813263016018;0.08934970682854737;0.09888112399960124;0.07352616866854894;0.05217715510851329;0.30808972089669384;0.07159152408352608;0.03231716381194411;0.062095179212089485;0.3978834905892341;0.015569444446527822;0.011794385757530296;0.06689513845733341;0.14273460417774916;0.999766299428012;1.0;0.010008956326091488;0.16326490754134226;0.13346654052864476;0.010349748156458213;0.04449939795930785;0.12414838945582159;0.025466939765509143;0.11417237622933195;0.0;0.7274971163597374;0.02732775807516226;0.014959253461812564;0.028034120271386187;0.008742896479679524;0.33580082769303293;0.4912128561073557;0.29113733522363894;0.10456568306694819;0.0038263696399236024;0.05232651170751746;0.28100805601654205;0.07923752693121142;0.019930332330285544;0.09512369861992717;0.016461297026772414;0.02756234279946649;0.2501698845578061;0.00832847128607989;0.01405536955601599;0.07889068045933184;0.0;0.15329641415791273;0.05718459630686185;0.02759738451558612;0.03154624969419247;0.09152961606411851;0.010070511099582524;0.02595171641543805;0.027468584815492088;0.13632521026246;0.019708012368267545;0.059745920079305986;0.0031590804231119668;0.03736746914074965;0.03542998402086733;0.04467850590130551;0.07200777923827568;0.03707381635259516;0.3803138945265213;0.04650387005332304;0.10143094615415486;0.02576938684008331;0.04484931437887582;0.015404339206387679;0.04446024448445267;0.1791580353654843;0.033916270876833694;0.043656111040032974;0.057971207953392154;0.005776436549111095;0.0008880766933198658;0.00493196820329905;0.03611900590495622;0.07464513045998332;0.16462731432578093;0.07080608849496096;0.032825514264155226;0.016905667894088868;0.02396333230176354;0.16208266597472565;0.11459025832310381;0.07166523129929935;0.044751043197560805;0.01223193956581665;0.012576981576303938;0.0266369872827471;0.010499060891818887;0.025572097852226708;0.046776167299200276;0.13090918787533345;0.017145965799650865;0.015263960786205575;0.006978297341627935;0.08233091604174436;0.058134920190217154;0.008429579225420628;0.12264750678088696;0.1613204789341115;0.17904230887510547;0.1124257816731003;0.055948177285877976;0.006152511803360819;0.006938275193910119;0.002386484300754108;0.0035466604408044364;0.035130859125510255;0.027748579883709826;0.022866187872337216;0.00299679701070153;0.0018854421537889878;0.040224763391791575;0.1679140551917203;0.14116493543705658;0.08561246735339173;0.002628991350710755;0.05862975399160168;0.03164508923623699;0.009898695976425793;0.07151523525843592;0.032537006165231065;0.0073926653085336635;0.034348545438128666;0.017340734343363896;0.06444847801883458;0.003806515616640805;0.0055543255946198565;0.029541214660611177;0.11089890513184832;0.029287643833833917;0.09522579338526523;0.1124110752027973;0.16522126533509335;0.0027201945340108676;0.004531777203142339;0.01446192767753854;0.04103035332932859;0.12875877967206964;0.1206063976804276;0.03709792595087848;0.003889136175403934;0.2655673328244699;0.29497377792693014;0.1670295210526732;0.13641339521522466
+Vamidothion;0.001255332106203579;0.016896763019392125;0.0;0.02380347817986854;0.023215411561968106;0.018811199283081045;0.014502933551599324;0.024081737703988224;0.019668026187336336;0.001491023835773602;0.00892208649007018;0.0031985380983891787;0.0;0.006924229784603755;0.01831981709683469;0.014803747088548907;0.0032722009205050184;0.011166633772550222;0.016369679227909956;0.01181872654517287;0.002700608434368093;0.004404695837444111;0.009840788087779275;0.005911800182988814;0.0005901802981158137;0.019179639463187535;0.010811044818593574;0.02865687860114792;0.09319930675847284;0.11900701402766485;0.0392076219652687;0.04597512213628851;0.05366584682615096;0.010294982649818289;0.1521498997692659;0.003917607285171312;0.0807088394966678;0.005520348097970934;0.006325077918885484;0.0038523342973058737;0.03885306365979134;0.013949086938385038;0.04916457094657242;0.008340085694648397;0.12929823640870083;0.0908286221344592;0.1021397608369905;0.1018128655938516;0.09473625745618336;0.02755633833294489;0.04508503467342549;0.07278132354691791;0.022934353259504093;0.03072987293770902;0.012627680664113605;0.013909337216763167;0.03461514928826989;0.02747753812316406;0.03123796283978826;0.04234615595585905;0.04536362077247777;0.06726745062522636;0.05894048553606033;0.055772241263058846;0.0375491887358437;0.030078772557490942;0.027668094128300475;0.030548329506890997;0.03803127581930738;0.03218879361338935;0.026616322276410604;0.034550063332129864;0.05831848393084201;0.13349206472225342;0.08527024307238078;0.2135917515800815;0.08416829912103421;0.09637001645321983;0.03436568949498898;0.021141388733436055;0.040137729498356846;0.034941703736343664;0.035900765321547796;0.04014290989289724;0.010982691341443676;0.004854527326040304;0.1461511768863535;0.16903300001282076;0.03198341361990484;0.04735231622342061;0.008032488601544195;0.1925905839143152;0.09490398891008289;0.02734991362959949;0.034549015516754523;0.08281899065926998;0.09287577922595257;0.0637524813166733;0.06371200388371852;0.06969760629130646;0.13196126108122053;0.05472853640109388;0.06173020424014863;0.023630779424590798;0.04619404004187172;0.031896603639456164;0.04016665534122385;0.059611696381859564;0.0010061281668962232;0.003661246369845265;0.002454832023723652;0.003423784579995778;0.0034218239290431636;0.018997076043407366;0.02204600384980057;0.12078018426433185;0.136374610124291;0.026821625124854427;0.030458477632352574;0.06647842159231039;0.09580154299916978;0.012413063182727287;0.014588630858750238;0.02670593668223297;0.08057016447163103;0.017372708740532077;0.01919785476977923;0.08389465545535298;0.10339056559872647;0.09995394872860057;0.026069433114047285;0.056941149142759266;0.003613939636057619;0.10978130094181851;0.08976664695998715;0.06966049674770781;0.03638880460753325;0.027437934341996015;0.0719147567995592;0.09285012711475389;0.09429903109769569;0.03378310753656987;0.04157478539192236;0.15241813576677052;0.034036703349160195;0.04947030364233357;0.015409219845820138;0.003457952140769787;0.04343938430847864;0.051900140553362825;0.05375044090171406;0.08535425893241497;0.029208820414189592;0.011038552855504237;0.005054247763222052;0.04207238872087443;0.0124212025488333;0.025100210198502355;0.029706822832379104;0.006743946845465228;0.029153591078795046;0.0652895359962816;0.024829891265675894;0.02795738848901493;0.09714027824623506;0.0558359175324961;0.10802132593927197;0.04610101582480407;0.04931559548709626;0.10179756939320014;0.0861824144010818;0.06550154072661554;0.02655371500188681;0.03995209923948195;0.04316409255394543;0.001468957316331449;0.01257837952955822;0.07702586427787785;0.014589835292527326;0.008684457078954417;0.014118412470502297;0.0028956878126233645;0.0369243878634278;0.015214761824016028;0.1669879530173597;0.0980576758601663;0.14147929743579266;0.003740954421331348;0.028815015736550483;0.04899789807001204;0.062458583864607946;0.009218791464798108;0.1142069675241317;0.03351935801249666;0.017679425967245217;0.09167189608730866;0.08854280234947108;0.01409159577071666;0.039917085214535575;0.026926217500488462;0.025785951125745114;0.02670709067189771;0.025214259896971434;0.02144848720683197;0.050019259858234195;0.001075486216953953;0.07171857291189417;0.04963993527345654;0.01740796596330337;0.052316023268261874;0.052780919080348085;0.02290181477223843;0.03427328176252833;0.19998300419740664;0.08394198438784398;0.030610968194289028;0.2362284369468704;0.05981284001263255;0.006447552608925316;0.05634509105630329;0.03125547064144912;0.01987812151088086;0.02237586994892611;0.025553644827766377;0.023933946514816458;0.02724026423294612;0.020286275525581432;0.10808935649516725;0.08218397760244191;0.03382115083950881;0.03224189723316405;0.033770665978000124;0.042340087688114106;0.03187520788189815;0.03816773757753759;0.034086366222284635;0.014337759868741357;0.028033928931295655;0.012188802292853185;0.03179095194094705;0.0567694805467151;0.03901084028724625;0.01061337992973117;0.08638963255220918;0.026759732850565085;0.013473239698371645;0.11629711382678;0.09902933832639808;0.10538900465142265;0.7815344442069663;0.009108753126698236;0.010008956326091488;1.0;0.08950330506225711;0.12461113619412222;0.020224393275505202;0.036197071485768305;0.043868899467619515;0.03590427294785024;0.05512923237247758;0.03294518508237499;0.009097134037174768;0.0040458204919732515;0.01798563226143269;0.0741197533287457;0.0016307115939426576;0.12704800674010003;0.03893017852811478;0.059088054794014015;0.008573101668818058;0.018124154622605852;0.01158429391793661;0.03701784734995432;0.07769288361423118;0.02199624747676027;0.08864161759999685;0.010113865761541418;0.0035678370045355;0.012472076783319639;0.0061584877842043445;0.1184292369739837;0.04346285623929193;0.032408188671034295;0.015165222460024486;0.005073215661627496;0.021702243527207715;0.019658691810000285;0.07584240425494158;0.1136040099711044;0.0806640279059195;0.02731060772938068;0.008652076061024685;0.03622678252511132;0.019911143082445664;0.031807825300473075;0.0;0.03441466281470323;0.08263058016630273;0.07104537283422312;0.1057275124418352;0.12061067369195885;0.03355338793041315;0.03097646077184469;0.17357673174839436;0.00023295748823313767;0.00022528636098232313;0.019446962144237412;0.026891584083861705;0.054479650300865434;0.01769014036568322;0.03250435917014459;0.1403002694526987;0.00096763607750738;0.004805544826185127;0.057653726367577394;0.03481013155087393;0.029018539414302085;0.05772891924284679;0.005830082072787701;0.013582216376521612;0.004155851209483706;0.02955221246278001;0.07248135358247079;0.2835992549073134;0.030516476440407152;0.020717344733962532;0.007061384995338995;0.010355426374107515;0.02184979484755134;0.008594324419918756;0.003512765657601333;0.020628090623642653;0.022305330154449396;0.02554846604301604;0.03373322301334982;0.06225793772364761;0.03110852794876189;0.0290255548596578;0.0054224191881085924;0.007173864720988868;0.009347243550681422;0.04039764901520892;0.011176766570998616;0.009537643988453503;0.014865376585680662;0.015300728786878558;0.03309806268390231;0.04804967578205961;0.15606337718002333;0.05331936666492774;0.05700412265721987;0.003307291194805792;0.013609669889462652;0.06392076556908977;0.07092897665273787;0.05224465952138815;0.0023243792861779235;0.020451245614444544;0.10425177591736377;0.30085222379988297;0.057821362356618014;0.1528569854847521;0.013602346767041064;0.0399538294722082;0.008425338935358816;0.12964602624554636;0.004928320719827749;0.1015134407166112;0.08505545789592045;0.20329631273964974;0.032117049567434795;0.03704825921436411;0.18705929858728193;0.0008099326811172041;0.001314434882288529;0.006584479978737351;0.058010880754688555;0.06420277903824413;0.051592661845124455;0.04604191509716919;0.008043961582519224;0.004403319353047119;0.05400369999407502;0.052397394402694385;0.09653095942250349;0.10219746530932572
+Temephos;0.7625859622498443;0.7871654178975752;0.7962442905501048;0.768325028158512;0.7757557190113625;0.7862841588426713;0.4058636968658636;0.8193370627404952;0.8142245088651039;0.7988182869624993;0.4043588054484981;0.8039715991968729;0.4875680304695973;0.7762445675446312;0.7695408644988574;0.7355439907324818;0.7989730864493834;0.7991137674331155;0.7816793854223422;0.7920692862734615;0.7902705940170269;0.782871579063272;0.7748943137916662;0.8081900807318909;0.7859454072687038;0.015300379571303285;0.3645140105942376;0.2737842332947829;0.19699791697738128;0.23707617724714386;0.11941727077509313;0.29110803970510774;0.3263452804800304;0.5833945059497372;0.5143925106671681;0.7874522699686152;0.29321870204522343;0.12725103604811855;0.014664626683920795;0.5232631341574627;0.1772014986520033;0.5556459633016204;0.1035446976230445;0.002229756643194345;0.03059973129645459;0.017534942876583248;0.02083440761067146;0.018210310457239202;0.01839540369317506;0.4404916222359184;0.3413134549857394;0.1379491723709249;0.018358364061705903;0.019503291328431534;0.31889006143696547;0.5733592523572087;0.3092650979460883;0.41437379579549;0.28525575184124025;0.008303865270931516;0.22200687359999607;0.3740409143619852;0.482077003815547;0.4656482914063647;0.30167552795760205;0.3903935802144918;0.40982422545238695;0.3047361788542497;0.3013483057411036;0.3013919586698743;0.2873895133799958;0.21626021275512325;0.06119573071855222;0.09007937457149512;0.0525959143742852;0.05131005248569183;0.01854655613821386;0.04076437835235048;0.001357054382745761;0.024987291890855984;0.05113030163489158;0.04676462357171814;0.05045191652011341;0.03976957721518124;0.03694400271254078;0.016757689781631765;0.22213571080139397;0.24814903159550253;0.0934463354058006;0.05012064258858854;0.025533139333365564;0.019144261137155318;0.06042465035969562;0.01700113958359545;0.0257047595983893;0.13297075168330685;0.10390514659390901;0.1270624012892901;0.07223117413275579;0.09324220700057835;0.14636590554076265;0.05106168463673961;0.06756993814015327;0.031161402632144963;0.07046006588080746;0.5689176057379555;0.4840914725375725;0.5180717093677096;0.522036127210103;0.6269165966995803;0.6023657698334689;0.5779829172802398;0.6244781270613119;0.6145160532322348;0.6049028867002146;0.14512874541523865;0.09624623673634193;0.09538681337013354;0.4615771026279692;0.04977062612572263;0.04167466280212974;0.1277540527048932;0.4647681157629599;0.024164756707825304;0.06232804943950095;0.0273779261851521;0.022968156699846982;0.05381371253321538;0.07125500596338004;0.0762704638705042;0.05104470055971146;0.029013314768061536;0.134041082763892;0.11066521455077405;0.813154870841078;0.014386241022937965;0.036102489844901026;0.0182240728984791;0.5978802318030928;0.6759166488829566;0.33496588545767797;0.5478364899991537;0.11553122633206914;0.32988554471991993;0.43460642187468246;0.04762024457062289;0.022496716120830703;0.022441209348970145;0.1468026935191752;0.2496560901152228;0.3631128300401602;0.22232404770313358;0.042064740764441305;0.0146153608298432;0.5026192308255333;0.3129591887813826;0.3107303079986691;0.10904143394245518;0.13067283281701275;0.05300314080956249;0.15237973723672282;0.04836357135110974;0.02270475141779126;0.030685845322351555;0.06840762554136336;0.023978860989484978;0.04062093006785575;0.02807530147805292;0.04123093746294418;0.052309155526082014;0.04806441469429356;0.08207040518434393;0.0019255528045764218;0.00629067339424478;0.017274975495737786;0.10621197327341782;0.01760190362477281;0.013117010333530174;0.29751758153329577;0.6227376910739634;0.6128172145553101;0.0061538612554015585;0.286163851437284;0.7304854890301351;0.19220034707680414;0.12029184357659305;0.20552913847259477;0.0005685467189749049;0.49921409510335507;0.5714065021426455;0.6609255475591074;0.6199300030070557;0.2899288571972867;0.5973463171851039;0.48263937093386483;0.5288937061570699;0.5143582067019914;0.5341021907924699;0.3884726030200636;0.3024624327060892;0.5818835438950276;0.3302621212916039;0.4785010402881663;0.575483269145968;0.08804890182830047;0.8019878855206425;0.5563329924484702;0.17059321632664678;0.016692619696489823;0.06774768397655073;0.03469481309944136;0.42987542317587973;0.2831758541601362;0.4780565318774247;0.012548164372249287;0.34828710087424847;0.6659816910281829;0.04149456958115228;0.03840768228190229;0.17237531996945882;0.12801842794209198;0.015680807600974428;0.03836458016508578;0.687048732285707;0.6373500188239294;0.4462080860945314;0.5903808600387903;0.38681664294827617;0.5050169893914801;0.2248754394223823;0.23264020578351874;0.2124000414533087;0.35036150383597114;0.42375117827366043;0.14204230225441483;0.26820010127101973;0.22597755168612427;0.25258297790442963;0.29094876934362374;0.2723967158221723;0.18084715830254725;0.056021742985139955;0.03622993339395323;0.060069906010806376;0.06945576292373132;0.00720470932574558;0.08376062373028542;0.08185324412524878;0.10411800841534007;0.2736758611838892;0.16177701424281055;0.16326490754134226;0.08950330506225711;0.9999999999999991;0.0286406852071053;0.03603151988052678;0.03907344336528539;0.41617527680440036;0.028062776784409098;0.14807715807306882;0.011909625032334602;0.3702399091354536;0.001836531325750324;0.0018480923867025582;0.1879677041613894;0.026864644924580506;0.38845312017880657;0.3807625461932951;0.4075678551019076;0.12735814052158925;0.24633235748240082;0.02662381920171438;0.21056252518702048;0.009829444166856958;0.06031020667544438;0.3380417693304259;0.012490376514842057;0.026771493770115635;0.006430134926036937;0.0042775204940756935;0.0039825173368240084;0.2135786374126235;0.011752326661838163;0.5945053086256876;0.03489376840409875;0.018011321347622254;0.028325365453752308;0.3353175373018856;0.02261812625160694;0.08023889350826792;0.04942701434840507;0.11430816970006621;0.10358569419647148;0.023199789245134658;0.006060998165602435;0.16685680900782004;0.1462753832481121;0.03502326521680957;0.11509085538762708;0.02750119685982729;0.05413258040396775;0.004528414131780144;0.2534632720957582;0.3154168541798495;0.21268911726794987;0.012001916746575058;0.12391328559816114;0.024138122353349382;0.047076955968202674;0.020671447159162918;0.04120036847630778;0.0037962198462783855;0.0003241658169095721;0.0008200244350878456;0.11278682490879414;0.3186061049805727;0.7572307292228542;0.05146595943146354;0.15474135623459417;0.056408948580673045;0.026041008516025387;0.1453693863027938;0.05851030405988234;0.33846365262373007;0.20016745038942604;0.015230980331212144;0.011858736958456455;0.013114459214732725;0.012874103255156937;0.04312370025619833;0.030153507330168396;0.46065901293679223;0.07336000680936966;0.06785645964362577;0.010261845306136412;0.1870168679154383;0.03429054114505626;0.04280737976346419;0.548328927108441;0.6756556302827261;0.7317133817205956;0.3587142785882253;0.11903415091701268;0.013665368045509194;0.014033006961211162;0.01919590511614474;0.022954942555904096;0.06748472219227185;0.07453532397496704;0.04937294735976557;0.03403531059469251;0.032466038700206076;0.016435056597857527;0.035986632824548385;0.10101413865421952;0.09862296373872657;0.03385525416308928;0.04840075162061405;0.002878267981779453;0.05862655218957875;0.24701642589421224;0.16176700507021122;0.038254260546387885;0.030868651854497206;0.017689579794132333;0.1733836704079914;0.02536056240012722;0.007289642973376691;0.03685700204752482;0.2520550115981774;0.07871028472553683;0.04907030047732714;0.2705845642858409;0.7442292859808529;0.009839941220748863;0.013090862085228305;0.054301822800068004;0.019721844995641013;0.21445090462013264;0.18601967772318176;0.07633190951882006;0.002702818439401921;0.6587497569846352;0.6633568194478519;0.2187363231152506;0.24528101783913517
+Methomyl;0.03558838645910732;0.011054512513745778;0.024598112852559306;0.04169341213942212;0.03833399064201359;0.032073293081973576;0.0732826323003603;0.04452512309699952;0.03916590088230963;0.02772020693359293;0.06819931429133884;0.023029592449830986;0.02342747965854245;0.0102237322333101;0.03310223338925397;0.02199459899482535;0.009121667049058754;0.010524715003493041;0.011850468277316558;0.01148676595376995;0.012328562003093818;0.011495929788483801;0.02949934882940446;0.008203241055031443;0.019478119160702766;0.02758668062761746;0.30972624176500346;0.18200465044445321;0.08982671464208021;0.08425665433260693;0.11647741217908765;0.02740524778908392;0.06167911786120145;0.06072872332849237;0.08328546373887187;0.11185146126591083;0.2683005085355935;0.0536232239071235;0.028232698661800257;0.04075343985630882;0.07049895182845631;0.04692390476617447;0.06732467712545698;0.0007173381054153606;0.023969312196934378;0.02245726199045504;0.024436872529422997;0.023614419441226404;0.03208953668217492;0.04529758147694712;0.06625362208385453;0.05686010867841761;0.15719708916255445;0.148049647699459;0.06766427386793879;0.03744763915832926;0.08253277546415401;0.048892282541293686;0.061137390267633096;0.018511729094190264;0.06256480830956838;0.09227040674315723;0.05487279787275355;0.05877650070444521;0.09967067462978656;0.04311224596589452;0.047383156239818314;0.04601622480358037;0.04478329071685155;0.04298229581905885;0.01880067381712553;0.024574853701578022;0.10128182918885865;0.092016793387576;0.12224908624948597;0.11525210382450925;0.06622425784310207;0.062258442573508994;0.13610024816572774;0.060436764482386;0.11661310297725207;0.11104237427603637;0.058810708411826396;0.057873476314373604;0.061902639260654084;0.044352057856518134;0.06121068706584169;0.06453922979598312;0.0843546616228651;0.042741164275631106;0.036906518662362615;0.015490230959583311;0.08520972529285895;0.10767569017648643;0.11929341521933641;0.06502343556545842;0.06379965855761241;0.08575817831474912;0.14379012329617388;0.15671453018744375;0.1664332294644724;0.09507918741218274;0.11909346977287337;0.04417394200487622;0.14373663205516624;0.05125755513270742;0.039524586196698776;0.03915587686089031;0.03479361657963357;0.0361770162086138;0.03735966078224117;0.04326489054738636;0.03481090482191185;0.03536943987786888;0.044690690885677314;0.0792890255973558;0.0928075530523746;0.0864297963464822;0.028076934300133537;0.061345973129116445;0.005551429671828837;0.11845448393278123;0.017972947781652617;0.03258979170777611;0.014653760536518057;0.022600648625810675;0.01913014882640442;0.2851104120007817;0.43238168853562986;0.3199238692092118;0.08574453167958963;0.23253816706697134;0.03678253579804363;0.19045160445194043;0.012903342920413162;0.21130399232419186;0.32780868926220735;0.4131232340364853;0.18808957406128163;0.1770130353944993;0.10309921741231966;0.11425378557290536;0.16085987069725804;0.05721585413456122;0.25648397004578655;0.3663248931786737;0.06430193062137468;0.0027274211699157367;0.3454443059679888;0.09323052950565322;0.17881601748981954;0.22489993763130664;0.08399987549314168;0.0728397311908552;0.06415986250481863;0.16545607029014367;0.0821370109974731;0.1519468691271853;0.1265054275098155;0.10015741340473093;0.14789709203159082;0.05976489978252077;0.016129025777742098;0.02196825068339448;0.07516249006972749;0.03074707066377184;0.05115532899596291;0.09081230538183786;0.08822819825025548;0.03389839328806774;0.06208971316765074;0.08883154349794765;0.03496320124903042;0.14346263563893644;0.1376180909525905;0.033831601967864486;0.02652066515542721;0.04271739369300642;0.19986439545494006;0.08056580401393436;0.06490100111837;0.008886174248660571;0.056586562683056715;0.046544356240900184;0.09702782025067352;0.1304323730199436;0.005171594651231146;0.0;0.034669409791733254;0.17289137626893855;0.16673176184792982;0.03985513945506524;0.21119009477460687;0.19883363927321646;0.09947712801797466;0.04819081950284494;0.049151836362319734;0.06619003084293772;0.14567508468734705;0.07074773487137181;0.15564485665639577;0.06188332100815999;0.07191729431540773;0.027267408337510696;0.12035037939585155;0.02233167530003246;0.16267190858074573;0.06001170638349878;0.05169374613251382;0.07166699371295852;0.07736510331775341;0.06992144898980322;0.12113487535422948;0.33963518981580043;0.02746875225131035;0.04143337048508495;0.028642073979446965;0.07867686334392326;0.0329754469005896;0.3539446847791852;0.10002223545418065;0.021699570402359834;0.025096287584409047;0.05298093016464208;0.04643598579549254;0.07668042863966107;0.03977407550175279;0.10122800669454304;0.04731682353887035;0.07810497104685912;0.06644081199327895;0.07957073224195914;0.09609996694252736;0.05243451800757638;0.07029318472682139;0.09508278743902071;0.047905026491487916;0.055721936990415395;0.055968234575377335;0.07797430790509438;0.09937898347943763;0.37791700212386387;0.4084071849476604;0.02918955349046069;0.12970800077517206;0.4063139521036624;0.03306066818192256;0.03234579656011246;0.10437476492149182;0.07541212150781944;0.1341602986585227;0.13346654052864476;0.12461113619412222;0.0286406852071053;1.0;0.028297254621127726;0.10374995790064334;0.0551877250715681;0.3773642739149289;0.09838819869396426;0.02039990014186412;0.017549632002012563;0.025717211725885997;0.0249980080407499;0.027965225768251573;0.011861131998515276;0.08123606032508109;0.045963063189601694;0.09369609745889894;0.03885878648322963;0.0050715031441481455;0.1818083256631454;0.10393653006098215;0.42589719016400046;0.09935904687680756;0.03386048049165698;0.02125248617411861;0.01844281139166662;0.2412534120668741;0.08661141786216606;0.645462220123151;0.08709556383874845;0.02032301396814065;0.20078636723345997;0.08320863161052375;0.01757331543174315;0.03508752664287758;0.0400790960520958;0.0019386944516024882;0.0116203573055902;0.0209518999638432;0.055551172087807806;0.006155160560240432;0.03704245568088394;0.05334140380827471;0.02031729045252132;0.008217127849081149;0.10240910644222749;0.06812811737866699;0.14537490741924572;0.0740940521900581;0.026983558182200575;0.28825900516457603;0.008438271136458397;0.021019605475454017;0.03744951564182723;0.05925458440027443;0.11522519488325755;0.053551672919352436;0.010300173108192779;0.05286324014230513;0.0325369093654898;0.004251174206369937;0.00824394077515265;0.0548040332233841;0.231479195692244;0.02763484953706426;0.09835900442114553;0.03003850864876761;0.012947561932306737;0.052316136263446514;0.04376343698199844;0.26700715528944263;0.02615081719958707;0.10547178159066987;0.36785761944696194;0.3299313072335192;0.02509529752928369;0.05547150482814278;0.11042424329029744;0.057398787119950404;0.32568419036145624;0.04552742922193601;0.04779512710768601;0.0500926897354219;0.018328663429150925;0.0809913916344547;0.0904407435334138;0.03591328270280816;0.029976640512597914;0.10436014057405003;0.08526919535088669;0.10609090163199485;0.030312187447126528;0.034295438018174675;0.039317397393157934;0.03134514648803351;0.02185038657694287;0.12733704940749552;0.14908586530098963;0.0108056965077194;0.017062674262049157;0.07330012121778524;0.13361492195185917;0.20798517881192755;0.04811889306516571;0.001206715811008169;0.05345032601727544;0.04135966899061309;0.02701241976847266;0.03858886319265637;0.026165712699518454;0.1589255327130282;0.08670310754187112;0.04636496829954066;0.0719346880209549;0.009266989167093944;0.0645156892406152;0.06515682386797862;0.1067522721057115;0.06539550417084031;0.5368680344684466;0.13367399126053067;0.09729959067767237;0.08707037682715853;0.09244996204691908;0.019042854754345542;0.07358571492025291;0.12807921522693705;0.13175495838169926;0.05742813731550855;0.026193308068348974;0.16894918602646028;0.0977436877015879;0.19614313579790188;0.22010021314888892
+Ethiofencarb;0.04001372431273232;0.035752249570543335;0.025164597439168514;0.05142737705666574;0.04722799876490596;0.07155779282050061;0.18638823877727925;0.04960471055372808;0.05432013180689383;0.04423222717481859;0.02602446067796506;0.04136043689433934;0.20808283454069607;0.04621133760626373;0.04041580692423178;0.06211528301852761;0.021185331762029094;0.03155598020858084;0.03791245966878064;0.034372401881891015;0.0372220806512266;0.04191831320993547;0.049897490914492665;0.029892182101231877;0.0239712854265483;0.02962743541379618;0.1555765855055282;0.08491074878734108;0.028311035066046934;0.03351820088533727;0.03131922295877908;0.09327298282914816;0.02665075559480066;0.14931539688440648;0.023595271644279426;0.06952005211559881;0.07289714405904886;0.00629298491151895;0.00519101433914341;0.05604288875570389;0.01906008216499589;0.01286927541195225;0.045514115495051646;0.0003684507808688251;0.06651845240796368;0.005966434345922618;0.0073580831453985175;0.0055548162440285966;0.006129045442767626;0.02305626484087872;0.007340678147479347;0.0028832349501768887;0.07094023677218698;0.006992751420004599;0.06484091549728614;0.012796966837859577;0.008721834767899042;0.010451816314585888;0.008005391995332857;0.012103517021562638;0.01746138371654975;0.00886648075501492;0.01074205976073166;0.010307719089163937;0.009171653530540197;0.009883545807844452;0.010376346216791978;0.009021537858613341;0.008700882817481343;0.009055927491399432;0.007875900885591045;0.023090065647435484;0.09030687478616692;0.09508508039756201;0.04094130669885749;0.03678404957963014;0.07720740956348782;0.187919468263516;0.008298955382298284;0.017322609951009975;0.08252308508263406;0.08351278374773127;0.06579926210454279;0.06143626661820423;0.2155156664713151;0.2137761487614043;0.01750604209498211;0.019883111039143444;0.04326895241722919;0.06056894426047685;0.012942455170983386;0.01945963785725377;0.01853980508639236;0.04205730190707388;0.04622981490802955;0.12588295923699794;0.1491870948317405;0.06167069716552142;0.02638898631729296;0.032207942021278586;0.18320469659663652;0.030686079754376698;0.029546190583986363;0.020724003843013653;0.03214832393947884;0.07351408575748168;0.06454379753131333;0.06290807182416878;0.05792751988772089;0.052886685373118546;0.05267719046781948;0.05357802421036665;0.05264591971845756;0.06530115374755607;0.07036172046668497;0.1251434227611621;0.11038733155622472;0.09753266778740578;0.020540881870536414;0.044293520728576154;0.00390726796778677;0.15075885484430152;0.020721033038179907;0.017811996733395015;0.04199646372381063;0.026375255366063343;0.032667949663154484;0.1761771866656436;0.17978548111846662;0.15118196748024793;0.489802714107244;0.025221813957172556;0.23489250939680278;0.13536986616316285;0.02635486257785205;0.3224724416987554;0.02304328329022043;0.032363071278637814;0.13596822161966968;0.13434121359244727;0.24472761464090212;0.36927680556290715;0.08779100308953773;0.39151781049092704;0.18203960177732664;0.0631723878322949;0.03537610223695961;0.015569684122621498;0.09288387160309368;0.19049662366594822;0.009556114109752493;0.2101955518064364;0.4221155113665315;0.04209863464601463;0.09887511257320922;0.2707067783305047;0.014736820461753812;0.010307679411080019;0.006245053459427552;0.034889068512102016;0.017513823483397157;0.02270500129827636;0.009597102346026393;0.0034727649997394437;0.0052827746162835585;0.016858582536769712;0.06184881691154494;0.0030693759483901113;0.004188599566460596;0.06534491143722208;0.053347229071323256;0.07816308977779667;0.002524913643793625;0.005791390179798528;0.005482353301452445;0.03663472663968905;0.0058995207418817445;0.014765088074095344;0.1605077791807107;0.19330601049994714;0.27126127452855575;0.009432768220416304;0.049903966554458785;0.09377474950839645;0.0055171375981315635;0.030711230342781455;0.03192903581030404;0.0;0.195819542567112;0.05987838711804292;0.034812736848187475;0.058398210741526374;0.02838764016605683;0.14244785991396386;0.029445992929073527;0.17648142664499944;0.17756936350043406;0.07665779255137567;0.045462521397668966;0.026948079020588926;0.08842494944125985;0.038866002930266784;0.06352690203100299;0.040817346175261775;0.16147332646173146;0.026942304989754636;0.13767345164115105;0.04157321896341445;0.1172384213176787;0.03568482991168065;0.3480019027026223;0.02142106157316123;0.05338075245982802;0.054192661188721555;0.02161238270671261;0.019892353160565753;0.08929816783556778;0.055202474233404145;0.006294470296729604;0.004615779605645118;0.016255414015700888;0.002914402744901461;0.041346231039500005;0.06730894797934325;0.015135631842664433;0.010066959412078974;0.012961821567340928;0.0103146487730591;0.011044551387005854;0.022739745788449072;0.02278696414811176;0.024999145505617465;0.010596357515640697;0.010609647172722747;0.06235125462878212;0.010261511712575994;0.0218455944438136;0.019705006061055613;0.023728787581351423;0.009794534430220204;0.009513863418731786;0.03987122968039139;0.06522833866377285;0.015221823356470118;0.024566017739584844;0.00016714399426274906;0.01266557317961822;0.0033143846729066827;0.009624747526845553;0.018482892724024074;0.01048059535253883;0.010349748156458213;0.020224393275505202;0.03603151988052678;0.028297254621127726;0.9999999999999998;0.29994898773234474;0.07025443708014074;0.22901070201824908;0.0041314850831823844;0.003743462425034641;0.02358734387727139;0.0006410671735922297;0.006049448787844155;0.0036677733899241824;0.03915821319124054;0.036967082822444104;0.04097550818879251;0.038773185285730344;0.005156873231795924;0.000697518550666293;0.008431466450028489;0.045695624115525336;0.0691070474364755;0.004233695023908833;0.1088920115914462;0.03277319521469096;0.07850177713785654;0.07098969054200552;0.16020240543734335;0.010126777949290901;0.006314994906686131;0.004479460153983887;0.034592809441524965;0.004787129914938962;0.012301022963691193;0.0020150159902447215;0.013181186894604275;0.0;0.007281723132265671;0.042784469612132364;0.004884416073981082;0.012530726292354912;0.025086692840666783;0.0453945863716316;0.2237533489210241;0.00844001822758381;0.03533933477912598;0.00646539841287477;0.02551372722247965;0.01580240494656125;0.020838582125924737;0.14971357831314291;0.2090048724122996;0.22586023665616278;0.07933993551966846;0.0034072368893539435;0.0025222113617949372;0.0063795982746729304;0.00015279690632519663;0.023271616532160123;0.0007471350228328091;0.0;0.0;0.04019125674707058;0.019728553075176975;0.022604975067543047;0.04185692706981261;0.03352099698827213;0.01690895250693868;0.25118085866360124;0.016538589233069185;0.06463501090715033;0.10409280757698026;0.052634014964165525;0.020246346364416638;0.005705519389459303;0.005977534283313896;0.050051894917392765;0.008327946540477905;0.018778471846233758;0.022295630549257362;0.18155083598354954;0.1965035760939549;0.09368775868658646;0.1203882059996383;0.0485028067123614;0.016422649424019938;0.018245909616200647;0.021900576526667333;0.0516211195177669;0.013451691870845937;0.011686762458086608;0.03731771338437631;0.054274424341802095;0.0005753057005495958;0.0005571568618377825;0.017403348779129826;0.01388647895110522;0.005937246995222047;0.0032628443780815253;0.0020361238317056474;0.006815493626049252;0.07196516968048772;0.056293654579830155;0.33152276791439006;0.011942216018855027;0.023620502464714737;0.0031030523129033367;0.008646152433051462;0.3681632953217503;0.025956716063186284;0.001770190568141079;0.002200481763279079;0.0012938166160691626;0.012273952543314016;0.0015474065895174653;0.1275454747280473;0.12884937963076767;0.08855205393965276;0.009972860975357836;0.015493750318593872;0.039679597812726564;0.057081966414801004;0.00047567334852803735;0.0006906947492587376;0.027690284153865503;0.005076734824600473;0.024198388334065124;0.056378532920605746;0.03437028484939652;0.3287678759340552;0.06605903679048135;0.07083993674673054;0.15371205430014023;0.17232404535039347
+Furathiocarb;0.015821452261696508;0.016864338192639376;0.016741361857610042;0.019417002779293344;0.020757505492072472;0.028310242067299627;0.010674258126281455;0.015736847993112067;0.015644542970847365;0.017269543610817183;0.01905211367987883;0.03612019704204574;0.022370386961867158;0.015376067360121261;0.015239843950215723;0.014525859775129213;0.015695379708650033;0.01647386541513515;0.016661873883916288;0.01642675282082138;0.019187412429182076;0.026146773527916795;0.036881596484709483;0.01661404505065177;0.042716132989451976;0.08000457976163956;0.04580507028497261;0.06655780147827872;0.06729304092606198;0.09074205386661545;0.04197116393515214;0.04131664658644523;0.01909531524356751;0.04370162533819678;0.027423238424736988;0.05915743607162441;0.07852132354408799;0.013938821185375;0.021426676173080726;0.021573468953841997;0.005855048011854129;0.013207394928378519;0.028915790390574736;0.00013574567484448883;0.03724238961898814;0.007520752237699211;0.009931884392963306;0.0049994549558494816;0.006518760189101366;0.010008390765909642;0.006046497776836714;0.01391196307691388;0.04182133465826413;0.04794033761461844;0.09875546532375805;0.013046233240253434;0.011269312731163921;0.009792386865213148;0.007647722482331426;0.010233463551943761;0.00923251696958106;0.016395583775459438;0.017039281955936347;0.011719867755866921;0.015487333442053764;0.012731793593963538;0.009854392890268734;0.011812476128808331;0.010040789267662732;0.012309457928764998;0.010294193545435022;0.006773680919190078;0.06175302970822949;0.12277313282800477;0.13493374420034468;0.04278471142630576;0.2010839326402829;0.2324064206735222;0.024678108556261402;0.021737745027957573;0.0400607942322429;0.04074875734752242;0.04826298908567628;0.04305420689244487;0.09598062208121527;0.07861104999260664;0.04558306245231003;0.04483182522800638;0.061893420510729685;0.007170980733742266;0.018798839918078264;0.028241258180495114;0.7056922006826403;0.11067676437668694;0.1383415785403485;0.08175667951680195;0.10922841589818154;0.11325172790407774;0.36651065115401993;0.21642744179118195;0.3005392094339654;0.18973425319046414;0.19660467393170877;0.21771829984090785;0.15087097152920667;0.01912151344429413;0.01033860832632816;0.009658442602673793;0.010625872538047138;0.022873999878848826;0.011410997225055456;0.012471369215307013;0.019942576649845802;0.06076398690497259;0.014696198483454211;0.004514081412295537;0.003593041270904639;0.004641150410418061;0.015707095542959952;0.017873091785265544;0.002836023640266123;0.006615344699278637;0.01026562905702258;0.031371474886360065;0.012468256761225748;0.015830116590999428;0.016076927385592032;0.07300762191094859;0.07378081540309629;0.06609892038276635;0.2044951031522116;0.09627569471891978;0.03546907097939772;0.08105027952184662;0.027989382716946;0.09580564565773789;0.10887848631163122;0.09161836163896091;0.16108043833134872;0.16906236393708685;0.11121937822579556;0.392247741515614;0.10807836602563363;0.11223930691263352;0.1193665638243545;0.2071311909475734;0.08135389233006426;0.06649648288024469;0.13278491250637575;0.05787693166141257;0.07519830727043289;0.15562051715102218;0.6758116565538091;0.07471446639635547;0.21837015219132805;0.48719757789242335;0.02157076556788794;0.03911167386959848;0.04380911173058687;0.01049929401478188;0.018947204970304037;0.015268058066044102;0.030973564465992632;0.028571700204183863;0.0127242318467134;0.01294748503377101;0.03176727256171692;0.011486167289439993;0.01401832327056435;0.05292047143754854;0.025757393862550847;0.013626865243367956;0.006446577059244633;0.04273328765530529;0.04263200477647663;0.0357350135872487;0.010587524790772903;0.013436047228434013;0.19703533512287733;0.05863227548655087;0.06930944587601567;0.002606824883406681;0.09192230257508482;0.09832854037679879;0.05484253945317966;0.021497024866544544;0.024510777747560455;0.0013424105178669267;0.13018326797485064;0.05643985934632895;0.07610738567963606;0.03716100497282268;0.07345582201297317;0.08321185493890762;0.039076556286292786;0.023222162575996352;0.023514168108312056;0.028975107768119755;0.032496186538139925;0.016144730479106705;0.024385660114867803;0.016633685858215636;0.02483968840361924;0.013591903744153174;0.023022448107096093;0.04964143039082514;0.18962751208744094;0.14336608951949595;0.07884040721035424;0.05008979446595191;0.003933942191124331;0.04117870879727106;0.05911895969912419;0.03811492646337254;0.04262315855531575;0.09676821731022897;0.04768033917926779;0.11309356061938709;0.00847697476508436;0.1260517981948979;0.046474746983543654;0.010863159277813424;0.04455944289626368;0.016228073253592056;0.015345902859720052;0.012892258167864877;0.013465214599455717;0.020116338466176498;0.018966986613135645;0.006670128988597476;0.007161168168728601;0.006542088532415832;0.01023944163287051;0.010257968845217175;0.012118520123342887;0.010236208023225632;0.0053152243407422976;0.027159309215891388;0.016200515787941086;0.007971934101872169;0.041020019081842;0.2383273392577424;0.18980152804556275;0.08228646265788943;0.10097310958455832;0.146624108445525;0.03461396099762086;0.027632452222023655;0.04051207833534091;0.027238942973070432;0.043738774305758676;0.04449939795930785;0.036197071485768305;0.03907344336528539;0.10374995790064334;0.29994898773234474;0.9999999999999997;0.40126624807711425;0.14478177725278035;0.0069705543803302485;0.07444987546736649;0.019106585611407444;0.02682232898845597;0.03587584837133291;0.01245687775705468;0.05352816538847408;0.08257539725758467;0.034162271183390484;0.02359001852245123;0.02327700393335193;0.031231545712942323;0.06357124251274329;0.025039596483047433;0.19958643598802359;0.014781566692100479;0.029669059522730346;0.0002959752410237003;0.05510657784882998;0.07537144369796894;0.5838190650421249;0.02283009774437392;0.08286215780364788;0.07379518839015572;0.06125202565432651;0.02790411946184867;0.03893518170477828;0.016175171776838807;0.015787571702316042;0.002537498265784067;0.02377496842622617;0.028353472660287177;0.03773339653928378;0.021861457653272076;0.04325998452627225;0.052350115961322406;0.004255648618466295;0.03628775283854068;0.09355211976582503;0.09258808028015014;0.20098482346602237;0.09654795338566084;0.1539459209202837;0.10461629293383469;0.05610546249102621;0.0054664343973471466;0.06219653842202711;0.026930183414919862;0.01555408557936456;0.42381780606646774;0.00550639625510234;0.049623755169690045;0.0961102953691773;0.0;0.002758098221465527;0.12352915008835268;0.15122489426742122;0.017687362332257657;0.04238873420155191;0.0794658537087439;0.018397415970318996;0.2656251438211802;0.032760561249398815;0.0825547363880968;0.013019316399696302;0.13866742558904932;0.04584820892794141;0.12189163974160745;0.060531423259452696;0.09752427727163086;0.020973028679985056;0.003381946286162611;0.11406571908092468;0.6621840738632009;0.6664967346898467;0.0593455267480331;0.04219623439564233;0.0774355576123004;0.15585755186303443;0.013270961458932083;0.1596529368402318;0.02552127866699836;0.049332538108301176;0.03071692075913945;0.0027367216317623925;0.005061161408603425;0.008480660003220227;0.009832370426779254;0.01407531290400609;0.04517423546161966;0.11868861402874609;0.009507922689875239;0.01242074722302418;0.02977300060901191;0.17443827059518613;0.16337700541162148;0.14033054395291727;0.011963309818855862;0.015761542709021983;0.06308287304458654;0.011307987812534722;0.14758137063692991;0.03653622419048089;0.025325851689236175;0.06495923231574367;0.01591590949909903;0.09943847109478703;0.020702691976922236;0.002402405743617876;0.01968907886739042;0.15017146217542376;0.054755492296843344;0.057270835482666975;0.13069475284719667;0.018901569635503282;0.002400431890910321;0.027530327212266358;0.029438149270503627;0.038167143664094454;0.06892330171833663;0.09005005018354174;0.03334775213993401;0.6816703171432911;0.08305519563137757;0.06810104693383776;0.22980143725874883;0.17930641471345765
+Methabenzthiazuron;0.5002968754506805;0.501775959642883;0.6026084421404201;0.5500346157510976;0.5508037492814447;0.514000705518172;0.4026763159334606;0.526548924012726;0.5244775607116338;0.5601039801984776;0.22057816518139917;0.5011320539552564;0.45235188440670226;0.5111572933525489;0.5215642965248133;0.5146637493282257;0.5267021695998074;0.5206963233636126;0.509743551927461;0.5232976366738116;0.5296579890580859;0.5433942660613065;0.532650230244383;0.5190166621887989;0.48600773856376184;0.05720871932715835;0.3507172823247094;0.2663010263385229;0.14307328071398545;0.12979282427996833;0.0996881358978963;0.12145821362615201;0.4890006395459103;0.5098731752079925;0.3013975635965263;0.5528361625789512;0.24720223172960978;0.07978753819291272;0.01797912621074411;0.2977211139539802;0.14067082961538704;0.3212217679281629;0.06643151454355664;0.0009817915524076722;0.02601818149944755;0.01579254554623964;0.017708006574108124;0.016684951403240496;0.01561813428254514;0.25759039034535974;0.20121863044817914;0.10057573880495886;0.0658694976564553;0.09224616986289529;0.15514159821340082;0.3310104857583112;0.19436702266419723;0.2407754279345547;0.1841687138941347;0.01019823258280492;0.16153210017628952;0.2193580821302905;0.27358394800418806;0.27006280234345054;0.19288006950028383;0.23098528702567606;0.23891134376956896;0.18831950106826012;0.18711346703772216;0.18644148708358543;0.17710886625330494;0.1381142248686385;0.02553690009026801;0.032321854961211906;0.014071809973389292;0.012156552855079895;0.5416651649491255;0.531269734925714;0.03392266968720063;0.01143235892570709;0.02122081790514729;0.022590479697952685;0.016130115143153347;0.015338808871873154;0.019909571245451257;0.004740999805354774;0.011602014795806718;0.015209879344119624;0.01813582690785862;0.08250955670563866;0.002614123082573841;0.006350488933801225;0.19098587826634755;0.027341495517814358;0.03549435322735233;0.14469999727778737;0.13239008244096812;0.033961759495369;0.08143724917627007;0.07660029325214986;0.08817175264237385;0.07012028810562418;0.07620764080882388;0.08046306100740584;0.05659241090989232;0.3353508264862857;0.30234867145930105;0.31435029728151986;0.3346991349394027;0.3840516869783941;0.35960578198959775;0.32813135352794504;0.38102209802614156;0.37477757272469503;0.3657338308680986;0.12825853975315837;0.1096775875573842;0.09608117399127736;0.28166694423124133;0.06794720951442693;0.021742715022841922;0.1437641843861717;0.27715682484081794;0.00699240726148999;0.011389343498035952;0.011007439133292588;0.01061404911473577;0.026038663487087072;0.02563163906823381;0.02888485867712137;0.0518657947521417;0.08053095936748453;0.4144104845190395;0.20451710057807135;0.5056119103946254;0.016405889644106334;0.05110440780987216;0.03418756746672781;0.3831022376265093;0.42103358598864005;0.4955074821332975;0.4484917916685788;0.2266611836926167;0.5068140545486324;0.40554419628952987;0.06631591299392713;0.02728744094587167;0.046969802188829526;0.12871919579913615;0.1691892624920392;0.8441555416772573;0.12353260600716998;0.3591781455758672;0.08915958119106414;0.44408969584375296;0.33440795249664335;0.19202197410725944;0.06975288236451037;0.08447071727005538;0.029580942034855184;0.08731093340325898;0.039496037796252145;0.0331626985721903;0.04717827851043784;0.021672262508032045;0.032154939489723436;0.04962851072895972;0.01750140011059772;0.03215594485299403;0.0468497974074379;0.04864819642688161;0.11802678093678123;0.002788607977776211;0.0666616911828128;0.07999876565461468;0.07405596176284532;0.007094978457142024;0.009517066214579307;0.21775592174442523;0.48114581504286236;0.48104754158703067;0.0009602690474472557;0.18488921228429378;0.4618082955932512;0.004419311951066289;0.08603265465188588;0.004331741050534594;0.0005859969841675335;0.39492182411209403;0.7054716628121781;0.6976372812311317;0.7223203993147046;0.34579963722758056;0.7837427816801158;0.6499218215313793;0.4749029046549321;0.47354050152201516;0.45930399548671036;0.35000121292571085;0.29016653387066776;0.4878484159510153;0.29029022800845694;0.4011103473523247;0.3844078867646449;0.18333730309995797;0.5407343761269273;0.3709648293465197;0.26437278629261324;0.06440163039898376;0.019717247025299353;0.036028678231388646;0.2790364633757309;0.1803805534463104;0.18793880749116945;0.031242350296092056;0.21497868187814576;0.31559869259892265;0.34696560102977175;0.002076296031901395;0.013245474784049891;0.16160805726222685;0.22811160556922763;0.05370753731496454;0.4094530500141035;0.36314306220325104;0.2532655727378034;0.33853984395205133;0.2265967607246422;0.29013198349405567;0.1630116324722385;0.1654371906691405;0.16109559641337293;0.21652173553938675;0.24688423058245088;0.13780175501573635;0.18865361097312638;0.1158633922327519;0.15183720453435226;0.15879435808863848;0.18705265334111545;0.12129862344449023;0.31987665162620765;0.29775862428045824;0.6118898400859373;0.5093112001463816;0.016289264798536957;0.14414490681655961;0.025546754394154877;0.12075853896336107;0.008453805560852337;0.12298388581087787;0.12414838945582159;0.043868899467619515;0.41617527680440036;0.0551877250715681;0.07025443708014074;0.40126624807711425;1.0;0.0369987844061645;0.09877236072163642;0.033248453694832314;0.17210028205001873;0.1317594131710611;0.11690296029080471;0.054341743555665005;0.20037827757713236;0.2568046522419486;0.22032617525829346;0.22545404354511234;0.10333440552652227;0.03338760022350535;0.024009836302056126;0.13430475775936176;0.43121900959763265;0.06779012763578932;0.22874016587062831;0.029926068670762362;0.08013015310054412;0.04658946670314087;0.3544559324279005;0.006439730549567523;0.1043530146243744;0.032881614829344805;0.4072871709421873;0.038729326638364064;0.015136896366103138;0.00010740992635289581;0.18767876687368254;0.000479058475494052;0.019307417837320973;0.02191970699246535;0.06214193183289941;0.05926716879796302;0.045579955173276024;0.01098551762170694;0.26830210893231227;0.1059505614634414;0.0376074859421497;0.0939346337120643;0.09183670070053743;0.006547130791105464;0.03954108788305457;0.21659346254281717;0.032283906174149744;0.2906363851180896;0.7767244081778117;0.08657905530821741;0.007030579771474589;0.003946975287453812;0.006018885761861473;0.46530031954937634;0.0024050554025479595;0.0001762033603308201;0.00041989900823170763;0.07782670836898291;0.1723058438259954;0.4483189525718015;0.13639461266170674;0.08192000839990701;0.030104912488526668;0.24593186544134618;0.11480197805221645;0.06315872101484947;0.19601240862332223;0.15816196470030036;0.06864167701575001;0.04860389303497226;0.3107794416270105;0.2651760871208275;0.026755576774623806;0.01322601217176769;0.30626803926753454;0.41384026491568976;0.4119158769720483;0.044911253723107884;0.22697836234088237;0.03652184995332413;0.03442318585196485;0.42238723944669604;0.8269673999186544;0.5759823483546818;0.21025626875007103;0.19093242871565821;0.00026133379971045507;0.0008432438904625769;0.013918011817122449;0.027185012323040932;0.008245381604086511;0.03419759100191584;0.06498008820008425;0.003117477460841362;0.003076559347669514;0.08888195745672146;0.05108902254056743;0.22960778985068236;0.042634835469514513;0.01895786319943798;0.06607628600313852;0.2154118141435267;0.03006846610858033;0.07737971591469982;0.018470856342068426;0.0348338773236784;0.022801948883162265;0.015119973651459617;0.054068644136922646;0.06774097902467295;0.0026722389262889153;0.00985843845586328;0.04228142891045982;0.03872899813676207;0.022847656693973983;0.05974657876674787;0.7660469511006914;0.007201735945355698;0.010911738265764841;0.01833801517821169;0.013111099664334373;0.1305149948660921;0.14185027287037577;0.05177584787391686;0.3706679076341269;0.4268024004878927;0.43255585274157315;0.16887184887186552;0.15547769438760414
+Methiocarb;0.010065199887203995;0.0015333523427975132;0.0004407803371088101;0.012857991859075237;0.012369001982323852;0.08059683199120438;0.4058175543558512;0.0017625436603718335;0.0021063565597285497;0.011968364178261531;0.0126560371542111;0.009292534541324447;0.0004466005269153993;0.00025335175787149827;0.010156924907929524;0.014492543801441254;0.0003479980178851882;0.0008991559326158076;0.0014393822205649343;0.0010092531376121006;0.0003980913314936717;0.0007038154459708273;0.008561142516715109;0.0014519614882932664;0.00890657400851522;0.02339431144368084;0.03082876040305006;0.05636838956876266;0.03281772368887885;0.049887237421688505;0.05546686342144525;0.02009721573748642;0.04446718519653442;0.0003105115925569732;0.023049428235889607;0.1764744885104365;0.1694464410889356;0.019622679288575483;0.05840842181297205;0.01751369128170526;0.01087462416871005;0.013641227815143422;0.07255897415644268;0.0;0.014574411794277407;0.015988266113912138;0.021382180420385713;0.01621082822057154;0.01665264936081651;0.005586812344081314;0.0;0.0027023034204728385;0.007172127866106283;0.0009627309504101216;0.013364353047885101;0.009595185773464505;0.014667794847404235;0.011815342401052689;0.015381619786396359;0.017329741463360717;0.014417967704192212;0.0076723008565621805;0.006741462218459802;0.004498003344469328;0.014825353849638321;0.011918607322342635;0.012603376169710263;0.014819744725095231;0.014446709265078453;0.015866156848285587;0.015901241374803383;0.013226539761949877;0.08240125915042536;0.08305462988253962;0.03964237652645115;0.03160886804407712;0.023424583491346126;0.01999901652535164;0.03457113360423093;0.08002540897025177;0.22679512273186894;0.22065028467000755;0.09991633518007782;0.09047576684831095;0.0611222672455277;0.05145196428239154;0.07686534730243948;0.08343557252132743;0.06172456138344357;0.0665724638679297;0.06817008870720215;0.004140026999171394;0.061407845858599326;0.2045712740637782;0.23096278858242525;0.08579073060899647;0.09699982472221379;0.05330985437642244;0.12292719419313425;0.1251972040156965;0.16922120356886805;0.04755065459856461;0.06343285907159724;0.03538927657071504;0.028745384392193225;0.009682890888427477;0.00020984809746101525;0.0;9.353583460057996e-05;0.0015841608827995555;0.0077554187798143225;0.021480778073510343;0.028110810886766143;0.007161464383056757;0.004487047350079328;0.0011286959245022984;0.00010814757354142307;0.00203195166793964;0.007150772039780095;0.07443783251663633;0.05658432885869953;0.0008067359414970722;0.00011750371886277763;0.006831902587816934;0.008382326056374081;0.0073195713848391575;0.007938550442280501;0.010620699362188513;0.01321459014967001;0.013132598062375435;0.07921386512432911;0.3665392485352701;0.0211662424301342;0.28748204606575456;0.014769127026082577;0.10357358485022185;0.3251236750210511;0.0885164349247092;0.07796421587642974;0.0757345441897016;0.2135398808079379;0.08833590812654762;0.21416444693841302;0.04097365458135459;0.26403800295403324;0.07631103043680769;0.050909193308089844;0.10096787750909213;0.7480669489618988;0.05737224465397663;0.3329566554615741;0.4261135496488859;0.1380720643363399;0.03560792950225797;0.06846083691469133;0.15519987616008155;0.0690723958095713;0.1645628867009355;0.1541130766972852;0.026540623444820582;0.08115861833551515;0.22100776592472351;0.00963963584308623;0.03344901528258359;0.04371168444302179;0.015816409563122965;0.02078141543194196;0.007621502970711228;0.009491258442292923;0.031926955383742905;0.13810161444697314;0.002621895295975048;0.04172894625113146;0.0007338437310247506;0.001087191320519135;0.018182220943214266;0.05173728141029436;0.007173028370131848;0.03815799578724547;0.021593068684946252;0.026323591285700526;0.03267302510638507;0.05837327582571871;0.014500522479186675;0.2176155956886966;0.04490860784891342;0.020612371723996922;0.0;0.08659541943703711;0.2116295903614371;0.18322015254711038;0.04003539577802574;0.11068508276365403;0.429651629882979;0.06688067755811365;0.0028838173708686543;0.002594694078167349;0.08535288027701018;0.1041605274631544;0.05652484606089289;0.10902902887058383;0.0524256406445902;0.09785930784068457;0.0010461896343910025;0.1524895320677083;0.02393124774113383;0.10140321460303944;0.1248466087473608;0.017534743184358853;0.002561385792806978;0.018275751230395352;0.10496826688999439;0.10901015386880392;0.02905648701222249;0.002578190989194428;0.003930666528244352;0.1397223292769586;0.07783637749877909;0.0014141131409864153;0.752001095217056;0.1790475868781919;0.05269074227682449;0.007879992644929317;0.10652374943520214;0.0647514696169526;0.014512355226416144;0.011516849521791916;0.012051181426357773;0.008880818885955117;0.005292926321166475;0.008618999383413319;0.007443981587484886;0.01988420682812812;0.014445193463004732;0.005195643492261857;0.02163468408430151;0.014653708818670166;0.009778302579944423;0.013345726582868792;0.01933245665102795;0.005543970662701046;0.7628305730855763;0.7765404517113152;0.03463681902834437;0.006937319884087074;0.7016681377528089;0.03950469846013173;0.026446288256858082;0.04528520806302469;0.03571278753335985;0.02481384719484541;0.025466939765509143;0.03590427294785024;0.028062776784409098;0.3773642739149289;0.22901070201824908;0.14478177725278035;0.0369987844061645;0.9999999999999998;0.0023731413004441817;0.015345058461664092;0.019202629708880568;0.10437651867608404;0.0013729248506452124;0.0051025042748199835;0.04217843958033178;0.062027502539698534;0.0700498689848347;0.1195088678626344;0.4932975339025675;0.0008138051066083732;0.7409998248284011;0.358146375102868;0.9210249721746773;0.11523490309849117;0.38581659162059617;0.00028033496174204465;0.06436320322398491;0.01728771577346013;0.036861647722507926;0.032270612357334284;0.01930037329794665;0.01515540146248535;0.3196663416779577;0.032174349424900876;0.02519913733753366;0.016314953276312567;0.01239694776736386;0.0007004183861423966;0.07123020043354415;0.0629918713266533;0.0006806034846062316;0.0003053684984968397;0.011307053411440907;0.010539639085154083;0.0012938933789344834;0.03488649593930486;0.04278442313728398;0.034123497981439266;0.07176996239843632;0.006314575573900039;0.009034722518268883;0.5724357660092052;0.020895959925153137;0.0019080393635133894;0.0036706084585127587;0.0046407810400703724;0.06223162150244869;0.001605978468972941;0.022330761043445925;0.09553817669183207;0.01859306289473598;0.0;0.0;0.02978170629270701;0.2932038350685235;0.06643592915970206;0.18193386838788825;0.013207144521381511;0.021921135905265645;0.14906786990987606;0.030146067058944823;0.10604280716183617;0.006459035842221819;0.02130347338690025;0.06649950811734597;0.6721884276348611;0.05104555305058322;0.030511268034590845;0.09328136290492141;0.02080136976540854;0.6242142470825659;0.03518795545024215;0.03583829460050273;0.034913150732796015;0.010664902241788099;0.02483757140354588;0.016246955019932563;0.03766991756713736;0.025416914876894924;0.05827323644526089;0.006495934270134921;0.1422686945436443;0.15940604939792058;0.21189814432845414;0.006626088815675208;0.006754702298807515;0.03159588349293082;0.2472797817092822;0.5721880594581787;0.00483406696946151;0.0063407744704787865;0.002704521013239612;0.054696520496593966;0.17194083605776322;0.03542038941205276;0.006665430755611944;0.018107287011736427;0.02656158553360305;0.01902223529766767;0.03786182534374349;0.0402489496968891;0.0037754762544107887;0.19639104593640777;0.010611472762133886;0.057772657162161636;0.002283900358579125;0.4278393726113546;0.4551619940757029;0.1006717058599686;0.044312971821609676;0.05460941731791317;0.08410945233185453;0.01607658809309869;0.00268574131422154;0.00557042655066663;0.06045552458574393;0.2067504357143461;0.055094228516947424;0.04936548960370116;0.021490363452588517;0.07825879617564425;0.1417419845640029;0.056072850438993536;0.13341390161217787;0.1764623247344844
+Tebuthiuron;0.17102353811002424;0.1707817405521033;0.22860648552196458;0.17915843272537027;0.1816890671332016;0.17810307333920586;0.09340919024432108;0.17950283264809838;0.17822101646779961;0.2406933542720662;0.7969019695584991;0.17661746379414806;0.1030424584059143;0.17361491151851202;0.17361218144765825;0.1650981736937266;0.17843606804205397;0.17521915248899034;0.16965713362757678;0.17385963296010065;0.17585391852909021;0.17268082010697514;0.17200508274819712;0.17776795325280412;0.19603296523001315;0.00586776382961113;0.08539096321485348;0.5416018053298394;0.907256227137567;0.06350469697243148;0.4943789394437129;0.03832717706454722;0.12864111227286917;0.13367165808260112;0.11178316764739939;0.17442424680217897;0.2986725052264955;0.9268415665613444;0.002555355393439595;0.10006316067749345;0.030197606276198177;0.1119287689048471;0.04433713290070617;0.0;0.026586255652795536;0.016240680093560292;0.017045246376542787;0.01720109615485835;0.017014665450652597;0.08332965657603643;0.06399562234421502;0.02749426259848903;0.0108085213518679;0.013859157730500357;0.052842657814636;0.11611254303785759;0.05742030027368951;0.07817250626590451;0.052613821113202376;0.01324636621066034;0.05024229947343572;0.07124968634972076;0.09253847636529688;0.0900829892413443;0.05638135899860634;0.07437271963003748;0.07790930778443865;0.05608472663512561;0.07049749551374551;0.061613876494989915;0.05964240529018266;0.04577573584378196;0.0008327524059944288;0.0050329938771074365;0.04745341039493683;0.03373335967747585;0.0021052850904672835;0.0002038218308711918;0.0;0.059854548971302844;0.031355328715924155;0.026963848574672506;0.00250426693182885;0.0024367005620196374;0.08719118607279262;0.09662888698365557;0.009811666548149696;0.012819847528481863;0.023669913874235858;0.003870132901341024;0.000751734933710042;0.0019866904152954553;0.009055923405840325;0.020486486478673356;0.026583003158808027;0.007181361160503022;0.0009505203235487797;0.004536341976324288;0.0145916113227407;0.02674271112787761;0.03547531143757721;0.014400030635552298;0.015804523569853592;0.012884744280916904;0.020069125773674815;0.11786109217783919;0.1129288930814416;0.10938971031440908;0.11163008237765185;0.1328878492115654;0.12505693086570022;0.11516781926111615;0.13561356057563678;0.13307426154893853;0.13035541152519747;0.022395467564376378;0.022654554383973433;0.0757316251446699;0.10342508285196866;0.03475544035246417;0.013315786645006352;0.019269936089658816;0.09956647754709874;0.07321681912898996;0.013720658982278575;0.0008987146701997176;0.0013013019266611134;0.002432109359390435;0.009205577009588763;0.004316088666860491;0.005491235815653702;0.11325070072474626;0.03140977798597729;0.38604692434154503;0.18389835430748638;0.040084876687439056;0.6735323150647593;0.04335268981232018;0.3960885527102109;0.3398960884849855;0.09220626136745835;0.382176919752528;0.056891510175261145;0.055901209547451064;0.18395742689875172;0.014910264733113007;0.006699236324622826;0.006463041052874782;0.04942239794114795;0.5001773606661228;0.11279133821694637;0.16489667506655595;0.08964715198206388;0.08071600298266421;0.12462410559587513;0.6557317545285716;0.8621400491272064;0.939685737697947;0.8975393257321547;0.06521604715660104;0.8590749958171547;0.022689118360617138;0.00978906719602627;0.030477896957884765;0.014788670174136489;0.012165858005991398;0.01828091272003496;0.007612743412053434;0.00709813975469874;0.016969734733647334;0.055445747327827324;0.020332095555578203;0.007471361303224381;0.012699466454902306;0.01658265417249535;0.9358151298693912;0.00018911403253511465;0.030551122539155796;0.10814883604863003;0.16099226875032815;0.13535685854042767;0.0018633461219382868;0.08069512327426111;0.3294131528582777;0.04338503430753124;0.0015852740367399594;0.015009567546593142;0.002562447692048392;0.10462183247536591;0.12608696698506167;0.14584741757020847;0.13235169036697195;0.11341155846141966;0.1410835795300642;0.18060714271047554;0.12208622390055274;0.11869937280522035;0.761019658049557;0.7847738682358525;0.932035072355325;0.699803204149129;0.9155220135539982;0.805407649065926;0.6092078875691298;0.03744475223098299;0.23522762200701214;0.6159749504008902;0.06121370688963692;0.005374559353947872;0.024114257674150305;0.004600224936805388;0.09990223865767281;0.8687771320686931;0.15750553411873683;0.011570930714514652;0.07071333308608524;0.09586250768308396;0.02529216560822695;0.0;0.002793442938100225;0.8171852949416653;0.00493187432818255;0.007003916710564542;0.14953895550778415;0.13878010619641584;0.08691225538883053;0.11794325494723748;0.07474076930797345;0.09815581925363;0.04806699514269291;0.048838459980000706;0.045348853997423624;0.06549956646244852;0.07968988161651173;0.03223134005915684;0.05476493179987854;0.10030182834065586;0.2081066748810017;0.08439874736139781;0.055300594254964634;0.05602984525116158;0.029594507100870963;0.02262691450601994;0.006838509016880729;0.027753465090704067;0.038447144816389854;0.05614776459415547;0.01316032016782516;0.04106412806154077;0.07138217265118985;0.11386144373670223;0.11417237622933195;0.05512923237247758;0.14807715807306882;0.09838819869396426;0.0041314850831823844;0.0069705543803302485;0.09877236072163642;0.0023731413004441817;1.0;0.0025822309908439247;0.1312290973848497;0.009401607735689979;0.0;0.03069285931894829;0.0;0.1165510327240312;0.11981469838474551;0.13948658582167642;0.03218853485781523;0.017025991337903612;0.020197513319234448;0.22161840267526198;0.011803438883394564;0.052044370317772023;0.1012714343745292;0.012011671282551949;0.008330310750840708;0.0031605432630783495;0.005816568861535558;0.06168551979135462;0.011609249594190256;0.0027045547676471052;0.6503200552183951;0.2382438195146675;0.0027471445310049626;0.02423206337546264;0.0824369967758754;0.0002436816635575629;0.005332406213250744;0.027309427267960793;0.03994739969571439;0.032342355892443546;0.004052778316830637;0.012848571248045896;0.06576584186482982;0.039998938937069295;0.03250612176325684;0.017582861712149483;0.00872442843608153;0.01135436645933949;0.003298627258349718;0.5905319549349892;0.01662931106415977;0.06122325700891523;0.007414347416538589;0.02554303926917857;0.03890438114407047;0.013206317832789789;0.013119993301982538;0.253719618413897;0.0019308460073136865;0.00042408713821406614;0.00533491331157036;0.037648447574016655;0.6013112164624509;0.16171364917100575;0.6482689739591867;0.028947573270759155;0.0021829267763715985;0.023963370363532008;0.05324142165354291;0.06475313726155071;0.0825758578353247;0.034166290992782074;0.023932751382515795;0.0021352275410638573;0.005118609806808605;0.00043592245697979406;0.861056421910167;0.15316774348287762;0.47797281191639934;0.062114259853369935;0.04184775271298838;0.023366644116380623;0.04246854625385532;0.028044679123768484;0.005851415909847453;0.13249287173166055;0.15620479908068832;0.302856690808129;0.08013281986270482;0.5667984491470096;0.04124572685938822;0.028415317488936293;0.00043714651917157115;0.005438162219497119;0.01300945958673612;0.009108368038014063;0.005200646286592086;0.00033815773046146606;0.0019061426197065506;0.04218074838822843;0.02466316042994874;0.11040139714498373;0.017330207482985947;0.0;0.1238349553777725;0.006510505607410368;0.018222262289102478;0.029812594057608586;0.009220661287977126;0.0042004593102485666;0.031041475251915446;0.0025396747539980285;0.02626346559085814;0.0024154481185182813;0.010635426309793408;0.014143829833348423;0.03516504904909137;0.018157506737214623;0.023625864109279675;0.0693650255888408;0.4086486089938007;0.0068943718499613746;0.008070075508315873;0.026455755544039502;0.03967098004472589;0.08578538004601152;0.12436634470813908;0.9546324571435242;0.0002919466585344746;0.18845835237605826;0.1811825558597149;0.2494786107138329;0.08065948881320073
+Iprovalicarb isomer 2;0.02241287971515369;0.0;0.003682615726120707;0.0032054606472008635;0.0019616257768945134;0.026310110072123694;0.0024838370003641137;0.018166761706653944;0.018044872698078026;0.0033361663106777004;0.005396626753136856;0.021190700813619793;0.0006979809313684139;0.0013380123687628178;0.0005121418653636662;0.001011620808713942;0.0;0.0;0.0;0.0;0.0;0.0006997860072461275;0.0029315418272068;0.0;0.0028871421027182346;0.016929981036541572;0.011930834372363823;0.02362396425286909;0.045570651988386154;0.3029379548868816;0.29890278404039755;0.1712170602783633;0.009277569392006944;0.00048684199119739327;0.11070945096051885;0.019019946403546702;0.09858442987268969;0.02223793886958049;0.006464666821482323;0.017053145615080794;0.02912273723468935;0.010001779059735897;0.009401901757535375;0.012528696149249565;0.003582231016757218;0.004822054170691024;0.004260181497785222;0.003143530019520219;0.005901137139922878;0.0004974261451164244;0.01400126584984181;0.016481655902139673;0.003428531700330732;0.008276645230336162;0.03183684793236704;0.008181966077713685;0.025117895582286373;0.015661339280819645;0.02037753008431977;0.0493484514206109;0.03202296110197205;0.0206790388632998;0.01730784068475615;0.01721281630329049;0.026785922399479887;0.016558660612057043;0.014693066868023033;0.016207195312336123;0.016621399072869265;0.019151814296929803;0.017538616872030538;0.021299477544002174;0.4566862734874153;0.09156528853022632;0.06201699348458457;0.12912358573374436;0.025008309066113205;0.04521516008957542;0.008642416920962953;0.03990021405919011;0.04920025317702403;0.05028790019734729;0.02872560421376945;0.031283664386037614;0.03844211393982141;0.02017270323136268;0.03747572083056936;0.04543139368170852;0.06518838195340924;0.04025752299097232;0.020716821807146645;0.005149025537028937;0.07239745959382571;0.035352712396857854;0.05193314043144106;0.18281362685381583;0.09015388937213988;0.05186609361908211;0.10712988267750877;0.08081778301038135;0.13748544194715495;0.0793936697125611;0.0826259539756759;0.062243400511878176;0.013182285225270558;0.007696317433293495;0.004899753863493578;0.014322567969314923;0.04497036411408725;0.02681681315152074;0.04391179123969784;0.06142277730522019;0.015671133132461445;0.016275818874708213;0.0066685520986338636;0.006719785265287225;0.005536139728345327;0.026078007071763762;0.023739185448041975;0.0482666493565206;0.033082910898071895;0.00629008820456851;0.0031623836481299923;0.06996923421476337;0.01370047037956269;0.007271375494816029;0.007646038315730313;0.019481901794997713;0.006981255922763387;0.007920631980469581;0.07888359152348595;0.21550971016625298;0.009967858117828613;0.08674811278977229;0.04053513364772937;0.20279111805847871;0.18119174196613183;0.21979212942852747;0.06803213414271966;0.07186020336829525;0.02598352506663634;0.1099824016342929;0.2272937708716179;0.018438998568114044;0.18621640923064306;0.06579336699383542;0.10899827739090948;0.13928885728641302;0.017256518052668174;0.03061072912154137;0.07761243482592417;0.08572501971381091;0.11286373321361749;0.028986290068966067;0.05132466398604461;0.12306942119401688;0.016850650591129973;0.01234888618145691;0.03100884249380773;0.0073841801852691505;0.01732877576160626;0.034532076867468266;0.015669946621358555;0.029239385442206174;0.05955949834893326;0.07946883069660843;0.08246388356239204;0.027851067363016135;0.02972821886344391;0.015791721805954454;0.06869056685583944;0.00977921444926783;0.006841483308112792;0.018648796639188614;0.008520657666483099;0.021740552793799297;0.016374647012197607;0.10783384812411506;0.02918427751022031;0.016072494922855313;0.014103368378698595;0.00045420716559560714;0.17448082777360924;0.017676282432088065;0.007079391427079046;0.0067599501761320515;0.009780717935369793;0.016396042783848586;0.0029816890343140013;0.014768061192851706;0.038220012316739375;0.0008409036707380117;0.1270543954470035;0.004263192436619228;0.05831488741384301;0.03263785766525601;0.035533393013743135;0.02964427541799755;0.04577038053654159;0.020997707468955372;0.021747618733901262;0.03247404840703933;0.026187953666168697;0.011817399584990784;0.0043272574175066345;0.0011000118263698093;0.07324775268232711;0.043971431644605215;0.5922770768045892;0.09376321081974177;0.1663433893208744;0.03713059399624064;0.057955065044969584;0.030787728866436333;0.19404518366912923;0.0689039164831124;0.013224047029163067;0.1832141427251603;0.04383458226740427;0.007160546188683461;0.05150785569177211;0.0041223367458730125;0.03388732307357509;0.006401266995726121;0.011415843312131226;0.018439408244805493;0.013444320886936133;0.031539973849112786;0.022640363025554115;0.030003298410954934;0.033533678602548155;0.03673900604315239;0.022009783514269996;0.015081785736672421;0.012353387018223127;0.022712127440454494;0.022939623547424754;0.031117030319676567;0.02565165674481131;0.02054116172819954;0.05165192803860467;0.27141957945167033;0.10429744022828409;0.03093940498502141;0.0938902565930342;0.23686590992637144;0.009381699703698218;0.0023217794438252295;0.03806792228208697;0.01606918801217674;0.0;0.0;0.03294518508237499;0.011909625032334602;0.02039990014186412;0.003743462425034641;0.07444987546736649;0.033248453694832314;0.015345058461664092;0.0025822309908439247;1.0;0.056136021942423314;0.0;0.002237442505241093;0.07555411518215811;0.030872355077379576;0.028903927400632863;0.06418011958924141;0.03578339608920551;0.015118714768379365;0.032628513841551354;0.0;0.013067473486564986;0.03757757120163701;0.1302989853084318;0.00809343924356846;0.0010402927617558597;0.025969009179643187;0.008309420269307808;0.08923277925256767;0.3293568145288345;0.08199713454005972;0.9998302902974491;0.01431962961474815;0.008647725215975092;0.04118583988915972;0.010990607732513912;0.024277222013965816;0.0;0.34086080601456153;0.054139782772938155;0.11630577590153715;0.001965514740208216;0.015143944132570945;0.5354772511363403;0.0016616171255669297;0.3362324002027046;0.12811262043675206;0.017268578465443513;0.13543654189625626;0.07760242772412124;0.068373967517074;0.0026305716704817152;0.0007541193039057784;0.0029685797842323777;0.005716929360627075;0.021907924293252078;0.003055380555579794;0.4864481705401566;0.0055868828774237956;0.002934329617212917;0.05429681900927651;0.03392474712684068;0.03954287799524124;0.07479953115017275;0.05261702327937536;0.004802031702619898;0.005987716884247996;0.01819341248273808;0.022182739554052363;0.0005909352018229953;0.0011191911101418256;0.13635394439889434;0.01802858781741649;0.06524885934406775;0.023938326771227512;0.006801190363160174;0.003450719264620295;0.07225249415557727;0.011948524681917124;0.0033833463518729207;0.017603519144981126;0.09018212485639142;0.0984525181170436;0.1320718100630596;0.019175705107404534;0.0740566564793303;0.11042858939348889;0.022866004280516897;0.03904042613895027;0.00165778412695248;0.02893368688893583;0.010880175148746698;0.0034310393616653776;0.06137987844174227;0.0021221967553162555;0.002047412926643293;0.002477245830568158;0.003180364953381516;0.023293670408832564;0.02661318303586184;0.004165551193774535;0.0010500713781060847;0.03306541717478006;0.066852540721167;0.09169280711035777;0.013232457030841254;0.0036238039092027887;0.0;0.001591441234516392;0.004895054948976477;0.013443123308179374;0.007387702328823264;0.009974045519831129;0.00018091004630811349;0.005567719934907527;0.0014897664701786371;0.008489246809939888;0.023727423174947287;0.06353846051519044;0.010271803484535288;0.07329725102328591;0.05610951251107452;0.0028305170632198255;0.0025746275659194987;0.012114568801275623;0.005773017420213924;0.0577598787316434;0.1082847108686111;0.0831532510290105;0.06817510121185455;0.10091853422287453;0.08403431184692295;0.07433459875254349;0.17597728015210024;0.19144552461877729
+Propham;0.21635654904194915;0.20795739155124132;0.21900629136539504;0.21189359536232127;0.21524541660496788;0.25737989664380206;0.11163520077436496;0.2146102500741215;0.21413781311721342;0.21631355729626572;0.09517067258072691;0.21505051776460057;0.12528179654791477;0.214407962342585;0.2092399644072176;0.20007900058710987;0.2174084981730131;0.2135245249387499;0.2066899504714927;0.21169590397707563;0.25490695227080845;0.2638824499776477;0.2701110351017083;0.23656223673527274;0.2226930290354299;0.0007670805704307733;0.12819445459350115;0.48534151154320193;0.09783637296997723;0.19104143668208;0.08789837527697122;0.24873300156123104;0.07960917687952467;0.16656585018509348;0.12333240491136345;0.3013064026976779;0.18849264702106;0.03589294714829669;0.00808336340634561;0.13843551353753997;0.03432857005025816;0.15841652834202713;0.01594169396375729;0.004839754365568657;0.18092936910892296;0.009823634443015315;0.012301233644703317;0.00410460789617874;0.012832525348284033;0.09942624737865301;0.07422686358233972;0.03311500854575215;0.018787468112837255;0.00660261613534342;0.09628526348491032;0.16814874000476324;0.07999822223148052;0.10224027698838822;0.06367058352160818;0.01616428984148061;0.04874680185876308;0.09820515133888309;0.12261913744795086;0.12032091397069697;0.07748880525811301;0.09644193903109753;0.10033501728235304;0.06753628657483368;0.06827791203700581;0.06495236961685381;0.06111318558692082;0.04322996343149167;0.07239614517043273;0.06522782056453943;0.03419106874610354;0.033268385149858;0.04465373786244912;0.05927584782145224;0.018482442897300857;0.020473279163154088;0.03834423988250788;0.022201883065607643;0.06425042764498075;0.06344283536692435;0.01049123206897194;0.0026232951314745898;0.007815177344276798;0.01920547830533772;0.1471237038634258;0.0011677199821756644;0.016408132931884395;0.026653034076024283;0.05764254988774343;0.006836605539962857;0.02430938653725296;0.15340768305761107;0.14589358533696029;0.10780798484146475;0.05325162071343439;0.04835887098840533;0.07830641499894667;0.043022398117351805;0.053509114661099824;0.05035955038344421;0.016929508063581296;0.1545331672985734;0.12891691165568567;0.1390626694724934;0.13989814483153268;0.16388666706196234;0.1584911240674336;0.15092315085665964;0.16141972761918785;0.1584866589433234;0.1611040335516881;0.019337843617117278;0.01755091158611085;0.016555999757715968;0.12069456279714025;0.12621955281484706;0.011298589497795133;0.02263104242292194;0.11725079187635577;0.004978010438420018;0.00398502929843038;0.017559063017882248;0.015185149653157851;0.0036823341012731325;0.007054698407372625;0.004845240890251844;0.0896924105391487;0.46419305189812077;0.04511747600539116;0.2508400178883699;0.2393781614742603;0.0191722071041301;0.0819894082119515;0.06799649693086851;0.3351285194657272;0.29643907095268246;0.2901234348118195;0.2323695739842098;0.4141629290182294;0.07084826569631535;0.1568592025613326;0.03778144640609378;0.046287169750895786;0.05366600593602599;0.21915007545500437;0.5441160678780076;0.11631122156578846;0.7279741938880236;0.05421024067091925;0.04205765801066806;0.2441869580768217;0.2446678458685876;0.11184637229402834;0.049786199580798045;0.05120324726646987;0.09998670037814275;0.08969737925322518;0.10696964843587259;0.0013694990176164718;0.03917439141773375;0.0033484815519121834;0.0023792803117995568;0.03244340366451977;0.01057076734112594;0.014879723840800834;0.02817736940828448;0.30430816177536557;0.03617941091354208;0.0015602490570655908;0.011389546953703122;0.012712913670048403;0.042555946503170496;0.02493495924682652;0.03264610942639555;0.09025589409731237;0.1715769212196015;0.1680784727487096;0.007449576703490153;0.11686899474206781;0.21091737259532423;0.0007478103991801956;0.015050214669558798;0.007886761299931393;0.0;0.12105421870104449;0.15597668035011497;0.21940283766219895;0.16329748505138508;0.11775658988347001;0.17920683338392865;0.13090835561948183;0.14416058667542775;0.13996496640355097;0.15312346490570009;0.27875910348217625;0.0900524015349628;0.1734729521659024;0.10156240481159269;0.1393398335234393;0.1720636195626174;0.03618378979522975;0.2354930309904295;0.31842898950112736;0.4795917892800099;0.010795164563831217;0.016456807125683245;0.04278237697561547;0.12968859114848952;0.20662320056639735;0.44085741390277905;0.01874702361847409;0.1264626610515212;0.24075506444454683;0.031850063166536983;0.05683371622338867;0.06526997802176224;0.07020220051823077;0.019699525285392268;0.020608873223908152;0.19271819404976193;0.22590167155920327;0.1892819067186985;0.20246051673245996;0.11398558895401491;0.13782636819454475;0.04567191904358106;0.050774454428721846;0.04538087423671766;0.09132638697284891;0.10622142678451095;0.028603941753496575;0.05545626526432038;0.06813727533432783;0.09313272555213549;0.08897703673460029;0.05709052349555279;0.04776847154790029;0.07532301169623848;0.1337126108350376;0.17551815394534792;0.03122088239585483;0.34605112309148983;0.01140543390814572;0.0024527975875942437;0.09519639478655116;0.23184212862003026;0.7280295949358191;0.7274971163597374;0.009097134037174768;0.3702399091354536;0.017549632002012563;0.02358734387727139;0.019106585611407444;0.17210028205001873;0.019202629708880568;0.1312290973848497;0.056136021942423314;1.0;0.009330392462955391;0.006049655118357127;0.025955074520654802;0.16445212411009796;0.3627464560888609;0.5300656684877387;0.3243277270585577;0.08324837913791247;0.8082134612772728;0.004988956061573153;0.3774240537050045;0.03343441161061744;0.017127744075535516;0.35034984462621915;0.015539004224933789;0.11319969024250814;0.04108116489941247;0.051692480843055805;0.004676940650386345;0.021944959304843657;0.05146167909590568;0.2986282063910511;0.22582252302381828;0.04213871232860291;0.011729771754443905;0.08410336811596374;0.0;0.3121488650972836;0.01229265559555067;0.02563528883933066;0.15277844341116653;0.11809679216973146;0.008180118494343065;0.052954645399182286;0.18110275046406824;0.09032015479781628;0.21540656008367248;0.11984847317561073;0.012357815389855944;0.01925376163358164;0.2648757693157922;0.014749792826400413;0.06384692055563213;0.05842632155750022;0.031032863803230032;0.04916913255400778;0.0035716361462238516;0.0696174101471993;0.04433245765226678;0.0029843842576172965;0.0;0.001582451119556834;0.09441224840157643;0.1201418083434702;0.19616036310276644;0.03560541527952507;0.0675652108324179;0.023661898875234;0.027522496266198824;0.11909593962447668;0.04094065427448605;0.10932635723583817;0.2327685166076342;0.08642416268897475;0.0011803255732792573;0.049119702243822054;0.07594925132087414;0.08201733358946885;0.04498276245165109;0.23136104762703003;0.03614409510409503;0.03775260147425199;0.07311039149052706;0.0615631381198576;0.07032182736527491;0.018298641932740934;0.1527790563228422;0.21738523622061878;0.2378172962348425;0.13992687047273403;0.04727439038305669;0.0;0.0;0.0005823467914435414;0.0004451233501466146;0.032008592216473196;0.18446245172689316;0.0319040986892134;0.007364205809177254;0.0010921060453089775;0.3707255942318241;0.03620549985196527;0.1456013652156472;0.029345575274533502;0.0006698102405343766;0.015030294908495025;0.003811884257256473;0.003915609991838344;0.04179478866568887;0.024148911023111917;0.019222477532154492;0.012215316037080272;0.0006861942487049844;0.11987982482897662;0.019888264243022428;0.0007919932343480698;0.019774472368416895;0.04363553363348727;0.021923120753167095;0.030262425529860575;0.08221397023710252;0.20670800263761938;0.003475047432027298;0.004738797146166141;0.06028464655431946;0.00757797456376719;0.1920697513658379;0.07593763441669821;0.0353585658833453;0.007317711138894936;0.2263935954387217;0.36210852258126697;0.3405093209250045;0.3183099871734532
+Propoxur;0.0009320934641465887;0.0;0.0;0.017827727935882515;0.013658050595204418;0.10955343533151658;0.051808936957563737;0.0;0.0;0.006039477794982919;0.05623129113072999;0.0;0.00046977486244198833;0.0007770218476755172;0.00014130333431890813;0.0;0.00013639852044194183;0.0;0.00012883493891582598;0.00012897292926644614;0.0010091151594210845;0.0012879077151329015;0.006394929575524067;0.0004489971779384969;0.00018324923196879044;0.0;0.015549833968822181;0.06203709148628128;0.018639522265060344;0.03590752191616267;0.00913065643775681;0.014821271295600414;0.10166897569676489;0.002429542136151619;0.0038228216882297697;0.04330412596657794;0.08470421842408424;0.020997582635448275;0.0;0.022119868016436364;0.00983968472485146;0.040848632761780836;0.011250469852651615;0.0;0.02275302134376394;0.00847703616971219;0.010223821780948335;0.009250851001096008;0.008707376242119001;0.029994220764730434;0.0004866006547713034;0.015786140701542082;0.0019485354088250805;0.00015529418941444178;0.0007296980383794654;0.031273624540384744;0.03761189616802079;0.02980629028038087;0.04084465653463164;0.04215882248731452;0.015311716074039906;0.0673867266795361;0.04835518062317278;0.03866285891537449;0.03606665519462858;0.031066826671094876;0.030201840646107266;0.037482787893304385;0.0330399632058554;0.03728892066669239;0.03938663427497385;0.005711756670961781;0.03485519255598335;0.0329674814915469;0.04687163319902082;0.038455463242284;0.001393817412226665;0.010371938528145096;0.004507503625585867;0.028430941554508763;0.030918891865530165;0.030252019125405743;0.04896398661664175;0.048680140647471726;0.009726657182141673;0.0019952822792249666;0.02115878243111539;0.009493355430723228;0.004078070570255381;0.014461451907900531;0.011980022666608222;0.0003848625976023455;0.0034815565951996853;0.004659193118075363;0.005215327272441453;0.036649550706918825;0.03245363548997253;0.011808570024935782;0.0175892680990049;0.011691987875626446;0.061810149707316554;0.009988196043339378;0.0032519345610052468;0.0038096936294588425;0.0037931287079346187;0.001097130200813968;0.010481513952471207;0.0008744236129231792;0.0002855713080965074;0.0;0.0002634578616552115;0.0003548358381137926;0.007502788564963306;0.00046791498691260925;0.009031072250728465;0.0;0.0;0.048032919262085645;0.0;0.015778358542770606;0.0;0.0;0.0;0.010892702337799673;0.008495945914189718;0.002258730669907044;0.0011445432284271167;0.0029968472615684804;0.003087528066725629;0.00018907230384998237;0.0015153190210404218;0.24035698656482812;0.03286420730371746;0.08449718652844058;0.0;0.0012142861771900835;0.11826128788957346;0.026817238596195763;0.010345185825103523;0.009536538126317586;0.07369393269830078;0.004916405473964389;0.21570428514633994;0.013459535638645876;0.03428302363472897;0.0016983409133190254;0.0;0.0;0.1059966017421052;0.0541629682031401;0.26982133573546097;0.10134790329311892;0.15319266080031166;0.17858684013425027;0.027394234269614657;0.04709612227554812;0.03016976952144856;0.047470271764692214;0.041340364594551746;0.0;0.020026071091803415;0.047214941726125705;0.01409415896670036;0.0007154961096090384;0.023025988453665956;0.00115612813852901;0.00303129512262278;0.0013178808101952234;0.001891050451669533;0.09377289370052105;0.02237923246951975;0.01602030766047087;0.006907215673006741;0.00022939733261210374;0.0006541913317689481;0.03406698865510647;0.004273494511279792;0.020243414126762758;0.0023561810907102823;0.001625479135882324;0.0010417339394782484;0.0027528504072122464;0.012432342427743498;0.004970701295123354;0.02213361839794538;0.19991452982125552;0.007780617237368543;0.0008499898673200021;0.0037107727899415095;0.5014137717610789;0.4362839597237324;0.03171373886046197;0.05512338605305134;0.16983708660746819;0.4987723821999461;0.012891618779693055;0.009667032162149437;0.013522488575771766;0.02019532842976836;0.011570278382978352;0.02031218016616722;0.012958304888802293;0.016871995916903006;0.019334600196145958;0.0286954326755951;0.0002204827504653321;0.033733344167257824;0.09447540537963559;0.006775385701162918;0.0003790864399969967;0.015295922227336289;0.002610863164246895;0.09374116357421398;0.06428198895480211;0.01813925301304446;0.0;0.01803095124124531;0.01660916522495449;0.0;0.07445467971146526;0.36071059104727626;0.007936254048944151;0.007393566436325298;0.05335901603271048;0.05787543104815662;0.07009674207786312;0.052966000470545525;0.1161015798605162;0.0825038692092359;0.01526991681787072;0.016113566178135398;0.01457307986182788;0.04668188472406331;0.03528472038275709;0.001643430005814055;0.04843740697411537;0.009646481942995696;0.025959993707374417;0.01624364983987177;0.04491268493976713;0.012553018209722877;0.08109879715554809;0.08340281972844893;0.1564596010181886;0.015184475443589798;0.1138506286856607;0.0031244215610262568;0.03645441199856788;0.021398225681894954;0.0018426749462630064;0.027337958715710806;0.02732775807516226;0.0040458204919732515;0.001836531325750324;0.025717211725885997;0.0006410671735922297;0.02682232898845597;0.1317594131710611;0.10437651867608404;0.009401607735689979;0.0;0.009330392462955391;1.0;0.0012352331556614625;0.0;0.005041960129200575;0.03093863273203714;0.0038694599302171724;0.004395509315162355;0.04537034229127065;0.00020947156451342627;0.05201419054506683;0.04480568506952662;0.10061920822339408;0.006796864786194406;0.009219750531027821;0.0;0.06971532352872063;0.0;0.0;0.0010033442092189293;0.018968081115828577;0.0;0.0807413480694266;0.006707013289672034;0.0;0.0;0.0018314494348876957;0.0006948753338759451;0.00016361912572259484;0.0;0.002393660407841456;0.0;0.021870615641896664;0.0;0.0;0.0;0.002233399724250843;0.04275863091515526;0.0006682485727206929;0.0;0.0;0.12696455381105318;0.0;0.0;0.001127882948534342;0.00020014490336845396;0.15849691636533553;0.0014262970567762727;0.0010459909829828808;0.2763772217459163;0.0;0.0;0.001488971042446412;0.0003057264256695646;0.06975830613802449;0.0;0.6387845097051321;0.028582604018402583;0.02868493005889569;0.014153594209859972;0.03060346247755967;0.13155184048362648;0.0;0.006337103274511017;0.0;0.13759315303798603;0.05387782048222545;0.0012840771947078787;0.020389676206705107;0.06684447931095709;0.12409682579481555;0.005518609522328046;0.006263508193619456;0.026297416235043468;0.03628085808177079;0.0289264796329322;0.04096295089782987;0.0010509208000462607;0.003498962619093978;0.04224795712241997;0.10673839079707373;0.6307212127093025;0.0058576407045558025;0.009360933383984383;0.01271799563930718;0.012203971486394736;0.019237079596155556;0.04604192326012934;0.11513539324888707;0.01124516554437172;0.009537720648376734;0.0017457240510449768;0.006397747651442217;0.03755935482470266;0.009373219541391292;0.0009785426937121144;0.009198556616336511;0.0051221094964569915;0.024508911043912607;0.0024723669030171326;0.005529795425393195;0.0010993134116670756;0.024528867386286218;0.018168177675752132;0.00548936547203863;0.0027237537721608546;0.011795543143566385;0.016467918412048813;0.030552601114053033;0.052947888699910454;0.010357265905343008;0.031056079112972815;0.05651414592371494;0.03916137017100985;0.12147548914654224;0.030094018053558415;0.0012387316384291894;0.0026304393083245456;0.006870779750806765;0.017261301176869942;0.0005390868405096192;0.06721044648281815;0.007177869236543034;0.04994796798546918;0.06306342224555873
+Pyraclostrobin;0.0702312457549233;0.0;0.0002936874556602213;0.0035399584617531324;0.0035581073779312323;0.0020733240664142245;0.0009348330054587853;0.00020164021333915412;0.0;0.0;0.0029046877319478187;0.004687025163462223;0.0;0.0002286127933204494;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0028492490764870427;0.0018224147506263172;0.0009464727591255182;0.03212550694679652;0.016816728415407097;0.022375957490061854;0.005458203791123602;0.01867953447371657;0.007546699880768722;0.011148894277166406;0.008596637844344845;0.011850498119053754;0.015353358119444313;0.001886525291072374;0.041134563823147445;0.00439295721506435;0.008472229457695157;0.00018115435053057025;0.01301829544598631;0.0014733641598258366;0.017371346422842153;0.0005276471588920912;0.008196550414727768;0.006087294773961077;0.00750476013556314;0.02839382154052527;0.0060590297647138405;0.0;0.0009973696148052969;0.0017680947930172402;0.020211453804319268;0.022412187016247434;0.007174836013916216;0.0014889032353843311;0.007598969469346317;0.0006412406815526325;0.015187575569045935;0.018110983911148088;0.023416293522486514;0.0013845930786063716;0.001053501999725598;0.000903771675345698;0.008196157505799826;0.01061040275592906;0.0008849595994313887;0.015371315376757492;0.03241219623767622;0.015738849438545997;0.001538958478165945;0.026675746966176427;0.028377032529801654;0.03496479617849439;0.003686239926617137;0.003253265130784381;0.22744552709234875;0.21601937899847723;0.015007385113210895;0.004470498957684612;0.00814734409644691;0.008077252954015148;0.0045196292906816305;0.004394025169445311;0.014783078329556621;0.0038782254850740806;0.004730008336917505;0.006942101454603055;0.011395193239388;0.0019340245119716531;0.006332511720913887;0.0037643389175492635;0.018905670479357883;0.005016837100902328;0.005407731752183917;0.006754017060138496;0.006087953286605921;0.01000257957898829;0.011769070496263275;0.015658609532992113;0.018814136393294913;0.007881982316759972;0.040354558672078746;0.055751809048686;0.03718589827759667;0.0006674187742811513;0.000664825902352412;0.0003517769129869201;0.036622943514980945;0.01333323926736021;0.014916150516734422;0.019570509699283534;0.0011134369616162436;0.0020418425123367744;0.0009139839888036097;0.00022884037767503248;0.006743890524095522;0.0013090067697171463;0.000733485465322616;0.015525090091562119;0.003571925990231622;0.0004445354506049087;0.0010393167828983549;0.005594857062771655;0.0129530820599761;0.003957564848492333;0.003050130597789763;0.004676622870429629;0.005397141687865105;0.0065651396699318255;0.010253868886146027;0.03255781108901214;0.17308041728214915;0.009967077136889657;0.00020870769511764924;0.02551267182875605;0.1177164310685589;0.044466438567515795;0.3532394104961336;0.29180933964805816;0.011520779186981451;0.04141142898054592;0.027360182644264028;0.015997078655621288;0.04281988287425794;0.017047460479476625;0.061633496444350955;0.0003962687339717531;0.002091935379144525;0.007391739391522915;0.0;0.008698690669835947;0.0032089976906472;0.002702240539479315;0.27120559580553805;0.0396107701375061;0.010660217015798034;0.0015983666330821244;0.0014714067761879845;0.0023087784208873398;0.0029267816997784997;0.004213369011968642;0.007578687495120842;0.0486278442662248;0.0012463679666964874;0.0050963960286523865;0.0124549783141971;0.01937433530120388;0.02545437125182788;0.010207982786450054;0.017419933585051058;0.002046995148209933;0.010866449478138336;0.019964052982882417;0.017250709011135994;0.00069944125436138;0.0003165493693693615;0.012133091784189764;0.02628918389660636;0.007926900002579201;0.007391684124345729;0.001502179644968069;0.005970005905197974;0.012903866795220157;0.0019605768659883677;0.00019249277689931016;0.003697695121217852;0.0;0.019513042840670434;0.00026713359012320103;0.016773803034865496;0.0;0.006356727551216412;0.013830349336290862;0.10828076628388766;0.010079854554800477;0.01016509463940737;0.01038081287566524;0.009568350431567715;0.010712592947152419;0.019511130691503394;0.01249845710771113;0.010982474519787367;0.0028720372028135798;0.013695371474577537;0.0015001631313952286;0.18695752934287652;0.01115167141410538;0.16755135384692615;0.20940267206429392;0.004587367055844867;0.008364360331318937;0.12484882043563486;0.008690414402480565;0.5126410380367675;0.049746768806628025;0.0016813165082972376;0.304818220002557;0.01473743057129324;0.0;0.11969355940933649;0.009979982171856553;0.001560793789822658;0.0014531410010151442;0.0018351456048643355;0.0023319217199278546;0.0018005961037256774;0.0024112828057585374;0.0013748896612539986;0.026583208834844933;0.026239765221688492;0.02461922860281262;0.008989737127564785;0.0010678294899976678;0.025920885028286093;0.01950158026205877;0.024930205305940766;0.0161676720218049;0.018336867533836208;0.01924081399869296;0.6679008566148631;0.13567976497767376;0.0019011533588315578;0.0007975579085164003;0.0978496190640078;0.0;0.060444436722110556;0.011051937559291769;0.03888703298036577;0.003133725331489937;0.014758172229764912;0.014959253461812564;0.01798563226143269;0.0018480923867025582;0.0249980080407499;0.006049448787844155;0.03587584837133291;0.11690296029080471;0.0013729248506452124;0.0;0.002237442505241093;0.006049655118357127;0.0012352331556614625;0.9999999999999999;0.06285664922813307;0.002251699743696336;0.025439937766059986;0.0009867893344944634;0.0042037230629402645;0.0006037748900677036;0.0;0.0;0.008015199646605941;0.20191286789199006;0.0006646760315215496;0.0007906014486602879;0.010105174999250618;0.002156600174306366;0.01767709393343401;0.0030435624643508317;0.003553990526722379;0.04612906664520602;0.0021748051197629987;0.0018824375664741881;0.00425219043000465;0.055270318879060774;0.0026932377779778265;0.005891358342923334;0.0;0.01195215933929366;0.0285819221528222;0.007621552842279047;0.0;0.06377350946119473;0.23021899678212945;0.0003987763897924457;0.0;0.3068808666687699;0.042082759734733806;0.7594390634216461;0.020854392213417585;0.016175207576987986;0.0030987146938865266;0.0007181567767350319;0.0005690269441620344;0.0026703916961277304;0.003853315595305679;0.004641945115775842;0.17000375853389904;0.0007896934414911292;0.002396925641358437;0.0;0.0;0.0;0.5148681074748938;0.042692393613591485;0.0009568058858466219;0.0037412993878064614;0.003957711832640508;0.001364534638705397;0.00556558539751173;0.024418755301369693;0.05226572141158263;0.03946780897069875;0.030360597796029086;0.03666554110518018;0.001949156259821608;0.0024409387150699465;0.017927975760197768;0.0006011574034940344;0.0003113076565030713;0.0014555586313262459;0.0376702168365757;0.027873316365914703;0.03287792889116254;0.02689278801549039;0.06237084535453547;0.07723377468493792;0.00025534552370374576;0.014761550989262498;0.0017322513994454294;0.0024219467797405255;0.0019278064029276815;0.0013572908997746965;0.002192546485756984;0.00014961443017277566;0.00027516492466599356;0.01936471553546312;0.015257740632860983;0.0011527827847353828;0.007822435135802412;0.0204308493868956;0.004046740682677834;0.018625642980812127;0.026171495151395274;0.031085925324796045;0.0011971559400362247;0.006389113595916963;0.0954554503546557;0.0025137967366989995;0.03104941726940184;0.07872855213106629;0.003125848447355775;0.003978618032557628;0.003499248997208152;0.011418888200802172;0.0006262247950310437;0.0023485916143672443;0.00774811347499165;0.014727776340696634;0.038557070270037144;0.008303192983414798;0.024541028911027798;0.001777149801954519;0.0;0.0;0.0009217599965318342;0.014986842631715232;0.018121503636241813;0.04708180019011739;0.002233437505386876;0.0030840200111048135;0.034537094855371195;0.04435292200944101;0.0551208613511447;0.05987974210984678
+Thiobencarb;0.12733829243277753;0.13335641170698365;0.10329620598106798;0.10548543075172676;0.10875156726678453;0.10344757514254826;0.05397650501211438;0.1391373032792243;0.151902490234;0.10652897349047782;0.05780104239962463;0.1095610548885135;0.06010552225897183;0.12923552356558377;0.13028470837973255;0.1266637622742447;0.11046509970815761;0.125470465105791;0.13234712469812096;0.12672796591594143;0.11255675049839971;0.1170030071758138;0.12187974701206124;0.11660906937292864;0.10455457559895465;0.002616971443887139;0.052315056594367984;0.043216873119635284;0.029614215197155534;0.06652043612205945;0.041601049533541;0.05284800567624208;0.09825023660959452;0.07649575347868741;0.09379010583472412;0.1406884292846406;0.0732384800393177;0.019192785533464776;0.005258642355226175;0.09065654141885164;0.05877078620016859;0.10329482041868239;0.029779810613692843;0.0008831791283930938;0.025841452443058605;0.029795046846004532;0.04560969961538229;0.04266139840282187;0.03857220941736864;0.08904444935720748;0.07669856220724944;0.025762675472603656;0.020612286210676754;0.0012897668453481558;0.06774452971915552;0.10934670677925733;0.07259683180177125;0.07577939730081354;0.061692888270051705;0.00529684826260883;0.05725684212725721;0.07744210513214644;0.08164760377043674;0.08213806003660652;0.07494284563109092;0.07334599348350579;0.07483180039052059;0.06062595078210053;0.06021362086001278;0.059868622320988385;0.05483073128422658;0.05013573519716099;0.009003651109928066;0.01426015004988872;0.022636120019575424;0.0264892960647315;0.0027866799434676545;0.0012422341725676243;0.0008559476013054677;0.16811557940122576;0.012315635238812126;0.010375851018543148;0.01255008695194609;0.004638229949607722;0.023617086590967222;0.014849600778913988;0.2692727006945148;0.2954243456808787;0.021538793417775936;0.03169451170702251;0.003480430857551091;0.029911023146040248;0.06607293940238107;0.034698826650786864;0.03205620665522402;0.02348495770057747;0.009979273613991313;0.03223905089686526;0.06372714673038665;0.057946456592128937;0.07667907388962397;0.0536773693859401;0.068655648311502;0.014929554623328803;0.0548614789691748;0.09143931408452485;0.07338421365420195;0.0800678397286145;0.07893880513684981;0.09550616437571159;0.09307273875929074;0.09103424640162884;0.09496242213545389;0.09030018826630666;0.09365305257555073;0.011719166772851293;0.01016785936827712;0.04583965842300529;0.08805746806622702;0.0246870949423706;0.010111804667464737;0.014921082472369831;0.07682654828888542;0.014001851490736907;0.0031900083238225324;0.0004570418067809104;0.001626800278946043;0.0018575713180210604;0.04928912419086735;0.0033376871297252564;0.0133375495988311;0.01194522228407981;0.01900576246010187;0.01304149309383303;0.13801455512787875;0.017573259493986273;0.020476345413155916;0.012999249718731915;0.11470808222934778;0.11717343700427621;0.05602503669360847;0.08774120153116968;0.022154999872551404;0.04325733083062277;0.09457238530111982;0.01785938618904672;0.013321675203586052;0.007239078670574511;0.008261552323502116;0.07845031475379777;0.13515629858334044;0.010236775719450107;0.004125793380784427;0.002799382438273744;0.09468993605710872;0.05422575440212882;0.04410921204897937;0.015393686973835762;0.025099820185733115;0.005535716930249347;0.03304220268068576;0.03158033094389939;0.01759965042618561;0.30911686986066056;0.046676748455295326;0.04548523927556264;0.12241573297586371;0.05112763262966877;0.062380821766841225;0.06247092228017745;0.05462166903287409;0.012830165450372332;0.01018875214771466;0.0023040830375190774;0.0011437112143483283;0.01370104983992524;0.05884927443109026;0.030625105456589523;0.05987996327482348;0.11504067862228008;0.11313848930634136;0.0032003552338202286;0.06331094038063186;0.10770808075026617;0.2690815022514242;0.10942517005779509;0.24141905674229217;0.03464802602973488;0.21091675008380006;0.17323341411824697;0.16841419859847997;0.09277903687404156;0.11771323622286806;0.08056444285558002;0.08113599845427313;0.07320913459309747;0.0713464332941114;0.0756545496649409;0.0555125321097933;0.045176178567659334;0.0816557544932041;0.04741867191107721;0.06786162140421642;0.10376099779242642;0.055592995044647237;0.10592093767316302;0.09805517675643476;0.10294867247599193;0.014158089091065085;0.03630222685029504;0.033496771232514495;0.08069822547122021;0.05600016795507538;0.3071536976947836;0.033228360422612;0.06993600969698446;0.3066408475458299;0.0397742916483448;0.7825733735002876;0.06841198108665239;0.02334936392568511;0.01167041427247649;0.004472626663439173;0.10292673351251198;0.11374356155507975;0.11419374940492846;0.11656819031979898;0.08923191777475781;0.08641669501480247;0.07539962317989934;0.061056763925330985;0.06210109430063996;0.08554271685021447;0.08055519868929044;0.047794496847059935;0.07161412065008912;0.0431087528438237;0.050115426846003744;0.055888445760209356;0.06797340905741586;0.08524358796977556;0.014063553652966127;0.009947033831792369;0.0568781520607542;0.025979650971179234;0.007464882522643566;0.1078377504398836;0.118764859348252;0.13420911227483512;0.22343187337006803;0.027876239835901803;0.028034120271386187;0.0741197533287457;0.1879677041613894;0.027965225768251573;0.0036677733899241824;0.01245687775705468;0.054341743555665005;0.0051025042748199835;0.03069285931894829;0.07555411518215811;0.025955074520654802;0.0;0.06285664922813307;0.9999999999999997;0.018429966538148268;0.18389758709529225;0.0850583611580739;0.1881015755945218;0.07115444602804895;0.04485321933721348;0.01704554634154312;0.13366456254682477;0.013906768667907073;0.48256939244349517;0.08912888954449136;0.003017832678999066;0.01883078087287053;0.0147541647336138;0.0011484342414772386;0.2482098292506221;0.018958748423122;0.07502687841507226;0.10048109070193502;0.011516591448819348;0.006939719719466526;0.008371074840026548;0.052519670357488765;0.000542178375284022;0.041951656442177895;0.025274850571612342;0.024067000809682895;0.019058725559964587;0.010949687350410273;0.059622435796867955;0.027008824940479764;0.04334129906496857;0.11519249174156307;0.10019354247552405;0.11001669221874234;0.015543963399168427;0.01154439818811118;0.08173242458308455;0.3339895877256306;0.027134871910291312;0.009984777895055112;0.027928464522129024;0.06163077058931715;0.0490014195001212;0.01838083972802411;0.03377819134316245;0.008224410482151731;0.8568032149924135;0.8564776568867345;0.13345963298937868;0.0438849712329693;0.17007455887557085;0.05105118426195446;0.017281959985126903;0.035563097386301375;0.0025645094667376784;0.023560392329697557;0.21537879715710592;0.046352902359730996;0.06118585359929772;0.007756443230975775;0.011394850729769633;0.004518982395849289;0.004310419140047765;0.032154296313146154;0.031491367037811545;0.08917025673123558;0.011847465238019937;0.010467850291655641;0.04568930305829464;0.04445859884953291;0.045599480246955114;0.013527204724067186;0.07203378526917022;0.0971988110656986;0.11509156359257912;0.08971586050618943;0.03684766293266743;0.0021412360881448893;0.09741330970723833;0.019776795835410955;0.020686331463386227;0.10045063401032794;0.10643794482410807;0.07241318970832553;0.033126924320095195;0.016217533173124722;0.013811599074395832;0.07129318289323124;0.1055286680732798;0.017894901605614626;0.011763827455459848;0.019982920225529794;0.13788312033124414;0.03740099850161964;0.03363481482834184;0.2224560724366861;0.07163307601816879;0.056033907124224125;0.03961321090066391;0.23421385647501844;0.01174015343083531;0.037241142137348617;0.07969018498971803;0.3089655435291424;0.06573099031755424;0.04470625032425428;0.29028882496856423;0.10303280881061481;0.010008000090163432;0.01360046856854774;0.05644852052078953;0.03240324558806651;0.20219294737959445;0.052404006600527984;0.01779171616345934;0.001432671648164479;0.11072414073095978;0.10200389497345524;0.059592754419966934;0.05740354384209485
+Isoprocarb;0.0;0.004293225722667389;0.001351185482285101;0.03826276303479988;0.0307736334827256;0.03439595536051242;7.43709014316635e-05;0.004034849310561917;0.0;0.021096920171797817;0.007489134633965328;0.005907465778992996;0.0023212790629745235;0.0026096213130420115;0.01474900932774949;0.018606916283249675;0.006619371188548396;0.004334916124704428;0.006163970014675889;0.007366413215475055;0.010690865675271269;0.01494963139794676;0.01792782934847798;0.006242349157663525;0.0021749481368428633;0.019351116574129468;0.02965293449810188;0.06281044417614427;0.09266102995775247;0.3130906813153417;0.057194499457500804;0.05947803563160406;0.029795410695431773;0.01294866965319318;0.044449061685228934;0.0344439362793632;0.09967007452850148;0.040471033575588455;0.15993388953161045;0.020508413881453993;0.02254903128504771;0.024852006327029736;0.010874535288403394;0.00013435614517509116;0.0031947623699442856;0.004373858938458967;0.004174795769542223;0.002473367094143136;0.005394209272535197;0.012660451707081055;0.004203405559285957;0.045208823433911256;0.005250052344923209;0.02607147848964168;0.09613208158027112;0.021645744009503202;0.03104604101281619;0.017878222170139315;0.03186187865769075;0.10783899443740752;0.0286015854573819;0.02833269177809005;0.03315360254358561;0.02342556456579707;0.03373269465314427;0.020104116063055715;0.01731357680638106;0.027844363327966422;0.029897125575900477;0.027588622843250355;0.013622425670101353;0.0233903152996961;0.09063836486209743;0.09770399774417846;0.05778003042228502;0.06134232851928898;0.04375044392633385;0.055903910661908404;0.0027915830785282406;0.008317605470246832;0.07001694389886627;0.06328166130473839;0.17264064578229427;0.17087289419341814;0.03343880445102092;0.025142344627738688;0.00842747279293474;0.027035237523444684;0.06328224190087403;0.007798598983780362;0.010142658311471908;0.008130294039145567;0.06736260572329932;0.02418529485793948;0.032193405852733746;0.1409706817166587;0.1637158616045526;0.03174926188828067;0.06984394572379105;0.0579890396295581;0.08317441695059195;0.06283182970905106;0.08384015476064673;0.08497636557133653;0.016022979765900856;0.003431879864644529;0.0014045671689134431;0.00214335416406609;0.0022925651147358045;0.0016769331038467925;0.0023265565246446893;0.0038391253156081916;0.020783899764605297;0.0021293401802427387;0.0022901711054620602;0.034980852250880434;0.0002850489138383012;0.00301648355570028;0.011990564377419575;0.20895934203459757;0.008574736035076164;0.0011594953360574796;0.000309709282760438;0.11364609185858081;0.007809014575195689;0.012271685075972653;0.012637306650207836;0.015531409307325954;0.015315751245998863;0.016502178947319993;0.1060106880581538;0.08720282345905657;0.03467425522977174;0.14306856055754513;0.024111014747020536;0.06573655435298696;0.060329065319569386;0.09752923194734794;0.26158175136056916;0.20601886693875004;0.3146661366992674;0.12053698512755932;0.17449600959549874;0.03981936474432786;0.2832389345140139;0.0850854007780768;0.10256541049121677;0.17910129467506303;0.09952960396971981;0.17691916530574714;0.007487573197124697;0.3064654175888556;0.18177844532348666;0.06964981164813487;0.04254902327604109;0.3028335263900597;0.06534501293702463;0.01617326938135842;0.049870553042346416;0.0022316436398652456;0.012855502029349132;0.07161484914185456;0.039216103245638824;0.0067922691838493005;0.04045338214783411;0.035444024440561425;0.027602082848352666;0.011770738543747113;0.031151189936154264;0.01846649003226528;0.03984690962518633;0.0842108462228005;0.0005142367539044942;0.008685174879216079;0.026950671942901787;0.02131264534314237;0.0023897335964316356;0.007730539284870718;0.0486460495348068;0.02054301047103756;0.020965072004258074;0.0026784044924005124;0.07500018885899279;0.061889965585123115;0.002016782335419995;0.0022815365134046203;0.012568859239615055;0.0;0.005333026398504161;0.006452804671861052;0.048100336058637075;0.01987928613180629;0.029712768728020467;0.005999059814429922;0.04834923908259428;0.010544242088407001;0.012339522127873264;0.1389511907777911;0.23480295258626432;0.18766329337607332;0.14300790334847707;0.19452254023253993;0.17062389076425874;0.021808452430864378;0.004754630504025426;0.01755509029164578;0.29898303575679197;0.042512425951095126;0.027326211798773693;0.016942978174415726;0.005873155540416849;0.07439691705354914;0.10077851524598225;0.0620980916578722;0.021774007749054313;0.007532055814777191;0.04303476422089613;0.03370525458845812;0.010879127042736265;0.07965684954223462;0.05309073375917931;0.12728965215585514;0.005619809550047382;0.0030196531293518875;0.038949274177049915;0.035255681835624886;0.024081903679875966;0.03380305280649122;0.015711850615107013;0.019303075394903363;0.02617710762267177;0.02700712235637133;0.02863082436259432;0.01542964782450662;0.013978812132364538;0.028685845910847198;0.3027940185901036;0.27517251376368557;0.3456914519014752;0.029085511420418552;0.008871209873923026;0.08323204400906677;0.17306982648526092;0.6127490268307167;0.16298551569760905;0.03380960032513569;0.0009538134733844858;0.0012831671823892183;0.03391339766518896;0.03615634101431221;0.008698090718530936;0.008742896479679524;0.0016307115939426576;0.026864644924580506;0.011861131998515276;0.03915821319124054;0.05352816538847408;0.20037827757713236;0.04217843958033178;0.0;0.030872355077379576;0.16445212411009796;0.005041960129200575;0.002251699743696336;0.018429966538148268;0.9999999999999999;0.021279230898326312;0.07359343804707796;0.048740097118129565;0.0162479147532088;0.11481495161610937;0.015429566859207225;0.0592761549879404;0.1767282357640159;0.02411176968349702;0.1076186078581035;0.002196761953729617;0.9937984427368893;0.6770483191067094;0.08197874857751619;0.007019835495133015;0.014942322543891948;0.02985728082707956;0.04685862866973039;0.05146878415334501;0.06475506914548562;0.0008663292968458086;0.002765000148936891;0.0;0.08879469700891478;0.06304705719190848;0.0006435107169812007;0.03680591112433265;0.028873564883489578;0.018374809364501272;0.0022502506972451107;0.08801485318461098;0.08949138330296474;0.05648924590111286;0.07118010837177442;0.022943828834664844;0.01973980947610691;0.05308645950693414;0.0034892669988906967;0.0035213681185087163;0.2795549185705051;0.0476536245634987;0.04549063030291681;0.0035365501271991265;0.01881950300653019;0.030045646017100122;0.011025338712696692;0.0;0.001755495236931498;0.34542684267172763;0.023547712042652026;0.003043657642111589;0.06657955309131736;0.06399709790341349;0.023534527280403665;0.08456974967898769;0.03098447214116399;0.03419068486311329;0.006318493204127455;0.04893471501755252;0.07250968823830968;0.03076756005836848;0.12696977460332715;0.12049102895762982;0.031842358106133804;0.005124732343504734;0.03468275422399899;0.08239676113363548;0.09093977344351012;0.08393500494576189;0.01615114216613011;0.02617239411970364;0.018954825125438304;0.03579576202521137;0.06807878274337188;0.02414518084557576;0.0021477438507593047;0.09805655752356796;0.0010073935639140713;0.0010747841829813558;0.006128975272925865;0.00507253681722267;0.6963352481316639;0.048521646794042125;0.02145072475252399;0.0010375475532614987;0.0006052562564796102;0.12552397995189368;0.06502965414020093;0.05984565477116102;0.009395962663917689;0.00011221875071017217;0.00906824698506727;7.95841352014477e-05;0.0069244783518960275;0.009616894083239054;0.01100362455551234;0.005207491588346622;0.017564565192203875;0.009966330788688898;0.033214556986126575;0.02061432122724142;0.0007842274201297338;0.023177699095565527;0.026093780689228883;0.006349924890102189;0.011145681960710157;0.09091388122984047;0.007574895094782459;0.0028780188298376205;0.005073604271700248;0.17540513732755816;0.014581786505366352;0.028566641577510092;0.05755860227206048;0.020418994263976042;0.18269911539569664;0.056964843762868374;0.03441305707448307;0.19848846108455545;0.20721138046115542
+Linuron;0.2964489635078102;0.399543643430757;0.3039870714783191;0.30372789760885477;0.31033839778851763;0.3437933763152975;0.17187568559363753;0.3143626778123228;0.3124157078640868;0.31637355799563455;0.1245749098347594;0.33240412582543805;0.18816781098597093;0.31680587196307003;0.3151439531509388;0.31187302616429285;0.352335528716806;0.37604054536503356;0.3975783123064371;0.38360907102386205;0.3178111494842911;0.32503552610862735;0.3318567076194193;0.3288598675517413;0.32292854199584564;0.04313572577058572;0.1712767291395784;0.17327179280777777;0.1256808550399061;0.11910052172056394;0.062170165007334216;0.22933095517633437;0.4376675728302971;0.24335587332897815;0.35326466837965337;0.3089891233585799;0.3046768828597915;0.06564633279029622;0.015621900154105733;0.37794766586789275;0.22272327623993035;0.35339309040407807;0.1538396838337958;0.005792507559110168;0.41020884043527284;0.05459366009924667;0.06446659196710855;0.06338850349972443;0.05917839546955329;0.3114445312841411;0.26664184671360724;0.21637069220614846;0.09048345758127586;0.061387555554059774;0.3804341635929154;0.36357868924059067;0.24329131980086802;0.29881377683202387;0.2368072574225837;0.03739497138884101;0.2461205839136931;0.25373765667391907;0.31221569137002136;0.300648279679149;0.23263554193734692;0.28821447718350757;0.2988573587520584;0.253919061977479;0.25134334082583243;0.2587268814939351;0.2529614812883914;0.24301073104183232;0.22507295652934997;0.0788271314553463;0.0881687037610019;0.041181886615866574;0.27807810680951867;0.26223402348791575;0.040809528687365426;0.12473663321650164;0.09868971788807294;0.0903085372068823;0.047965924029599045;0.0405819702119512;0.025482963730531234;0.012075712894129897;0.2685582836171003;0.29660795233799475;0.04629848743203346;0.08794405255543368;0.03363451175537974;0.04147108139192381;0.12101427588563274;0.03751771644132919;0.04638920969179509;0.10443441106864997;0.11112935167176145;0.06715455161023068;0.1019695374372021;0.09719864074959003;0.1138793270786577;0.08798485826710205;0.11846275581780177;0.08240052680526726;0.11514296646984178;0.38640195803355964;0.2813270983744288;0.3138258529527776;0.3039397820955555;0.3462973284834398;0.3572344462223057;0.35724185856379537;0.32041164631466373;0.354045517718587;0.370092937822801;0.06622547914347084;0.05912592975397215;0.06168232463846549;0.2705474095413385;0.08289138802217798;0.1886194002049703;0.05481420490804222;0.2608239418311685;0.0836296522790351;0.0964825046980209;0.015510277113814488;0.01777440187096165;0.11717412034646645;0.12371400394693646;0.080041971030662;0.09456353762877831;0.22491701697656374;0.06092164659858509;0.2164275714602345;0.3488664013759231;0.045454669373743935;0.18619192560907785;0.30363741742408396;0.3865069708177829;0.413290904012409;0.2477608723246497;0.3313319562631343;0.05747553396636224;0.11299848966824119;0.19289530176054168;0.0950070767921617;0.10739146235598075;0.03930465266891468;0.12965823078151137;0.3045490955443229;0.18511995671813447;0.06608879744740678;0.10751617326754183;0.02794116451167057;0.353295020588905;0.29133877812627823;0.18444257766055638;0.11658635090929782;0.11175324806768533;0.10663017420797123;0.1673926078397105;0.0801792199535439;0.06103102314748098;0.14571410790151162;0.12864628483063037;0.15373631747328906;0.19637263419852244;0.08249520430545997;0.09397455398071135;0.13942917989833759;0.4384067140164426;0.2061615881097704;0.043089635207554516;0.0721105520120514;0.07273974431127812;0.048342054776477676;0.18773132174345517;0.0858593419967619;0.14524632053459255;0.2579661382823507;0.2520279007282407;0.042125941059849376;0.12766029277032467;0.294911741916846;0.3816569614134836;0.21938221404925012;0.2526035121990794;0.06161182883531179;0.2049467029904695;0.24959567474111163;0.35542201210991803;0.25227724038585175;0.23948437717479884;0.25547404556055353;0.3634245759759649;0.21722220823694374;0.21001335363873078;0.22749620291965622;0.363887013990171;0.14212021276724934;0.2772291511030634;0.14622285068303303;0.2060497227230652;0.25845240284902227;0.2603238586499424;0.3148799194917428;0.3057223721349007;0.21032024645991024;0.022287970777757765;0.15930635822289435;0.2707405059438775;0.2713384288695625;0.20270978025976913;0.3394275841869969;0.11282840191518327;0.1845175250854688;0.41238891004113465;0.18940468373543182;0.4785710049281532;0.15024349637113013;0.10094040677213194;0.1039880181968278;0.10908532829137765;0.34089112980885933;0.3551671413584408;0.3199380476654112;0.3832498309307737;0.27587108980040026;0.3408681662930143;0.2615496565640864;0.2630369376443518;0.25189902107821077;0.27149643655245415;0.31429921538649613;0.21597395073641806;0.23865171974037433;0.23814018735566023;0.25979952574196385;0.2781838847611073;0.24095039855474867;0.10770872901259954;0.2627982650685164;0.19309803215824903;0.09554769656486156;0.24812813005219292;0.1639702195253067;0.17603487335017343;0.16512426789984902;0.18350316709027994;0.30092841794924247;0.3338181698200488;0.33580082769303293;0.12704800674010003;0.38845312017880657;0.08123606032508109;0.036967082822444104;0.08257539725758467;0.2568046522419486;0.062027502539698534;0.1165510327240312;0.028903927400632863;0.3627464560888609;0.03093863273203714;0.025439937766059986;0.18389758709529225;0.021279230898326312;1.0;0.698862241300589;0.8214168649576398;0.08683388397308377;0.13139214195407986;0.07383992239703345;0.1758083639276561;0.040994569288472504;0.08215227297785298;0.3145732038944523;0.013422102803545739;0.02423858887997759;0.022405531005849813;0.12406975900607205;0.13025435266897398;0.08019264307709069;0.028705002413377152;0.2899802793717248;0.16140417346894856;0.0648323021598583;0.0385885040654399;0.1762895761758301;0.029359339203430986;0.020427313366794878;0.06261869960903638;0.3134936934105458;0.0983619147958582;0.13311046422673875;0.048146779353700236;0.06546104679311578;0.10014902846694886;0.227364346433713;0.15355952666919073;0.13432871860087425;0.06012635713461689;0.050766425804037646;0.2032908989188149;0.35012212398834525;0.08018295845664686;0.016577026511613628;0.10241581021049687;0.1515037179080607;0.07367569021081;0.34795866400545;0.09416123693785834;0.02132368881249092;0.0066843934904515295;0.02963496054208964;0.07104616617213086;0.14418584504792714;0.3236300675480915;0.10661441696644766;0.07007367702720944;0.3544883731990601;0.08804375656589408;0.27656103979408136;0.13408426793531686;0.13364221307452948;0.27102141235736116;0.07158608110841856;0.03579682699200016;0.0763029945095099;0.04719243907801301;0.12581913799732328;0.03924352122153146;0.23314190410370153;0.04041790292040843;0.03807748715162731;0.10018184654259317;0.11156879342580542;0.05633159242141953;0.019482140951028935;0.2339286544982699;0.44409175105447296;0.33316457449063086;0.28413298228584477;0.08439981524859914;0.00997837931520128;0.10030313063763487;0.07420091264113848;0.11228526640629555;0.11422046833162294;0.22459796613135843;0.14992120551352253;0.07857268323074391;0.020263908658179286;0.03939865057077412;0.11562307420235539;0.19118013951792762;0.10943625215594024;0.024896082131403343;0.03298527938001233;0.07539908039883385;0.16550526731196857;0.14800421870617536;0.25144498511832825;0.43670015793955136;0.16006092653308365;0.1751221176157647;0.42564153995262993;0.03890468538662495;0.12428376402027125;0.09714660360093343;0.4220075831666283;0.1817489332306678;0.11035961471324782;0.40677664783932244;0.2921386357558683;0.019346952163643558;0.024189814720983752;0.20507057763436165;0.06793809679352945;0.24211710339378792;0.2024964228644392;0.05132630117538554;0.034612115557702376;0.43604595710290606;0.45478257237656455;0.37655455861064363;0.328456758896439
+Metobromuron;0.3516298787422933;0.3538165362789141;0.36296131139757;0.35743895008639903;0.3672919344392699;0.4169684698031481;0.18809277628722257;0.3644278247072737;0.3633995578760434;0.36698102264763677;0.1410243056619048;0.38197565895202473;0.21119610533427421;0.36779713594443325;0.36018733878953024;0.3481378951107145;0.36835040630853594;0.3641934486923325;0.35309753065154553;0.3618147133120544;0.3596559709551649;0.3660224971654914;0.3798628194688113;0.3717513490772279;0.3773561123024455;0.03262953762556458;0.18834733538100812;0.1804153132218648;0.16275647853561348;0.21553651418890626;0.1788784937741369;0.40062160231251215;0.23268643184698343;0.26812469547652357;0.42272277235092853;0.3823878710006582;0.29395900708507233;0.09166259421113764;0.014940591854958404;0.5330120850430083;0.20857587005773962;0.4336749690456763;0.18874304900298655;0.01479569935144765;0.37606111463709313;0.060450919592673576;0.06265728971856421;0.06205012462019137;0.06608683529125044;0.44108977162835344;0.36715270781038717;0.12801978928266217;0.06694493125868654;0.046132518091475026;0.4459961338195583;0.45273814167006315;0.3070793497542138;0.40009680764168115;0.30678336415232815;0.019944596187040007;0.25018603678402257;0.3355181082850905;0.4217808992644113;0.41920713830329415;0.28160856836396725;0.37985059143125893;0.3960736933211429;0.3304968512673515;0.3153967650765595;0.3286136144821824;0.32746319509522653;0.27287148278813705;0.05340135363992821;0.06643513397169502;0.058746325108610005;0.0598144762203406;0.02736655734017388;0.021545808936752925;0.012171699265429579;0.02656761354864724;0.03242785850382719;0.03190914290322954;0.03150440389847781;0.0316935142974068;0.05782022042879928;0.036303337886699025;0.026626894882443894;0.03797920767082848;0.3038457141939961;0.17497895682782208;0.07395219861538256;0.05670759149719581;0.16190798316558136;0.05286709454845806;0.06688486462958967;0.07637259655765372;0.10560226360828008;0.034354842244348385;0.15360974371428301;0.0839513856862872;0.19564774579598693;0.16755300335136222;0.16802850370891115;0.1502454374616153;0.055749628872533485;0.4567859610541037;0.3368088542003451;0.3775749751673106;0.39191604292276644;0.4814769823849405;0.469584749303942;0.47555545705066854;0.41700916037144026;0.39751412978721345;0.44022040464056855;0.054393017485105;0.05130264882189061;0.07263805136529662;0.3657551723031566;0.06011320850989406;0.050573461122859674;0.06402160233440196;0.33872452451681845;0.010675326289633068;0.0031073785810099915;0.04512002235849904;0.0519266339363398;0.016008442775642617;0.019388939380994005;0.015476573866461356;0.25425364173416815;0.3886833122264526;0.06752169030733594;0.12773368672969762;0.37419339535912743;0.14228556297419426;0.2541589788118898;0.3647447471946088;0.504603914294233;0.5024072382887352;0.22995799875190295;0.4453475590569912;0.2640396888268963;0.13188266595017745;0.3218577137610753;0.17500359433843327;0.21025034330263473;0.38300920865759697;0.10779376834257103;0.22826946743968976;0.21905087740778792;0.21694524906729848;0.12274875902459322;0.054198658900521654;0.35677554515022425;0.32979753944813406;0.19366536241016305;0.11626259588454703;0.1551146317363138;0.13416445250242198;0.16938276251780532;0.06351924781543151;0.13219845383320541;0.03926136724196764;0.04063236573840721;0.10477750386629774;0.09317992863198525;0.03252939051560698;0.04697396576681443;0.07380505535299443;0.4316901344638526;0.05950356530098151;0.020492661700380957;0.030832667618597515;0.03620035288937354;0.07681880801199498;0.1300959325699819;0.021623115459837777;0.22829187407822893;0.34612922944876295;0.3393267549471798;0.02135698817515553;0.23725673937476435;0.37466478899922323;0.030440337068928836;0.10812362431648116;0.12678442398179798;0.00038480627294020425;0.19858700502011312;0.2701972392808849;0.34421369515405353;0.27172103359005484;0.2048548316670955;0.2793638650717453;0.34485343170068894;0.24540947231666488;0.23741220083978076;0.2503902490602448;0.30994631588585714;0.14315221796779365;0.2813764328045583;0.15792225521441614;0.22439072456035813;0.2603484421300203;0.16120369716894553;0.3740482171259747;0.37880234923695644;0.3345292879366278;0.017643325828894347;0.03432293706564369;0.22379627483712647;0.30156856944153293;0.23645012221006753;0.13742621557206453;0.02640795742418864;0.19809443720622064;0.23788344431055256;0.059014195521678935;0.0029792150924810566;0.05260356274643974;0.17343969067147402;0.05990371048272871;0.03580974672508007;0.40910927764793104;0.43008193771440956;0.3342997515021885;0.46105987243665425;0.3499694117077973;0.46517306800966485;0.25834093276263936;0.26944224439889286;0.2454059588097812;0.33391021082303096;0.4066292058124195;0.21121486748030163;0.29002280616553877;0.29071041936554065;0.309830718995583;0.34170558514128;0.2973394744661983;0.0940434708743127;0.303274840716566;0.21835141809262;0.1586746775556405;0.2280405822577779;0.21898622699563988;0.03495366582032123;0.011650793122658579;0.09799764455054953;0.09923486186631944;0.489306970841903;0.4912128561073557;0.03893017852811478;0.3807625461932951;0.045963063189601694;0.04097550818879251;0.034162271183390484;0.22032617525829346;0.0700498689848347;0.11981469838474551;0.06418011958924141;0.5300656684877387;0.0038694599302171724;0.0009867893344944634;0.0850583611580739;0.07359343804707796;0.698862241300589;1.0;0.8169197635041451;0.0873087646597169;0.06329034959726085;0.019438411149614514;0.207023403411506;0.05395323336482198;0.021661421289490303;0.18979268877500283;0.013712362335657565;0.050816423752320365;0.008562583670517782;0.1742101354320777;0.05294428082502787;0.02706426474673263;0.06283090480150003;0.44561147228160075;0.24378260722711162;0.12048066881771484;0.20222769739046043;0.2272863887279918;0.016490998111594192;0.08257063312328829;0.057149408185770585;0.07513299162106164;0.1350703391824853;0.11471934568035518;0.04253250499662273;0.08009169999111022;0.2600475566976287;0.17149960039164824;0.006859703608469253;0.16641563960459008;0.08115902016593032;0.031345327990685706;0.1424494890436421;0.024561162036420267;0.10360942381175443;0.014952061336385112;0.08692501489671522;0.11591828173927601;0.05172777152016945;0.28685628990082984;0.055122401020740786;0.023742068334899946;0.00016984325514553454;0.005213770451802229;0.07181120204345828;0.3151449285121454;0.32941507509091417;0.04818594985926832;0.06338415705221136;0.0983087503287678;0.01220117358353883;0.0992750961184842;0.054444761466203646;0.2628233491779974;0.10693560869517447;0.08814603808904767;0.03407806298502719;0.017251871405545308;0.055581445241292445;0.18483044423729458;0.03642575825874307;0.23553627432074664;0.05698645442594436;0.06621301785135311;0.0568577847022565;0.10763873997659787;0.02192545554497436;0.06278128079875316;0.27187034202603266;0.3293319109401511;0.5039829439886693;0.27335516031119883;0.3096602042324296;0.0033900671595494805;0.0026016368370570617;0.0680896710283125;0.25275749120252783;0.0065622553677486635;0.16460211271046032;0.12813683617337365;0.04052401395554558;0.0037750823741014984;0.019730185486145586;0.018182383008277986;0.23121850786780507;0.07429979709316273;0.013543647711671051;0.03562514734724113;0.025010770470229426;0.053656473251336406;0.11802671552568193;0.03343463887130038;0.024734032672984636;0.09164051372259087;0.1384005738741535;0.030854707135598437;0.03619821792533224;0.022435493672701593;0.04169010062326592;0.0526615134426225;0.13801892539574498;0.01426073626370398;0.052463870383453376;0.3473953719949849;0.011684077584533338;0.017285873371739813;0.13244847466829063;0.05649846860136809;0.3009646603686163;0.16149438280254313;0.08708035289081235;0.03169213799084716;0.4133557945222559;0.5267223334990493;0.29899104486192735;0.32098885468030136
+Monolinuron;0.4013070222157004;0.45011232730130807;0.40986127954214585;0.4067130977686135;0.4209078881581641;0.4587023871601431;0.37220228291071256;0.4197095326726835;0.41725356041196926;0.4301141374339525;0.19163132710594613;0.4114831246514209;0.2675452185848833;0.41601503702805265;0.4179594655969356;0.4166544181445713;0.4439489122036534;0.4542540120411222;0.4373908714601146;0.45335607628915275;0.4126172303435334;0.41423418753527974;0.4171724543931056;0.4331587655179768;0.4133149875795864;0.04402592330670269;0.25040675448424793;0.16892933938907043;0.171856969897364;0.2615568921602038;0.13052633278831893;0.18620164932904962;0.3232646203453778;0.3158268190336844;0.3415189428801576;0.4158827993845796;0.3963436365326197;0.09841674643976986;0.010227225526021566;0.36434423263782484;0.18769662102055634;0.3442052288503271;0.11228178556145649;0.002681856064013477;0.4828477579481047;0.035074571463010594;0.04230810060123502;0.039464529268018494;0.03755674631005603;0.2979303632529209;0.23639085132678864;0.10424085387254052;0.09084517102614609;0.039565004920976685;0.31498222785927993;0.3592343502396999;0.24027167162339502;0.2959587892052891;0.22313242609929138;0.0327451730969644;0.2109642214317805;0.25236994042316147;0.31473954678908167;0.3115441737642621;0.23054210049866783;0.28416356503016893;0.29599279471821355;0.2409182987002649;0.23900054707918722;0.24195890053730182;0.23159354338039015;0.20364576631050232;0.03650927731297927;0.0512825548173073;0.16963662248895986;0.16713889303779986;0.020698222345563205;0.00603379926437846;0.020708631761850456;0.07828761623440494;0.06411350363638121;0.06254423706464349;0.03389137576983847;0.02877312851230656;0.03787531939570358;0.02154228387394956;0.21209964578757273;0.2229086889803268;0.05115044383516482;0.10031336923377149;0.02596411661476996;0.035304666423456636;0.11549771307012346;0.08770132187186455;0.10169687641449701;0.04515463984343451;0.0361895220637477;0.07490704129877444;0.13966369093257794;0.13826572858688466;0.1613829909361494;0.10043488534162963;0.12506556206370084;0.044959759752594586;0.1160620060917122;0.3893046743210067;0.30233633014739125;0.3342856812150797;0.32143406811533626;0.37450917607465933;0.3745745441215779;0.36459437660441735;0.35703372086144775;0.3656597390645929;0.38194435697992785;0.04666462065694085;0.04393218732141962;0.08913991121282344;0.3074365497817457;0.05860935816909407;0.04471402051309637;0.06958083330325468;0.2882425897932658;0.03950888656003556;0.013553211742855608;0.004843957625439827;0.012148199651207664;0.027695817209844854;0.02901566024338002;0.0315798595115783;0.07221594394039703;0.19100023897344165;0.09603184982227395;0.07711724220691508;0.50270904278167;0.10993617626490736;0.1951829052509153;0.33271172559175544;0.4354002992225471;0.4650790722642566;0.20952181349112212;0.37633800315913746;0.1016427920915876;0.127376649975346;0.2605320358468869;0.08830562844205907;0.06628522902856876;0.07424577844291771;0.06230405911579286;0.2318705173853079;0.26458335099276625;0.058847837695494405;0.134667887118249;0.0533170429264403;0.32589033922675364;0.3478817406284941;0.2586451517597627;0.15982331492761534;0.1601139183991746;0.17976569923872948;0.22429414129655512;0.06738568450930843;0.028942041597270193;0.06855650399284856;0.050369349935270834;0.01604078686210048;0.09419177211351644;0.030323229069602806;0.04428154961416722;0.07240696611728138;0.4634958043263862;0.06133817913481655;0.04261098163119832;0.03740727236935857;0.03706333452199076;0.06746654169291068;0.40508097538219134;0.300118505594843;0.17857549544572285;0.3404177861494755;0.33292526865436156;0.02605132989106065;0.18299829936190737;0.38608314858561965;0.34657758522422133;0.18034180734287314;0.33753123841845295;0.38891889574989574;0.23425448546289487;0.32771279760113337;0.3928028029165321;0.35102274550560675;0.49670760143838744;0.32641824687046694;0.3072817313986677;0.28863635847455477;0.28078483485872924;0.36255465871904236;0.29159971018334624;0.23305821302478297;0.39302306582822677;0.24115543882846366;0.3381539867087249;0.35078985594801804;0.2141071207048956;0.42060031595596115;0.36870090098308117;0.1599698085722595;0.03569345800015094;0.10217944880891495;0.07276995187064897;0.28563286960131773;0.1365804158567462;0.41409145170945655;0.01968408175478937;0.21385241934409294;0.37417261743182983;0.0890944535228812;0.005652355935020197;0.0755999682823736;0.38204325997508815;0.06084153031655457;0.03509863841770851;0.4583630110508407;0.4145817277104829;0.28294930579678934;0.37031529419154174;0.2699843750817648;0.342003379549184;0.22738594109861415;0.22512873310482084;0.21239189891809712;0.2750335596923476;0.3114500517624257;0.1329361777356565;0.22017479407765733;0.19394620678930366;0.2163562914666997;0.24071439426454985;0.2304425387117665;0.13164914866062116;0.34393945064209636;0.230364547973035;0.08495039057941314;0.3105800991671798;0.11189691954002491;0.21379072052553455;0.16055384421992633;0.1959534743391611;0.16648434916416407;0.2888982364966413;0.29113733522363894;0.059088054794014015;0.4075678551019076;0.09369609745889894;0.038773185285730344;0.02359001852245123;0.22545404354511234;0.1195088678626344;0.13948658582167642;0.03578339608920551;0.3243277270585577;0.004395509315162355;0.0042037230629402645;0.1881015755945218;0.048740097118129565;0.8214168649576398;0.8169197635041451;1.0;0.11015604182015575;0.10414665100841869;0.1936079328026969;0.2751479393282624;0.031219842234720442;0.13518437256305862;0.23534286820022188;0.01496532958185519;0.04841069341267836;0.036527925032746336;0.16795520607245568;0.15407472885263926;0.04311453532681458;0.034999795344381184;0.35570551099175246;0.09378788565855936;0.05799459668501915;0.022834511852870006;0.1930732409934062;0.03496746079930008;0.07122969742612602;0.03364124566268158;0.18095408862994325;0.05215367248134199;0.06748791487113309;0.03676251775830256;0.08683954298772346;0.15126534184014243;0.14685277337711;0.14543380481675228;0.14578074826229617;0.04170421739428183;0.020687007564087805;0.24480052628154475;0.2157588701608019;0.10542705164437183;0.016312536561557723;0.08111143215261475;0.23748936368451168;0.045087254403625654;0.3878006419395643;0.09301122179096527;0.017747932454843466;0.0005286813217119216;0.005357202681699854;0.0880580835531047;0.15585568682742007;0.5065431481109393;0.14841215335964056;0.07991703726875271;0.10098651676659824;0.06400860628387747;0.15703377592503814;0.10408990678708455;0.16930480129023628;0.11939768921460497;0.049344734853137964;0.011545484854867644;0.014928140658533321;0.02433240892145775;0.11668196008199809;0.0192135171668864;0.2583257297560207;0.04160009666786531;0.03941564388708944;0.11011545451146919;0.14424009481604702;0.05771085441554446;0.04104242924728526;0.2923479802029387;0.36752838418952744;0.4285254344412911;0.2648090880011348;0.09102109530930726;0.012376550034439784;0.009237349179815028;0.025985751858504352;0.04750953336263642;0.0958275720820871;0.1450763274121562;0.03497855799481873;0.08105633016707571;0.01178283888004107;0.02369221354704915;0.06784309842985005;0.1890678061858665;0.10089754642337181;0.008384319790529393;0.05592077495492762;0.02393447775691856;0.3571959625966858;0.11263727650396194;0.1783279548593094;0.04933761321222473;0.048741591408048596;0.12288691038121642;0.18607781163106393;0.014154949826219735;0.16156138232070735;0.1849834145991073;0.2597376399664288;0.11340029242931106;0.09879044766000167;0.2557971173305087;0.42351333215409354;0.2342911512474754;0.2251207932820759;0.08167680622296208;0.09616704922156746;0.325414527566571;0.21047903073691734;0.0950478207370889;0.03159896784485001;0.48346599222025194;0.5341451472473808;0.24420155480450847;0.23821868337793292
+Pirimicarb;0.14016873753006406;0.14350595779563421;0.1445519777997642;0.14679400569121856;0.14717292780689065;0.14652065823240726;0.08714714659265659;0.14791554550671898;0.14760306544412236;0.14892748336372474;0.06093131604485631;0.1618948752084945;0.08462705365070604;0.14503602998509188;0.14478451837395825;0.13965626126833744;0.14835926662659646;0.14609292125026277;0.1424582209548096;0.1451635564383603;0.15196203733577188;0.15313867304115417;0.15224040997723934;0.15319003085712884;0.1587963420675321;0.000670617932041796;0.06905856022622621;0.1602449058984959;0.048063092617315596;0.06526580100014673;0.041172714575288615;0.03306849803730908;0.07275260898496276;0.13101929066819695;0.08762850182738639;0.16445836130352126;0.11865672489192672;0.03577886662180408;0.11093872798671305;0.08379003702911701;0.02388345459111868;0.10695917856200925;0.028839272888932274;0.00035002368915278137;0.01753967196080051;0.03283504984863677;0.03325871888777559;0.03188771334915262;0.03356777459879733;0.07278206762536248;0.05005221544461555;0.02373172346995495;0.0739182017799134;0.06265376212173342;0.05893461149749481;0.10641783374577317;0.04810014682333064;0.0651564366828853;0.044813006294252396;0.004231850876319787;0.03182952222327873;0.0620389327490694;0.07942814065760005;0.07666101145301231;0.04740583169287519;0.06192608013892754;0.06470520506012227;0.04754328607719936;0.04775569836932274;0.047084906811383595;0.04459380622218399;0.029990077157277722;0.02813782855106558;0.049351395966206565;0.03767826649068062;0.032226474359834285;0.007164200955412436;0.009413182951868585;0.5349681008330379;0.01939859050608;0.04710334790316389;0.04669420767434562;0.04022782725265681;0.032852137314103864;0.006292445800433371;0.0019101990490684368;0.028173172036484652;0.0373056852446432;0.019769987062769476;0.010858421341281406;0.002822793255506744;0.002110988980723641;0.015255880944611925;0.023721663962089225;0.026613361059620474;0.03151801408337059;0.02754307734762002;0.005768300989360274;0.010758748357661873;0.021531435268743272;0.02955732253747428;0.009822139868636965;0.013769924729944531;0.025982777993507154;0.025084473665947713;0.0948311365097331;0.08394870608393241;0.08798842680878148;0.08968554702612251;0.10732472640140685;0.10105919791643168;0.0923686211385321;0.1087064984717196;0.10696041432427351;0.10353260437792977;0.015719546576753448;0.012849328793317504;0.011455700153299385;0.07936823986011655;0.11468208281412959;0.006469989211331926;0.016363865954625204;0.07893190765591247;0.021663510606889914;0.005303195536720361;0.006322723525565583;0.0003315181202520703;0.0;0.0002198118674155707;0.0;0.01496785570170415;0.5824413625081564;0.024552945883994225;0.13645227611062116;0.17692683582653226;0.007754043829644457;0.13516767501544116;0.05526803476260116;0.13350758838284116;0.15444370264987922;0.09031144992733856;0.15116378116141174;0.014545423571730434;0.03749714793715456;0.10077823942339295;0.041926141181042265;0.010981837278922;0.0038730201396835564;0.13420455758873182;0.04463360781527217;0.07741511093488897;0.013954356081163997;0.11641086320167729;0.026630763614277814;0.09868655863594909;0.10770704714108838;0.10191490985858076;0.04391581555292405;0.06524274515142175;0.05203409488362596;0.07755902501455648;0.37720425083909354;0.040831832692353416;0.028430057376062606;0.014367977509638651;0.0020460979321788334;0.011493769762115998;0.007801196646221133;0.011893819947375572;0.03401650681910173;0.21519876471401686;0.014245216293615123;0.008442407648548015;0.04894412393403311;0.048508762339559613;0.024440837886065835;0.014056879280465383;0.004655181777562659;0.17377827791717004;0.15636612784372494;0.1374754211050585;0.004459844028659582;0.05221069926026847;0.14262709675382734;0.014916379343889558;0.021222716069138323;0.009533686103464134;0.0;0.07941083726787408;0.09713209788051423;0.12066893230125482;0.10879436891502446;0.08233222558068504;0.11467347512337568;0.09375419614345978;0.097193022567358;0.0944505147604134;0.10324393416655508;0.23987092786189015;0.06099563226694008;0.1514341677715263;0.0631495793808605;0.10634973564046822;0.11198422925653208;0.053679833998914205;0.15190834413796306;0.13439808363484;0.08539503217514424;0.0;0.021241363715663625;0.01677605403813903;0.24023092774721194;0.06370375849092051;0.056938539136873675;0.018281347382812695;0.05706960057827638;0.09476657275782213;0.12771476521649272;0.00016216628579105395;0.006779554001230448;0.04045117656849051;0.09931789733605335;0.00595927312615727;0.13388486880354306;0.24619221323352664;0.08615795766304207;0.10934542499156688;0.06727409147662144;0.08464487229882145;0.032543093754341154;0.03360920378827768;0.029533234264086453;0.0548681651793001;0.0670719238721818;0.017536861164782536;0.041580194975932495;0.03226975332085884;0.04169395809394232;0.04544664395849783;0.04260985315160635;0.05543851436256836;0.40353674503075815;0.33131656580575697;0.03410329507041702;0.014721944952197296;0.010248789446398532;0.009813147471063934;0.029926943350891563;0.030079130522432933;0.042138892430678546;0.10349439308160235;0.10456568306694819;0.008573101668818058;0.12735814052158925;0.03885878648322963;0.005156873231795924;0.02327700393335193;0.10333440552652227;0.4932975339025675;0.03218853485781523;0.015118714768379365;0.08324837913791247;0.04537034229127065;0.0006037748900677036;0.07115444602804895;0.0162479147532088;0.08683388397308377;0.0873087646597169;0.11015604182015575;0.9999999999999998;0.003345325899289947;0.8849485021600827;0.091413009990903;0.5162127072852335;0.2078897363689589;0.10616069067846562;0.0025369610298457677;0.002849001647221679;0.22419750414229372;0.015390802367695392;0.01693132552919995;0.05675381119239645;0.015001381020949112;0.21703569525707903;0.004061126843394761;0.0018496199298628148;0.0;0.15508352005853385;0.00471969954183343;0.010932326452465;0.060798613458032794;0.01876996086450339;0.015362930465883861;0.011962503261523458;0.016284599736990493;0.03094508046871261;0.027074789202213737;0.054584645089011716;0.06077164618445929;0.028022815882889424;0.000696425569039449;0.001692905358183026;0.14229606333697067;0.02164405545411608;0.0373306874210981;0.013035119254992634;0.024032115732140796;0.040502840212864925;0.0007736001886792239;0.03936771540646983;0.04683897214218702;0.0;0.02112698933580648;0.021083577744198636;0.01876196493428224;0.05032439229762917;0.1316770589697049;0.06587338023245608;0.030497159607283147;0.005193336853007538;0.005234933161787319;0.3306669981794966;0.017119783532780597;0.05917027245706823;0.0506403701166963;0.1660532008134338;0.016417181517924;0.03944345084907463;0.0066801178355947255;0.08471439857176039;0.004809469912618452;0.16870591216508365;0.012664016796525434;0.010122304675310057;0.00489158881599246;0.07308370868458897;0.030303575226863735;0.00426103769456779;0.16524394200731216;0.13611750840231923;0.16353775515927432;0.07014779505161632;0.080126481405347;0.0077288931028156975;0.001900700464139377;0.023387005031481584;0.025586021083230034;0.004888204214111709;0.02095164150767563;0.05831736845595088;0.0025545839074024223;0.003997950379885046;0.018339731171627727;0.07288498044025682;0.03784767367119835;0.01393334783228267;0.0010992043649146624;0.028427722100727665;0.037221414756378336;0.008271320487019326;0.03376661630843483;0.09615993540322652;0.00494828042446974;0.3543011699983504;0.023880911441924304;0.033834828538378305;0.005121248704842005;0.022531131017541544;0.006193300895942831;0.05275980140259242;0.0393987377211411;0.07767907580524924;0.07380553077718897;0.13740566714732758;0.0034866840102756942;0.0074958716883741835;0.01447820599659302;0.01894711463155952;0.08998634958698482;0.054210409734010936;0.027471765402677206;0.12475242413272862;0.15447801107836287;0.15260207271345097;0.05297895593261419;0.07145396369303544
+Siduron;0.01364826987227175;0.054890502865427133;0.017796548573833313;0.013924813819060055;0.014061919781123058;0.055433640138239905;0.007421120796656858;0.014447162166162921;0.014421739201187972;0.014527244624772763;0.006617961016869442;0.014199100761364365;0.008278887642934303;0.015479415608615106;0.015582245552903612;0.014857281928700257;0.05515077901754117;0.06101830716404951;0.07204015554966119;0.08558624627766803;0.09575474991762181;0.1212538112804988;0.13803045156078753;0.07336072065876358;0.030076172857850143;0.0006440834730796673;0.00870601454078499;0.040579646235964426;0.005500804539649845;0.0776327075248382;0.017959727313559826;0.2440653796895459;0.01020053171691283;0.011213959754081898;0.009511074471550791;0.11352607835646387;0.24732079638971735;0.0026065338141952337;0.00020747923947771776;0.01022190236273974;0.003682864168266011;0.040082133920983906;0.001870267041042074;0.0001997245038173829;0.004811004909399095;0.013602651601523564;0.01729343585183108;0.0063292731970421645;0.018272085912396582;0.006649926985937736;0.006413671745482512;0.002607520960559873;0.003958025361023309;0.0009778372440923716;0.004946846749626252;0.04661958545575298;0.01682268489365394;0.01773665076668593;0.005563482361848032;0.0019238398551743845;0.004175057543946419;0.02359077894915059;0.02215103320814295;0.022213967843418562;0.016563870982169576;0.016476486313455378;0.016792614707914672;0.005808106143692396;0.005835287085407634;0.005948726857343728;0.0057643886500807935;0.004126115150825196;0.07271216290194701;0.0594683863708455;0.04673746387746027;0.027094635389765368;0.05139416660775791;0.06615353188501927;0.0;0.11195869866938633;0.04238978196128834;0.020721046057019958;0.06378179160617806;0.06122015003218326;0.001432645683931885;0.0004825171823045729;0.0002794613991641491;0.014105195082258;0.14796328887895283;0.006170987939380452;0.008695693602569566;0.013013341540801446;0.040061602986453636;0.0;0.018542954488026106;0.15368426453198697;0.15046052220437783;0.11859554392547858;0.0358609863149461;0.03303092683779565;0.05219461850993007;0.02744408185339095;0.03561284744063808;0.010456463142114937;0.00029127305794336906;0.010487565400019244;0.009287685528341201;0.008868811340657954;0.009774920480498156;0.01215940937498306;0.011175660567757872;0.010764078488197904;0.014385057729600274;0.013288399500241192;0.013788770688091253;0.008182163919178245;0.009665764685823166;0.008448195843201006;0.011464423733284695;0.01963588312773531;0.006619635986240232;0.009206890801666593;0.011702786525219935;0.026059124110233776;0.0061749762245535455;0.012324691552132096;0.01702331142277304;0.0035463334769946183;0.006597879004548904;0.003429897408918844;0.06846497373589946;0.003352231438368024;0.0024346187675394868;0.06269626485184748;0.016653240268140926;0.0024332963021124203;0.00605368701553981;0.02505866622050161;0.07041753586150144;0.07000518322278856;0.03717624843996492;0.02239709720704411;0.06845544649676104;0.003673411060125587;0.008934764677109273;0.0026235105123063956;0.07033039853833029;0.023922088145433305;0.22359856822907329;0.6029835400775678;0.008072457668385326;0.6198534891720012;0.06818623306533288;0.031244075209191428;0.015526030209933279;0.10778721372727164;0.026581943995596814;0.01332139681468785;0.006742413802857893;0.00013893751835218903;0.0038997823013483934;0.042083649003842094;0.025061650761449412;0.011779236291436934;0.009102933108174135;0.023572551829455085;0.017568899804585914;0.008619792355560612;0.005009747999175545;0.021539824902215583;0.007055447473364835;0.007040953909724853;0.005014611489238397;0.01032392984220019;0.013923725866462518;0.00255037689190907;0.0176087479619735;0.001475199404544709;0.0054421840325588255;0.011142361013099435;0.010831173833991238;0.009686807910176181;0.014692682731876247;0.0734272684651587;0.05545772560569308;0.03289592582338686;0.0014388492434229145;0.0060977429329087994;0.036056057475846226;0.009954104566373226;0.047559976716627456;0.011252171841619892;0.007986732130474771;0.012681885978508332;0.009009054655328275;0.009827283439069804;0.009538000687885368;0.013021358396109187;0.05944992985406233;0.010043382603655384;0.014964482372963819;0.006156389331587052;0.011482024613555934;0.01140059553956082;0.022820672289566864;0.01553292823420357;0.08203253936272448;0.07476177467305778;0.008895008282805502;0.16104293679071208;0.016229163359298925;0.019862850774426677;0.061814854887302186;0.4552317906308554;0.022844542364206008;0.044851722535624826;0.17256616907084027;0.047732311747985666;0.0676352810392324;0.06841021270577008;0.04612066518079424;0.007417356941813614;0.015312397049929859;0.019792086931873135;0.10323832410197119;0.11644805930133278;0.08705640719722767;0.038219552915573704;0.03073977062029127;0.005581337342388861;0.004478172681387229;0.004089595720196955;0.022253996474724484;0.02093143396118412;0.001775191228092472;0.005304334142453625;0.00565457363595953;0.007349874641663143;0.006661052881345445;0.005370922797894843;0.0913733276251231;0.018792136830072925;0.008166826628103096;0.0924979078072051;0.037916287924086994;0.00034978094871132055;0.02638161461079107;0.017082203065576597;0.054512605046777275;0.27575960228031443;0.0037747596369080718;0.0038263696399236024;0.018124154622605852;0.24633235748240082;0.0050715031441481455;0.000697518550666293;0.031231545712942323;0.03338760022350535;0.0008138051066083732;0.017025991337903612;0.032628513841551354;0.8082134612772728;0.00020947156451342627;0.0;0.04485321933721348;0.11481495161610937;0.13139214195407986;0.06329034959726085;0.10414665100841869;0.003345325899289947;1.0;0.007069856165801705;0.052761125931647085;0.031190887406054156;0.00728029718588687;0.008453741548962671;0.01628585971352445;0.10402664332627835;0.025955005442920395;0.024849930288627864;0.004722952279725898;0.006391826030954553;0.0279604467127976;0.03193857243464758;0.00030132233887350085;0.003614108792630664;0.02910418634738752;0.02423495915195873;0.0010488766283296366;0.28071555860712494;0.0024033733305829233;0.001947769999750951;0.001476423487142291;0.0016420786914569966;0.0022021461951259643;0.0030409714970597943;0.018515164658228573;0.07142285646508986;0.04881912436270331;0.06353202604278504;0.00905448541780907;0.03850991775977436;0.021312878190056422;0.004255717620143059;0.003959509544634818;0.011522997232633503;0.005777442305498375;0.03707404325750098;0.0006534696348468066;0.021335664400859235;0.010684372117679398;0.0026587633532909644;0.0;0.04183931900756315;0.06173006525870529;0.023561466567816474;0.018815623804528385;0.021671319407708493;0.032971529239784976;0.004814204567927169;0.023651028094082795;0.015452595419702595;0.029698664931221367;0.03365011476637448;0.03363646192260148;0.03125097313054748;0.0;0.006028575539833456;0.019940453649788616;0.003325123509556773;0.002741218652748683;0.023162583559520056;0.038563217670377875;0.0485303520022499;0.8066104667077907;0.0042014717346134925;0.04256301549677269;0.006412212395340721;0.011155713758577159;0.017808052328323942;0.030905924634734672;0.014007071056347995;0.012370216610325151;0.00345946641556845;0.006718046540653138;0.0013848870526173142;0.010259673474084133;0.013838034236643098;0.013368190826763441;0.0010826763545671169;0.6597740489809818;0.0015831620361048114;0.023180850068634;0.01488227705625489;0.0158491622743202;0.017756293996019964;0.000788904196491614;0.0026400548614466585;0.0025940319557159475;0.004967024008814591;0.01646441550429092;0.0004613295696415458;0.00197964969085295;0.05331829692274328;0.008593596712532443;0.033837683292820254;0.0018138560807524416;0.0075916569117588486;0.015785708466357413;0.057031320963347586;0.5689028814095763;0.019195833051298333;0.06630817245533567;0.014190202206064107;0.00018393559606023793;0.0002385176698629487;0.05754760271785045;0.12117697463353222;0.023578746075399337;0.15447607064044558;0.017214171003272324;0.027453242298662976;0.125405057106141;0.131461837764294;0.14969647541316627;0.19081119513093286
+Bendiocarb;0.02068204643618098;0.037027792437531196;0.023319245834976233;0.06649283923244036;0.06403513075375454;0.2026425712697449;0.11664726529740287;0.02244905406008156;0.02214301453728146;0.040003774955698033;0.014051867948115651;0.034583531624504255;0.013640292986674685;0.02199870390117978;0.02355163941645271;0.024568650299372927;0.03218991926998561;0.036144039075119705;0.03263215275432652;0.036018795411528325;0.02163161152863929;0.02147230734761937;0.022538633187889835;0.02575247185053832;0.03416722799584655;0.006703357577413305;0.026997601496967248;0.043230557850029286;0.019768868776491325;0.04193238560069846;0.011671162445260537;0.006054557021695236;0.056224104064416185;0.03555937404985509;0.01661374469987877;0.10742763833495532;0.1245939606066338;0.02242553200080336;0.09090824888728175;0.021565447042956216;0.018514686498204293;0.07525081461839253;0.010679424452464807;0.0;0.004967434123135548;0.049424202798514894;0.049683038395284415;0.04916946219108436;0.05109507125667979;0.01807596740890897;0.00876119177501044;0.005314671292748573;0.03278351664193605;0.02821374301268977;0.013337168050884852;0.07498085346144802;0.008766805822164037;0.01095983567659062;0.013153863554159699;0.008157958266598766;0.018738565599004445;0.02586208478004965;0.026721239070555285;0.021743553707358632;0.00893659696656123;0.010822799769533981;0.010946775257918168;0.014071248917171176;0.014681180444059862;0.014903453294913946;0.013758846503816613;0.015054949104424705;0.04856052105326541;0.04595497788123353;0.0279732575903341;0.030609215873025383;0.005259618277641915;0.011046566103400917;0.1980445199112376;0.04699426573686298;0.03326618064579502;0.03447701833945307;0.057706115640748026;0.054030111222674995;0.023324593230991935;0.012681303464269383;0.07014126412392727;0.07172349388595677;0.00906085658557683;0.0024524919012074782;0.019454281268062548;0.0026251749152014343;0.01091954719583679;0.01353629829767365;0.015154781909879804;0.03351849508796821;0.03308427424731337;0.02729546055836251;0.0426454666114989;0.013825061210211903;0.04182541420458818;0.05538411394562457;0.05297914480998975;0.009105215643715539;0.08195434665504257;0.017741258644129638;0.01426589375040337;0.013352225709342325;0.019803984140203464;0.016179851787717706;0.015071464410769501;0.018281305095746703;0.019273962588558843;0.017716459799187737;0.01707606619014987;0.0019598619829723596;0.0006768284111558356;0.0008080970083573516;0.011898504940254233;0.10091255151155704;0.001437915669977398;0.0012087656324359717;0.011871775245614852;0.025957592038124543;0.008990157524803349;0.0042639363528650335;0.003690584976834219;0.005641847581057185;0.005568774487260584;0.007754819270058319;0.019161243563221363;0.5447847917143779;0.010019379458081415;0.15198949351620183;0.07113037723922697;0.009207683430252231;0.21706457940166607;0.04549628018773876;0.0454446363407861;0.05748883412411354;0.010554502547085594;0.12105442335679067;0.06796628170262273;0.02729551066439678;0.13888849260880634;0.015291592182395142;0.0012404979686170118;0.0007477903473675833;0.3983665538331072;0.04562754980043563;0.162130809225543;0.16426309218402793;0.1236971841320011;0.022535641821179137;0.04224525124523155;0.09369848543274363;0.05605640026365846;0.08027079513237607;0.0746670558701024;0.04145916236211214;0.0497104282311659;0.3515748141426166;0.014810955177107296;0.027168357512900185;0.04109963868945063;0.0019424799127974821;0.026997871478359588;0.0052695072352935786;0.009149392356683144;0.04771766171775841;0.18545706664966546;0.003383262153595879;0.02078461000554616;0.02443901449653167;0.023006328309856106;0.007458137117079933;0.023842966504506423;0.0044552348888163874;0.05368330100063757;0.03486145553412685;0.03326372728477042;0.0018601277417172736;0.01820379828641321;0.020871898468776167;0.07047577895582681;0.03483238646148869;0.019222047547006214;0.0;0.02345512718046049;0.11209859557686816;0.09849233973560642;0.0327423656445686;0.16347075922949136;0.17458339945296014;0.04382861803929083;0.016995953199360425;0.016938626871689164;0.04779024024047697;0.17251671650296752;0.030738928504606938;0.07052992115713799;0.036730595618822054;0.05133075406553489;0.03271295435722713;0.07606012097489867;0.02320354571430281;0.07033376848583581;0.12259108322407233;0.00048713020844800284;0.015674622023939645;0.023956765646146606;0.15649929974960802;0.066710726643839;0.0462025297442773;0.020176382307074536;0.01007586200195927;0.04733769335218728;0.10908151962740723;0.00045962349150722206;0.30722796157039034;0.1076401966360653;0.08698038362156119;0.0014732556014701917;0.15132268542808272;0.16890773649612154;0.10068396554599263;0.0803866088541316;0.025706080475614977;0.022482282706035688;0.022358337516421776;0.021063981604379507;0.02116988163856775;0.010692762331597808;0.011863640198108222;0.008694002081662596;0.016221499034428707;0.008408927315139316;0.010615200756506375;0.011834983613111071;0.017232791029619846;0.0112462317963262;0.5909201794820321;0.6648008180846975;0.008053560794061632;0.005911175247340629;0.30845337137570034;0.2274527913778232;0.035134919793383936;0.03214623244986993;0.05110294855571588;0.04923991597611706;0.05232651170751746;0.01158429391793661;0.02662381920171438;0.1818083256631454;0.008431466450028489;0.06357124251274329;0.024009836302056126;0.7409998248284011;0.020197513319234448;0.0;0.004988956061573153;0.05201419054506683;0.0;0.01704554634154312;0.015429566859207225;0.07383992239703345;0.019438411149614514;0.1936079328026969;0.8849485021600827;0.007069856165801705;1.0;0.10127157331236926;0.7560163208878118;0.14511765089552472;0.12402647904479605;0.00024220466617250219;0.021429829765719288;0.08128687191150959;0.04062155894804956;0.018717770788011918;0.10206340027427178;9.125680093478927e-05;0.22150994956730222;0.01418219014071267;0.0005940715923916865;0.00946965675184195;0.04588090026110114;0.021997888100424377;0.01001148738103362;0.03935297600006264;0.017676101438929125;0.0050010596120598485;0.016401888827482666;0.0003424835877009742;0.004608167504151561;0.004013218807383372;0.037526340781687526;0.10039804211952512;0.0348469112816425;0.0033698809082491053;0.00016568097342459047;0.336639148960563;0.04176707199737896;0.005575134357097907;0.0023970897619693026;0.004969296825525388;0.029605372666103018;0.03329819816564811;0.046751882017457246;0.06643753131266067;0.00020323195738454413;0.023351486752391036;0.021986414497421714;0.008833540045817403;0.1312453737311124;0.030100395322558756;0.1358909417180278;0.005607018336894695;0.0028314995170562185;0.00480757968234664;0.13450852156111165;0.03655222296976164;0.009117696759099205;0.006963445227081179;0.07863432596878428;0.294966297628148;0.4940061422214695;0.017132994451918952;0.08402536797560459;0.03136997984558267;0.34486008362132115;0.0033936929664887053;0.0031704623001678066;0.08759516726806713;0.07697389275472044;0.01984355399658711;0.0018028952739439807;0.07493998392187602;0.036781448138122425;0.03962332294416269;0.029910808644509502;0.09551136257759064;0.06859707337433331;0.01632877115421922;0.0008812144240736827;0.001541896934143227;0.01207291485135829;0.10716391850234842;0.26280814170461525;0.002075122820613994;0.003143170349839002;0.02627149549084186;0.036704835990073695;0.08101699481743263;0.023637395321036626;0.007317087635002294;0.0559704504084629;0.03214485358314898;0.0015470313615115435;0.018487497586256212;0.062486697772739366;0.015134345699287066;0.3215099734490138;0.013335139613547637;0.037807621842323474;0.013726384468069432;0.012589392367058362;0.014449696052398129;0.09585396122441835;0.03794221540857479;0.10740200518207205;0.09968274449754633;0.022163561510307943;0.004151507089122629;0.00036144020964717986;0.025468392015099373;0.0599667625720167;0.05029964495895583;0.04331062096703341;0.008959134102747473;0.10497935481466462;0.10812097326551723;0.050244566122840374;0.028837603613359204;0.057616601871621285
+Bifenazate;0.2640579106730057;0.22275842160895334;0.26986530317779317;0.3022344078802226;0.29171773699622944;0.41410682828222534;0.4983378695823102;0.2528479727999465;0.25573703549460014;0.2655907113576226;0.11509220019197879;0.23653271395375874;0.16851666905115814;0.2267159504364909;0.23599945301861133;0.22674302326388202;0.23254425441413804;0.2288799926339397;0.22134413629272018;0.2270283258344535;0.2280526008468626;0.22392305938995063;0.24016634793883457;0.2404513790045748;0.2431183250868444;0.10988986945980907;0.1891399085966322;0.1553395658347946;0.12191759620691744;0.2059373903647721;0.12136283612884634;0.05374689679047746;0.12944652962732375;0.18714095090924884;0.1777330191298298;0.35471053954965515;0.5217070247400765;0.05071092350470094;0.005251891800930648;0.13493399854573057;0.047339272264202745;0.1625486181271922;0.17165239482347328;0.0;0.08628014478045654;0.07246818199603912;0.07854889712743254;0.07176206687935877;0.074591946740694;0.10481563314281352;0.07981315069698462;0.03897464926857571;0.10122694860012224;0.06702133106816141;0.08027953919119697;0.16579915432440978;0.10774710433887824;0.1295114412916919;0.07535513916588207;0.02704810655911015;0.05650557228163184;0.10657164278810434;0.13467785158621853;0.1309311898466099;0.11019227371071574;0.1278044098974659;0.1286161704867926;0.08047640683405997;0.07825223560458314;0.0797457514977252;0.07195325300272938;0.0544588617771534;0.03819930472453061;0.0403989496255706;0.11208597957372375;0.10581619109992303;0.033402494161233226;0.007187873846919174;0.09553738866051319;0.16818821074019366;0.26699896451200456;0.24719969803101555;0.12335191747159137;0.11943380311524009;0.2286675421696379;0.1881548316312221;0.16993873928207984;0.12663507314876193;0.10189057181031783;0.024496347461478173;0.19269946581754904;0.068746344835231;0.04383665863833935;0.29890410476683726;0.3092290776384286;0.028435816867158174;0.028166745860612345;0.13450216098033246;0.15933474563150055;0.1261078442782107;0.23766339633912645;0.15700703784197484;0.17732099395909123;0.05608337791602982;0.1925506948846699;0.14921863650181671;0.13118608613094512;0.13910537911324114;0.14285944130262804;0.17084335727481054;0.1615820535017905;0.14927402173455573;0.1719068979924493;0.1668377061342863;0.16282972219937197;0.02684438753489721;0.02524001888979357;0.0237049275007353;0.13482550779748384;0.12022755596308504;0.010569038885258727;0.03227541692822211;0.12328430532268647;0.02170027876321261;0.00804166911048565;0.02326744107433729;0.017411658063837872;0.007316660586490862;0.012055527935045938;0.08464447288483748;0.05441429569557337;0.16768418108651162;0.049064264620366636;0.035085865264514446;0.2342142183391442;0.1835957451504211;0.05422328379057622;0.10477373335599029;0.223812793791799;0.23248300103785494;0.08406141016344078;0.2380768505006849;0.3075875402253412;0.06684438787357246;0.15848022390143085;0.0550659204645115;0.21093950928323857;0.020390009910462893;0.04263342894090152;0.11227281074921916;0.11133044786310682;0.13760317446627346;0.05527323194079179;0.020550417236816575;0.16319294788903677;0.18622032244003986;0.1758028421941302;0.13107984382009175;0.16643584216257684;0.08977475257747614;0.2760179955614455;0.11846489512482687;0.055127539091145455;0.18835987872419954;0.024184056310386;0.08679519841231194;0.12082038971389092;0.018848409239428265;0.02088605134488126;0.14051701205259637;0.17375214817383294;0.029048608201279597;0.08772796043336616;0.056797377167843936;0.0537702709068242;0.052045106221541175;0.02830991511900193;0.004625710303079449;0.15958421866635494;0.24023618183611944;0.23339245462036562;0.034476641764155894;0.17520843903821756;0.2202133184072855;0.19640047329254334;0.007878276259063326;0.04942132927429874;0.0005333634771803419;0.19153896902257606;0.2778154828790858;0.33453130712378193;0.20462260135286905;0.23309811816012355;0.4866611897572259;0.20619237420088005;0.24294812636592766;0.24048919966384832;0.3903072351713208;0.31224789222885524;0.26833058083396244;0.42199366210740513;0.2822524394019049;0.3890630885734959;0.1893049212180122;0.18783534037166755;0.253875485074028;0.2473835875978747;0.25205832123591554;0.11277797309501522;0.03260305083467381;0.06823805354184224;0.21857379315555822;0.2265536608089843;0.08878375197064996;0.28234552611686115;0.1438577544841408;0.14843521907030646;0.22828163799853096;0.001426255105246425;0.0917268017571327;0.18037182876078986;0.06766800382198226;0.00746524315230865;0.44561927067117674;0.38052675493823646;0.1382855243406071;0.1709602938934598;0.11313656739592505;0.1403724567957902;0.054755374396713415;0.05840227775650453;0.05249624134548434;0.11928893077623991;0.13038584368475195;0.02769644030398599;0.06869852655195416;0.08275290062184826;0.11742869152121484;0.11789122809423452;0.06900080839765772;0.08591857608591245;0.11497701732295644;0.12856951225903304;0.0493341224642947;0.11588956204753807;0.07869562011275984;0.05067631384869866;0.03715662984146117;0.12290229091154409;0.30496531644014396;0.28142976162393046;0.28100805601654205;0.03701784734995432;0.21056252518702048;0.10393653006098215;0.045695624115525336;0.025039596483047433;0.13430475775936176;0.358146375102868;0.22161840267526198;0.013067473486564986;0.3774240537050045;0.04480568506952662;0.008015199646605941;0.13366456254682477;0.0592761549879404;0.1758083639276561;0.207023403411506;0.2751479393282624;0.091413009990903;0.052761125931647085;0.10127157331236926;1.0;0.06666357757125788;0.0761866089758812;0.5971588567511961;0.08389800787163938;0.009526772566544914;0.03294515635265887;0.0788509029869864;0.08831396289591764;0.11707158262276698;0.013012326650484494;0.4360474433644356;0.04538398115962698;0.04531020986040914;0.4072055860098012;0.17420037779674313;0.024540416373662447;0.2400707755718917;0.15594883456170686;0.03762575869288101;0.14741733693624554;0.09607572215738835;0.01691198060018339;0.05570035225610882;0.10749072343227174;0.30120379140040265;0.26180814881968284;0.24305823344360397;0.03785113295452947;0.06665007197085586;0.38375828601779843;0.018504821123499823;0.13175333583603624;0.05013273456143117;0.044520417805796374;0.12080938114032275;0.023531415687101515;0.11311203222251795;0.48070997020226847;0.16478808320104907;0.007546795531782225;0.01700384098607413;0.30993984165609656;0.12478707121867041;0.3156302801403186;0.1764821759215276;0.04406438472401928;0.038589900681209106;0.15824460514511565;0.106702843148922;0.1766062295074949;0.1881440475308703;0.08555020845438593;0.09801632740129855;0.003929594033119658;0.11019391074675577;0.04259391334923476;0.1942122069279837;0.1686655494770454;0.4103385418957385;0.03513053218831957;0.03450266617613535;0.022133580338053783;0.1282476735308888;0.10543530042495398;0.021481604456675105;0.16024700830855695;0.2104104370591281;0.40167410173704515;0.14889525146076463;0.18313944969497203;0.18966496678369674;0.2074791325462387;0.003906241477551947;0.0009206082735899608;0.16766670401526712;0.11321002171036722;0.025162525520333073;0.013625578373890328;0.01068040965142672;0.33966118424079567;0.1369137752236443;0.23050910384217352;0.20014965717138403;0.006809298683529022;0.0828069666312336;0.10293349935359729;0.12639550208421133;0.1739871072596414;0.08370469064512545;0.03216843399280144;0.05118405097916138;0.13604767001287152;0.16587092735880923;0.016231452767427625;0.1534984995237666;0.16230925108477826;0.16295201324582678;0.1443302422515474;0.16699538276426232;0.16934815483430604;0.34182648895115947;0.07481447784625081;0.08066999434674137;0.10376426993166045;0.2592150316455895;0.33754421934232953;0.20302346630106352;0.11779608873869105;0.005260899625041906;0.31621578804757816;0.33001069134618927;0.2658381230963553;0.2340183931599587
+Carbofuran;0.0033747399234201397;0.005258495560731385;0.002956693546323901;0.011042562462254055;0.017114859044775655;0.03235659986365795;0.00413358787475525;0.004083671508020073;0.0036183809538808303;0.0018161592108433657;0.01226645662551479;0.022485316776710583;0.0010190480274340876;0.004692745864768025;0.0016704808745016562;0.003227544949043765;0.0017427068619055124;0.003484249759243749;0.004690768960100363;0.003782117718088756;0.0009049954918426277;0.001007471822760427;0.02826152748007373;0.00017333250180695314;0.08176517366460302;0.06352631712018622;0.03230172137883717;0.10432701525685799;0.08247330859966297;0.10526698649592081;0.05967754628903504;0.03542342164716403;0.03691142770193264;0.03800410268463277;0.025642871346530247;0.17461889779381856;0.24206498933122048;0.030408001867474117;0.06996855417212125;0.007818244058631208;0.012506050498174414;0.024397732642376085;0.009836050000912793;0.00035045903499461405;0.14120267683771043;0.18425019677581206;0.19074173464495658;0.1845882064875418;0.19108950889754897;0.002443232430864422;0.0003470386412890131;0.017158521037299673;0.10611941837214056;0.09404402103598751;0.027867475443062808;0.02078698526555002;0.024346508916534806;0.018652423899997557;0.014063878220226592;0.016976713743750472;0.01000312185795405;0.03710923753410759;0.07246487837561406;0.032430044809721975;0.027801204155880933;0.023008274442022032;0.018536533606591087;0.010981978944166932;0.008396194803643406;0.010883874351901315;0.006357449699713959;0.008927581272038193;0.12704290428712575;0.13589474304003066;0.0682696872551463;0.078364874187799;0.7908721928475326;0.7735421487106502;0.05079936359133026;0.01472518487963365;0.10166618340712899;0.11580583090369774;0.11640660547711315;0.11883391521990615;0.03627488648786936;0.01772685502256065;0.014019850586859483;0.028428785637530003;0.05439168534219167;0.01659735993626531;0.007047511278278391;0.006530300207673207;0.11319382880825751;0.02657300469136258;0.031831873157593754;0.11945985476632812;0.12445932560615951;0.048476406883770515;0.07000748617995242;0.07897386647079256;0.08892886771853237;0.06456319884714055;0.06813444294295899;0.05202781584551108;0.06543584009101241;0.006565678529299935;0.0015526169065390196;0.0015740890051994072;0.0016245834289610255;0.0004791431120739078;0.0002635210618874197;0.010295531768729303;0.005158742858688211;0.0018305780596357605;0.000739466201981819;0.013003836317987936;0.00018119797873826274;0.001511886538728275;0.0068800707929118875;0.0878121242638196;0.008135674174016963;0.0016355308269417957;0.0001968739163991438;0.03156654245195483;0.022265017221342817;0.02083236932865558;0.019643033745648637;0.025969451522447336;0.06100932093228923;0.029047923064094715;0.09272618835752344;0.4397413642800728;0.20722567887770377;0.2648065823810173;0.10788071209765072;0.12522334258838666;0.4385063144490828;0.21137593481333009;0.8379571930869221;0.8476519446119907;0.0871591686055425;0.18537715319865913;0.2207183187957275;0.04552521246826137;0.398198231134433;0.057207660873571556;0.1548953932595647;0.07917633807947816;0.6879779618682075;0.08977625118649771;0.38594137085334;0.4533844416324392;0.19090755045923458;0.06719661552010009;0.18885851874342383;0.23896538248634797;0.08466258632922306;0.17843582270663672;0.14805375961091674;0.0591202213779133;0.09120476180753868;0.23941257027613622;0.027907012123649152;0.11641883939541996;0.05225051388485891;0.015363673487195792;0.08739995591451195;0.006937663082717772;0.012517432136196063;0.13550250520657692;0.20360998728681556;0.022920688637921998;0.02119707927081796;0.07321050083704861;0.07638895251847888;0.01838865222554637;0.0558240249318458;0.019337903385155335;0.09171441491924066;0.033278334772513234;0.031064429133928494;0.018135754679643522;0.12078839765390295;0.03382880750820078;0.10944856126641028;0.06750481684923139;0.12353882316833362;0.0;0.025458532486978408;0.21293854985511707;0.18285303340048317;0.04133368478168374;0.1529938837471491;0.34777839328800497;0.12819295110007586;0.00974458338919853;0.009999412609018014;0.015181939866609975;0.1209010782612343;0.008466182260317109;0.049327642757243696;0.008236271342626;0.0162923428448837;0.0077641661698413175;0.2078408969258581;0.002896916603908894;0.9577007324870609;0.06634491086360847;0.19125595681746452;0.08883841059918525;0.023225292786355486;0.15918549136897306;0.12927502186082118;0.08072290305846166;0.0819125185400107;0.07777328904485087;0.01935400463086602;0.16192587149863732;0.00486247614283797;0.6645527471263395;0.1829741597387405;0.05435153488543558;0.011474136985298889;0.019050843600879462;0.07138373948224935;0.03391097528521716;0.01812504094631188;0.032202153216423654;0.02891780113880258;0.005257565036647323;0.00844191215390683;0.007277838723424063;0.02247283402371701;0.01808942757276558;0.003087215450726912;0.010582119346854326;0.009341829323437424;0.01746578959195214;0.03331711614209274;0.009033646683276133;0.09413402501361341;0.770753093451201;0.8009626563735452;0.1042154733266432;0.06254416707136483;0.6853451670906069;0.21823756947235728;0.043940570534678;0.15099723107479002;0.0766591283360694;0.07786856172405086;0.07923752693121142;0.07769288361423118;0.009829444166856958;0.42589719016400046;0.0691070474364755;0.19958643598802359;0.43121900959763265;0.9210249721746773;0.011803438883394564;0.03757757120163701;0.03343441161061744;0.10061920822339408;0.20191286789199006;0.013906768667907073;0.1767282357640159;0.040994569288472504;0.05395323336482198;0.031219842234720442;0.5162127072852335;0.031190887406054156;0.7560163208878118;0.06666357757125788;0.9999999999999992;0.14780898828155012;0.10417464911728902;0.0007746008515122014;0.18619672258167314;0.2727856243709131;0.09674307753598778;0.01939994497562758;0.23288785647364488;0.037369183271399924;0.32020578666976995;0.05334630205464031;0.1034994015135136;0.016719227977955674;0.011001217125572817;0.013631815842567221;0.046166419463356874;0.13371789710992485;0.008890041871646503;0.015658382375656518;0.04981318539749448;0.10656300167810392;0.001185085127648171;0.0416114229014173;0.11284667437668501;0.12129052404450007;0.15090650165966618;0.11180218163029906;0.16259884377557313;0.5687180583173792;0.0061914158399015715;0.0019584973440171117;0.03689159854337168;0.005042865980816663;0.04769799088908548;0.11908768903867142;0.014739455917742974;0.10341551614059316;0.08309783684797425;0.003266408466987694;0.0005869800644096253;0.16199315479313176;0.3352667739977264;0.002782398598702411;0.20023752204032658;0.06574664062892223;0.01807764193730649;0.04267207028169421;0.10469239629782356;0.15502058610965058;0.011401669891293556;0.051978873594881125;0.11126890590433995;0.6322999887739843;0.09476084344941679;0.09317099330608844;0.11698585867352468;0.014441386139307136;0.6182054002124908;0.07435428226083654;0.07727560597046591;0.05239207880663785;0.10277000686990279;0.07424698067478475;0.10217134356821368;0.043504385393564785;0.04259556036094355;0.0675163043218377;0.03083144092659794;0.14595635448381677;0.1400789848647153;0.0021208385390829774;0.013585987106790088;0.015666590672838945;0.002416293040269286;0.219810458805642;0.5507384188491505;0.007211891941058936;0.009210735784900823;0.04928189285116527;0.061395029772174106;0.19883868983810313;0.0355617265075779;0.0010573659426709368;0.028344206161344136;0.4214985480430842;0.03715696968885225;0.06363969872141442;0.08592151336735511;0.02446966960671553;0.20131740023356118;0.013433670041778308;0.04522388890644182;0.017551509189509963;0.02104749766311891;0.03036257739138968;0.08474868310697498;0.06660562708781541;0.07036009267590929;0.10652075504373232;0.00886251408896591;0.005902720334498889;0.011678113741147291;0.03923852678988694;0.11274096927534248;0.11176689052163652;0.10527468127032989;0.02182700812512115;0.12036099117595893;0.23603304933011576;0.1107248402297358;0.20584934027326676;0.23822558856834722
+Cycluron;0.03779700733019606;0.09039032104416983;0.03914853956173706;0.05114287710253735;0.05753961118097162;0.04776315297163134;0.08960653008211886;0.042111153047167726;0.042579105720408676;0.04128463226413147;0.055804664135936516;0.04361247049815218;0.030985217128253733;0.055214789795729684;0.043701948034366424;0.04198833004199247;0.07863273235065105;0.08925003369752042;0.07757276796938449;0.09178693955468122;0.03590466598830313;0.035197471113295825;0.03846155253501687;0.03908121259722658;0.043528194100898726;0.01839288673142581;0.026227146326773077;0.07307286292053805;0.05201558681313245;0.043559107022506593;0.03281969939887967;0.03599844762863438;0.12187673160819212;0.03255807880956815;0.04605488945580289;0.08130939852500313;0.560178569218543;0.030910771478983943;0.13562894323602645;0.031932214873375483;0.012980748444236797;0.030213191018990164;0.03684546543531136;0.0;0.04133833095903199;0.04334756997490553;0.04525005895112458;0.044485421787548766;0.046360528007211584;0.018886898304526237;0.019794558794097833;0.011170993452522173;0.012646226428669277;0.004731515104193207;0.017486092317409153;0.031677462262895285;0.01735713584392084;0.018712871197015066;0.013858468746717154;0.010562688917527515;0.013874842691826228;0.020472012616652692;0.022692054542008892;0.023112936114532568;0.01773826009814603;0.01755354303512706;0.01908320684286857;0.01425654092467687;0.013491959648648928;0.013834016288132385;0.01108880912576529;0.009554677351180731;0.007624130866749253;0.013850890411808085;0.027901948760880032;0.026083888617847894;0.0016126361075377593;0.0027349500335465053;0.005603225344774517;0.02883065471601348;0.05216816750069687;0.049066869464293984;0.019340264283924345;0.01588950356073474;0.02382681160561256;0.010637455459385686;0.08029062853073567;0.07793868520709496;0.025986496142976663;0.13089372384777204;0.03841835872981584;0.03733846339622754;0.058704294807212946;0.061961855122492665;0.07227416996826223;0.009079784116536383;0.00945603106366787;0.05266985718481114;0.08334015767052944;0.07529195863430337;0.09979335481713995;0.05979864432292235;0.0670169967171969;0.014229771611568649;0.057274928149848324;0.026122557167279428;0.020821950465301112;0.021990994619792526;0.022395333151850997;0.027042651091972684;0.025230864977563643;0.02306294175532108;0.039448719122188954;0.033125768924911314;0.032412405173809854;0.0036735992305506303;0.005025202858905855;0.01423387135045354;0.02696005683915433;0.05810212604198554;0.015600370641487844;0.0067111827076901135;0.022082656180845924;0.008970941400099325;0.02005506611127966;0.0035600440652162656;0.007661461310530775;0.005744407726485855;0.007460773690000648;0.008643445969585611;0.01736437758555102;0.1311227179269355;0.04453080022986466;0.1049580012062674;0.056934390574945835;0.04066586798950065;0.10226126715524236;0.15033298944581622;0.06309538555064094;0.06569711505449469;0.16842588674453635;0.1190749795753589;0.09769073944867453;0.1403062231758513;0.09185572201760275;0.03688852233701651;0.029975284982952877;0.00949737416608481;0.16823029721730418;0.06516345238807143;0.17295146063260705;0.11832104757382751;0.19782170863157286;0.049231443917766564;0.05760327786731275;0.14507841568636345;0.08619350211578142;0.0609211548432744;0.0645230779092991;0.056868372372946015;0.06591442448497886;0.06098138098640293;0.23695337140039655;0.022518120102086314;0.01587427182241588;0.008429448299207488;0.034313403054293944;0.010773207202445649;0.012996545983748527;0.10526122393043416;0.04824572069116955;0.01566940002325286;0.014654822345049267;0.009592382770864482;0.0057090904856582445;0.03596020753005178;0.2049135537328243;0.13003506569475987;0.0652646367678947;0.06760749622406964;0.05910484779374111;0.010173626594907935;0.03667574305435657;0.03315388995296665;0.11914977335803273;0.08118319232242861;0.11511936926711962;0.20077613079783607;0.04388625099687163;0.05218830275333046;0.06669437603216347;0.10515247384127538;0.18426613493301724;0.0564355456781873;0.04381389196563705;0.09189072624713518;0.09123478372499579;0.10393534161709793;0.15509151936462676;0.1017891416873737;0.10371698911671298;0.09049811678523655;0.10161816633514487;0.044796394158293465;0.03379500571273244;0.04169359370153057;0.06506234611719376;0.03307159462009314;0.005901920003464169;0.3049270269764256;0.015498458921834154;0.08240701488328332;0.08342039281366047;0.140514516129895;0.005918614887776349;0.029047395794529057;0.08439574158150792;0.1232968362533841;0.0002448521296826178;0.06591549014442522;0.03857895506690315;0.16817679312884112;0.005848136390665373;0.047779561244285264;0.049024135041325634;0.028759568867112454;0.032090601022438915;0.023301761328576635;0.025767038600284124;0.026165614039339945;0.014507060871930851;0.01591313594168613;0.019958039216757276;0.019475999463722103;0.017810206314880377;0.01786077212924175;0.016534350185505264;0.04688176349552066;0.02367328249834097;0.017207128514033943;0.0588527304490702;0.09610105340911838;0.08213109581315188;0.032356962135990514;0.032915553214599276;0.09728986043863067;0.12018142909947342;0.1595790588630554;0.21885389676189262;0.025199169656485953;0.019727292161434356;0.019930332330285544;0.02199624747676027;0.06031020667544438;0.09935904687680756;0.004233695023908833;0.014781566692100479;0.06779012763578932;0.11523490309849117;0.052044370317772023;0.1302989853084318;0.017127744075535516;0.006796864786194406;0.0006646760315215496;0.48256939244349517;0.02411176968349702;0.08215227297785298;0.021661421289490303;0.13518437256305862;0.2078897363689589;0.00728029718588687;0.14511765089552472;0.0761866089758812;0.14780898828155012;1.0;0.15983907973318243;0.07750339157463075;0.020221653356513755;0.055855420988040735;0.00870005611592005;0.04435250529014402;0.014626089306240998;0.1295199654601429;0.08676085732677637;0.020238662691344785;0.0038611628599630973;0.011148521288607311;0.019698616750173;0.00020023288239591643;0.032947222765271164;0.020833546733714497;0.011618041239304292;0.006394574304949577;0.0026032031291493177;0.0637278130180376;0.0078446802575246;0.015351292058009891;0.14970889857744352;0.31324690966333824;0.02232258867833243;0.017747917804406488;0.01247095482185444;0.1150671536746924;0.01361817585330402;0.03734995798895266;0.012204571199283535;0.014360581728334567;0.12172163885963569;0.05552079479532977;0.05507285521299254;0.15320513149884135;0.0008875309281715515;0.1931594790623922;0.19468232146490644;0.009975676884263032;0.04001007508528403;0.12659753979459065;0.18027999023065508;0.018228603174314285;0.01171804496859091;0.0028529048550104273;0.027033377384604436;0.02277246653534506;0.019161940031451902;0.014130345718291292;0.046830856353232954;0.007219761737124453;0.003533026508558905;0.0009001595498197006;0.04351521958749832;0.04895355318167284;0.09367987825271563;0.004493137675664959;0.0043943989874321646;0.019891522159974705;0.030230668822411003;0.03357837765060519;0.002178858123289112;0.03259905397880105;0.043534369146483114;0.05901849951665761;0.01900140758178122;0.08729334804672467;0.05140968290361447;0.023470046570990433;0.006130035308301144;0.006434064473027744;0.0465455944114368;0.06721403839796444;0.016046510655379324;0.003971756994512878;0.0018959008190148861;0.027063041346354386;0.043759835124211;0.09955369728004866;0.0588076149791381;0.00020792539460351983;0.1083630084277999;0.042287505300820614;0.021489749770116445;0.030368657087289044;0.08532008540049976;0.015812018067005072;0.06124871152262659;0.010693060433568668;0.17866282689876778;0.0123498836304604;0.03470978906907701;0.056440108232387494;0.13560063307336062;0.12196488104636216;0.09190999776883471;0.11031535993499735;0.07038168965524164;0.0021065272993167263;0.0012125349698837605;0.04856767324760593;0.060027288607120505;0.03370382481549788;0.07496073526298272;0.0721173757695788;0.18790185625310027;0.1922954851446798;0.2054652707240375;0.08524806924158555;0.06797270073648182
+Diethofencarb;0.3562007840758826;0.3775987383286244;0.3577342210365096;0.37104412633451334;0.37170332929907457;0.38511838134823445;0.247505721466877;0.3570482706054146;0.3549929920228789;0.3689005169064439;0.16270186849755527;0.3668009568776288;0.20801409967246473;0.41149707442431444;0.3819738306127652;0.38541811526170067;0.3854058678126952;0.38149744563850974;0.3811670533911032;0.38888715104842925;0.4095912021773302;0.36206948578475884;0.42862416333377645;0.3708723812499668;0.36401025376563356;0.04188385208838284;0.18626695379426322;0.21191636571398684;0.17123076708436888;0.1707709298312357;0.0722283424010995;0.09051616047404626;0.3704490663026713;0.2763180131961451;0.21049218403837763;0.6130511999634507;0.45385633201188585;0.10831619727614782;0.3263384304259511;0.20905327592972242;0.06073667637259585;0.24286366679552937;0.16178680729499068;0.009919719465023102;0.04759782097501061;0.16373055062054787;0.16977692251289306;0.1676547231553042;0.16941238016983712;0.16630399743729518;0.12631190489280908;0.05542670250332248;0.03845333407249185;0.006834564890228679;0.18733795688079588;0.25012634740322626;0.10985775810150593;0.15330901110722045;0.10477752521033247;0.02081341214122573;0.08403848328427448;0.15086195137251995;0.19158126702797534;0.18464775509624984;0.11002564539540455;0.14478091520095185;0.15169650406915022;0.11121114137014998;0.1089816519756868;0.10988799935461857;0.10154568056050203;0.07819748162657604;0.0697671126600612;0.08475696080908433;0.03859255239006192;0.03236889414198877;0.03343343267916889;0.015340029417913114;0.024329241943623615;0.14273005301091804;0.12136637669268528;0.12478105690682087;0.09722303189540256;0.09265670658348056;0.17466159821081198;0.1378027625116148;0.37490563830325924;0.3808954516502871;0.06690541300812847;0.006969563041216263;0.12099476392706933;0.04697508826574063;0.010493554351268643;0.07615801288611372;0.07996968991244187;0.0786378796874177;0.06653689444690673;0.059294711829464095;0.05702818139362148;0.058577709418549236;0.19520463818763356;0.02012615071498503;0.02749897782228763;0.03540660492381296;0.057881641786359544;0.23400030359523094;0.20875283684562507;0.21647541101308607;0.22082191737111745;0.2661385606359318;0.25572127098527947;0.23783563153771867;0.2658853936737036;0.28702793358040396;0.2601009167812018;0.05404217723375415;0.058201425154343914;0.03327096505931976;0.19431253142575822;0.2282564140822971;0.017933710923418018;0.045258593000498545;0.19340083400915903;0.02053055507615433;0.0133524823210163;0.014472886304177465;0.009425662447040229;0.01060506953115012;0.010547100408888774;0.014358465893924454;0.030851145371685346;0.1261452131917134;0.06720404661953644;0.15407052491666626;0.37484854466325;0.004469341615782733;0.08939448595275762;0.1963947657334285;0.3380850611920753;0.333749065875852;0.13230429625722567;0.40691237825435883;0.3829199961236631;0.11812501172235816;0.2555936631507339;0.038834290256285715;0.021163022195202746;0.009762323549765374;0.17436395552144687;0.14505764703033308;0.1654945796403202;0.19219299530413478;0.44480882608062167;0.039925218603998065;0.2518865029987228;0.35853090574674823;0.2756621614524917;0.12291371172808314;0.18099351110677642;0.008249712362871343;0.175488115782743;0.271932666490433;0.05192011247721801;0.06533539800779915;0.01706561463240761;0.0076422587079372694;0.02519223909682738;0.014073128105931315;0.018790499517923935;0.06566556867850702;0.08046377634101139;0.04036296168440345;0.047731072370214886;0.008068474191781657;0.013232197140110525;0.07221786711893695;0.024305715365705496;0.001527100079371543;0.16664061271220565;0.3046563302995641;0.29678027788445027;0.02641136486544879;0.16918548302668798;0.3423480074562293;0.12779848046454936;0.03527633575714203;0.0908982868659221;0.0;0.26215378539226375;0.2513552561644312;0.3209125495218818;0.2757332682137365;0.1716092638725757;0.5147413262040329;0.21335049345496046;0.23837170451671616;0.23146792843935815;0.270075335374873;0.30762920768180224;0.16901094540455922;0.2963412516320981;0.17905341647318038;0.2501156269382578;0.293317964718404;0.08567467379267342;0.3812730948568784;0.39261683412856074;0.1945431836322553;0.09005412263213412;0.026377619137693365;0.05406678107592673;0.30515958097183216;0.23968439454033316;0.19670165819725113;0.022664452855332754;0.1475593643396519;0.2808711958013035;0.04450415305171045;0.0023482843956818744;0.042341169772144666;0.09917667914205947;0.24611769113211193;0.012652471766901749;0.3529137429632957;0.31858054501621486;0.19637645820804742;0.25244160842252056;0.15894198875133875;0.2028139567572904;0.07962691954873868;0.08539890884043622;0.0771322019846643;0.12567891030892975;0.1567498824574234;0.052247505995517654;0.09496532352974209;0.10998143771820355;0.13839407702761614;0.14259478696842207;0.09870107685416259;0.08045523990066257;0.08941493854517049;0.13468752161306707;0.04838090321241665;0.09118176121420499;0.005202669638730515;0.037846928113097755;0.017970237414553496;0.06713766785341299;0.11063060083510466;0.09528360508682164;0.09512369861992717;0.08864161759999685;0.3380417693304259;0.03386048049165698;0.1088920115914462;0.029669059522730346;0.22874016587062831;0.38581659162059617;0.1012714343745292;0.00809343924356846;0.35034984462621915;0.009219750531027821;0.0007906014486602879;0.08912888954449136;0.1076186078581035;0.3145732038944523;0.18979268877500283;0.23534286820022188;0.10616069067846562;0.008453741548962671;0.12402647904479605;0.5971588567511961;0.10417464911728902;0.15983907973318243;0.9999999999999997;0.007062826836242563;0.0361997820007478;0.010440355865006684;0.05374687475740267;0.0728786794937293;0.07946692051982847;0.00817209954238969;0.46326763215690836;0.03328265935001224;0.011743025137489514;0.012138390329142313;0.1422864039319312;0.40923579698269785;0.20742356083131655;0.05900764644280789;0.08974585839287183;0.17709565825882254;0.09230797086106846;0.0019191290372368077;0.08486039787429368;0.12321102986005764;0.03914096431215613;0.12152440690783926;0.052563660932928594;0.0008323662722617677;0.008584286407038188;0.623117072429093;0.16104675701614563;0.12984102736169556;0.09394531014705397;0.06585541483518582;0.023669639651071092;0.014483405209553891;0.1842000213688955;0.3879956856565587;0.007740218184216603;0.010294196467466824;0.0024715202913487373;0.07780817815299845;0.12252959958113639;0.3302073175091205;0.32393027776535405;0.06983376159732678;0.019431917338719868;0.03191421515652121;0.12110629108031475;0.03855938532000332;0.15308493735987402;0.12062535994234425;0.11165426356346643;0.013925639330733002;0.14140873590968225;0.012943233982313;0.09437700312515086;0.07780511160724393;0.36391782261254835;0.0359371306754581;0.030360396546366436;0.0156934856197859;0.09001791932719758;0.06573874607973516;0.010692072721001443;0.24412496315825546;0.32950676360452535;0.3863157779148527;0.16289864114071564;0.24307855183117494;0.25032364910051946;0.11107631258771555;0.0007988362629533622;0.001315158709077525;0.08289004360901209;0.09038824762139502;0.02560658545891861;0.002088565213229308;0.0022993604244538023;0.4103507290215692;0.05502824852928032;0.08595958682287833;0.04405473099623175;0.015292864471338324;0.034728208060827034;0.04768434266230721;0.023632883034516924;0.0864789776181734;0.17325138628639122;0.012503650782361958;0.07980419779693543;0.040774930716942666;0.20895991780030837;0.009790538211362896;0.2262627480084021;0.26344580660686673;0.17684755497803462;0.0698226755553325;0.07879463286711548;0.17390666424589565;0.33978523605785665;0.004639125194086739;0.00626519461752289;0.07981826346547127;0.25491690612758583;0.1703939947575562;0.1344204305079539;0.05215088767165824;0.4054250420417885;0.4106566240072575;0.3863655650457991;0.4393872398631922;0.43003853617809873
+Diflubenzuron;0.01994909782614871;0.020602432076506787;0.010607936989558836;0.027583721546385033;0.025061969067073475;0.030500049185822706;0.11592201514732065;0.02917482486394975;0.03209006860457979;0.03814462326045073;0.06471208365176269;0.026113501458847218;0.12047103865025612;0.028740418310073415;0.02441568499040101;0.03992402753558519;0.011716231005638476;0.018141077860631925;0.022516850608882068;0.020824554746396374;0.018753434636498298;0.021414420461692733;0.018829385550010257;0.014450278257715067;0.012869017375235152;0.1834347828148489;0.07417898943271217;0.005381652128225558;0.03411609250794972;0.007683804365531442;0.005097355152898621;0.21567332182392285;0.008629918775199353;0.09227728376253087;0.026593133031860845;0.04149193376145575;0.21951013921105614;0.001829221301557306;0.0020963803243495382;0.006025791390503633;0.006621767367520814;0.02011762817974649;0.02867089464871995;0.0012201650898352977;0.01110882755990508;0.00862827726550438;0.014074257296061867;0.009540679229041664;0.009483669316274106;0.009897090406993173;0.016066665195056878;0.021311720731028744;0.0060368944224481426;0.0003752001332890678;0.004378797825582885;0.012136506894687888;0.00884355083879326;0.008373255248864663;0.008843856951677326;0.005283128323151667;0.008828654202248177;0.010661022845931414;0.010406573940698714;0.010672286657656774;0.009069540874160857;0.00862853682386409;0.008215763157328642;0.007624837158204686;0.010019045133030289;0.008346322271459218;0.008357354719778474;0.007105778562512223;0.013995617687590778;0.0042883833818669025;0.13966962045924786;0.13804259502638505;0.0013481202631719885;0.0011320286706443296;0.042186724179471155;0.09924302060636643;0.04401714807190933;0.04284417828675107;0.04858737326378462;0.049409197135397855;0.15016723644834637;0.15453531726863518;0.0862225306505982;0.09833301887013852;0.004193296240644742;0.004388589686627128;0.37897207789935006;0.26951760472518277;0.01685288340085933;0.011424731840856649;0.027802376018432474;0.0029150248976151983;0.0035488024422840017;0.07988028825287531;0.05125707751864676;0.0029944301404299023;0.18001156578947042;0.0007375971607166041;0.0005545604888641771;0.00021108247670374494;0.0002098743390395387;0.01846720500627594;0.024185107569011297;0.025190442627370364;0.01874949272229452;0.01784459678128951;0.015267670727899502;0.012932107938244156;0.019233398008397556;0.02226978660719234;0.019067936995098678;0.09754087863941437;0.08304817252792768;0.10162528229571562;0.019578563611832606;0.211367050867328;0.11753154768626944;0.08548907050867906;0.02788486267006693;0.019396128186632597;0.00030492547241045266;0.008112804098027485;0.007865912390920401;0.001449573473779584;0.0014567831525281638;0.005570648558574714;0.043338350010209616;0.10207472801266802;0.1319585581764837;0.015918691710446645;0.014498217856638716;0.09531071437772219;0.010675690542333655;0.0209109979734863;0.057926532350600156;0.06636185048555507;0.3213660377068327;0.017792789828529196;0.04503118082986384;0.12129337007508005;0.13373548695336382;0.05287466754896796;0.01869400462119814;0.0002791355374302956;0.014032965034181116;0.02028882204016586;0.004802325628444501;0.04570443403190874;0.0015658076341542421;0.0022043735920162077;0.037787668637817254;0.006436263799701745;0.0761878623430457;0.09791847235258593;0.08543658007705221;0.20052488856131387;0.14928666185702133;0.010197702079209503;0.00267346810792578;0.0007203782271437957;0.002718595947550118;0.0078101714526199045;0.020736139246502933;0.001029243653966688;0.0016077703837534293;0.0032041823040688693;0.012737331357058667;0.07101045982284179;0.03250659502342519;0.0006945555818484832;0.0007155807055642088;0.0014798056736830677;0.003855825343850443;0.04239573540965045;0.014387589063910968;0.08966937559593234;0.09463790194896042;0.01928526498218661;0.0042970450624326036;0.025302264682367268;0.03353200436766396;0.0004559868049927102;0.021156074143165088;0.0014829196667284937;0.17030521791492365;0.0373157676986204;0.04110600432493443;0.01114181859173893;0.04737336292584673;0.025321840509390684;0.0828078760139026;0.7332465778012652;0.7426071914722998;0.6959360042443632;0.6894645909949865;0.8842092624785209;0.5858473850908097;0.873250277539334;0.7431631030657925;0.42870453049325136;0.07472723039144413;0.03492309832371189;0.09481400982585379;0.004351793059997906;0.0;0.0052544146637783715;0.0021425404754716617;0.008289963215614135;0.03336973596386069;0.018140273683879757;0.013700770676086452;0.004712383465970787;0.18454361564508068;0.0060910815583981445;0.001078713061455486;0.013019036341252321;0.020615799310156332;0.04423534784246119;0.09268084041344199;0.011342700730975253;0.01531209653924752;0.01384211633028436;0.012375120669755836;0.010349601938437267;0.009313765941055385;0.009403796174968794;0.00808653994736684;0.007292278524531609;0.008576153552324543;0.008064176219181245;0.007349348350508663;0.008022438720534516;0.0041120222144175236;0.007871164363705756;0.004616100273090899;0.008245176679873147;0.007047534329689068;0.0009177064942778445;0.0004019337031977268;0.025039920880767348;0.023176572254547084;0.0008539483428314427;0.016823944916383535;0.0024902098100924486;0.003219506625642606;0.02067201748220721;0.01643045855226976;0.016461297026772414;0.010113865761541418;0.012490376514842057;0.02125248617411861;0.03277319521469096;0.0002959752410237003;0.029926068670762362;0.00028033496174204465;0.012011671282551949;0.0010402927617558597;0.015539004224933789;0.0;0.010105174999250618;0.003017832678999066;0.002196761953729617;0.013422102803545739;0.013712362335657565;0.01496532958185519;0.0025369610298457677;0.01628585971352445;0.00024220466617250219;0.08389800787163938;0.0007746008515122014;0.07750339157463075;0.007062826836242563;1.0;0.0017392509483425914;0.0007840172645198867;0.017173820889344067;0.05907504305450019;0.015030158069574045;0.0009754018612656076;0.034859329640712734;0.0005714405335327768;0.00011621985873443245;0.09205072426794973;0.08104107807313325;0.0;0.004554945819920004;0.02433380758366243;0.014578177937862995;0.0010638244597503572;0.00029725856944804016;0.0053102505767661425;0.1615084351454899;0.0019082530159660245;0.005429371121555902;0.02071258602293321;0.00580810526270739;0.009557081769737226;0.000158331245424821;0.11998615996803845;0.02038158663738186;0.15455558542627143;0.023496691737797483;0.012217209881608907;0.029203861163612507;0.0024667164869584556;0.005417281160679335;0.038669055181315956;0.0;0.0;0.0;0.001472605899950403;0.006144964089533663;0.011318683744906483;0.10632342552721087;0.0023532241383135803;0.00022206563552574333;0.013375261558644037;0.00957960169849879;0.012462018764985445;0.13107815114726176;0.0033787539061403095;0.00041433538338992896;0.0026966686792204825;0.0004687616354729016;0.00018661355313948004;0.02361316508001344;0.071557994606198;0.029218426730010964;0.0009005363637529676;0.0009795401235017397;0.0;0.004864230046687877;0.03778003487982492;0.00030710066149594253;0.010670214533823033;0.008841243589982955;0.041202755036413075;0.01754564496361674;0.024125049537287644;0.07792735129592639;0.08742861539501787;0.006031016064992989;0.005016557509399219;0.16653563264506166;0.12844790713147422;0.014217521541385775;0.0;0.0;0.002462374525102296;0.057940468367849794;0.4751015400050563;0.24083434621520677;0.00011579201372784494;0.011966699380163879;0.0005409382233783824;0.019063202062463487;0.1782631837257007;0.04055503675515042;0.0021917255551663377;0.011645222782441591;0.01703072126331547;0.04314333662100516;0.0;0.04286469890949117;0.08734655124134963;0.17478951152507338;0.012620900406541485;0.07388142660861922;0.0814077959086954;0.031889297924976;0.00013253323847237355;0.00017186189023177676;0.053347340226846285;0.026822594817714145;0.030360724376374514;0.05955803622440686;0.017716674772974957;0.0008919382074686897;0.07363785210956857;0.06779833974271748;0.04598747213101775;0.02792424887822149
+Fenobucarb;0.0;0.002692086753902647;0.0007806266078647101;0.024321234512190065;0.0198937613061703;0.05107979726814101;0.011365076204883183;0.0025300706472540847;0.0014585818028352777;0.002138930007606884;0.0169460157834378;0.001275290782240971;0.0020775486667129555;0.0016363749365541358;0.003010545014536665;0.004718626335746888;0.004150706868676918;0.002718228910485799;0.0038651454873079023;0.004640601407946742;0.0;0.0001113235075904218;0.025665723602409242;0.003272057824317595;0.006649727006211214;0.024104028124012737;0.022908947988634215;0.047865299038522914;0.08774446784941622;0.1198273412055842;0.04606032643312233;0.05805897295381201;0.024585248694000146;0.0036504307871318893;0.02343090761185888;0.02161677450429015;0.11678039708094792;0.011353648408562185;0.007939889482773254;0.019526579898268618;0.010142620500431205;0.030219587753112478;0.002888349954980797;0.00012917491937351213;0.022053906027222826;0.005749916016595264;0.005573160675256599;0.0044197004493960615;0.006606969380864087;0.0024583965432510356;0.0;0.013049166466040627;0.010951932244839334;0.010652171369679409;0.09742349770943343;0.02778969071562476;0.013016495291185938;0.005487771117771439;0.015064867274305851;0.01311328607833172;0.013268591733150087;0.028043989808377856;0.03333078156362268;0.023821212339511136;0.014380129166716972;0.00582826337299427;0.005120946911396811;0.013125751587768993;0.012525691511743155;0.01310494967814336;0.0009537833286738827;0.011607966346893664;0.08951566996479325;0.09836120998866218;0.055399407440295034;0.05880697758890078;0.04529403908973049;0.05812113009214505;0.002317932026083222;0.01331168170005884;0.07063657495334985;0.06414014152861379;0.1761624211679312;0.17420797888883527;0.040552276537226505;0.033789822690671885;0.007867769170523434;0.02633110502386011;0.05369123745871063;0.00719414845143473;0.008892788885140645;0.006883855019114951;0.05285564584835542;0.019457834253478724;0.02586769272650129;0.11466846619704829;0.1306608545423262;0.03177495916536908;0.05587959746172089;0.052089220749540185;0.079280878238448;0.050571357480353615;0.07233016475508763;0.07583412325619582;0.017784668381252616;0.0028957275289102132;0.0014743958879878901;0.0016178204075678613;0.001486387231679844;0.0013820737170933462;0.0016061734363801592;0.0022658444009513883;0.02176432041339757;0.0028314212586244324;0.002137810919029927;0.04510831563240634;0.00797754532280876;0.006003577845241434;0.023367324437393953;0.017614104889210537;0.010957004743624725;0.0015718748817705893;0.005981180324975297;0.08111744211227376;0.011593799706007045;0.009328499562925854;0.010470109027810738;0.02372790718622225;0.01795207775566631;0.018466284615123927;0.10067459578546553;0.0982240439014319;0.17013056688208208;0.11924060757848783;0.01304529584057954;0.05524068392048271;0.07287201287193514;0.093519758900712;0.2539299603868657;0.2004149188418576;0.30272205695868865;0.12052209703226281;0.2617964569773405;0.05548963838152191;0.2693421275433735;0.06323490839402311;0.08441125206728138;0.14325169746607286;0.052598812956074464;0.1637206126387728;0.023198807787956945;0.28919315820457714;0.12742469732818926;0.060143931885794394;0.04695488771139884;0.30271774272118745;0.008953993811755887;0.014578658832307146;0.01993139546363137;0.0019613416623212865;0.011628671990504505;0.04350663869840822;0.03388258017143563;0.004892430488941386;0.03649183732867204;0.0315503441216773;0.01756458082921587;0.004777902431052858;0.020148338883062927;0.01703426415482118;0.03145018544640042;0.04612421913759709;0.001971010555197351;0.054690424525823726;0.011380222367032167;0.01978509284326335;0.003697258808599488;0.0063652849658407526;0.04369696737161698;0.01798904363926371;0.021831382576645526;0.0027350134268158063;0.06627332942828974;0.06000765871884382;0.0030542342945552234;0.012490002831364668;0.016540423553994675;0.0;0.005598370585320887;0.09353958063722013;0.10275311027194835;0.07186595699579625;0.06502042693512118;0.02572094783665649;0.17181530249273547;0.01924514689332469;0.019573515494400874;0.008161376151515664;0.03811369163211594;0.008239102358883844;0.018253777610995926;0.007699993876414879;0.011419553687903296;0.00170512821867541;0.07700464520493668;0.0006926094527791521;0.305399860907104;0.028879150629628356;0.025500700654131972;0.02155897667300452;0.003220556446084287;0.07537556006751504;0.06875828379701436;0.051798630919739574;0.02423018790539962;0.007088553935195792;0.031421297114102124;0.03785123993489685;0.010005542615948024;0.14735680487349162;0.1328517049774526;0.000589288184424883;0.00469061967562844;0.014286228581819141;0.034007972975448865;0.04599134605297034;0.033290472589427696;0.0380326465105413;0.020586059874557378;0.004783875060434743;0.012175109239051352;0.012639505664688263;0.009846327522800596;0.0029100558835612154;0.003799550445130975;0.010513185095342971;0.018500592805499705;0.0444191301425401;0.025385200724195797;0.010213665339839636;0.007747038425792383;0.14236581663066175;0.18302766958450106;0.423376141460876;0.018365057620450317;0.05692282518901892;0.013047876747801987;0.016781398805109312;0.023879127264716034;0.04577903162434243;0.027614430383827483;0.02756234279946649;0.0035678370045355;0.026771493770115635;0.01844281139166662;0.07850177713785654;0.05510657784882998;0.08013015310054412;0.06436320322398491;0.008330310750840708;0.025969009179643187;0.11319969024250814;0.06971532352872063;0.002156600174306366;0.01883078087287053;0.9937984427368893;0.02423858887997759;0.050816423752320365;0.04841069341267836;0.002849001647221679;0.10402664332627835;0.021429829765719288;0.009526772566544914;0.18619672258167314;0.020221653356513755;0.0361997820007478;0.0017392509483425914;0.9999999999999993;0.6973442754382353;0.14431188404663506;0.006635371423429503;0.08258801611483342;0.025187304805047665;0.031881623620205524;0.0034591826232176414;0.053707791649091084;0.0008456283332253136;0.0018515022997421375;0.0;0.08066487067434056;0.05330303430318192;0.013139207634255856;0.0003952522307128218;0.006123503667117861;0.016280804661962706;0.001847415701719258;0.05180237766868142;0.09919588363756394;0.05996381763925446;0.05665894372945684;0.020613732715776305;0.0179102702905204;0.016380061393266424;0.008114576082580986;0.002660288810711283;0.004689887553469005;0.009166670711632189;0.135795450618802;0.003714898490790697;0.00017877913542236031;0.03988238301536055;0.008797574818637377;0.0;0.0035112175892326653;0.3532194250360519;0.12031806083088833;0.0026250951233105064;0.0828312879930992;0.05781861716941928;0.01867102932546847;0.07643315894791249;0.03471513535519528;0.04497197970339691;0.005433274179018946;0.0386693512562929;0.08118605406628168;0.5283129152489275;0.05022899961309335;0.042900351583174394;0.00972727972746111;0.006108737645028374;0.04788383653512654;0.08442876772280229;0.09191213839068064;0.4378934991162625;0.01526924912823349;0.027280966411261588;0.15044606579735503;0.03202698356880731;0.05993963250725225;0.010165267610008095;0.007508823022690409;0.06942678173366852;0.005869529554859419;0.0013422622813068696;0.0017044063505554934;0.0011980530186095938;0.015599733288891167;0.005547904151176138;0.43559202803279923;0.0008671920325034364;0.0005923207486435449;0.004955179230813994;0.06883674158763538;0.03985972912033817;0.024724198192970406;0.0001250119968576531;0.021493452861675186;9.941023062832602e-05;0.0019079466052122507;0.025810167801089953;0.008182807919694888;0.002757637306565547;0.005073065361909886;0.0;0.010775131939522042;0.003538411434418785;0.009236802189979047;0.03198393131904402;0.030245656896302403;0.014863174937163562;0.013846379858448159;0.09627022845577007;0.11876300471593795;0.0022271232611463165;0.003948514173433073;0.015080597065835886;0.013636549235523324;0.025924909726332514;0.1367097184729624;0.01657934927299744;0.05134273778676265;0.07290348272593125;0.020609677393254488;0.1708531939128645;0.18822156250959438
+Dioxacarb;0.00063763350551355;0.004556821954539273;0.005181108048920545;0.0017252482392443335;0.00385541547424423;0.030104896101470238;0.05342793118509858;0.0010343463728663762;0.0008785309393817693;0.039474780625031555;0.025240432401925004;0.0016147472230119459;0.001219518713509117;0.002559837525201136;0.007400246019517916;0.0007838397817318083;0.003285555295178087;0.004151216965710667;0.003364850240249902;0.00422629427756235;0.0019746106258765003;0.00029378485210077303;0.01976574591117963;0.0;0.047779525447239686;0.01853916783190431;0.14385908590113416;0.3523270936408333;0.0820006281702817;0.07392544532767398;0.19259646134985725;0.03275029320055463;0.0236561636380309;0.09296450937798877;0.03256114769993601;0.012488361227035583;0.15031761409967964;0.0030985183887063355;0.004380405682963117;0.01452297353294575;0.010994654994468602;0.009812976611111681;0.04332965694856814;0.0005682628396647312;0.0698165905765015;0.04824030526783403;0.05538615089223295;0.05675883984752614;0.05522249978211613;0.0012532301075273953;0.000967875377758629;0.009632830777678594;0.2890877179475339;0.2653401164378384;0.07148263652297533;0.008448358732980788;0.015472207804828627;0.008000072058438543;0.01300672191606966;0.013550089457925907;0.010285717445810102;0.015035118371931904;0.03215406330978402;0.011892197604407408;0.017374501232175564;0.009657406391780721;0.008543908461785736;0.010926870663633716;0.00975212150275776;0.011334724456000823;0.003032904675808491;0.009642296722596207;0.07157991877789847;0.07889186248609939;0.04501536078733904;0.043083637532141894;0.09552237776436208;0.12262237884382078;0.39198662310059806;0.0183407958672398;0.14082472440722138;0.13650526973321156;0.14125572124419522;0.13517455899661124;0.03858534502254163;0.025712601720500324;0.010822950056334397;0.03455978908904654;0.02876851216610325;0.005365434976844304;0.002341016274489747;0.014026754382114367;0.10145880096995524;0.09424842612678078;0.10203575314505667;0.08406375077831602;0.0911530195197931;0.057246356724691444;0.12376500357943236;0.15473595130836165;0.13085222514059386;0.09519264554327458;0.12786915504668317;0.06287386761871042;0.11980717887909959;0.0006882258547197035;0.006654255970919567;0.0009023651342606264;0.0003531474749436575;0.01867070180826497;0.0005156899692466585;0.0007616779224836559;0.01613929592152367;0.0005390728083804606;0.0005437623788280559;0.032790870472324866;0.002305486134471447;0.0012732154030761496;0.0019383346739412807;0.028073553021460702;0.051077692160247955;0.004462207928564784;0.0007333012710722572;0.04815892703083853;0.016046079971770297;0.018296731290787606;0.018468374969689057;0.05189297247160008;0.1855688725978564;0.07152422711334303;0.09596675946841353;0.012976063975702674;0.013013791871683006;0.08952257866710567;0.003390448190631762;0.01006006895495301;0.01859413997433643;0.040452145804497665;0.3230847295821422;0.2575172833290472;0.2640953256427457;0.07041696332894465;0.047509387101316955;0.05224818155602351;0.2517221925108362;0.08054215773701615;0.049077358804774075;0.033047767860351636;0.018953288759528515;0.08048119047913742;0.0005638981072388609;0.17292687899687714;0.08136794743380647;0.05211954554560692;0.03496384350749528;0.25568057640391856;0.01572116562282943;0.009426370953273956;0.01653382817417576;0.016212840652218702;0.03987749182608521;0.051026638010356486;0.060581879836171346;0.015697825910106513;0.023374522485371863;0.02966804778341527;0.032696547736847034;0.018168405233712586;0.012513966377758028;0.09187178583807182;0.03765697847490004;0.014350976188086196;0.02131552377936541;0.2039166632843435;0.1969972699487095;0.013061587158978533;0.0;0.005540629081577709;0.4342559737234875;0.15233418877589258;0.1129682548469691;0.025218906668441222;0.04907404110134089;0.05534712708183501;0.008136430667676137;0.027712230560752827;0.051714574017788326;0.0007410306154460374;0.017091814605105282;0.003554715015895207;0.04292881484632313;0.02581933948992297;0.0056415948805702745;0.0015305695994843281;0.018837856902754302;9.658394786365916e-05;8.845384130710825e-05;0.003068606597921494;0.017699755759369263;0.001812476258070923;0.004996079109198018;0.011133803683714551;0.0032574648119635683;0.003477052498564545;0.06328613621851534;0.002418139244556349;0.406121017154548;0.04085524024256528;0.02250907320587942;0.02239390870670314;0.011162717431501714;0.056032209071643364;0.020224563891490393;0.03952559284799175;0.03498555454252114;0.007478057110544412;0.018724466926742036;0.03779101834323428;0.007016205909147479;0.037484160240845985;0.02200773423094693;0.006013575550774655;0.008191924848566385;0.010463493467981633;0.009710137505493557;0.014833138298407334;0.007038580624371281;0.018801711482988773;0.011824272091247694;0.01066628878765436;0.009042217094768327;0.01056425109924824;0.015397635451126374;0.007747369465217976;0.0020091011917824603;0.011137325141107837;0.012765324271067859;0.026525226597236266;0.024466098538103664;0.010694459417316962;0.0076506033292118025;0.5175158246776377;0.08560870806302948;0.3237837809814121;0.023737456370301568;0.000423049039858697;0.014994784428380838;0.015279843831472635;0.04830904069788395;0.02430527206652513;0.25186793676224584;0.2501698845578061;0.012472076783319639;0.006430134926036937;0.2412534120668741;0.07098969054200552;0.07537144369796894;0.04658946670314087;0.01728771577346013;0.0031605432630783495;0.008309420269307808;0.04108116489941247;0.0;0.01767709393343401;0.0147541647336138;0.6770483191067094;0.022405531005849813;0.008562583670517782;0.036527925032746336;0.22419750414229372;0.025955005442920395;0.08128687191150959;0.03294515635265887;0.2727856243709131;0.055855420988040735;0.010440355865006684;0.0007840172645198867;0.6973442754382353;1.0;0.08009842069197336;0.004249244030494257;0.12180195111930235;0.0086054952943179;0.015637681716265783;0.0018316369475929015;0.05924400600528527;0.0024345173757517563;0.025596610431732336;0.0;0.0506693470746581;0.012575968007517173;0.017334165965901337;0.0001189477239842676;0.015610460694524767;0.04459434375357662;0.0005445068032388609;0.007363803274224445;0.09418295176141354;0.052477225780025505;0.042726581902709664;0.020969562267892414;0.044711640985681166;0.006255344860763602;0.0538882518744709;0.001047367260245303;0.002644544426988019;0.0006452542889043088;0.008712209268723514;0.0029214322312328986;0.003374530492057891;0.012787948194717846;0.0013099818625811126;0.0;0.0012508358236377898;0.2609460955351166;0.0037258000322605393;0.0010246130269324135;0.0022704609096602622;0.05449032507802465;0.05608128584416248;0.09292505710886682;0.13067611236599355;0.03975457052543183;0.04979279855406444;0.03185711876749152;0.04684885953734965;0.00295827745156977;0.0649056342712968;0.05512877688095915;0.0048143906275487595;0.004004913826926309;0.009091315969026735;0.07172893047033053;0.07340104878905813;0.05008808125772989;0.022689283647207882;0.036900790977624595;0.009672637419671577;0.0007851908464781725;0.03887804436453854;0.009980029965328754;0.010769293678792227;0.0035184897782432095;0.001011470624561266;0.0013428365809280507;0.006697099861831715;0.0076164459199990625;0.007545734767903863;0.002066083927381577;0.026044633412941786;0.00361266086222994;0.0036302818752483148;0.06259716634701576;0.28798189926530077;0.025017738443394395;0.019021543333838403;0.0010107764631051145;0.058993729954994016;0.10541007612661803;0.049284000624474175;0.028248225063750635;0.02410812422395782;0.0350873611133753;0.02365908896045595;0.0025643191433099427;0.054332474326716666;0.004913237575419759;0.003347396033004123;0.020505359474687266;0.052162831330670255;0.02222389217860108;0.1072317584599817;0.10699292029625809;0.002685758265762499;0.00025883752626595767;0.000771397476067388;0.02501728333872073;0.017784876822030515;0.042902893888803806;0.054087189071413126;0.042134220486984834;0.05252123834226405;0.057369413047924825;0.027948506493620386;0.1350329254243908;0.16114686619257262
+Promecarb;0.0003464915148149515;0.0;0.0;0.03242644716837844;0.02985309607479753;0.1630663315880925;0.037255253397810335;0.004632329358349507;0.0043964036972619115;0.0048086224938698316;0.07282136837179855;0.0490282135931587;0.002235044096190209;0.0;0.005370838727694347;0.00100731117381651;0.0;0.0;0.0;0.0;0.0029741210335366306;0.013620296327544546;0.029946657743867504;0.0;0.032816353909812246;0.029188271553184205;0.05417745251195962;0.05852834787996976;0.06442995668005046;0.07845801350962026;0.04922028859518407;0.027417146535639206;0.025517184325053035;0.007222937763716627;0.01484224522570371;0.016059140158159565;0.06752808272569942;0.012071102571429702;0.009554346273895026;0.027217228795513627;0.0026293215984131762;0.06701989834538613;0.0009402012250810959;0.0;0.11474904133727783;0.006239242391247153;0.005786493451668639;0.006165016035940511;0.0064644032600767;0.0;0.0;0.015550901320796139;0.007078946707758276;0.011001456270089237;0.02884972169891081;0.059707548638411864;0.002137207387957615;0.001590473040814347;0.0029774292082330868;0.058904643332225184;0.00277305968363042;0.06731018191543801;0.05357994778371152;0.05354283448503584;0.007331985208520921;0.0017403391500942901;0.0014951506437005805;0.008221701186972467;0.001619117724352933;0.008916513633881467;0.006112787094833328;0.002368920338440634;0.05306422155777231;0.057879642824366126;0.03662800070422073;0.03627104007204134;0.12411272411455218;0.1364037232537389;0.002752325705177283;0.01846440674671494;0.024055111271317327;0.02334662295082459;0.030095097594000864;0.029596891686926505;0.04385351689831293;0.03745032271274238;0.012664776418510246;0.014028641649749346;0.06222632665022576;0.01059151710820476;0.009319799481439798;0.00631126276671323;0.052435063201106455;0.019364604766809228;0.024396155581392513;0.0830989974947978;0.07852204313128378;0.03750172403651303;0.05048632222945104;0.03741035974837219;0.09223524116558504;0.05446341537828914;0.05424429714293627;0.04288329651197686;0.02324926230815557;0.021419121754012005;0.009759718277804162;0.011236336774668808;0.010990263169410416;0.016848048529270666;0.012471904507138117;0.016842436014105386;0.010964322919653846;0.0032241558221159598;0.017235605683661736;0.004156553392101614;0.00013850863942764782;0.002112629200236029;0.008222250976806018;0.01371329250447826;0.0018753616903886658;0.0038665458892809135;0.00015049140442469888;0.011350060054776548;0.010517512468283117;0.012012568433994989;0.012750821248164394;0.06452621994073489;0.0822273542996801;0.06682776876353566;0.13648992203368074;0.19092633083699515;0.010382516258409927;0.11511381703791526;0.0011057627349605882;0.1252533702670591;0.11340837318108153;0.14891353210463937;0.22704873162040407;0.1837633027021582;0.13632196368125776;0.2238196405164323;0.1454007550997676;0.07771487046901857;0.14681289842314577;0.1886370551210891;0.3385334673453752;0.11223336080919284;0.06476976181258595;0.14258369878317262;0.0124066733108297;0.2616057091121355;0.877948457287922;0.07355689112896431;0.22672375951237395;0.25771144102264437;0.016715633296699058;0.03199586982352438;0.033955643957760455;0.06492418902447465;0.21520364396844352;0.03182062830418022;0.018756050570963287;0.03557076685875599;0.009374715350102397;0.01115889903851043;0.026088786102688794;0.0008982527182701272;0.002538866117205696;0.0297380046441462;0.1068249209845767;0.017482911345405097;0.005650788695362072;0.010371285623251571;0.01177404849683146;0.03823592246180956;0.0011010777488171277;0.015525930235934089;0.0446394942184902;0.019578354429389166;0.02869181324238293;0.0007735925655388626;0.06870605429716867;0.025952423052714054;0.0002655396035047855;0.009931454928541077;0.022946492110221532;0.0;0.004221481180869678;0.034139176735841346;0.06120919966950875;0.009044140377883945;0.10898294690030065;0.0017384721196575712;0.024227731947166414;0.017952248918994686;0.01859658589388199;0.02906868127179803;0.07926677798695007;0.019332540868353364;0.03152559487132713;0.022107419344093104;0.028688265460468817;0.0008832391338026722;0.03772179512867873;0.0015800664954938306;0.11694125472833786;0.12891320690204364;0.13986413902871722;0.05585656158319648;0.2253146627278602;0.05408181299434754;0.03463427928968207;0.06794926808129037;0.027566563244320944;0.02367497099997822;0.028187847300683272;0.08038716844776715;0.006288245057898369;0.008579744156620037;0.010868026139020456;0.05084524066736889;0.04546317186303919;0.03681173343202045;0.05972261973959743;0.08700977204394572;0.06468952001866224;0.07448704875687809;0.0498093594412101;0.002464823814847023;0.002795625984782306;0.0024450479762949833;0.002881911776806711;0.0015325903752065743;0.011098877761074695;0.0032505813800545913;0.007588876907921105;0.04999187368719011;0.015131857512900082;0.002763642688415174;0.017452930862742883;0.350379829625491;0.4021928283021093;0.10011172078371357;0.17849138573192272;0.032762049707336774;0.22462801870250573;0.020274122407339765;0.0390770216442474;0.076963549989503;0.008350478746846444;0.00832847128607989;0.0061584877842043445;0.0042775204940756935;0.08661141786216606;0.16020240543734335;0.5838190650421249;0.3544559324279005;0.036861647722507926;0.005816568861535558;0.08923277925256767;0.051692480843055805;0.0;0.0030435624643508317;0.0011484342414772386;0.08197874857751619;0.12406975900607205;0.1742101354320777;0.16795520607245568;0.015390802367695392;0.024849930288627864;0.04062155894804956;0.0788509029869864;0.09674307753598778;0.00870005611592005;0.05374687475740267;0.017173820889344067;0.14431188404663506;0.08009842069197336;0.9999999999999991;0.05133620992949272;0.25788549145423695;0.08844666237126579;0.019138250214346446;0.08065396099809911;0.03885647589467775;0.0010420388440700635;0.004279725677402092;0.0;0.02834903055364752;0.027666751676782973;0.0016196877863091336;0.00024134591765849787;0.061959245789181605;0.0336637908758202;0.0014846993300096265;0.07782864100028002;0.13314569906371077;0.17496431394177395;0.13748423198061466;0.03756377365231296;0.0716847569377771;0.018040022567280378;0.02949027562284314;0.002043152377749485;0.08875847363669113;0.015352542846491173;0.0;0.01881993673958044;0.018512524812352174;0.009719151023909092;0.017719017567354455;0.0;0.0006529368982528607;0.03351451050654912;0.01876533698928116;0.0017858919879362022;0.003285939398457259;0.02276384012364469;0.017582412626445023;0.2877624997384119;0.07425115791548026;0.05701323395459335;0.028906317296346372;0.0885560925014523;0.07218514805149219;0.007539999856531183;0.10002767928252349;0.06285997728434377;0.10849525383952184;0.034231156966830656;0.004943887064973298;0.8618406916112095;0.8703272763443841;0.028702570988053913;0.018794252632494075;0.041208611144457875;0.029959992115107397;0.007182768042829058;0.13935741263814724;0.0142994525815676;0.014854628473563749;0.007701984599164683;0.005433716898989755;0.0046620081379842885;0.07737174717498001;0.06250379103462557;0.002349424682417158;0.06842705772085564;0.0034205704647652826;0.0063058930969924105;0.00955177012970266;0.04700185750238576;0.0458374356975707;0.12146943328679119;0.06074141257569894;0.0015304486133132726;0.02206974993052193;0.0011091228279521718;0.016604723645906566;0.06591890608832104;0.32812854809997594;0.011211225787989235;0.0038435977294441026;0.1220500362252268;0.04677669464780167;0.01754584960869646;0.025483896160421585;0.03506696152963246;0.03316219261174675;0.01701982457705899;0.03454018057694999;0.03261707180766694;0.002688471242451881;0.002071373382710711;0.006896693943553209;0.05935914405023264;0.03164403747302559;0.08567056755815516;0.05396910387572978;0.040760944924519725;0.8618388147450954;0.04873637368830453;0.07844253129290411;0.16131240126198773;0.22810608062777601
+Fenoxycarb;0.022659996108228716;0.0;0.029950513006797987;0.02651706311493021;0.024072123131425753;0.003400889282169176;0.00046630826860255434;0.03945679856364662;0.0329758918052132;0.021961304816183153;0.0207968181840734;0.026550004894118476;0.0018528889702676794;0.007682231221510023;0.04047978056417093;0.04063932283751535;0.0;0.0;0.0;0.0;0.00017285369496522536;0.00015112682971129532;0.012818376928238442;0.0010757538804892356;0.0018403377131999401;0.03443951929415006;0.025358368225093162;0.01696423321824217;0.04911654379893278;0.05421331702899671;0.01445400712057466;0.012540160575498975;0.022972620485377265;0.0026863025736948314;0.03634756461445896;0.009284614761052749;0.12913657587543534;0.01562190284853338;0.002546427072803835;0.0006295509587742573;0.0013878992177417287;0.15473061080872827;0.011450325501422144;0.00018428982548581528;0.03606864083434701;0.024757413494415986;0.03017769685480427;0.028043239296321115;0.025318668160715093;0.0004830591276860145;0.000444816195994921;0.013579014316365203;0.025842615779576292;0.026043113460559295;0.007134532552732186;0.13566963869347243;0.021793859365358506;0.01646195068213098;0.0028346365403617868;0.008385819643093165;0.001956522487628265;0.012501779533340033;0.011789044922879972;0.011844113875948312;0.02301142291223118;0.01805066073213527;0.016204282030825527;0.0027152616290483426;0.002341379258380033;0.0031614573039156013;0.0020575407793110142;0.0016003922059212574;0.023918663132338685;0.02474231332445008;0.10042704055152157;0.08407878312443237;0.011858961074470554;0.00885236550594506;0.005327297401947831;0.059380301863680714;0.04378980566899983;0.039963495854702685;0.036338234063584225;0.03811840034908519;0.07006553948954153;0.05955127080572607;0.06283830006481131;0.059169483350506716;0.03382426772878446;0.01702456792340423;0.03360746032418292;0.038951645029390566;0.06750711929404316;0.04217269767143705;0.05254681220629575;0.02480157132044995;0.018616836589950888;0.04583229558221555;0.06307690638015806;0.06994028999256985;0.09900719265049052;0.0315914499632442;0.04448970895751479;0.035933418053843806;0.06177731076025744;0.0007370497028652056;0.00036574009866177393;0.0002639220170507092;0.00018529643299477902;0.0006633699781021249;0.00043291096451359497;0.000992554082719679;0.001634591617702959;0.0037441594791986794;0.00421581805464505;0.008417108866395741;0.013097066475421365;0.003910395451599407;0.0034298249877001475;0.023393512010293126;0.002999079187489564;0.0038312066715314778;0.001226426620501925;0.006654640785262833;0.010893219808187662;0.004458549651170228;0.0051438640538941675;0.045549644053333234;0.047323168077922514;0.03633280664304224;0.02673467118637862;0.20968844580574617;0.023946495726733467;0.024014260150561687;0.0026942607614238497;0.21252496390310574;0.07395684812327535;0.17179943240317402;0.025019745202869623;0.0247577902872693;0.03792382893009656;0.04778982296664314;0.1045734607409137;0.02632089568621125;0.10671575501745603;0.033956530803992094;0.14334660927873438;0.014728817185076341;0.014847005737565335;0.04213812907757665;0.01216387684882706;0.035663240662355385;0.10431956127015377;0.010214019881746457;0.03160335639079627;0.12086380868583158;0.05139805712560752;0.04588703795142451;0.05933289330123087;0.07859622204518898;0.09737865914312482;0.03639724792577059;0.02384703645605876;0.007796721601406108;0.015995767115684956;0.05217356398898197;0.022968869249505332;0.003664890545528669;0.0038270550428573754;0.05509771478019356;0.024538396312980843;0.025455917979287326;0.02148929293236628;0.04971983021994953;0.04007703229552414;0.0139365462082421;0.0006244474922980891;0.010064579774298928;0.029554988973624824;0.05062136476764822;0.05512219053882114;0.012385860180153793;0.04900741181271511;0.02217449573618024;0.07489687258070242;0.01786006091228409;0.017713428796717678;0.0011623015686624372;0.03954178977166737;0.0642205886977779;0.07403711189264361;0.004681962700742186;0.18679545972148823;0.02626405152694336;0.07211443968527906;0.06892483993337004;0.07387046275381945;0.06783281123268677;0.08008732900294818;0.0768834369320442;0.06322585487417103;0.07845625112668513;0.07263737162536738;0.052887650674342375;0.1621547539813609;0.0019678077057153813;0.03546228597353163;0.018333950112159363;0.009876649959242293;0.06065122968723102;0.07100069550470445;0.016887499628332164;0.035550005281089536;0.04895638264143377;0.07636607350514894;0.015320591256571434;0.024173846052912788;0.05109646845821162;0.007649709380425891;0.047648156025750586;0.01581478730728468;0.022051581982071553;0.002057826414646479;0.0018548394633377482;0.02385544788668141;0.19909742229578925;0.12217776370171092;0.01494156708906245;0.0116470998110128;0.0018389156588284029;0.0015594303521156982;0.0012198221254611306;0.020683678203791567;0.015697994150371854;0.0005121767805643398;0.0031908358196158426;0.00379605128042393;0.02852954534139789;0.007793744500591723;0.0030186341713079345;0.07213673662114752;0.016619777185562384;0.012679577001315551;0.005815632463639139;0.1678886832393641;0.22013321799200267;0.04910347897802239;0.007402342707700818;0.02344170009114616;0.06720901902901961;0.014354407955319866;0.01405536955601599;0.1184292369739837;0.0039825173368240084;0.645462220123151;0.010126777949290901;0.02283009774437392;0.006439730549567523;0.032270612357334284;0.06168551979135462;0.3293568145288345;0.004676940650386345;0.0010033442092189293;0.003553990526722379;0.2482098292506221;0.007019835495133015;0.13025435266897398;0.05294428082502787;0.15407472885263926;0.01693132552919995;0.004722952279725898;0.018717770788011918;0.08831396289591764;0.01939994497562758;0.04435250529014402;0.0728786794937293;0.05907504305450019;0.006635371423429503;0.004249244030494257;0.05133620992949272;0.9999999999999998;0.04483653294124742;0.3343325356565522;0.043739397799547705;0.01889777504247695;0.007240767462312677;0.06223598988885847;0.015379583394904021;0.06343621453459544;0.04726410326732265;0.007093563837834074;0.0033807859679772624;0.0;0.011900909867456962;0.4421607906036452;0.0007454753433958088;0.005882479953864833;0.050222076881523234;0.04115920769687954;0.15861369128915745;0.06141911298830967;0.028881488447748613;0.041051496136093435;0.001079472849079684;0.002229574818570152;0.02657569803357436;0.004589795010965846;0.02804559344986615;0.46553734723104545;0.29876887881267494;0.007441171330624738;0.03222067374648474;0.013584205150181756;0.011812969370555284;0.06775206044249707;0.060538086829955165;0.005339695735663412;0.015191327113566518;0.0241962062799274;0.015611353906366565;0.0085455007001137;0.006497312100807248;0.1141860487583445;0.01940932420583193;0.026146030627982222;0.011435342779763418;0.003644190620486913;0.02252301059859175;0.017368383221865485;0.08271598636170739;0.02311879316276505;0.03680063073498423;0.03193251174626202;0.024748042057295184;0.04921643940552161;0.032804511208635256;0.06526785924413016;0.02578485462119026;0.00745606704079455;0.004164203538345781;0.02319758097086133;0.08158505513740213;0.06509321759486413;0.02018375198159843;0.014266802847385456;0.01764434681744334;0.013260332321664289;0.022880280843753306;0.018802698124582174;0.01331984353014309;0.0024064014290652905;0.0025538181320523407;0.020153828350959895;0.03568491951087709;0.1312171594726787;0.05590412354687002;0.0004709635869650768;0.010623717728314748;0.13535178710112633;0.017249818943846723;0.04101030683462467;0.06545583212677082;0.04081299405604009;0.05359399563576643;0.11038058587354674;0.03557335251954411;0.012707509983361672;0.1843131679900611;0.05837286621439659;0.08322534270763675;0.09524619141815122;0.09408635685807752;0.08526714808397352;0.024299764492766256;0.050476012108010386;0.053953115766013984;0.020496437562196584;0.15166526552784698;0.0942962849631777;0.08430957078379997;0.00820976515697533;0.03728184713739935;0.11875012398662987;0.11686740192175828;0.0995218683617028;0.0838224184080167
+Indoxacarb;0.04317663233738207;0.04058341420602284;0.040552371670036204;0.1519494680747418;0.14396701152403416;0.25884230293100224;0.13358131721237565;0.12152737534385642;0.11752712934386811;0.05992440752889457;0.31586842471137827;0.12369687352672652;0.02527660045261994;0.04219829835735528;0.041702689461847395;0.03987421152147978;0.03807867752052819;0.040240073189768084;0.04214287111433882;0.04222885118335411;0.035557434582396304;0.03598198914892213;0.05544704608607614;0.03869627552083509;0.0920037157498718;0.039622891341175435;0.039379037435934836;0.09142775501270355;0.03191732410439492;0.05737565712130088;0.0254816914833176;0.01795416163459951;0.1816295560616488;0.10450696282627121;0.24026728419821924;0.04081559658180023;0.12647754597140237;0.00991615655983378;0.008229220848957747;0.03953841083289311;0.03412951864744562;0.12485771666106825;0.04141454119809102;0.0013004130747617268;0.036180573054010866;0.03220996680830551;0.038336861261062484;0.03454418230159704;0.03533417558434969;0.024529747647664732;0.01853616411370448;0.06575407132116443;0.181000135276289;0.19024721935227015;0.044570142571914426;0.10958588171384573;0.053005605900451704;0.05329219269968818;0.08584680849027793;0.0797375940532241;0.03798037890508246;0.14309733769223337;0.1443675189425506;0.12576372504897848;0.05532615799715511;0.053108819912465355;0.05421919997602262;0.0811552413992982;0.09673547536544937;0.0817791855332595;0.07040485379708014;0.02924263089398421;0.026443716900378725;0.031098141918985325;0.048692367301682936;0.04990341301440016;0.09922294632850026;0.0996962441014431;0.08877841182947988;0.09034719521986961;0.04620138026192835;0.04391596283019403;0.08228594801981191;0.054804829593972336;0.10402079591772882;0.06423606115719002;0.14758881891805775;0.1283871389888751;0.25754941579334706;0.03058456550973854;0.09936860034807914;0.09933595973506984;0.07736575155012565;0.04726092879201936;0.050759649541461005;0.05650586808606623;0.02439716878848112;0.1289537322222216;0.12039191995672203;0.2011106782686669;0.3446292339536163;0.11929918693730278;0.13940770958685572;0.09679308208157078;0.1324673189270166;0.02894325235652619;0.051947016090302986;0.023317337210066784;0.028921473067272413;0.0410184256784073;0.03502936969700246;0.058535505544844144;0.038654201851561786;0.03361803024822512;0.04164781709858222;0.010135354576338391;0.01169938975523423;0.018415474793780303;0.023840515798903138;0.027204519835953792;0.008974532599869427;0.029235679207808254;0.02818842069444342;0.03544987023171773;0.029688739074245064;0.051599248077409315;0.03245890789879882;0.02011577817921898;0.06169082386653313;0.09641727922126389;0.0811878464814962;0.056588508201649346;0.021886671458998405;0.02015230271366462;0.03451594004357663;0.053722110069981156;0.04088962117457178;0.061199626290208683;0.1599090916255801;0.14217296961615955;0.03003159930359654;0.08688714479037794;0.0409740925360021;0.019937958106916422;0.06517916017166205;0.02810673391022616;0.07590750622467932;0.0011342233862018573;0.024376312229778194;0.01861038383684727;0.06628027800371301;0.01585066169684648;0.10891335473155604;0.03093969118396756;0.06688420759436722;0.08341685083844562;0.030496023782715473;0.022968766392543225;0.024292972070128628;0.017940089614487648;0.03631539282924462;0.06008466535307119;0.09787309658664167;0.03426657802315178;0.03814490147323765;0.030005419051797613;0.08583156032948577;0.0186211873246677;0.022975339738567444;0.10127146467769588;0.0871079523044938;0.05939497067507768;0.02013409672506033;0.17747978315787977;0.177888643315648;0.01737535904149446;0.0035510627954953283;0.058229034907114584;0.14742994254023348;0.0741216203480665;0.0674068478943751;0.01617760566565874;0.07942376722085487;0.07037895600601016;0.03137001903512124;0.048745256151903726;0.11272504238543665;0.00183494776076575;0.04740327135726538;0.11561725989916231;0.13025775611671286;0.04336699429302697;0.08287072103688;0.06325551692375017;0.06487013830463043;0.042715270386848546;0.04277873064395883;0.07623721634821348;0.07215353021233958;0.06084063034066806;0.08091313037033479;0.06346334919181036;0.08289182035535483;0.03427371756279057;0.11024082445765222;0.03800273919400867;0.22682087093783884;0.10977760981660965;0.10455296463165216;0.06151882424713506;0.020175865549481215;0.0666579049813203;0.0619451479472167;0.03686391560881716;0.06252025886591116;0.03224942075038385;0.0652941260499242;0.10028730680214865;0.022444581360737157;0.12404625681191649;0.0276712981249114;0.21303675468330247;0.018521820750114826;0.17524852238736924;0.20505235671466882;0.15922413335082347;0.1115306667161018;0.13953840399333814;0.10439491270205081;0.035708561626638914;0.03339160144358091;0.0356371761200659;0.053812330044625226;0.050700888524190545;0.018312943924282447;0.07680344565110787;0.02565655440877405;0.04401039801741211;0.05275384478026919;0.07390361362866005;0.05275717204225337;0.3751672824807635;0.3582855599346102;0.0776754985045214;0.10810154080225183;0.041464507302238676;0.05181087605791387;0.029103435691114822;0.08703098257473944;0.029632213150846715;0.07914579454307905;0.07889068045933184;0.04346285623929193;0.2135786374126235;0.08709556383874845;0.006314994906686131;0.08286215780364788;0.1043530146243744;0.01930037329794665;0.011609249594190256;0.08199713454005972;0.021944959304843657;0.018968081115828577;0.04612906664520602;0.018958748423122;0.014942322543891948;0.08019264307709069;0.02706426474673263;0.04311453532681458;0.05675381119239645;0.006391826030954553;0.10206340027427178;0.11707158262276698;0.23288785647364488;0.014626089306240998;0.07946692051982847;0.015030158069574045;0.08258801611483342;0.12180195111930235;0.25788549145423695;0.04483653294124742;1.0;0.08158528196349027;0.04782778907207623;0.03788526083678403;0.015941692743816918;0.02651591269592086;0.06631743984170031;0.03456138429236033;0.006436761990258357;0.02744626148241736;0.1246931074139255;0.004154187316437526;0.06347441292673718;0.05019232357622792;0.07618119831390724;0.012692063956792432;0.08154099760329911;0.35612971689577927;0.06142075491235716;0.06158204794258685;0.18494093023658265;0.022512020441355883;0.0276734492633868;0.008158602968190255;0.051437638563564855;0.022263966787300162;0.039189117245676544;0.1007971632441778;0.040147807841237775;0.014624303997117448;0.010428165152644235;0.0;0.0019510211605205865;0.060810791037419425;0.03147350730038181;0.037568931647388414;0.009956657938519234;0.09307737947519118;0.0824409595439805;0.03529623111999084;0.13011269690681887;0.07843793578275939;0.10785950289181807;0.10925959634620964;0.031243298636873588;0.01970343264121782;0.13473704763818847;0.0828043621873013;0.018221718731677498;0.017340995966877038;0.039041644161225415;0.05388048607002465;0.05302616851308392;0.017203411767034944;0.07635505504557477;0.09854186510596119;0.01654988813963647;0.05737431004882751;0.09353547667273168;0.06124706692842809;0.07032921620372705;0.028192776774339724;0.014497134565118482;0.017593194695403144;0.03657850348528807;0.042585043563454515;0.06322050102110757;0.06734493809303675;0.07249648090549543;0.052493180274121844;0.052172990955146596;0.1238691581234625;0.12667648026437106;0.06299866144893325;0.09394854134422642;0.003974935627448065;0.1114144336880378;0.15006667110922797;0.07792945558144479;0.3040864576150287;0.11134699000911114;0.045652059734646935;0.07272036943629685;0.04546013438787678;0.07096254067151456;0.04855769431469667;0.05472518040148073;0.06671498404397364;0.1287349759434634;0.25771123542229507;0.2447346152266297;0.1816081252802562;0.05060948766678858;0.03433736715266666;0.03532756031548773;0.05357360067884421;0.03421696565975879;0.07918597784932965;0.05390164792555759;0.017452227738313432;0.015174387597387096;0.06931296287496452;0.06268997429513168;0.06203511261090774;0.08443319924123477
+Iprovalicarb isomer 1;0.022760392889673572;0.0;0.003699678476523619;0.003233200840895564;0.0019329849973603805;0.025724924375964315;0.0025067956492590255;0.01747986761425039;0.01735953648156463;0.0032241320448835073;0.00519253507543784;0.021274951984780244;0.0006362516387833573;0.0012901680898436236;0.0004910805962620422;0.0009826935363527907;0.0;0.0;0.0;0.0;0.0;0.000693244305004364;0.0028464675282512406;0.0;0.0029710901720323086;0.01741212559087481;0.012649137939244971;0.023764554463910546;0.04521137243070138;0.2972366524721087;0.2922800519565884;0.16904746283905892;0.009182553464562187;0.000472105279386679;0.11121731368282813;0.01816366725010128;0.09796593987613694;0.022145528204953073;0.006493252155778521;0.017054747858364694;0.028946780084284102;0.00998773351857335;0.009904491285406278;0.012710031565850521;0.003801161487611477;0.00499244987941212;0.004452998533155434;0.003349734905723671;0.0060962147614638754;0.000567756786908225;0.013958724699825592;0.01657053177858161;0.003457211487769201;0.008386041593034431;0.03211438453213335;0.008218925122153036;0.02485445705968908;0.015451419257567347;0.020587264972142697;0.04976296735212957;0.03170709773184009;0.020692782682554787;0.01733512910251933;0.017223124161592124;0.026519630477437852;0.016333778838621176;0.014543036515554688;0.0164103687711441;0.016673650027770215;0.019311098280055315;0.017703414211454237;0.021230600927397408;0.46398739955729795;0.09297144030382924;0.06215456158376517;0.1282004777609979;0.024553898912874426;0.04528819855613108;0.008467889440337488;0.04043285824617647;0.04898930172848492;0.05014310940973797;0.02936455769623231;0.03191809661382263;0.03847615115324453;0.019912605054545212;0.0376868420250823;0.04600414117017941;0.06448430913113555;0.03998631998821248;0.02078770269447222;0.0050284099635189376;0.07108754017278851;0.035017635617605486;0.05135429018821497;0.1796462155111415;0.08836574189430915;0.05265437988416899;0.10616455179350048;0.08044111029021342;0.136640831442205;0.07782935514047998;0.08142854331777093;0.06141593934310254;0.01353229313269972;0.007918426446961222;0.004957645539266337;0.01405699244552294;0.04548801962270484;0.02689474196520431;0.0439413043657162;0.061627641098354606;0.015556038055988956;0.01650580904068128;0.006951224440216388;0.006811533663235511;0.0056174623255374;0.026159245427595505;0.023663433654897058;0.04707109565322504;0.03254269547163108;0.006668915541200197;0.003188585928954778;0.07003132621519899;0.016360108675565553;0.00763227813475706;0.008025428891460866;0.021651116556632193;0.009436956775552403;0.011408855958661531;0.0772035776659693;0.2146979554031256;0.010134119734223242;0.08796304878982222;0.04228867351557752;0.2014351030019118;0.17890853104804477;0.21748342288752384;0.06745612785860987;0.0716777305537883;0.026702439914592223;0.10927627839397783;0.22566618513510867;0.024251516920686906;0.18529360476447027;0.06554838774744776;0.10814600288041323;0.13650073215197148;0.01696697729444229;0.0292509690141482;0.07835041563570334;0.08451709683329899;0.11193927795632175;0.028528131522646487;0.05087376242159175;0.121269202390044;0.016703503640064746;0.012384292918917881;0.03060148936627219;0.007189737727577275;0.01733547547140068;0.03524287677973175;0.015969587450057495;0.029711926804473685;0.05972622986734076;0.078483290228645;0.08254133473555456;0.028071059729295217;0.029976276175856915;0.015998167939990288;0.06839433647752202;0.009888958430564112;0.006755763916800319;0.018553769057297904;0.008548842012915609;0.02163964417401064;0.015627574249762587;0.1067420138210076;0.028941259576215732;0.015977510951148216;0.014298575200030897;0.0004890024603419842;0.1727233854909546;0.017833571554534768;0.006811656867000216;0.006450376825795384;0.009398488310621884;0.01564799386612791;0.003017943825292608;0.01442221445533287;0.037397056109997516;0.000803410605596294;0.1268224294319583;0.004293155948866452;0.058696335731822175;0.03244187214372754;0.035358483560364126;0.029533574735602933;0.045787477834553586;0.020855846066702353;0.021753896530946615;0.03239395153380318;0.026164866148676476;0.011456946311558646;0.004324460928480135;0.0010303710145289217;0.07246701739348001;0.04332829374862856;0.5873938101911045;0.09394494203531895;0.1679674072512263;0.03626871475199467;0.057497815677036546;0.029047743371427265;0.1924142650060299;0.0683592320440271;0.01480608865202321;0.18199196559689668;0.04371332331950503;0.006907876719210249;0.05083321749287487;0.0041338392556013424;0.034264347942253644;0.006420275054633972;0.011095047609476943;0.018524706138295786;0.013501087126422734;0.03153297001308024;0.02259074423419207;0.029619925673689672;0.03315088524966764;0.03633713121315628;0.021890030534370216;0.014977659332342484;0.011893633298590566;0.022880287766167157;0.02302399076276048;0.03117306832457989;0.025708735816870252;0.02069646996661987;0.05189620406156487;0.26893122023089566;0.10312163616450878;0.029688298681279788;0.09405791765659316;0.23734036243609619;0.009599659406959553;0.002430471019945224;0.03749843605863258;0.01579489931647563;0.0;0.0;0.032408188671034295;0.011752326661838163;0.02032301396814065;0.004479460153983887;0.07379518839015572;0.032881614829344805;0.01515540146248535;0.0027045547676471052;0.9998302902974491;0.05146167909590568;0.0;0.0021748051197629987;0.07502687841507226;0.02985728082707956;0.028705002413377152;0.06283090480150003;0.034999795344381184;0.015001381020949112;0.0279604467127976;9.125680093478927e-05;0.013012326650484494;0.037369183271399924;0.1295199654601429;0.00817209954238969;0.0009754018612656076;0.025187304805047665;0.0086054952943179;0.08844666237126579;0.3343325356565522;0.08158528196349027;0.9999999999999986;0.014258293721630864;0.008696509097177072;0.040734546357488695;0.011066760119030326;0.024137031631887105;0.0;0.33182311542884124;0.05361044645910704;0.1148824349565619;0.002013390244143932;0.015405126969427621;0.5431146393979647;0.0016446782652692398;0.3285672174296154;0.12829627040011898;0.017247565765275072;0.133622661167561;0.07747215710742851;0.06740709451325301;0.002644367298357942;0.0010122020899128524;0.0029337554506853546;0.005660516867854816;0.021544185100663478;0.002944796523650634;0.49346608803643577;0.005652679477661442;0.00296145226793986;0.05414040599034251;0.033687040400365194;0.03921618135649056;0.07425140678560284;0.0522019745070247;0.004794394996899336;0.006008562512285501;0.01797870589972875;0.022250502532655505;0.0005435119823614277;0.0010354116724486998;0.13566102900535995;0.017951470070804987;0.06501533341228345;0.023601593452754855;0.006824618006384204;0.003413171539544411;0.07127152815626688;0.012065001643643148;0.003111140547671028;0.017695032682975387;0.08950842896036026;0.09770313058792997;0.1306593131436535;0.01899408419344578;0.07380053929076776;0.10860999136007089;0.02281355351022454;0.03873913240957613;0.0015586101596468957;0.028982689505300724;0.010997423279753595;0.0033271817668023684;0.06083122480551038;0.0020371044177545502;0.001979390371504118;0.002439321655560647;0.0031254146769009884;0.0229077515157922;0.026050879826167297;0.0041561924302553396;0.0010168902355284638;0.032641072252806914;0.06632947005829053;0.09270142379630182;0.01319869073677285;0.003569057963952968;0.0;0.001560860575628766;0.005286422014415516;0.013458713096615445;0.0074184832583683614;0.009822228782086963;0.00017265625201581683;0.005552938185600839;0.0014435669048830215;0.008404061028453237;0.023680591752307693;0.06368895528164874;0.010204841770123917;0.07340609601470427;0.05616580838003426;0.002769348892249876;0.0025238170984123224;0.011900146579252488;0.005887885819282121;0.0577609751799688;0.1079742605743216;0.08301797776204532;0.06666969240704511;0.09988318410804;0.08413585716569254;0.07452998403909326;0.17429966849440962;0.1894850392430079
+Ametryn;0.6881782096321254;0.6710245277064351;0.7255201211230219;0.6916497098613088;0.6957625297386897;0.6963830486786307;0.4249943639739086;0.6895739583920958;0.687835782013853;0.7327531206113574;0.6838795697822695;0.698293973212225;0.46315597718280827;0.6855965359710905;0.6884060392671719;0.6641415736031351;0.697771212872789;0.6870453057239982;0.6675967664918516;0.6821002759587312;0.6921581658128662;0.6846092221797522;0.6741417083363437;0.7000538031775703;0.692451219032118;0.016633985634632108;0.37354877193035796;0.6334239310819909;0.7115355904689084;0.2561704961073304;0.3733857178566984;0.18012537936466486;0.2967759419310235;0.5527851718702337;0.4222042066905302;0.7605094555505406;0.5343360522007106;0.6028224117775007;0.055534581966937044;0.42162657195998626;0.1322236754960585;0.4689442543237455;0.1268089144981425;0.0011642862667918046;0.043111378145368834;0.026327292458597544;0.0285542486105032;0.026979920988491838;0.02685544624143809;0.3450606316508499;0.2634044570097283;0.12138541417447524;0.06624696847110832;0.08079960568792653;0.23930842636144517;0.4817459896408987;0.2646087844310595;0.3454976356407904;0.22144764662988634;0.041544665258408865;0.16606407663023232;0.31454028250899674;0.39522119673512784;0.3902616046646813;0.26286921203226754;0.33046945410599726;0.3414963288436672;0.2374070767581538;0.2335861725335096;0.23471718420028193;0.21845266216823306;0.15914638474118134;0.017977748180941857;0.030077369597802137;0.05825131944668125;0.050863510031528274;0.02019461522894079;0.00545708788011647;0.020330224529175146;0.07134626140825275;0.06396326069720491;0.06404189706606205;0.03754144889888877;0.03429670187017774;0.0938988555258604;0.09805819672567344;0.0527692844940707;0.05752880221702014;0.059162485565970604;0.011733662294745017;0.027871505319630983;0.00864879543118134;0.012967321264744168;0.045384060358105084;0.04998414014253502;0.041573233635906884;0.02556354773996036;0.0420235105672947;0.08769618582528003;0.0368657348545789;0.07836791200550396;0.1335601056932586;0.10878585170634995;0.10936233607418266;0.08209325051500328;0.47393978789574326;0.41228853332995063;0.43707506233187304;0.44161764022923217;0.530585782300265;0.5010849233662006;0.46429374727747097;0.5321294924718586;0.5187401254324574;0.507048300024622;0.10149502827273603;0.08665135498518955;0.115373234319438;0.392977671129911;0.13498203111981102;0.03397091191464721;0.11211533450985965;0.38833452721517087;0.045911559299046285;0.006904208160021938;0.014514038008048076;0.013709107760158384;0.08049677270830399;0.08599720325173607;0.061306229290761995;0.034404589534618196;0.13177057014640173;0.18025424431016;0.3566046518549643;0.7073549221673656;0.05060698430783747;0.5151135376977835;0.08564412378715297;0.7116270645155026;0.7309314008166855;0.29385391032683905;0.6678098530973846;0.3778184346522986;0.19963650945069855;0.5913748509414819;0.04800613533673637;0.028221289543571212;0.01865697686150116;0.36903554366698965;0.39903454537921645;0.46309601227890723;0.40770403798019733;0.1258725956783642;0.06888608717024622;0.5038704238015589;0.7101466182492742;0.7431380299386671;0.6696462443064563;0.6521691098448812;0.08863057333712897;0.6499064126457181;0.12329080367261586;0.06543923659794991;0.03145510763631111;0.034215649032960656;0.038775471145543854;0.0350181308961746;0.021863147166792118;0.029461043829398705;0.06322271831798965;0.052856170604074326;0.09779581329598114;0.7522904375924548;0.0682322544691767;0.07157487008641175;0.5861507458703491;0.04606463024298106;0.051963464464990936;0.2831985744417115;0.5761930787094907;0.5548547744055334;0.03619265397680205;0.3182852199171563;0.7198753624090093;0.14669419297484249;0.06233314513556829;0.039151069958474304;0.022572029909828848;0.4625888561027656;0.5863416807089418;0.6336577213909568;0.5511238773118876;0.3347860976824938;0.6703149167205644;0.46561217392437865;0.5038311924113039;0.49140804652989367;0.852043399195302;0.7498911286002374;0.7421718844400854;0.8384256107185613;0.7637167231361274;0.8265167067592729;0.7691949227191793;0.2893159587241618;0.7457370612331379;0.8558760424351093;0.1937758000845561;0.03538754170814094;0.034043503617216746;0.030164205274764124;0.40495378185813374;0.7414092123408283;0.25755772288552203;0.04235342327956939;0.2882098512027118;0.3594651397088327;0.05876613189819971;0.0010690314658912158;0.27785863802682875;0.5955461057947663;0.05827014880694655;0.030527770673252796;0.6101352108016395;0.5530854284915548;0.37026051387915193;0.4871371743776464;0.329937968833306;0.42292246434405706;0.16972518824317995;0.17492064113678404;0.15649014135257366;0.29647639398415526;0.34929405248249407;0.09634355118528415;0.20576811151825253;0.23138657307362973;0.3263917509440903;0.28271893477549526;0.21039085046523237;0.2353092193601554;0.3350733990377816;0.3235753965260352;0.07157113918731946;0.10480960911070197;0.2763125422645947;0.020259199108909883;0.06186112263119623;0.09426195788311843;0.040115502622639826;0.15187171788477896;0.15329641415791273;0.015165222460024486;0.5945053086256876;0.20078636723345997;0.034592809441524965;0.06125202565432651;0.4072871709421873;0.3196663416779577;0.6503200552183951;0.01431962961474815;0.2986282063910511;0.0807413480694266;0.0018824375664741881;0.10048109070193502;0.04685862866973039;0.2899802793717248;0.44561147228160075;0.35570551099175246;0.21703569525707903;0.03193857243464758;0.22150994956730222;0.4360474433644356;0.32020578666976995;0.08676085732677637;0.46326763215690836;0.034859329640712734;0.031881623620205524;0.015637681716265783;0.019138250214346446;0.043739397799547705;0.04782778907207623;0.014258293721630864;0.999999999999999;0.20635975626210917;0.012969296670064375;0.09323857754760403;0.2951360959069874;0.004805422322167168;0.05745313726050866;0.03932639127023344;0.09872902194369057;0.13622568330493565;0.0483688160881106;0.021935546179155583;0.2202509172531332;0.15766513689784412;0.08044124443298203;0.08120270157166112;0.030446729810962185;0.013208083043922032;0.0023705653185500985;0.8173987522939917;0.05286969058225016;0.24529448719030855;0.04595436621862261;0.10244973760449218;0.07706279757841678;0.02534564737587994;0.05218616078117151;0.23841126801622772;0.018675928431446193;0.0003735616730474946;0.002809708591909854;0.1376703063204103;0.6217918789678019;0.6371351846459069;0.4926312787458053;0.11599414547783743;0.010368490572297037;0.03256094391418558;0.21507366835105912;0.09487961501448985;0.2798967085968039;0.14696050075453468;0.16850641988216483;0.2499600008879181;0.06144341797357483;0.011604498938050836;0.5796753867966895;0.10075822516082102;0.8793483659627397;0.07967984366024253;0.0637378991905034;0.010721564748295694;0.20281631247577686;0.07180461938193806;0.031401216365506024;0.48149339503429944;0.6092345219767249;0.8700975711971584;0.30588382779961726;0.7229606516669069;0.31146846155624897;0.3155294841183453;0.00823059749889518;0.00962445389488308;0.04147934172077648;0.12032100164534153;0.010549942246328005;0.006030412662176811;0.005381795603673103;0.2033156446417285;0.06039604783591006;0.21389305417037252;0.09127077797183623;0.004090513669960518;0.07350807103554063;0.03851563546486767;0.03148680869708916;0.15388683729777533;0.0804392210268715;0.026493910212020844;0.07258996850837175;0.07139143328191203;0.08829511008557205;0.0198447406963966;0.0452067566753949;0.04222620022911459;0.06361045200954017;0.08491825087158279;0.06383762385205514;0.06237909544225709;0.7167623782139965;0.03508486433689486;0.04200817786917157;0.10404789195162131;0.1503848677181573;0.31592292069793476;0.24882106539926638;0.5652366538797178;0.05183833652447289;0.7250812485386458;0.645894829403859;0.3650557720527025;0.265083072227541
+Azoxystrobin;0.023280969647381602;0.02646623043998232;0.021230327120929048;0.026117619334615354;0.027301465099886863;0.05739113319102348;0.01063526298882855;0.027437751657947516;0.02789632521077494;0.04065309103015729;0.2426238739506781;0.02369878936113739;0.012316412975212547;0.01919067655766825;0.028465402227492238;0.027362323472417217;0.028010426558455065;0.02761669234962011;0.026678096070166205;0.026922447389295813;0.02112049317673974;0.02006676112555028;0.02462771986084673;0.0197234574670354;0.0965342497753816;0.027374385171237334;0.030513890637218297;0.2585104448520407;0.3297776362173188;0.06019016016507579;0.13182477624496736;0.006299856106870123;0.06518822455302065;0.04646800252612563;0.02740518672744088;0.06797353818929876;0.16599513703188348;0.5094448916649128;0.010756938544146366;0.06969320087946666;0.02567851695430395;0.01590527778583473;0.010025372726897352;0.0;0.009288332854063691;0.004637657089673497;0.0059462089173257645;0.004921075772333106;0.005689867936483416;0.015011228861148505;0.020828393191158458;0.009273860111404617;0.01820825278614456;0.005887448142600552;0.12693174826368123;0.01431783282148718;0.017253752352361217;0.01014386949514286;0.01877952258099845;0.02681644094662107;0.017836172496505827;0.016893906091424566;0.012408938143832756;0.013331826997346434;0.021493411493991543;0.010678594076026554;0.010489905828626328;0.0136446315750901;0.012847518697435181;0.013015319298133184;0.010446822986951619;0.009021521217494608;0.011159799241421343;0.01621575107417016;0.04151730457193037;0.025257504159579416;0.007618808845819985;0.002979017715199424;0.03012762771936523;0.030789823740311195;0.008196850233402503;0.007133408481833626;0.00740755370759402;0.005510597946428144;0.018467705709028157;0.013579516139163443;0.008369929689166724;0.010588526993633302;0.09085176513402857;0.008399733192567984;0.00962635755559629;0.0034184821781701605;0.017966847634322575;0.012628967542403747;0.015524735240875567;0.009375860106172211;0.008758006947829586;0.01521886580998561;0.019271162738235093;0.033223316662349484;0.04467602055796077;0.03198547387831706;0.034121498372597085;0.018865109507109453;0.0323210642716057;0.06497190213713916;0.03084103113431823;0.04150458776201414;0.035494714954326705;0.029916528104083004;0.042639690476805284;0.062322327013573514;0.018290441247645332;0.016974151299596854;0.04404340722370552;0.0008397060794066175;0.0007177426517845007;0.03142486096588198;0.014789848256224014;0.023603963221771496;0.004315387348482375;0.0018154742553925744;0.011153381806700323;0.022769380584763566;0.005322685749185863;0.00483293236504525;0.005548373937110694;0.013657952679616326;0.02528504898391487;0.02345245266449839;0.015231161280131984;0.0795369638892041;0.019183415791719723;0.25446212390534984;0.035006956408092746;0.0442622717451852;0.2665179822674137;0.10714302934665994;0.24513872514704188;0.20169753647028626;0.15948394337051786;0.2023878075921135;0.12787438368459822;0.048185706996301425;0.15207221010570499;0.018771527725423044;0.05848791098255363;0.001597483342751406;0.277956737274269;0.3056204099394754;0.025881859472072423;0.32639690370050733;0.029603313344837946;0.061153046127692526;0.4328131315030299;0.28352007002238766;0.2576932196544533;0.3232824753609217;0.27654415386923165;0.04522559488107583;0.2681499825933578;0.020243183470713112;0.01623633931304556;0.033438281020374494;0.012926214148680771;0.00973729361260139;0.03346497328413328;0.014366954660377454;0.016099170593088137;0.024224613389221262;0.024516861028290475;0.031127278282584568;0.004092879895716863;0.004733868402283757;0.004217685232167395;0.23389456294800154;0.005762372661303107;0.022952224280346767;0.04283975525257601;0.02810614271762553;0.022819220356350686;0.0028807364127043356;0.03163349271291425;0.07476243901433097;0.013556110565961095;0.10512091021515821;0.013785468691265358;0.0;0.016810840598561624;0.13454456873083265;0.11496968701248739;0.04108340345092388;0.24939355890913603;0.05581747996050784;0.04353030650540135;0.01690349353252;0.016772045944233954;0.1784192950544274;0.41982343839016506;0.22398238210069352;0.16006031544062413;0.22581320202034097;0.19216603618285852;0.1422234118212386;0.037087860113018116;0.037428071381200495;0.2084388767452835;0.022978671468285514;0.01200426546248636;0.04455856715847309;0.04247267383907375;0.04285858873662304;0.23581675712973943;0.06332870464167825;0.022775937349439827;0.02309425365042701;0.019477793996908934;0.04986644703719295;0.008157745546271293;0.038734445280915374;0.22628533404796106;0.013416613821690076;0.0011921819713146908;0.02130290386006363;0.021007146606868466;0.015942999726473197;0.015334564300544225;0.018931087758597132;0.013241057210274031;0.022575827763921905;0.017899819036739012;0.02286806383042129;0.021512272619035253;0.012338990878333773;0.02291867750294412;0.030360614212592854;0.04074556993428768;0.07059442180647992;0.044295299632299535;0.026091493775836364;0.03548160295661719;0.16163318661594292;0.17102095196579892;0.20288319499726815;0.03626279924559002;0.04673415749572908;0.021016636023801483;0.006171933086286113;0.16409914726745306;0.02729176547735442;0.05743598410290289;0.05718459630686185;0.005073215661627496;0.03489376840409875;0.08320863161052375;0.004787129914938962;0.02790411946184867;0.038729326638364064;0.032174349424900876;0.2382438195146675;0.008647725215975092;0.22582252302381828;0.006707013289672034;0.00425219043000465;0.011516591448819348;0.05146878415334501;0.16140417346894856;0.24378260722711162;0.09378788565855936;0.004061126843394761;0.00030132233887350085;0.01418219014071267;0.04538398115962698;0.05334630205464031;0.020238662691344785;0.03328265935001224;0.0005714405335327768;0.0034591826232176414;0.0018316369475929015;0.08065396099809911;0.01889777504247695;0.03788526083678403;0.008696509097177072;0.20635975626210917;1.0;0.0951029508923258;0.006423861577332082;0.24508517435179264;0.0;0.002331065792882839;0.027346873492847777;0.007922430169417707;0.05347112552932036;0.42581440066932286;0.02063848154602129;0.011271190309596286;0.23825169510778962;0.1943140324736059;0.027662237828680353;0.026851113799258582;0.05381789619088258;0.021953255842754205;0.18403085415267242;0.003426618480960297;0.010900378140150779;0.018635032862604047;0.01268667248114524;0.019886444423943536;0.0406682423701766;0.01990198582587485;0.092218046126707;0.04190084727145644;0.0006425133493334383;0.0007227228933240355;0.0337631395533996;0.16334135487032245;0.0209940709858779;0.16750795098880322;0.04735719985758128;0.018999066673398502;0.0023990714058501382;0.07359796651718926;0.0678683395137085;0.014214363472296765;0.015434916541400306;0.13002771460237667;0.03300802249649173;0.03649148455311093;0.0081581861222313;0.4783452071086605;0.04860951098483227;0.155031906059382;0.025239183284503537;0.021466403182128543;0.022556818478922266;0.022025651066521608;0.013381298304372301;0.023724660076559684;0.03828150944013836;0.026346648857221256;0.1587689654923096;0.031273653078081116;0.16051831271613898;0.0020454781249603002;0.00218988684007317;0.020700933347136522;0.019362753488628873;0.005561551336769223;0.753957900116192;0.040261263963869365;0.00247671562265352;0.00295317652695916;0.032296962974263516;0.012963393489659397;0.40602841383802196;0.022354233634737465;0.014016643609700952;0.019320159332983117;0.005117124825244359;0.022014781559010252;0.012208560166674797;0.036962288033384694;0.03385210717933476;0.02911524423702822;0.025929508024512084;0.04079333444372885;0.007530492065929773;0.019926467616284083;0.01970965573727419;0.031357463540358343;0.09774166641340876;0.018065515174061412;0.06023794381912551;0.029501798729026724;0.014584047537631479;0.018198909097328075;0.1520067741469332;0.022924615911365562;0.26663798185214715;0.04964316339301879;0.26797655779656565;0.003024135468597416;0.12017720684426164;0.37399386388349243;0.1519980241526961;0.10874839217026484
+Benalaxyl;0.02380652709244149;0.00995910015380153;0.016924623352716904;0.0693348767903039;0.06980437339899552;0.043252741205414176;0.005396140461386906;0.05059217128982393;0.04675437292017802;0.01668910667575028;0.09131239041841976;0.09855408362143804;0.0070357792570341126;0.010273526945825001;0.010864842770733444;0.010972896419113804;0.01039796732878108;0.010208468681117635;0.009887667939971619;0.010139124631144105;0.011004804918732904;0.011237638537265032;0.02012309459043705;0.01034818543186492;0.09032133094586935;0.01930729675327458;0.029906916412873213;0.031289526022707397;0.08715585849598392;0.07453704591080652;0.08743744108064669;0.023616435330716664;0.009961706767258695;0.01335033041900427;0.014129511151013683;0.02992152866477296;0.14595794533300363;0.014633642464974898;0.010323839260844276;0.012601342971875087;0.006555245653097176;0.009965085081288206;0.00985325632326366;0.00021480505147544764;0.019137547034867624;0.0074846304707286;0.006381930259874822;0.00813130311178068;0.01025864041829431;0.005179139736278922;0.003958251485780588;0.053027533243802154;0.02705598434338588;0.029860582213904648;0.022467923809336553;0.00947561090850711;0.028061053427118354;0.024331132588355703;0.02178377121920139;0.018276545285055054;0.007210020098115469;0.02033329114640646;0.0261507722245327;0.02042589561299973;0.029712688854421517;0.021862339125820703;0.022598241935749767;0.01965917087481359;0.030924021184696854;0.02074737661944068;0.015137851517581277;0.0058723854382931795;0.04345067853975451;0.048324963538237314;0.036400620129439024;0.03596204563149843;0.03756388922571903;0.038925715779761665;0.06766777965391492;0.038185982907966244;0.02156380928645104;0.021735341336302425;0.0533432891547732;0.03628438842116541;0.022326681527599847;0.009210149115939939;0.018474734827678602;0.024712724829489847;0.10216937360128275;0.0038268229856865945;0.016601069630739557;0.039024746935179315;0.09172985077757281;0.030707252713655847;0.03829400300392865;0.050719757419598464;0.07720040815539864;0.0394024615251901;0.0915983505095957;0.06306037929728667;0.10099261460310863;0.2328996979581224;0.2103927458855789;0.2521524875905252;0.1729900999331597;0.01603949197660093;0.012735618716595174;0.012385710274379501;0.012092372177231461;0.00931035992149813;0.011346669582139944;0.0148048849097677;0.009401148476996517;0.011992924243926907;0.012033680726790239;0.0013820809139701029;0.0011497632062315883;0.004868702118058621;0.020117117862763705;0.009460816897506273;0.003469962546744698;0.0023592371962521705;0.00635608460481663;0.01139089131896542;0.018865236469229656;0.016652744237696106;0.017900573108378066;0.02793197797515734;0.029450507247551664;0.0384563220458028;0.10800879840606077;0.11803515595202435;0.01805870250401972;0.06413066857337194;0.04785247104426113;0.10669711196840626;0.1749786873774317;0.15505355335942136;0.12630668571225454;0.11158960170130823;0.05528864032288988;0.14811439385650998;0.13697979040939254;0.048242844768968084;0.5800708375119387;0.11018763075350467;0.13107015229317906;0.20287009910592668;0.04172889485477747;0.042503482370539226;0.047462662544071596;0.12429757145226035;0.06896023573175235;0.05547171630394924;0.07872832932777693;0.18466185438306143;0.014638970219979206;0.012618758420110196;0.03402461553103265;0.007589815458279347;0.012415400279433416;0.0144365514475752;0.01686358203128011;0.00030093524510386066;0.01803332016753381;0.11021314012327671;0.03261209077591137;0.001486406908308978;0.0016333560739124017;0.10760596283704985;0.027256101938982577;0.05115293859506386;0.0014445271099044832;0.021902247920201734;0.025130194879396776;0.014449507262004262;0.0;0.01028604564039605;0.0785643984699249;0.034764078841894655;0.032183343435529504;0.005595948138620502;0.12288927273479824;0.05253284727829802;0.0005832955694188116;0.029672860190028707;0.03333472240061945;0.0;0.008488282119000243;0.047867303834331694;0.16024687042910302;0.014484304109685152;0.02963487344208801;0.010223982618856814;0.01888875472907163;0.007855040570172438;0.006772804358513595;0.009613181564922258;0.03345854180956652;0.004182765301195948;0.009910071971543023;0.00550905301636564;0.007120541800246197;0.016360678081707325;0.019695621138708364;0.014005665384373837;0.12345186281638013;0.029308303218782677;0.19879651513528573;0.1585181824480322;0.12213494942383896;0.03586303707111568;0.03589760015323321;0.009902351697659788;0.0652961707526565;0.04986629050762067;0.019590412013152418;0.2144354596766191;0.004912678583588647;0.013233000077741952;0.05820783843179532;0.05815372084298063;0.003202155313635448;0.011727953058396651;0.010457733221400046;0.01112947540178818;0.009484036462730433;0.02221057228660925;0.01971241638277358;0.012447723478113189;0.007452856362794843;0.007876599700834258;0.02624063197300325;0.020615894351095298;0.006298927969326325;0.023053552748437962;0.004657911924244561;0.004986410747294454;0.009263765894276462;0.022404866217918144;0.06782202783837424;0.12264618508047846;0.03442542179180327;0.12493767039573112;0.026380640027864218;0.005682286739971111;0.007635555031672187;0.0006418523094256215;0.05404358626605468;0.014265557132439514;0.027974211691461;0.02759738451558612;0.021702243527207715;0.018011321347622254;0.01757331543174315;0.012301022963691193;0.03893518170477828;0.015136896366103138;0.02519913733753366;0.0027471445310049626;0.04118583988915972;0.04213871232860291;0.0;0.055270318879060774;0.006939719719466526;0.06475506914548562;0.0648323021598583;0.12048066881771484;0.05799459668501915;0.0018496199298628148;0.003614108792630664;0.0005940715923916865;0.04531020986040914;0.1034994015135136;0.0038611628599630973;0.011743025137489514;0.00011621985873443245;0.053707791649091084;0.05924400600528527;0.03885647589467775;0.007240767462312677;0.015941692743816918;0.040734546357488695;0.012969296670064375;0.0951029508923258;1.0;0.006961031567015224;0.028466314908466107;0.0;0.04303353728880282;0.06429697876080008;0.03979096963530199;0.04441938160746419;0.11332510850340297;0.09641838636894835;0.01698455663002323;0.12985299313427018;0.36559053290221183;0.040447300256213674;0.16137033351680413;0.08440055808164719;0.37373952662816223;0.004562111950488052;0.010745197727090308;0.006327453108492252;0.11306617723088455;0.0035859880278447625;0.01688133002555102;0.040178657720852384;0.02853539253601991;0.0030340993296991948;0.0341750645680664;0.0;0.0025557457325057794;0.14764160384969102;0.04384108975701504;0.059415824992703786;0.0018395469375626714;0.02360804349100916;0.11768336393021998;0.002652795003115373;0.09259707840476668;0.0510671449318932;0.02042758044518501;0.20885418067751843;0.07832932185351849;0.0008899639713328398;0.004921755453701629;0.1022605827171904;0.030231857017071304;0.003459578470719834;0.010256052456986773;0.2721131716397852;0.24702024474745346;0.04353674941938638;0.03624462748437269;0.03813798022493525;0.1558044286929344;0.058124497877870815;0.01478673424101024;0.019476174341281623;0.00619004778263279;0.003055839920544171;0.0001686008773575174;0.0;0.0029405368679277523;0.0017011452209055044;0.00717322995628016;0.0798400997545027;0.009577893676069359;0.007968008272557411;0.00615202681691716;0.0334646563990219;0.05703606774741461;0.22487545135202835;0.01918630755765733;0.0;0.08033709113925028;0.0044506646714566845;0.009121867733125906;0.06832704106975013;0.03971093543920637;0.027258453132089685;0.02647926906580399;0.004389642985655443;0.0210390552744258;0.0049533374782192675;0.002070175097783755;0.022472844489029142;0.0760288621354772;0.04553596440772041;0.02068978916160638;0.07916794722304929;0.01297113921635163;0.006487310782505898;0.016019267148279455;0.02201676445238755;0.051680844746081075;0.10464863772503351;0.07072754189339152;0.02683543681295705;0.015822067278685438;0.06760818344273486;0.08242648799293419;0.1731814325261366;0.21783385621466414
+Benzoximate;0.0004769909509268234;0.0023577727018691797;0.0012904515138427116;0.008447083111945013;0.008812543255088052;0.004051171271971509;0.008882583938951964;0.11695266589740733;0.12422137022573279;0.0087432933276175;0.013161312641791012;0.010082744425581908;0.0030746121068948033;0.0032173557978856207;0.02011077463624668;0.01138620390301241;0.0019859611928018488;0.0024489793100716008;0.0024511755511996713;0.003102940055668133;0.0;0.0;0.022378023201348067;0.0013594525578836927;0.02018709790705544;0.11365406528564992;0.005957641135382243;0.0012335405919642985;0.005438073444623886;0.03371454861576772;0.002139184220968322;0.030287465018077064;0.015827273990213355;8.028401343484318e-05;0.019570848205401697;0.0074602458798847405;0.06017713407815076;0.0011286444244249603;0.00020478132746884776;0.001390357841481966;0.011276313249288312;0.08504310693314894;0.014518781627312448;0.007569084111499921;0.03014313815815129;0.025869848650199888;0.028310729596013575;0.02688888286298912;0.02867982324862655;0.005910417866506096;0.00940357515356309;0.016852339430082658;0.22021085330068071;0.14256878495459813;0.013716415019589295;0.070136176338212;0.049424529495727045;0.04148006270291755;0.005843496539092217;0.00824225016000691;0.005774858171741113;0.02841561831015399;0.02770460784448742;0.02602297366519658;0.055252425321910284;0.0475488249899229;0.040271168149315084;0.005759824557002991;0.00741989964729255;0.006259981457553195;0.0012568344114630668;0.007587869640284142;0.012259503478167016;0.08464875846297995;0.034012293310354415;0.030824412654860002;0.02202560647274478;0.01982781837391771;0.036952288783125224;0.014348688106643984;0.059655523446942374;0.05619449236630971;0.008657061876282837;0.008518001433556587;0.3454046337218564;0.34876941666267575;0.01876931708119244;0.017779069775152367;0.014036645015389478;0.2650019835575585;0.11189481964262787;0.07912785831997587;0.04484910709132881;0.05190538610535267;0.05357181088710266;0.0666115137423389;0.0053081750156477965;0.024218054860385738;0.020971765259921036;0.01528973777656035;0.1214037402656443;0.2931797862484031;0.35704667632701825;0.019503287458198404;0.27366155149282556;0.00879696415231722;0.0064684534372497415;0.009897826890559389;0.0034121849729858563;0.0029964333084018632;0.003005887066920499;0.0037859072500079543;0.000916308129148224;0.017837066944499356;0.006209372473681285;0.0027151028780455283;0.0026907850925262998;0.0035464544603048885;0.003896214746570924;0.041034939946137224;0.03587932711715667;0.003063802528402544;0.0027094631020905444;0.01591981274896756;0.004434314759614764;0.02325992677178212;0.022150045568079594;0.015120373610733323;0.014353968479271475;0.011584528512619886;0.058550096004434206;0.0181560223123455;0.001973161124411593;0.001219404908699833;0.0021018756165770936;0.017896764118950904;0.0038062321758563084;0.011081805691983235;0.00562654146008612;0.00951700039451863;0.0029639280772964724;0.003112597102229542;0.005037561907959831;0.004473396118525918;0.004936316859147722;0.003990222673674637;0.09424789642970369;0.00012527280341651588;0.0005949791522526881;0.0014365521723002372;0.0;0.0025271337341276866;0.0012026431672166353;0.0014115713096720373;0.002841749108766973;0.002859045958082667;0.012417825086045397;0.02664580072886171;0.012108123919976123;0.01913769254278737;0.043775365996800486;0.02048820107422518;0.01435808065048351;0.016294696866466778;0.01751579352396252;0.15938813229593027;0.04291046721984275;0.1342586644093741;0.15585765497146914;0.031793952962614176;0.07401907408237338;0.024970905101369276;0.022439566263362652;0.12065407150302945;0.11730021972013167;0.001894570279393424;0.0022380970803809468;0.03712151560231205;0.041860219367137054;0.012321809928760592;0.017184477334621934;0.005438421678273024;0.007673695507879029;0.017622239971044472;0.23444082731929447;0.01555636313738341;0.19249620727123054;0.0011188846609910227;0.013965071914275472;0.13484689635997474;0.11769205617504984;0.003757289397041092;0.036689458836576504;0.006225753884261999;0.010996466601688359;0.0783357044755727;0.0791643954049598;0.08700160081895078;0.08088476507066669;0.0967300360911553;0.07890368640444095;0.09668217341865651;0.0901512513389817;0.004946381986457681;0.074731238934688;0.0004854118916416188;0.007359247742847997;0.26097368356505474;0.09412350829010196;0.008004012385047807;0.021667508412500595;0.015948732359455726;0.10511096147175832;0.01880141793204058;0.26206355989157004;0.013433702913131524;0.018386848697689598;0.039606670133757425;0.0006142645942995952;0.010325343883455029;0.06779340532359351;0.03962519888845359;0.01211661097453557;0.004206535867527515;0.0381860159671908;0.12558888100742027;0.08600890969990056;0.03440447360783841;0.028089869834374264;0.010693832989925583;0.009198101905761017;0.00952903873240085;0.04753055430096572;0.03578715062445254;0.007524690522632748;0.006590418659097586;0.058488633883343466;0.04981689523341159;0.03744105275776558;0.006069046568394033;0.14034278903256395;0.0016186489488376201;0.0005446361413670229;0.025993315365914885;0.08187792883124087;0.004887506278255456;0.01728326207714513;0.014937787210330442;0.018647712830753803;0.0185949095726435;0.032213731823634344;0.03154624969419247;0.019658691810000285;0.028325365453752308;0.03508752664287758;0.0020150159902447215;0.016175171776838807;0.00010740992635289581;0.016314953276312567;0.02423206337546264;0.010990607732513912;0.011729771754443905;0.0;0.0026932377779778265;0.008371074840026548;0.0008663292968458086;0.0385885040654399;0.20222769739046043;0.022834511852870006;0.0;0.02910418634738752;0.00946965675184195;0.4072055860098012;0.016719227977955674;0.011148521288607311;0.012138390329142313;0.09205072426794973;0.0008456283332253136;0.0024345173757517563;0.0010420388440700635;0.06223598988885847;0.02651591269592086;0.011066760119030326;0.09323857754760403;0.006423861577332082;0.006961031567015224;1.0;0.05752085966768275;0.0006912561918724893;0.03927540379446507;0.010087555811325826;0.08529713533343615;0.00019855086693531938;0.0014272322568844365;0.01275350081502767;0.00012606555098333328;0.0;0.0824057914342228;0.07718523314826928;0.7411171783935935;0.004648532109234602;0.002637963216752667;0.012719689823645323;0.0035438828485388125;0.22791159848038445;0.007057030448141317;0.06068284878290364;0.014029521737367944;0.02628276180692979;0.0019491332246567132;0.014261279477790684;0.8678788470897566;0.0019307017932145493;0.0019470298561532458;0.002375248694556558;0.009956414508413386;0.010993476270098557;0.032522404603864005;0.048681085582025274;0.008983992697221338;0.013115830082688965;0.016315029464927282;0.00939066018336019;0.042577571761376554;0.01967212182056244;0.0029349711578662094;0.01749471201116313;0.005736064755739863;0.01428769109289878;0.12257971649816798;0.14382829814125314;0.40447621137861034;0.00933260231815725;0.0077371795852213205;0.010154928064761011;0.07722589933370816;0.033916386808259744;0.013838292639314602;0.18826530087377036;0.00015388295747020386;0.04377279227793412;0.07773220334048078;0.07477754448806251;0.04038336454509903;0.0482369749126296;0.0044504317720528925;0.003968943833925548;0.01877645969655652;0.016281976813383968;0.08204774310898902;0.0036639414596916255;0.0035050151934671227;0.03330892872123543;0.0903220738298792;0.0459272542051749;0.04790608344512744;0.000614686380475867;0.02344108516531948;0.011681683288731728;0.005975056955464185;0.07466785090826125;0.016806354365716935;0.019847632652086028;0.01711929163045561;0.0018531015315605061;0.016918602222463847;0.0034481213290233946;0.01876091552700561;0.024812776502639407;0.0371097686057901;0.1990092585155885;0.022962517549109083;0.04299196296036851;0.29107872576746224;0.0006211521504441315;0.00019351859451762;0.028453884904227632;0.06138575486376097;0.06188889153935929;0.05093250735306399;0.021633152641085562;0.00057485385377427;0.07501604298013108;0.05179218240551876;0.008951494344084222;0.006793839193263404
+Boscalid;0.34924701135404357;0.3552252083321638;0.35681174674351673;0.35363286684462314;0.3577255265690218;0.35404888777809124;0.19386120214787314;0.35775126671669544;0.3572380365287803;0.3638270515817424;0.18666529094593806;0.3723417532578427;0.20850321839761107;0.37512371203440714;0.36172509957440346;0.3518098458058482;0.3730285388143368;0.3665488117929152;0.3555144182789312;0.3640401388874109;0.3610114068315086;0.3669302401853188;0.3654699315004118;0.37383171259386655;0.3639308135819009;0.04135204526119348;0.167690143825664;0.129449460483855;0.10824212385545941;0.15618400261808463;0.0625400653163689;0.2660388964270257;0.19666254318968435;0.2682754225058337;0.43421505113011805;0.36466067416441966;0.16192134542266193;0.08487564314051729;0.006508866256882517;0.3744772691885763;0.1754832035394125;0.3696013088668225;0.15499656682535579;0.007963433443759759;0.01347608848251946;0.008993626145545441;0.012124053194321822;0.00989540593452157;0.014206933211480947;0.3669634281937212;0.3525415165556396;0.103217476841686;0.034062775103356605;0.01188514874246549;0.31278826240541563;0.3789519174242983;0.26136689515118283;0.3200611256471606;0.24595200991974134;0.002787134161037452;0.2018444139467664;0.2920223252430195;0.3443567260247814;0.33837628481385895;0.25137238760132863;0.30348089935373046;0.3168420581794915;0.25799751612936916;0.2524188585409158;0.2561686559452993;0.2515147233914021;0.2059859976057915;0.0046877255685295145;0.07964164535550337;0.036601877393602884;0.03384693056052189;0.014299391239341545;0.02177551040661317;0.12011728230774456;0.04555931277040917;0.02409390025546903;0.023888366718526323;0.026917817467864737;0.025652997095274778;0.018734295715781554;0.006867644482083105;0.04541763059698846;0.043590408606187396;0.04370942762819753;0.023107354010565552;0.026243442168909913;0.02054035299066042;0.10590029528773887;0.023425666849262252;0.029080318275247444;0.030086014938590446;0.012847818941918453;0.030246561973608213;0.02403210736573152;0.020492348941777167;0.06404960757722317;0.27252110524563655;0.33758852564208897;0.06257678294863371;0.12725954892650887;0.37415187845046644;0.2917254041460231;0.33033207143305304;0.31018867870475697;0.376385584436808;0.3829734054793439;0.3786387138005301;0.34795861540496703;0.3411509781178618;0.3715428427839096;0.08054359261068461;0.09489325109123192;0.06186341455651071;0.28444959210071874;0.05368022836836881;0.03770769160675178;0.07351010943388123;0.2825130782049214;0.019314296434145686;0.005049539030606411;0.005133794265066005;0.003191228032029058;0.00039594985779119125;0.005536931338297867;0.081132901423125;0.03714537431525716;0.026263062451696313;0.06099864963212623;0.03291421446080923;0.3607044206220584;0.026102088138032237;0.029196207940172057;0.020623035163229685;0.26875617155106685;0.29810936125849385;0.14110536318557515;0.24218068969803955;0.03696303391303112;0.09410355259499377;0.19742089615646416;0.04107667309773705;0.010201707046029242;0.021297826742069214;0.03640352040579617;0.07874683361705383;0.16378830668993125;0.02433659611893157;0.0077895032477728185;0.0026094023434726785;0.22590304276089218;0.13866675850510268;0.16086150338041563;0.07782748725395396;0.09249323367179574;0.018204039158788498;0.10756267340724009;0.028874451821101012;0.008071713945606374;0.04205042547944927;0.0867252186346998;0.01452774304823238;0.07000289934339135;0.11323973645802517;0.118360895811594;0.08710562817549604;0.040855097790811604;0.06850692923172887;0.0043135071128667934;0.008116672461436405;0.008814240108136258;0.06473700797896244;0.0007379396893404219;0.04127965788258466;0.2677001680693052;0.3266785186120001;0.3027453217762405;0.007268719785309421;0.13070104208806124;0.41720222081763075;0.01918201365750517;0.047211839245495234;0.018316537967896628;0.01194955716620009;0.24991338809473568;0.2796567593473725;0.3282471276804033;0.2731103914200502;0.14130668527257134;0.43927158236761016;0.3082468653972022;0.2950180923396872;0.289831737999561;0.3138876453314568;0.23897929704524012;0.21149959667541057;0.3299575109191278;0.23299887031910804;0.2937171223904455;0.2874628525996187;0.09016358864970946;0.3696123296015264;0.2639891206159747;0.06708710776102747;0.001402655406421792;0.031087863937524173;0.02095251687782281;0.27711226628173885;0.14361272109852669;0.08547878225058504;0.022662529416340414;0.16915306965839033;0.2396110596059952;0.09760589802081666;0.002479023857767561;0.040726317684132034;0.06289086309062243;0.03942506432287543;0.07100795857610322;0.3934878699376676;0.3838789220783833;0.3161611895001035;0.38567517242999344;0.30678077727478265;0.36554283267004267;0.20936639347557962;0.21318392258873137;0.20061399485143805;0.28589396386669513;0.3270822485876172;0.14599419943504718;0.2431354589584819;0.2122741926271074;0.21412359483762464;0.2488252981352809;0.24307454823254745;0.10973138791797292;0.0371353617335033;0.01854832607797248;0.0645145748370209;0.05821458952883433;0.008651724253109403;0.005318948706881021;0.026180909940894954;0.01644265402634496;0.02164326546857313;0.09141196613914167;0.09152961606411851;0.07584240425494158;0.3353175373018856;0.0400790960520958;0.013181186894604275;0.015787571702316042;0.18767876687368254;0.01239694776736386;0.0824369967758754;0.024277222013965816;0.08410336811596374;0.0018314494348876957;0.005891358342923334;0.052519670357488765;0.002765000148936891;0.1762895761758301;0.2272863887279918;0.1930732409934062;0.15508352005853385;0.02423495915195873;0.04588090026110114;0.17420037779674313;0.011001217125572817;0.019698616750173;0.1422864039319312;0.08104107807313325;0.0018515022997421375;0.025596610431732336;0.004279725677402092;0.015379583394904021;0.06631743984170031;0.024137031631887105;0.2951360959069874;0.24508517435179264;0.028466314908466107;0.05752085966768275;0.9999999999999996;0.00898390592314286;0.008995393831626767;0.043808498356129176;0.1150099744893037;0.03784808778354366;0.0191113874134774;0.011886522865418546;0.07619429559951724;0.06605610728048991;0.08897230602805507;0.05589463516047947;0.023393030463041472;0.017328116948358657;0.0004055312913464709;0.18968277371284295;0.029041058124944123;0.09125608861008612;0.007717512365807649;0.1263523568839428;0.04484490673609384;0.01645035029914789;0.006574714730692321;0.07098924607710472;0.014920773285702224;0.0;0.0002689195699015855;0.07993329241994539;0.27615247092758144;0.3213265607886245;0.08972124988628434;0.7335565663366632;0.017447575645216658;0.02486446404490583;0.10059355984318713;0.1604627714855841;0.16472365692136007;0.07092995471311477;0.007286741884677979;0.007644755513613017;0.021464593295104306;0.011634289831305007;0.0414446135028973;0.0046475820139665535;0.22621862342794322;0.05255978837299257;0.047023586083342554;0.018403508593902444;0.08987703391007035;0.05041146172977949;0.019158005444048668;0.25500082840340577;0.3126888780646451;0.35502123586400264;0.30203553027864954;0.06774208269516245;0.024074824691394426;0.0380020862767963;0.0007643436768865904;0.0007540672426597996;0.0840018624616174;0.06796058857359635;0.0626629894999926;0.10487364307316983;0.022141589369280745;0.016423730773075147;0.1410794230454203;0.1308114247668385;0.19353909071020878;0.11199653529564825;0.02649638241219934;0.01941299937248311;0.0183796153282898;0.19869365124538294;0.0795353432467271;0.02546788069333353;0.22286442828307151;0.003095421770181687;0.029814090379176865;0.004293786264016145;0.19219968049661612;0.2030905081607584;0.14532863416792802;0.08702021244446516;0.0468869760655884;0.07138201576714928;0.33463760728226216;0.004431546421716511;0.005949327481196735;0.023286227944404807;0.028554950178672524;0.18053408478976074;0.08720732125969506;0.053183670989682116;0.0006677729198084861;0.3068362442303013;0.30288365288489133;0.08193716264338909;0.08475249990448121
+Butafenacil;0.0;0.005408944716291124;0.0;0.0030781582108647307;0.003967394718758136;0.0005544950421802769;0.0004944609839400483;0.0;0.0;0.0015282527156475567;0.00711023111125122;0.009385167041853805;0.0;0.0;0.0049135766357514725;0.0033441502582839313;0.00450545517011244;0.004185012420602405;0.004936331709194391;0.004780285311449887;0.0027574220250657176;0.006385009231950347;0.024087295728984128;0.013699670195759203;0.0004208199547442231;0.0005649741203475155;0.05910702552846725;0.0028433466262621134;0.02645726615805542;0.016656141329749477;0.020724676081289833;0.000574723480547532;0.05341677513103048;0.0;0.03762927287105883;0.0066063803771090925;0.001642311944853433;0.00041447935914047315;0.00892546268609966;0.0;0.011026482379098597;0.00047087556059918176;0.039890476401450964;0.0;0.03991546963642271;0.035657026728943185;0.03732394690861412;0.03523989429658789;0.0380853628844751;0.02059600128838362;0.000610428266716429;0.0006903502582735914;0.0;0.0;0.0013750824892105557;0.0004728985238040924;0.0012230725689139075;0.0010332529756399904;0.010566443711523706;0.008671376615146048;0.014988501756911424;0.0006898188654807609;0.00047476975163719047;0.0;0.00164018805612361;0.0002166405388969052;0.0010376769926476314;0.007589120598192773;0.005689928279368492;0.010216474363236331;0.007301434455810891;0.012526602374828848;0.0007570977896203704;0.000723571968360019;0.0004527699011678674;0.0005926956737990614;0.000946566175112572;0.0002400531029428964;0.0;0.15203855955226134;0.01389757387658638;0.012280841365744213;0.21035041817426936;0.03982948284988185;0.25681688913117523;0.27405373661531834;0.2608515090547428;0.28402898098226464;0.0909792490968769;0.013206114317332165;0.08208392101262048;0.00531076401752785;0.0;0.015358419340994122;0.015669219882319067;0.0009291144464981004;0.0006252297210046091;0.058952600925541554;0.05868112294567885;0.05262244885866857;0.04874932081376002;0.006921994448046894;0.006361136341483223;0.008366609047927223;0.005797226292131784;0.0005192210593685321;0.0004198409423290909;0.0008426696598988295;0.0;0.0;0.0;0.0;0.0;0.0005613520880559416;0.0037549500312443903;0.0008678752118950573;0.0;0.039874210467947556;0.03305200457148652;0.0009663916257517324;0.0;0.0;0.00018506588452201983;0.0007389347970291023;0.001136275472047328;0.00460296301381892;0.0121822516220461;0.0;0.0;0.013398780318375502;0.005222380469939072;0.0010914516901041466;0.0;0.0009882953759011977;0.002044404149283529;0.0006899859458959756;0.0;0.00013452106496114762;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.017709694889237636;0.0;0.0006117482711000906;0.0002731334533257752;0.0;0.0;0.0;0.0;0.0;0.0;0.00011001393539658909;0.00010181815451741643;0.051650623084121335;0.0;0.06900136176166508;0.011729747961093795;0.009806042942518684;0.0008362080809128833;0.004039971297853808;0.0021775291657263134;0.018909441534468663;0.0025849718112129915;0.002810935770159404;0.04660835524818915;0.011879057233335918;0.001217477439883598;0.00620410615837031;0.0;0.0007498224864540362;0.0011052170166331388;0.00022273085334410372;0.0;0.0031105047317124875;0.0069877505475314655;0.007482624238965176;0.0;0.0021276042138397536;0.00930279537295401;0.013968748866363572;0.000507354091829117;0.0002764400528308721;0.00035106402624174136;0.0;0.007220266593726073;0.05956369960491125;0.0;0.007789750116934364;0.0012985129103550788;0.0;0.00018833623751721265;0.00022992611996616974;0.0002762724393877353;0.0011070285040506765;0.0004314144394341067;0.0019919550511975728;0.000437569401587818;0.00041272124659286544;0.06274835531930588;0.006991287904182015;0.0004956095130178634;0.001506742695538543;0.05309147258784215;0.003554888576684396;0.012072800452570278;0.017563628254527276;0.031292476899191145;0.0004150888740619453;0.0005844515251315055;0.2183232471050291;0.0;0.005266407305478664;0.004486458610216757;0.0;0.0;0.002383540665792968;0.0004978653039119259;0.0;0.0009914719555764017;0.0026368398334183922;0.0007818334820418784;0.0006397427532501735;0.0008128070916342249;0.00048670115003541684;0.006029937840613015;0.011524948127965482;0.009755903298446948;0.0010591096547921475;0.001182537344778932;0.017864426263118176;0.014861962995624067;0.003023239825300561;0.001856360653149674;0.0019232974496177252;0.012127900061147705;0.0046700063690371645;0.015832653429542022;0.0;0.0006926067003402467;0.010375613423621234;0.00026394903878238364;0.0;0.004405536800106194;0.04285992085409711;0.18595114355687548;0.014060115395560877;0.010070511099582524;0.1136040099711044;0.02261812625160694;0.0019386944516024882;0.0;0.002537498265784067;0.000479058475494052;0.0007004183861423966;0.0002436816635575629;0.0;0.0;0.0006948753338759451;0.0;0.000542178375284022;0.0;0.029359339203430986;0.016490998111594192;0.03496746079930008;0.00471969954183343;0.0010488766283296366;0.021997888100424377;0.024540416373662447;0.013631815842567221;0.00020023288239591643;0.40923579698269785;0.0;0.0;0.0;0.0;0.06343621453459544;0.03456138429236033;0.0;0.004805422322167168;0.0;0.0;0.0006912561918724893;0.00898390592314286;1.0;0.23479107554851197;0.0600960834638405;0.009786128909973008;0.00020841669357257693;0.00559048640668791;0.0006807756765471138;0.00037261221245653796;0.0;0.00033533591930604283;0.03699904639705704;0.014763876460621751;0.0017063228625895043;0.0;0.01953885332473478;0.002234764113732381;0.0014827952651486984;0.0;0.002877558257752587;0.0710772096434731;0.00023558614296609106;0.09115390586023782;0.007227075564751921;0.0;0.0;0.0;0.0;0.0;0.021063802883913747;0.02656581628813761;0.0012299213621712233;0.0;0.06450421070150508;0.0002195268754939884;0.0;0.017763527253991013;0.03893759193235116;0.008867461875976715;0.011114196507703912;0.019866155522165637;0.0;0.0031623762263673165;0.012267977427692207;0.005290212161417147;0.0;0.0;0.003292588884963741;0.012279526331771902;0.02183529774709021;0.0;0.0;0.0280135576757866;0.0028593707584073677;0.019018538541015494;0.0022027606144611063;0.0;0.00012744555488907757;0.0;0.0;0.021750570622881587;0.07859350368589557;0.004000787900550162;0.00017035588929622348;0.0024136291536659927;0.02284927537579789;0.005201681892453293;0.03153916430219217;0.04428788815729664;0.0025638214241399692;0.006550843990455796;0.005447981475006845;0.023141945252036788;0.019972542779331578;0.11848302417353264;0.01046136951500617;0.007140351281291021;0.0070807042729627125;0.024233875239150424;0.0004217176716967222;0.010523239106399834;0.052877363247839086;0.06548043947523557;0.0441368155165831;0.009692682553127965;0.05811756922994231;0.001500611055989008;0.0003555771273058831;0.0;0.016266336574784504;0.035476900636191015;0.013954462517074762;0.036809522410460135;0.000884075230885966;0.0;0.0429913201713583;0.0695398443450885;0.11551011972288484;0.12988582068761828
+Carbetamide;0.02080741908032;0.02014721069893918;0.024850244566118024;0.02061679210860105;0.022139888766535106;0.0548588492678165;0.011282545434910578;0.02128801402758294;0.021086445730854223;0.04357243949924312;0.012312546830961285;0.044989122178990995;0.012178128772255182;0.023671232128163622;0.028855758113782503;0.031852185636951705;0.02103503683851125;0.020651682004974192;0.020002703681186826;0.020511399332447687;0.02171557629592677;0.02162038183348949;0.02966411980536255;0.021575063523939696;0.024473713640095436;0.009024268991192687;0.03014077427245159;0.04763303327565144;0.05690228276613254;0.7266292041621429;0.7945868425108555;0.09748737548819676;0.011910198364529431;0.018738589425673684;0.03149748626303026;0.07876603875562858;0.10663792439752084;0.0230000881794038;0.03289251058858427;0.012699997837318195;0.006372418102516877;0.0226378557783644;0.005850521990563917;0.015054082005383433;0.008180416716192265;0.005308615367100197;0.0057530901854511525;0.0025837880206829662;0.006791159257206938;0.010693276195493078;0.007478858845115973;0.004748260509159146;0.011115977917877405;0.009850748214516309;0.01153631011398586;0.024520515745423677;0.013711577029967295;0.014423462174665684;0.009029208487838402;0.0033449499601761233;0.008774677618873595;0.016572955761418325;0.018385887145327157;0.017801640412168585;0.014005732002673611;0.01394535017223379;0.014028873401073946;0.009252788186852054;0.010338182249720365;0.009181563568108212;0.006172944341258944;0.008301406672457727;0.061639411946240806;0.05452300173333522;0.027617393588346414;0.03842720052930928;0.029519651177188366;0.03262181742391205;0.011979444481739092;0.01936639759141434;0.02554134183862904;0.019653395829017067;0.04099454185734837;0.04094510858011634;0.018092022407830987;0.011541456644179294;0.00496177048093963;0.011312588812504772;0.08179238721101993;0.010631673237543509;0.008753912994843701;0.00841406765080219;0.09103088218305018;0.0209022142877634;0.043090790715671304;0.09465461846114355;0.0994384546080025;0.05905669009946557;0.09509925090688004;0.08054944896528937;0.10765305516926689;0.08500215133233086;0.09121067724367649;0.04672369994008528;0.01330491546671046;0.013798076456869533;0.023546382865104718;0.012751487545529063;0.013207350147839402;0.02025066651415902;0.017333273888285382;0.0338327480262818;0.016852736114244503;0.017049350716842177;0.026170884848997218;0.0037345425165052413;0.0010623720296683398;0.003524717275849195;0.020359352110485042;0.008756575304396415;0.05498564949392417;0.0016923384045640464;0.011920066879377196;0.014983904173023078;0.009504266702321549;0.009252325821587389;0.010474559685869413;0.027201634279623178;0.02775183261547372;0.05088397196546269;0.10313965285127977;0.046490365318573465;0.011624508577702213;0.17471275092298996;0.04029299753192275;0.07559707761905912;0.21732597922406294;0.08950638944844784;0.0939039133915992;0.12190552140702414;0.052932223182488365;0.12145150918324488;0.14898155739619692;0.031699556344093;0.09558260125601088;0.07291856550614566;0.0717114438915099;0.12658856960742426;0.08220668086625921;0.1820581930840365;0.07310729205690306;0.26120665328196;0.09684543987064376;0.045054320465805396;0.0474684484008146;0.203596129180433;0.06115789329646935;0.02347620746375707;0.12446835744705072;0.00020437516037973753;0.1552763145117075;0.06609546530490812;0.009474136329386467;0.004426560902581881;0.014150568873019244;0.005929904479792865;0.025516265135756312;0.004168941698197582;0.0051464814113953905;0.08752223632532263;0.0182701915895484;0.013531313741469158;0.014891227274627855;0.007987365296313914;0.009836475546801891;0.010032810985706875;0.0008584748244883918;0.018546074889677928;0.04910964400417574;0.03666995727841419;0.03389251467736881;0.004101734195225684;0.1704711761847435;0.039753978169865124;0.003911163441629947;0.09674624283431252;0.09394394082702757;0.0007056608012831089;0.016103696544733297;0.016787713694291728;0.05806652120172818;0.01789810911514794;0.025207185232101886;0.01617841111939618;0.016938579857907424;0.014100489771831447;0.013701349953949497;0.02700546890815083;0.042639852988212414;0.00946224509036119;0.018373254458633272;0.012101532255431573;0.0147491999851866;0.06629214837647017;0.0391022424167358;0.024060445172488152;0.09030730998859243;0.040091785807239474;0.03231838355186619;0.044602543132572475;0.016634041400914786;0.13516415373277033;0.04839499257283491;0.13215792855331604;0.30788126925993736;0.03911972853977881;0.049105474854939934;0.12269477272341414;0.020308791961900552;0.027964819650214176;0.06473135545377162;0.03333869367734309;0.005658663899730999;0.021077518341655443;0.04088499754434258;0.041254173717141095;0.03646246651530479;0.023755258705172994;0.023027759412753014;0.008681653670669264;0.009124746015381685;0.00883881673843798;0.018149259142133705;0.015046797145105458;0.013100119350863531;0.00934919077855269;0.014276616930980342;0.012941161987498681;0.011680402171167064;0.00968225710241995;0.015315182717622602;0.06023072808709735;0.09790857406512525;0.09051785540016158;0.009333448469610808;0.0;0.009480418089340107;0.0017327063378330648;0.07382438763044405;0.10677115694740488;0.026769364459185905;0.02595171641543805;0.0806640279059195;0.08023889350826792;0.0116203573055902;0.007281723132265671;0.02377496842622617;0.019307417837320973;0.07123020043354415;0.005332406213250744;0.34086080601456153;0.3121488650972836;0.00016361912572259484;0.01195215933929366;0.041951656442177895;0.08879469700891478;0.020427313366794878;0.08257063312328829;0.07122969742612602;0.010932326452465;0.28071555860712494;0.01001148738103362;0.2400707755718917;0.046166419463356874;0.032947222765271164;0.20742356083131655;0.004554945819920004;0.08066487067434056;0.0506693470746581;0.02834903055364752;0.04726410326732265;0.006436761990258357;0.33182311542884124;0.05745313726050866;0.002331065792882839;0.04303353728880282;0.03927540379446507;0.008995393831626767;0.23479107554851197;1.0;0.02318316553226406;0.002501302562092493;0.00217179844977678;0.007671753641105459;0.03932224102958887;0.006188320597701754;0.8804091865684293;0.1885492705508284;0.046882323579933986;0.14135287299859525;0.02329289984728654;0.13483272701956553;0.014558229971029835;0.00221640419595795;0.00873482518346944;0.004321467382151148;0.042969634561153124;0.006105788414050473;0.03789167542445978;0.04588319550335903;0.00527401693780083;0.017695636951159437;0.0055516547393719045;0.0059685495080721;0.09182308962506018;0.05612347776247943;0.021264866198127664;0.014365823397370756;0.015931063348799693;0.004833012404627143;0.00612821225512813;0.011827741597254289;0.19009381037430442;0.01925404363944404;0.0500479789077641;0.04088197597122147;0.003408464832992389;0.002899830982102751;0.08724028581509338;0.006756031667871552;0.003727300762465997;0.02219430410236518;0.031998864426340264;0.04165513991878843;0.37986767273450234;0.011765364408608227;0.033114567116861636;0.18441066104964526;0.028242958658272296;0.026988003372639405;0.11285813794160283;0.021968403749428166;0.02305346542764953;0.022677984545013893;0.00027955579495141016;0.0014302341661764021;0.001449298386623906;0.0016056166226834504;0.009567813566411187;0.002732728639802464;0.0002754695739602578;0.00044335156688202914;0.02837484116118722;0.04257208162488871;0.05766561276857981;0.014789176019150868;0.00021670937468805545;0.008045193709896736;0.009929602546026291;0.006217623566305314;0.024403575870097866;0.06888985029744775;0.016700861808784412;0.00653045199990519;0.012911113416439218;0.0107784213343217;0.0004897668198861141;0.0038184602923613613;0.0336281651881002;0.022960512244310758;0.03719188252591875;0.008544634691863827;0.0308316121756207;0.02411359381420416;0.0024399983214904684;0.004560604094009975;0.009417731689436716;0.19779691552244094;0.06531403983276464;0.0456107321058842;0.16584541045287596;0.0686472670320989;0.07312946879040878;0.10283484944273932;0.2078257968312266;0.2837084520725496
+Carfentrazone-ethyl;0.02980662133651982;0.029166266354753324;0.031910092139997966;0.029696707765861488;0.02958660346837062;0.036654684317464145;0.020713458108895685;0.046431498556777605;0.05083307142273346;0.031044881764396483;0.014400671753590156;0.04293042917858466;0.020025429975909767;0.029212859990649088;0.02813428795130689;0.027305588817219104;0.029558813313849297;0.029642945177135057;0.029404549792557674;0.030035207080457694;0.02941395489439421;0.030056884619934148;0.034170780113283644;0.029851100561541315;0.03375860071287712;0.009072160188518011;0.02041888195804752;0.06349954491667578;0.03240670405981656;0.03761609947165601;0.03969722096718873;0.04238489104680936;0.07477850024675468;0.021713265833265095;0.2594199316652847;0.07949157809103631;0.10172023442960665;0.019380023498117408;0.011684570731887741;0.08269267085508618;0.05367385347972312;0.075270645726472;0.04562156954298851;0.004078225751604106;0.0182307065287297;0.01296623118043146;0.0482210911660771;0.013316499038209676;0.04835598340776533;0.06508642208818234;0.05559284271915691;0.062175074181929;0.1052990876760879;0.0023528908504729467;0.06789090916880912;0.06461761623382266;0.07380709810800527;0.04619433617019073;0.0555046500401805;0.035534664911092986;0.053366269466426745;0.09585202494681028;0.06313662493540587;0.06695242391379348;0.08526877996499702;0.04943603060924944;0.04496926684518224;0.04523340818940126;0.04944073671356585;0.04389517208561408;0.03831846194942963;0.04140124111055385;0.00813304766820429;0.010594536388103893;0.03088952375510901;0.015183160950496655;0.01326096032723811;0.007379361301958855;0.006772381967203877;0.019390959092763935;0.016633818336820372;0.014378351919504602;0.009113213703762413;0.007230422456603253;0.025409718312932063;0.022881194415018916;0.014182226904612875;0.013776168321789937;0.014647497719762358;0.08784003010931181;0.03595347650473881;0.012287628384527627;0.007389514462436994;0.011270873064826029;0.012852885039173659;0.009567573351579171;0.009858208250384977;0.010688027957602379;0.012636581611287152;0.009621543465579018;0.026855072743193473;0.010509429918202026;0.008143645733407156;0.023572150243928294;0.018770677530608924;0.07387834035203042;0.06555682744785361;0.06359606918171944;0.05904182787554313;0.07622220215101506;0.06889045799481973;0.06256735801729836;0.07146453432275016;0.06209810805022643;0.07101920477537296;0.06963472250620394;0.07050171403927155;0.047846863300837615;0.20279784924091185;0.07306341784692713;0.1609238090959484;0.01750043683368545;0.07969603203530697;0.02558058533338279;0.0020050767706058167;0.010577190510855608;0.006046418090719655;0.026121805236764505;0.011804855211001601;0.006146440812308732;0.031769430892571955;0.02635281736241778;0.005087536210380179;0.019788488658004914;0.03649896993198134;0.03520901736689371;0.01477703376296233;0.036408657998903186;0.07470470844843778;0.07095892380582253;0.02770989555147443;0.16970672177082682;0.02568054278385188;0.015794802670581278;0.04033967235446564;0.1183749801124431;0.023082415588166504;0.0031930986713527005;0.008583880874636862;0.037305168120852446;0.013347673951918045;0.02017469674735141;0.07483719765555505;0.008927373833656882;0.04820680380031955;0.09471506518682576;0.032239952938236706;0.024949109837873466;0.03637372365731248;0.005500636175013835;0.06386651272496728;0.0909465987701409;0.012583580805496432;0.11615235169555313;0.17206059089044776;0.03108143150663699;0.28060135362282057;0.12747178474587909;0.13652515110314029;0.03892878509534524;0.12577148174426236;0.16043302818733898;0.023948095930661502;0.037350511092462506;0.002485791106389192;0.005814420737885033;0.0;0.012050047088661047;0.04777297680486365;0.0558834620940472;0.05518176495189248;0.007457800200345439;0.01842253685979387;0.043444351040824225;0.021867679904298266;0.015739499004771586;0.009942780784972075;0.0;0.07021615916106831;0.02696647106650504;0.06580697919019621;0.02941669013459089;0.06434889942395128;0.053234673367302685;0.059035400484381474;0.03595597327829427;0.035542820324471966;0.051902919040172496;0.14003945256036793;0.05035674473101087;0.05053811358478309;0.04057896463496972;0.049309482868611254;0.032263535849403426;0.08087752888304167;0.032100721414663094;0.07446872400198062;0.02939090830688942;0.10527974853060637;0.2778827491075321;0.1394344265642062;0.19055994763500034;0.041433313518517534;0.04729633309977914;0.06487900990744316;0.04408110372318403;0.030347547213937235;0.09473614964902835;0.021233126661970362;0.02206485719848793;0.016067292218755264;0.03826020465643962;0.0088307465705741;0.0942241314110404;0.10461154257088755;0.11279412488928323;0.0624520104848431;0.10466804575541964;0.0501254808312286;0.053957114236324794;0.05154058787860436;0.0605490168838104;0.07859321611068411;0.046934958748544815;0.053705603713789796;0.07290433811318335;0.07510873418392079;0.10371883389853602;0.09156423131609366;0.06451226874751304;0.03195816704543102;0.09754230580364803;0.07430873605964337;0.01381591271936384;0.0645608914166131;0.0002966625597344397;0.021151350966192545;0.00446427673981717;0.030259365910521144;0.014775032419142043;0.02700592894228039;0.027468584815492088;0.02731060772938068;0.04942701434840507;0.0209518999638432;0.042784469612132364;0.028353472660287177;0.02191970699246535;0.0629918713266533;0.027309427267960793;0.054139782772938155;0.01229265559555067;0.0;0.0285819221528222;0.025274850571612342;0.06304705719190848;0.06261869960903638;0.057149408185770585;0.03364124566268158;0.060798613458032794;0.0024033733305829233;0.03935297600006264;0.15594883456170686;0.13371789710992485;0.020833546733714497;0.05900764644280789;0.02433380758366243;0.05330303430318192;0.012575968007517173;0.027666751676782973;0.007093563837834074;0.02744626148241736;0.05361044645910704;0.03932639127023344;0.027346873492847777;0.06429697876080008;0.010087555811325826;0.043808498356129176;0.0600960834638405;0.02318316553226406;0.9999999999999986;0.06396053462728855;0.007297439984302777;0.019314031369642465;0.016790171970924795;0.006031204831869987;0.009685121456472068;0.07626739274958869;0.044790820827223944;0.041661844139202736;0.029440923980019948;0.004850632719386041;0.047444137283436986;0.008727888063337064;0.012460637697830857;0.030748891048461662;0.16891512576824466;0.017615308293146583;0.022447760134833742;0.001887938908503564;0.015878318812744645;0.004498492334137627;0.013715623474776367;0.012200500022069512;0.03889853706258793;0.0390315885798219;0.10531116337694774;0.03346230840475105;0.01215166002339418;0.26635130359305126;0.04890471559176298;0.043791297173673714;0.017658870950412013;0.029650467185071697;0.09497023872464849;0.049104043547375104;0.028393937922378494;0.030113747598288644;0.023168726357489667;0.07860131848276442;0.010154787022473542;0.03200969670333343;0.03797290472883161;0.03797149901912518;0.07491363116930662;0.03732396151505762;0.03558685893566177;0.02138705786616716;0.05536971511268142;0.07896872727814876;0.0405285491486323;0.2390139882252229;0.02052329091519786;0.1101490418150773;0.029725742624805155;0.014724231502902266;0.014194892706832532;0.005309766228943915;0.032360532348228395;0.019632177049923268;0.22735713840579555;0.0014074153187475812;0.016032163333602738;0.029418756901129915;0.08254236583459977;0.10336369121245888;0.3136388110262282;0.06454331962321976;0.0055251079518968795;0.041325599139664985;0.10991591082847615;0.026246685548056915;0.05253450428193855;0.007970053909607294;0.006112611240901184;0.0162132820929543;0.003575535774018429;0.028690680818356316;0.01718665989046595;0.01784336636107649;0.05787386281773637;0.006522491551051596;0.0203109247733405;0.04343461128282097;0.0003648022537481811;0.00047305570747856987;0.2169056397096469;0.07808572036684143;0.05326721712706398;0.04203494280943301;0.02223265946758102;0.025478872091647484;0.07381663822647855;0.07584031571083154;0.05988893593551756;0.07764215735572715
+Fenhexamid;0.11461555188019461;0.11260577068620664;0.113669470631932;0.1828411474888072;0.17390205693579225;0.12640709414037563;0.06677452775592752;0.11247076285600167;0.111355073793218;0.11531295673938076;0.05104753138008465;0.11907325087024763;0.0660176498641638;0.11560507170997388;0.11328739973323165;0.11019852501019742;0.1165030628709841;0.11577351386457585;0.112994641684599;0.11608583884761114;0.11299850243346397;0.11256420340560454;0.12528305898649456;0.1163846735564096;0.13079479265263363;0.009686750681727212;0.07460482095066993;0.047758486882773996;0.030672115804508553;0.06932120633577361;0.0433770298757223;0.08771826131482126;0.12203807707438515;0.08530041987525736;0.17853406477722364;0.11115781971465684;0.08915932597537875;0.02119581374144358;0.002088621553612251;0.12151140771741867;0.11036052345589609;0.1435251835809804;0.07775640931369066;0.0008101732535404348;0.0944627952358226;0.070964766177747;0.07866434925686086;0.06712439074313135;0.07432129371655637;0.17486650332981693;0.19919800579096755;0.08506879384357294;0.02373528236743339;0.02393154372770866;0.1274343185688515;0.13191501778896533;0.13904159134262742;0.10198959601037683;0.10958027615811443;0.006033630059329438;0.10370913138987739;0.1847964104230662;0.12972256310150496;0.13996419233026572;0.15703142970119324;0.10093475654988789;0.10026960100380197;0.09413866967349671;0.09712589538651858;0.09805856125805473;0.08160275121249266;0.08111134288939385;0.049818809644152834;0.152813193382403;0.03597516406219913;0.022319631362561716;0.034086658565495274;0.12636635649769373;0.01969119765987225;0.2861801817801796;0.05289572734495478;0.051616510648504636;0.06553704789558233;0.056225991653325494;0.023837005875695993;0.017369669711348654;0.026613660436208244;0.0224415632917707;0.08969643410712211;0.024343901369237395;0.061818806885370475;0.48560899968467863;0.012801577967438811;0.011193080238471969;0.012275904664983725;0.4309814592309102;0.02206929082962824;0.07275286377654466;0.049854660050297;0.07541295185251648;0.046665260368479934;0.013753546125121413;0.034263630776489404;0.10530444119490272;0.04493224539820425;0.14668798443462366;0.12282626242188271;0.1260090169127106;0.10177090850296146;0.12536183594824862;0.124639100350829;0.17068584613751978;0.11465301660193548;0.12860332516675352;0.16887023413525487;0.0217800176147515;0.014525884844520002;0.03691730284652898;0.09455319228761873;0.020098516194997928;0.014711747053731572;0.016970736774922307;0.09254989944106697;0.05392621262253288;0.027455207138737635;0.0037178876454783526;0.0036470522986272406;0.013097982815241625;0.00930383464707187;0.0068775127616221505;0.00816715850229024;0.05041460682660138;0.03163055009014429;0.05947147621203946;0.11548073021190314;0.020030595078700874;0.01627392376512461;0.022323798796245256;0.11503647917888514;0.12620078158248524;0.05265381691465931;0.08490091699614469;0.024057608528403492;0.10036778798273494;0.09223686846055501;0.03616036623231988;0.0347315900658865;0.003455139223921525;0.030505330109446217;0.03866515728092906;0.05205662779855809;0.05022554689719392;0.0050635157202322655;0.002375864203855022;0.07849510357993136;0.05992478019276168;0.0469966644935382;0.017502722677603836;0.019900357081197396;0.007819328223515356;0.024040131808535432;0.007086592948234687;0.12218682550631975;0.033662030711813784;0.17179361816335917;0.059188530107650496;0.04341732161850816;0.2168799268190642;0.2154494805617063;0.10111962307647657;0.12500586856266338;0.05690541336907326;0.00402347749866618;0.028118353124843516;0.021279097689358744;0.019963602051806882;0.0013910018118236565;0.19901741912808282;0.1117035960283695;0.1209470920090854;0.11049056175406267;0.00039104338914791196;0.050499844114219664;0.13653430182413911;0.012922689589184595;0.022865552377396802;0.012756640830768618;0.0025907777337956872;0.06855448391813028;0.08092656084777437;0.11441404206889288;0.10509409564846835;0.0567762144219729;0.09134021266572757;0.10381326297367013;0.09039459827622474;0.0881401614077744;0.08729739706844594;0.2466937836461227;0.056899745153372504;0.10020897768742529;0.06314518000934591;0.08371090958617013;0.08690152713021432;0.1240808998842069;0.1165413634854884;0.11040451406447337;0.026611036556125546;0.0026434282612440405;0.08292562597468657;0.08744949805632543;0.07453486252664063;0.06895652113330582;0.02819375008833164;0.014218931653994382;0.061209972693393844;0.08685797405428881;0.04790052940760706;0.0006925812369625515;0.016006806157157993;0.032828868829785335;0.011949724391124088;0.014065541214372642;0.1890397444998522;0.14158303293229146;0.2005081801559997;0.1325672371683248;0.2047781930792389;0.12839375116096263;0.11456960854270301;0.10634908425346506;0.1200469113516264;0.15696279926908707;0.10853907304137501;0.08811694581248992;0.16003745463809443;0.0910198473583841;0.07460307683188358;0.09237905750742746;0.14053417295595907;0.035175138365642185;0.008028808426812717;0.005832711509100801;0.0450763360888989;0.06025968456130821;0.009308521767895078;0.012811771598413929;0.011802023025963206;0.07827432024576601;0.011588642122937774;0.1353223491109595;0.13632521026246;0.008652076061024685;0.11430816970006621;0.055551172087807806;0.004884416073981082;0.03773339653928378;0.06214193183289941;0.0006806034846062316;0.03994739969571439;0.11630577590153715;0.02563528883933066;0.002393660407841456;0.007621552842279047;0.024067000809682895;0.0006435107169812007;0.3134936934105458;0.07513299162106164;0.18095408862994325;0.01876996086450339;0.001947769999750951;0.017676101438929125;0.03762575869288101;0.008890041871646503;0.011618041239304292;0.08974585839287183;0.014578177937862995;0.013139207634255856;0.017334165965901337;0.0016196877863091336;0.0033807859679772624;0.1246931074139255;0.1148824349565619;0.09872902194369057;0.007922430169417707;0.03979096963530199;0.08529713533343615;0.1150099744893037;0.009786128909973008;0.002501302562092493;0.06396053462728855;1.0;0.011696945349307169;0.013163864509224106;0.03027238803144521;0.02376887043094159;0.022608531258606016;0.020405151593744193;0.3259507480444204;0.015462027413115153;0.04924805361526891;0.006613147784732098;0.0579873773932068;0.1155948922213181;0.03352532434353889;0.018520124492598718;0.15113136950379397;0.03259824493679333;0.036152489137310825;0.006593976985525509;0.04586806629261849;0.002705628544441708;0.0017211706809071024;0.0011158895904763526;0.026224243281792094;0.07236375896976298;0.11858368726617476;0.03130691280895853;0.13755788341040753;0.15030938785456222;0.04767472205313816;0.11249574802280358;0.03778537930994108;0.05624652913576808;0.18608931131139073;0.07395522860266433;0.032891928245888616;0.028320416235275682;0.004040985505768653;0.006415088986866316;0.00614886789224971;0.0778910113765663;0.014163078285553393;0.014510117923766571;0.012572715345688601;0.05554316383506053;0.04950423572558973;0.021140174030464694;0.08063500164798751;0.10235615666904267;0.12701581366977432;0.2608470874579694;0.02016750164928762;0.010426995471461182;0.033666802628575625;0.05566408204138683;0.05223401828567664;0.32663133481714024;0.017623558649297624;0.03934716641622487;0.0016353888047605392;0.012174735176699767;0.07963758455782895;0.062335966452424;0.02924669737758819;0.07063531824593657;0.00024510872742515045;0.011388113450034253;0.017018597351386906;0.12790047919746902;0.06596416790432806;0.024952625406180175;0.2752788999923403;0.06622386012965524;0.04479704789613313;0.005903490938833705;0.0025164576653384186;0.026004818867860355;0.07313131986868497;0.10635359394707844;0.16300272952699843;0.09671377206223909;0.12846783681838603;0.10737711787383027;0.001666945521680063;0.0024338721594299906;0.04452432584017117;0.013079460762123718;0.08527279907590687;0.07868962735671951;0.021809006345498046;0.0011144971687260192;0.22303048419159888;0.10129167622010667;0.11359056382253867;0.08398679648212394
+Flutolanil;0.09932672557742564;0.09689535286070637;0.09674441572861915;0.09708884860598467;0.09786729028772256;0.09665628696279727;0.05059227646386923;0.09860876474460807;0.0978436035337284;0.09817357584864393;0.04391519774902123;0.0970514838110916;0.05678668007312732;0.095736675166831;0.0951166755128194;0.09086018321153012;0.09899742907660983;0.09859452177146309;0.09608888851334992;0.09775279543148649;0.09787604935399878;0.09617518251417859;0.09458559841663237;0.09921342011775204;0.12570912407103926;0.005481420852175234;0.04625374414767717;0.05714911206095992;0.05846803078100888;0.0795713532762914;0.014431226869333638;0.020329111345007384;0.03561385519777127;0.07617778765083161;0.07203268637897269;0.09585921449031547;0.08532106801533984;0.01850787439984895;0.0013809502108433425;0.09497781355484013;0.02234528533029898;0.060496037824522765;0.01800503869609124;0.0002273765195946093;0.06745326511071907;0.0694174292340718;0.07092347268921348;0.060084355343581565;0.08272473883736083;0.056436937503954385;0.036843502835648224;0.027505529839651096;0.01009407259985162;0.01717179552282786;0.028670831450243812;0.06262542829777787;0.03491854214986429;0.04577868916216992;0.05476596658733202;0.038703753412213854;0.025662232439748363;0.039830597484037826;0.04958389608332392;0.05014830090407093;0.03522084465148897;0.04672162998869449;0.046656262589943466;0.05405001001565318;0.04911307357736556;0.0535679238260117;0.04785112870427877;0.027298956024543453;0.003827395729022112;0.024792313126244827;0.013120552743519337;0.013612036597589994;0.0038626377730151796;0.0006539128455358492;0.001280017379617821;0.0074221362408468244;0.005886414098994529;0.003984563739485396;0.007476513032040713;0.0015429835939294648;0.04210413811480085;0.03032944798919695;0.01949329381807443;0.021851067817334847;0.02472833324684856;0.0027557621144327768;0.002974220642113975;0.004310723084045832;0.0029785752649695587;0.009203917143982346;0.0001498174687591316;0.004879629791462662;0.0047070930937456595;0.08867715103153548;0.0006224297516280729;0.027473611708376058;0.013172244718790267;0.013530528059716246;0.0010238783404964563;0.03614490700301751;0.00575683518650845;0.06341598426139755;0.05841594965423272;0.061926167627150176;0.06457374390704873;0.07193837470348433;0.06775799095124693;0.06363966768384048;0.09742388051937527;0.07112942393446257;0.06893742079317565;0.010849862509633485;0.010014905289113071;0.010112027491605256;0.052998295685852084;0.06567576577773851;0.00381762553055522;0.012886627678043057;0.052660173163616;0.00864756420618769;0.00854413601789007;0.024743762093671854;0.012984438455633398;0.0028073486216584316;0.0031187803818857576;0.08520100962263324;0.029321085153609903;0.1011605884573539;0.017135526358569242;0.018764545132236295;0.1365418367610416;0.11836539871524372;0.020647245432026392;0.010644321431265239;0.08989322517811044;0.08270486291163023;0.031913931528226074;0.07521110979025816;0.18493046045816222;0.025203397453200372;0.05575249968959738;0.005115884335157112;0.005196762019440428;0.0034809077579776347;0.023901175438616803;0.017906440098783543;0.04508495687330884;0.0888513847043486;0.003897370024064025;0.010314122443621924;0.06165102346897194;0.07195625410938099;0.3876892940837866;0.09689377559630964;0.05118676596721487;0.013551507510128964;0.024029125806164738;0.04417828110335969;0.005325940047630943;0.0018787087221733524;0.004458809666147213;0.05651208759581964;0.09696568058109852;0.0009642058840575867;0.0019948164473758264;0.15813563974890876;0.10379552865479529;0.02568037903511861;0.0;0.0023137933885394877;0.015586692554567533;0.01274586117866597;0.001568015555727457;0.01812520511331012;0.03715219372268316;0.07578023769577515;0.07403953262679454;0.0004464080114674793;0.040852429541010954;0.09125306154723949;0.016681663381920262;0.03943869868638824;0.030124667367240177;0.0;0.05211757821158621;0.06702419683090027;0.08730182010210531;0.08536039089960344;0.34505850858002396;0.07305519903211928;0.05782029098267495;0.06503909520469367;0.06322638252419363;0.07141902343291777;0.053732046488183846;0.04451342516325991;0.08061706876310315;0.0485082784069875;0.07052886572806967;0.07175538014144943;0.11472095771857772;0.10692387055960058;0.1376215959266853;0.045056576513137214;0.003210630878734731;0.04818549664451432;0.059296684599405944;0.06435724267584994;0.2456501848310656;0.24508664560376564;0.0019363879415948632;0.06387726386618775;0.05947857063233059;0.10698987120510389;0.0003340428849533818;0.003153343884082427;0.3524896103879331;0.03451411735358864;0.005265954246530411;0.08447937809678355;0.07114044295051968;0.0458634536337092;0.06314892952068893;0.04365506883659202;0.056392019721744895;0.028374769976908534;0.029062627520300897;0.027391560598010477;0.04067390763837965;0.04925089050367859;0.016581586319214893;0.06223362139822788;0.042862909925901825;0.0641986932422275;0.05231512213428287;0.062370442629687065;0.16514472879579334;0.006216263616945183;0.0037127762012745136;0.02162451718701755;0.002637853079432041;0.021369752023177147;0.00013945446735817544;0.0015700915749335951;0.027516624819567202;0.17309899224991335;0.019355228176791958;0.019708012368267545;0.03622678252511132;0.10358569419647148;0.006155160560240432;0.012530726292354912;0.021861457653272076;0.05926716879796302;0.0003053684984968397;0.032342355892443546;0.001965514740208216;0.15277844341116653;0.0;0.0;0.019058725559964587;0.03680591112433265;0.0983619147958582;0.1350703391824853;0.05215367248134199;0.015362930465883861;0.001476423487142291;0.0050010596120598485;0.14741733693624554;0.015658382375656518;0.006394574304949577;0.17709565825882254;0.0010638244597503572;0.0003952522307128218;0.0001189477239842676;0.00024134591765849787;0.0;0.004154187316437526;0.002013390244143932;0.13622568330493565;0.05347112552932036;0.04441938160746419;0.00019855086693531938;0.03784808778354366;0.00020841669357257693;0.00217179844977678;0.007297439984302777;0.011696945349307169;1.0;0.02890476706143178;0.031977645920718674;0.02410475418886034;0.9570180593641372;0.047514766470894636;0.03160999037000924;0.027154937042990403;0.3605086029739992;0.02401993090603487;0.1361004114428315;0.03100094827595392;0.028438152109245995;0.04355250510407927;0.013746566555940854;0.013346740829853756;0.08146999292159447;0.05355786461135863;0.005270097756205518;0.2629443214771422;0.0005835237625103922;0.002145567304440834;0.03191367064066451;0.25482847644273976;0.09959254037674489;0.008612471875707177;0.016809749356698395;0.6820992269274165;0.006817039001267728;0.31056446985250025;0.037017029013595736;0.05058228363374507;0.05044160644659699;0.03555441199706922;0.0;0.023160578418715484;0.10521552907341919;0.002082904770033369;0.0030453026802609424;0.11786237530598054;0.247884651871276;0.21099570558989994;0.0025280331925877676;0.02301034814758522;0.031622280868229054;0.008452001982739711;0.15265467626290127;0.0926995320859578;0.09598545722205509;0.10421904579530926;0.015889726408624905;0.0008082888301085261;0.0;0.6863079604635236;0.7181145638768675;0.04768855831197005;0.005640212247922484;0.03376366896017076;0.07444307893002523;0.07872517714739988;0.23138015950481086;0.018032384185894562;0.02873706915145574;0.007678905755307513;0.011600376520177647;0.08110814011943425;0.0009105207307489941;0.15375502860220494;0.015694006277143718;0.07353688669701502;0.008170338663852023;0.5749217792143291;0.6343001201040462;0.07479063899916553;0.06741593182929274;0.004169277602311403;0.01338615473932125;0.07784723964829095;0.010873778070270759;0.0030846619856943302;0.048771938557684816;0.09187711487000898;0.001679474572410928;0.009527519760288587;0.05111942009688849;0.008262875968753388;0.09435546737402355;0.1369462561200111;0.008196252750183841;0.0005863786571268422;0.17923217222288537;0.18363444797256967;0.13055376180744843;0.09380315448372266
+Furalaxyl;0.028783793469426652;0.01735114169968625;0.022955705314271897;0.04652884399889508;0.04020115829697926;0.20704086585145723;0.09154340741963482;0.017517919023131583;0.017399190419976153;0.03014167512343909;0.031111511053688493;0.02565834289911629;0.027262888826767816;0.03669463286704517;0.026723931022022564;0.03120680915369265;0.020191036110225026;0.019387162093257436;0.01894331150103286;0.020647885281781114;0.04040897934861281;0.017166003549405066;0.03378959229849774;0.017066645784393448;0.02138503405250162;0.025069817395066668;0.14656659076718442;0.053704760883652135;0.04988147715462644;0.05812340652168731;0.08854823685790875;0.04375639630397483;0.01998932230216077;0.031222633073388868;0.03487831088699886;0.11503701986274169;0.13022323726900809;0.00871361119550647;0.005655632511018425;0.03980012881950018;0.01233899791434072;0.02824587539190993;0.029565218330084582;0.01760264741263116;0.01560347570377001;0.046953504414779065;0.056928719574280626;0.04732704381012645;0.0507381712770121;0.016643236928685346;0.025244485166117506;0.0037839617064107096;0.005146961404979038;0.019273371052370432;0.06934235812252426;0.02046358027999133;0.01258449763145368;0.011315090202150142;0.010347225525391314;0.023982502146795395;0.013584518435265524;0.011695868104881994;0.011831223410130062;0.011298892389464838;0.014410685917672873;0.010898967862133355;0.011067266598041112;0.010382041729709236;0.009276177319499231;0.009722047365622365;0.008089104561554651;0.009415706596484268;0.15004265542044934;0.1759171384889932;0.10901856376435527;0.08522768276775951;0.037384120386870986;0.055487645530157774;0.009861942071512376;0.1308272117555056;0.09734381900730069;0.09923480927394848;0.1568180264242131;0.15224443254942122;0.06754725950420395;0.05288208716339634;0.08661095514760062;0.06748729253945064;0.03505554857151095;0.0020206294406754973;0.03854213366232942;0.7947704019538381;0.027231831262813207;0.016847221635659493;0.02870609119606548;0.14636551912355664;0.14251494646152157;0.0732574011213322;0.05503571789054139;0.055585824229775566;0.11080828972439533;0.033970432406286825;0.05383987336745592;0.055948562679133666;0.0710821539737716;0.04429869307451457;0.03341023367973118;0.050105357570404;0.024457274123383253;0.020047946388243098;0.026915413000745667;0.03738340760751318;0.014101255819572714;0.014427959953233399;0.027320581718787876;0.011242515680104443;0.005828402171599173;0.01285792912937633;0.010876184551815498;0.034780895378381305;0.003069305518765826;0.003283362071396032;0.009566361341414378;0.03842443441873587;0.03666610269195529;0.016647776149539332;0.010812536155093934;0.03506944073800745;0.07300737755566565;0.047502534569332386;0.03430057721877859;0.08481624276694963;0.08648456492719601;0.21418178645157362;0.12394547576804674;0.07458596436408024;0.08762279082989177;0.09824390244734797;0.1495172733530093;0.13493725812568708;0.15155041519344584;0.09970144911514837;0.06776405461130544;0.07039663927721711;0.08069145031971076;0.05544896907130511;0.09231923409990986;0.02054829073031856;0.7789129450910605;0.12088468033135631;0.06116837997687492;0.18541293137418977;0.03722808625963573;0.03875901924810234;0.2277883741369775;0.09556520411812014;0.03734086642625361;0.045762322999470174;0.09475929440785467;0.04487789655736344;0.0992161945347897;0.03252040856797812;0.02795791140246582;0.008041766454567442;0.032369704014712036;0.0800896795966665;0.015890717008172496;0.007195165651502027;0.008667896956520278;0.030855250956049535;0.03606445459847769;0.006253464437537205;0.016227183388456475;0.009666904752225067;0.0146708971132973;0.007073540898361223;0.0033518376733029614;0.01222790693289578;0.025209935200154732;0.03980573011937864;0.0392156757750701;0.022279811470775006;0.05393845264305176;0.027698136042458157;0.008723967029466859;0.07610089559554813;0.0034908751954412292;0.000284352812794157;0.03189348970070215;0.05566041296158398;0.05259773962235604;0.0462194147512488;0.08299194426303087;0.023761145089373988;0.04568225189938018;0.01404848273570941;0.013767916709625978;0.04720612379248559;0.14374372366041555;0.025651247906261686;0.045562109122316924;0.030471622270860987;0.043976092563379685;0.07450915196375957;0.018395836867749902;0.017813612424404632;0.09471782363009895;0.06450770250750493;0.041702230484822154;0.0855097486805483;0.05477447000233814;0.052046123673922653;0.029374524051853857;0.039679806819519395;0.08935969472166189;0.11393005118785487;0.06317524590640575;0.1082736175258891;0.003706455564500913;0.020602475935460374;0.052527319037190524;0.02771331444326325;0.03505688306393832;0.10707083428545401;0.10828327363605171;0.024209872123239655;0.019686206502005296;0.01334335985579212;0.010412367602389632;0.017338525925032138;0.011511142808389703;0.016631520016819872;0.013671922799186338;0.011149359119736508;0.019405655140719923;0.013044362038290567;0.014412546528339357;0.010167138924330979;0.011366964407260633;0.011452854671735298;0.10188113959939421;0.05373456854128911;0.059901093142823304;0.11572988367033242;0.03650893168685126;0.0066638339590324;0.0554226801704044;0.008700526485896826;0.07967800191433178;0.028333309561550238;0.05242841173973261;0.059745920079305986;0.019911143082445664;0.023199789245134658;0.03704245568088394;0.025086692840666783;0.04325998452627225;0.045579955173276024;0.011307053411440907;0.004052778316830637;0.015143944132570945;0.11809679216973146;0.021870615641896664;0.06377350946119473;0.010949687350410273;0.028873564883489578;0.13311046422673875;0.11471934568035518;0.06748791487113309;0.011962503261523458;0.0016420786914569966;0.016401888827482666;0.09607572215738835;0.04981318539749448;0.0026032031291493177;0.09230797086106846;0.00029725856944804016;0.006123503667117861;0.015610460694524767;0.061959245789181605;0.011900909867456962;0.06347441292673718;0.015405126969427621;0.0483688160881106;0.42581440066932286;0.11332510850340297;0.0014272322568844365;0.0191113874134774;0.00559048640668791;0.007671753641105459;0.019314031369642465;0.013163864509224106;0.02890476706143178;0.9999999999999991;0.10716307908706349;0.005429830269215438;0.12613181540026153;0.22351620202648484;0.1396190225190757;0.09419775433072343;0.13222250891241216;0.03330901110494705;0.04817657748743042;0.002645383444043766;0.019126663841300354;0.026676550342790692;0.005504496330102193;0.013781982654372867;0.09224200636451613;0.018708840577800874;0.027135392559466273;0.028829713871611335;0.03322063077829028;0.01263873539392748;0.07241125274331836;0.032155296635738774;0.034633921084422425;0.011304402044174234;0.12766946949411093;0.020629584236187354;0.06633113354391978;0.03938730639079054;0.047790788389858264;0.013840680558512146;0.09269984345947546;0.07192361052076436;0.010606249849532231;0.08203825007704461;0.02595152955739582;0.13134127171612225;0.026753880709104883;0.06954432185255854;0.04476819669784201;0.04640422362580181;0.21450597350085857;0.02058433048709829;0.04838777932214744;0.032975624107070035;0.024978642934203977;0.030601597941951053;0.05979390834113489;0.030441312339015435;0.031235190425834593;0.011315523074266283;0.011719551607811832;0.0499126231110256;0.05327265441020825;0.014626661360689082;0.3861865634234979;0.024139438932545238;0.013979706509268292;0.010001240398591505;0.034608229240881354;0.05660165159495228;0.22203029979424393;0.030645605675642854;0.0001288234945533686;0.035363146820652634;0.09260649888581327;0.050640686569644246;0.05892248143342782;0.03133748504180714;0.022623003372051614;0.016644568468320544;0.006930422700429859;0.05978646999197114;0.0028129118262777914;0.07999833450268652;0.05952833758737892;0.05077366253632918;0.04755853543290102;0.03602716764165716;0.2451537120793714;0.021473784943171457;0.011086414838802574;0.01376737106974903;0.0916525372589557;0.05645467553213055;0.1797745571690635;0.06503711749800756;0.02942179413674582;0.04780696327984699;0.09754784131876972;0.2152186528676438;0.1817998437856014;0.21450922103222061
+Kresoxim-methyl;0.06197524409850333;0.002943786046536453;0.0018167282662121895;0.00944823567748085;0.011820343643816723;0.023674883988079074;0.02844413760675172;0.004761782853097357;0.005544698834859551;0.009528200095339603;0.003010442161336737;0.027539478080989017;0.030382895424367486;0.004568278128655516;0.0036754494258384573;0.007088654691765619;0.000711317837515324;0.002226706075133347;0.0033977979467681822;0.002793222428843859;0.014428811169745568;0.017722007535615484;0.030710121633657335;0.014718452015406103;0.06667448400504287;0.01586992778184155;0.18871204749433254;0.04245348784126332;0.07890572116897686;0.14050445006171708;0.21883557008558108;0.03314581283357165;0.009397869265579279;0.02362881932572917;0.05734809758149965;0.013299873810320542;0.11834483454693422;0.02942014721840969;0.008110206270311506;0.015468668067313287;0.003875728849530805;0.0016538000807062956;0.005457791759264557;0.000295791703194743;0.013499433095190697;0.025706756614128683;0.030261713017280496;0.03303501887935954;0.02977672615790016;0.003479570600205302;0.0010592757942562803;0.0022792095337573312;0.012435705486630637;0.007736317030842033;0.014036871445269593;8.557261176572812e-05;0.00164072760934483;0.0010180748231885344;0.0018931370170194581;0.0022023391284826015;0.00421946234298616;0.00087272942053631;0.001046741881143007;0.0007521355782579175;0.0018944920361422197;0.00148379777422054;0.0010049308752703265;0.002151157401911848;0.0010814980921977939;0.0020418328718154505;0.0013842426007620544;0.0039054609779426218;0.050702109648836;0.09060213746441567;0.16869029318850132;0.06054497389749165;0.016044257850693085;0.0216688132748788;0.00433866030709074;0.15641266305141524;0.04171153149273951;0.03475627102241791;0.11709140580892206;0.042252840994113465;0.053339760976630034;0.021207389872996207;0.11430917594290345;0.1308435337653206;0.07588196688072901;0.01446730956938129;0.028607153766022273;0.05250312616576313;0.04207318464444811;0.09237178954334013;0.09762087185440983;0.05180990548284061;0.05955948955685798;0.07162638768464889;0.08672387625680643;0.08139557062239396;0.14481078444412612;0.20338384223192607;0.18537731938541235;0.2624496539922566;0.19127139545512553;0.003527414931917763;0.00454514912080532;0.0036765356849776773;0.008774468211070854;0.0028481426982873985;0.00286756593468086;0.009036523217063695;0.013383352543760182;0.0058520379051179225;0.0052181499133622244;0.019176906207252202;0.016878364166231768;0.020901168588205257;0.011646595111170305;0.06683997217751786;0.031864873545201;0.026057034363127562;0.0030362313001806905;0.0055069317996568985;0.017672327802215875;0.009002212110221753;0.010778462980397387;0.038641565126880544;0.051288998410297666;0.0470637858026524;0.06695918561676828;0.31547698082510545;0.4091661318419305;0.04395138301995479;0.061957202209785955;0.29705449113295346;0.3405364321740635;0.25773903611943777;0.21049867549076273;0.1753791527054719;0.050199823158010526;0.12871623693831505;0.20070834122637918;0.07074747873066611;0.2307483340279823;0.08983487209275191;0.2788056365542694;0.0869750681254259;0.01274421826322737;0.03755249045769119;0.1679274954754651;0.0662561174484653;0.05442978828552646;0.027332787705136773;0.3003623244530458;0.16527809003325425;0.0663801223732371;0.03369002244238656;0.1228816991553631;0.056614636317866854;0.03587361117215062;0.03466615350241125;0.023495591448188125;0.0344360005324841;0.055000013764534436;0.14531942908926737;0.030714087898292823;0.006502992025730386;0.009649350527864028;0.08100894057613929;0.020546762478213094;0.01655554165969349;0.005910404008933172;0.002532985052073252;0.0068132828760775815;0.02094960749147405;0.000803554884380707;0.014291022429740086;0.05072639879322999;0.04565012451146803;0.04721742976273175;0.012610873834566938;0.16969956929432053;0.03200118705951373;0.0013247443752056759;0.02251875608884391;0.13057781512914515;0.0;0.040004945416881446;0.008291222096324966;0.05264644206098619;0.004364970627805887;0.1396604443005902;0.00451976604348977;0.20207139571011315;0.060598241765302235;0.06640487867637145;0.03707691464036622;0.0384579777828132;0.02562965491780661;0.0399382288213697;0.03501141009373635;0.03423758249338873;0.006211615527981221;0.062047540270416784;0.0037633661009589797;0.17169671625597588;0.6693076431552945;0.09967691914127497;0.22681210903463866;0.056094255460327334;0.019468663207148768;0.08160949884677082;0.03711924250378559;0.18021697238599793;0.10199597024476285;0.05762806114414132;0.20038423449262618;0.014518519220555545;0.05253635981650795;0.0379704200854623;0.042220669648661044;0.0078044421966087215;0.0020766327264752646;0.007856440912989118;0.0010004357610405984;0.0004341963441511236;0.001354286673203312;0.0007347754507309235;0.003010133196482082;0.0037094090539456807;0.0036441438518251255;0.0019303407655516132;0.001233882074018012;0.004172118155706183;0.0023482197713643083;0.011457292090720876;0.013074441282396099;0.01090267393512862;0.0018969131695881797;0.46176333900992433;0.02143615969073582;0.017812947977403758;0.1998970869454002;0.06243878824204284;0.2953163554450797;0.0011143475748933427;0.04632311605810698;0.025635675750213922;0.02157158047450596;0.0025050577443226267;0.0031590804231119668;0.031807825300473075;0.006060998165602435;0.05334140380827471;0.0453945863716316;0.052350115961322406;0.01098551762170694;0.010539639085154083;0.012848571248045896;0.5354772511363403;0.008180118494343065;0.0;0.23021899678212945;0.059622435796867955;0.018374809364501272;0.048146779353700236;0.04253250499662273;0.03676251775830256;0.016284599736990493;0.0022021461951259643;0.0003424835877009742;0.01691198060018339;0.10656300167810392;0.0637278130180376;0.0019191290372368077;0.0053102505767661425;0.016280804661962706;0.04459434375357662;0.0336637908758202;0.4421607906036452;0.05019232357622792;0.5431146393979647;0.021935546179155583;0.02063848154602129;0.09641838636894835;0.01275350081502767;0.011886522865418546;0.0006807756765471138;0.03932224102958887;0.016790171970924795;0.03027238803144521;0.031977645920718674;0.10716307908706349;0.9999999999999998;0.042507709851962255;0.056915772067929436;0.3228426022452136;0.08306600472868796;0.31795031998892176;0.17002468289817813;0.08421687343363855;0.0024468376891647044;0.0049677177658513745;0.038647141207806095;0.00854466479296583;0.006725685608193025;0.13265514721663246;0.9076862602207206;0.008014955312849556;0.0016183053950935891;0.07336908712355049;0.013297163696523649;0.0003218516328724982;0.25444743086418886;0.12235763045838195;0.012942754144737988;0.0014506383221908868;0.018435476478853064;0.05215941750056374;0.008375935517662301;0.1171106857495742;0.17537678536617135;0.029749818985309248;0.11066060885998222;0.07286957425405036;0.055774721405369744;0.18516166198131195;0.04969826376197985;0.011976434786163795;0.008078814060857158;0.02317808699857681;0.04909537731367965;0.0519293605006707;0.06760079305474613;0.006113758734611358;0.05355204711677665;0.09691680655692815;0.0189498912159453;0.03147599557461864;0.00555898868262214;0.07163801839233735;0.016889082180939107;0.007286159154711083;0.0021667267910994406;0.40416726965809807;0.40925055014746947;0.020018725854261447;0.029056599797539162;0.10518601183808751;0.04888793644491112;0.0023442693668366157;0.03058563139940413;0.06655241315267067;0.08069386217065212;0.08604613720460776;0.0003520138049752065;0.08109153909565632;0.07892827005361956;0.02033177904584355;0.07400111610957498;0.06279650399041313;0.033508624005447005;0.02438329442259694;0.024702970074187654;0.19247706440972104;0.006091752842497535;0.024253028451032548;0.09107855872709644;0.2414951308585677;0.20203602359342016;0.08781863548535121;0.13115773824301197;0.015354505887834578;0.009861447269914114;0.024175491753313464;0.04725417795728448;0.08589213841063086;0.1500733598872999;0.16338640295606632;0.021259511151428486;0.018598345338035716;0.12925775956976585;0.1311560790732858;0.2897931674576709;0.27742281155579906
+Mepanipyrim;0.27324568286857254;0.29753663864815905;0.21062392296734336;0.3420473150622299;0.32541304847283775;0.35444609708371577;0.8981882566134244;0.35414020405133123;0.3740229632747306;0.31664688232335314;0.10661939791315343;0.30154407464813326;0.8971471674984619;0.3397033788207431;0.3176108248834699;0.41358552669669213;0.2342390706948916;0.27242618196313867;0.3073177677623701;0.28652030741394413;0.28141340636297796;0.3048802869844197;0.2628302983182665;0.24524911974417182;0.22338215256430513;0.0041521621507689165;0.4804680050733207;0.0791158255959081;0.0811754218954804;0.05648101677285924;0.06431079476099114;0.04215577274983667;0.07229003111530982;0.7417465652165499;0.13361584971238263;0.2874216555644906;0.08476343098664157;0.05663626643378456;0.004830182150759359;0.11141470865768788;0.03142427324264089;0.1237804709634105;0.013732498080226826;0.0;0.0005769785235706706;0.0004922631574804665;0.0007507574428429791;0.0005449829679935033;0.0005959670062730515;0.10110134375607539;0.06908986192446183;0.02631892631425945;0.0015444929009348044;0.0013423397935207531;0.058577738165180575;0.12812095588236208;0.060585432499813116;0.0854761211956493;0.05629528602813436;0.006141376785881913;0.04220199860782199;0.07671360664841778;0.10134803000320079;0.09929875082773428;0.05929415965098321;0.0806684564185218;0.08457661099144761;0.06082215683308153;0.06022045686574356;0.059909810871077926;0.05662255993335335;0.039875552584154816;0.004767097943900256;0.011803868323971295;0.005617619184793366;0.0025362506029265753;0.001177621683245523;0.001249676468678033;0.009261476546904457;0.018744992919439502;0.003427378038927925;0.002156186527291649;0.009955794637500582;0.011009262890579548;0.011432570686112736;0.0058591253576488625;0.01072254197349064;0.01059332934476572;0.06559904637861856;0.0002629504230381392;0.015608678062327422;0.000479449687127545;0.028385396754037544;0.002779362502131934;0.00311477617383627;0.010642532739103549;0.0061412212239585744;0.02435515370864047;0.01558379833889523;0.04222568860209137;0.01770082626938995;0.03458084821899475;0.021326393273096673;0.041428085961238696;0.03194363399267178;0.21595208437050772;0.2677493136867064;0.2573063728690354;0.26030677058894286;0.2602639209919164;0.2285190265555265;0.19703543708526647;0.2845665658145781;0.27448484392259404;0.2457745905392873;0.5335764198155895;0.45909019885633073;0.431601787312444;0.19285023602300894;0.17512623455845705;0.012412588591815796;0.608292670238309;0.18963354885528436;0.011682478088412006;0.004344064940130479;0.0034946550314344294;0.00452903785857791;0.0014711349012406453;0.0008188526490311819;0.0009290034929243088;0.01121915004022118;0.005849579430135243;0.9082385073137504;0.018095464454940615;0.2334823869411884;0.003985975407956701;0.02860539496802145;0.006045028923782982;0.17388011913594453;0.2168765056271691;0.37896305464541036;0.16190323766502415;0.11692499605850482;0.2936410710407754;0.6642617887890396;0.01776119070391119;0.01172893501095201;0.016153852602969702;0.01772398718244185;0.03153410328361677;0.09284415173469902;0.018394940159189323;0.008304560754303828;0.001540113072576618;0.33622492405279103;0.09413378768570152;0.09930977066114435;0.051859016985090885;0.057003166075808506;0.24968655089031078;0.06556543930849631;0.005156714875415116;0.0008447743895337326;0.006030070153639723;0.005282413002550223;0.0547299494762829;0.004289701400690178;0.00324930385436151;0.005645613266158493;0.0005671432616222883;0.0037392595797475425;0.3494732037661083;0.006537743149779007;9.369886025781939e-05;0.0019664487377547206;0.0530389981942717;0.020943681023923143;0.02240161420899886;0.10906341302194901;0.7045473863862183;0.7352340455789949;0.0002819510872065;0.08093738401167068;0.299538478346284;0.008271411768008344;0.0007543253722809304;0.009795596626793487;0.0;0.8563679722012753;0.32847109588326096;0.22101865002203475;0.17494400315395733;0.09283667866412486;0.1499539888526103;0.15814870702337674;0.8177619683423275;0.8247306266480684;0.4022421950803734;0.23935341756033904;0.1806043616109602;0.44255531660717456;0.2245563059417641;0.3448064143440349;0.2762007618213586;0.26768936562113904;0.2408821659004249;0.1729032525169001;0.02530634378364212;0.0009848770242260113;0.018766450899207428;0.007790321159857894;0.10395046676748884;0.12054437015242085;0.051867376201937175;0.0029454321227262137;0.07779995093403048;0.1083934003332875;0.013272623539501153;0.0004977181199058982;0.000817115406693884;0.0449056213240062;0.00256028500626239;0.11736323233057075;0.1730687366687924;0.14550962105060888;0.09343588891220696;0.12914474948447746;0.0802936135604737;0.10854597210045891;0.0434176703891999;0.04448728187482843;0.039879800344801895;0.06979730870622886;0.08713168997519125;0.025284822604579732;0.05204085629895062;0.044178560132330055;0.05372362985235942;0.05890136850305103;0.05320890045456223;0.043781096547250695;0.061139376007669534;0.008472217746427922;0.004142472118080795;0.08880253249057178;0.0;0.0;0.002265584622897846;0.007943363609305329;0.000262622820464047;0.03686959806918905;0.03736746914074965;0.0;0.16685680900782004;0.02031729045252132;0.2237533489210241;0.004255648618466295;0.26830210893231227;0.0012938933789344834;0.06576584186482982;0.0016616171255669297;0.052954645399182286;0.0;0.0003987763897924457;0.027008824940479764;0.0022502506972451107;0.06546104679311578;0.08009169999111022;0.08683954298772346;0.03094508046871261;0.0030409714970597943;0.004608167504151561;0.05570035225610882;0.001185085127648171;0.0078446802575246;0.08486039787429368;0.1615084351454899;0.001847415701719258;0.0005445068032388609;0.0014846993300096265;0.0007454753433958088;0.07618119831390724;0.0016446782652692398;0.2202509172531332;0.011271190309596286;0.01698455663002323;0.00012606555098333328;0.07619429559951724;0.00037261221245653796;0.006188320597701754;0.006031204831869987;0.02376887043094159;0.02410475418886034;0.005429830269215438;0.042507709851962255;0.9999999999999998;0.042289352831979606;0.021074197217145867;0.008697758193852911;0.013665923648588454;0.0009295254718282247;0.0009931122420467886;0.1343194470885493;0.013525194374943726;0.9906116417319353;0.08442001180532765;0.030069346715929948;0.026303451844401027;0.08241303264716468;0.0018120055768326897;0.029571972985625007;0.010230918077354396;0.0;0.0;0.032792527684973566;0.08234881110703281;0.19220816957896905;0.030092646211533236;0.03186997522376988;0.0009993755379229616;0.012088030118708713;0.048071633350302824;0.006725586358474019;0.0832888431800842;0.08918859954435508;0.0153358076394511;0.001631153216446589;0.00031782754999177604;0.0023871682284501775;0.039733670917071834;0.09161293635322593;0.1657945682757923;0.01723201611958615;0.015199981971705606;0.008121318044309586;0.04615005102931485;0.006355037818461413;0.006630050125647744;0.15030082354149826;0.17234535259955203;0.2673177181303848;0.08089253651067782;0.04346019847599815;0.0;0.0;0.0;0.0;0.7267166742223434;0.7957244720277954;0.0029052297129493385;0.0;7.067938190957652e-05;0.009969866304681711;0.004613238772864494;0.03860030230216477;0.04177512787964716;0.0;0.09227459761050254;0.006319056208541548;0.0011032377268769722;0.050190458696724165;0.0030370392469196116;0.0008668020607921381;0.0017753740837953085;0.000784380838162121;0.008109798703121158;0.0006449196869461697;0.0030323801147547676;0.0022614110290849177;0.010810906779931828;0.05178580231491592;0.030688724125952513;0.024105262924565284;0.3374127245630847;0.002722147960862011;0.0035925330780408747;0.004084450762454201;0.01018000411009935;0.059986166524442205;0.05391697537113284;0.04515676053102522;0.001081515986695114;0.16915126153672738;0.1676896563352124;0.048335574677373885;0.04435157844941482
+Mepronil;0.17299978142889608;0.16944792253456956;0.1749381404380905;0.17162218575542318;0.1773926404344926;0.22862979922016702;0.0904916067745223;0.17325236612460462;0.1723870061890143;0.1835711351207206;0.07235126548396324;0.17813398101756048;0.10258246017946357;0.18680730183819436;0.17938514748348589;0.18185296936241885;0.17727859317092967;0.17414682863521627;0.1685164726316494;0.1739538467761622;0.17866242990201656;0.17216048364705713;0.19715234889917235;0.17718160620092405;0.20448993354706518;0.007493544978305668;0.08170533720970159;0.0978856676548315;0.11596330449131727;0.7652125887921245;0.8272883376556743;0.07756688347624788;0.0695855337505539;0.13116770933292776;0.10738644952163891;0.21000309777237916;0.16830171103978084;0.052598136429847626;0.012367735930307051;0.09787850608152357;0.030529041414559067;0.10856902951506497;0.01602408215197001;0.011622602356250534;0.046477658747631996;0.006378225360288385;0.004297905018679437;0.004686837918772988;0.006307595517358513;0.08063767489642759;0.06008299173129352;0.04317521463974798;0.010028217339239639;0.004518752601033782;0.05041470629263616;0.11234643486573075;0.05409317534740228;0.075495809898946;0.05174354512478457;0.006479270201679575;0.040341923091921014;0.06817811155780047;0.08973259329289006;0.08790065574132157;0.053159997265157515;0.07120235628245547;0.07469969119845349;0.05571997931534795;0.05364277872273862;0.054812168261242744;0.04927621973189468;0.03832707161530716;0.058211211859308824;0.06108461157481492;0.048114226452448706;0.06117334267424859;0.02198639302668331;0.01964461267028104;0.006433237037915263;0.03761487277424025;0.024695015617226607;0.025637726461827857;0.03605855480189468;0.03668948157050076;0.03153390767136935;0.01648801413184915;0.016856564411895855;0.02730910930214221;0.11357535240314952;0.011994758779446753;0.02186709226636364;0.010676933948861085;0.16336902668182898;0.057742281863536186;0.07224981439286393;0.08852197465190006;0.11071886906559533;0.038046701253077124;0.17752002983356618;0.10357934379517551;0.17790414898712364;0.16760510784852575;0.16515204923128812;0.1470080807911118;0.008432308302508951;0.11348415358463801;0.0998692154699112;0.10582012850102816;0.10789347734348033;0.13042059395291988;0.12235035272852438;0.12794057266599757;0.1294565675583868;0.13135942719764718;0.12376044541644564;0.020800771621319686;0.018948366926383218;0.023984554950624282;0.12137373245572072;0.03336032959895931;0.007168510475811149;0.024668842395539098;0.0950990908130314;0.011619357346410874;0.006362016573833783;0.015485431693680909;0.01489085840201569;0.0;0.0;0.07565470682996149;0.17140046855444807;0.13001220896076515;0.033717549854613234;0.2039238726136415;0.18561708079462363;0.118862266183978;0.27732302784384044;0.1848894072250428;0.2630565188207432;0.2916308157667403;0.12398590817154491;0.2849182468641405;0.27375127784917974;0.07613254883537175;0.240500737092095;0.15064950987989204;0.1812331465068853;0.3580958900642823;0.09077408001960717;0.07740088460270886;0.16503074165818654;0.2433562136443514;0.1172068179623367;0.05644111503974894;0.21907919936517528;0.29100590700378626;0.07604752766279055;0.03594269233491073;0.0795480862804744;0.0029713108011919886;0.03664141883899641;0.016918808043538666;0.00029815742099575167;0.0029070433183289402;0.004039371295987819;0.053004297947981824;0.017118114279347264;0.002350368020120495;0.0036197582968406083;0.04994393844729673;0.03208427070454402;0.030926918969820978;0.10359781932511365;0.00015497394251096682;0.0043984231554284785;0.039016796234179765;0.0005844365093836113;0.0;0.13205186267563226;0.17363974276294813;0.16402546148391275;0.0;0.21313471088728533;0.20099717746362916;0.0079282598354617;0.01072533192587739;0.001191834671760976;0.0;0.09822277903746221;0.13119821528905215;0.15466941980909618;0.14114079810451444;0.09795538518600491;0.13683337301224566;0.10088773255670265;0.11732410726530783;0.11403973545061737;0.13079592203281307;0.16234207978360854;0.06913593572694733;0.13046447478295126;0.07795776148393682;0.10841493109688291;0.14509163481482187;0.028762955448153424;0.21541906919696785;0.21861083087653257;0.07479246547818359;0.03237593622009686;0.036487346927705624;0.05786882431358744;0.1934241989832851;0.08904944775923547;0.049719568806978226;0.022007409991327012;0.08515104008070248;0.08617305109225515;0.14550452490505442;0.0;0.0011468335035211105;0.07496326379917265;0.011240077154580584;0.00870139029185812;0.14688490776039181;0.1266497195209677;0.08226448506057324;0.11345819649418759;0.07150250434664027;0.09595320759124241;0.04137577611725568;0.04319024582413987;0.03810361987346816;0.06423055250343708;0.07688137491043504;0.030833503189451543;0.048722193571480825;0.043360808611783444;0.05380272824071499;0.05796275659000114;0.049445598179598614;0.05989709847161519;0.06669218992607208;0.05805138775737323;0.0851447305170553;0.03175767286425679;0.0012291184102601255;0.007822433332181663;0.0019730807984173395;0.08338458825404489;0.16219722201248807;0.035353953156970645;0.03542998402086733;0.03441466281470323;0.1462753832481121;0.008217127849081149;0.00844001822758381;0.03628775283854068;0.1059505614634414;0.03488649593930486;0.039998938937069295;0.3362324002027046;0.18110275046406824;0.0;0.0;0.04334129906496857;0.08801485318461098;0.10014902846694886;0.2600475566976287;0.15126534184014243;0.027074789202213737;0.018515164658228573;0.004013218807383372;0.10749072343227174;0.0416114229014173;0.015351292058009891;0.12321102986005764;0.0019082530159660245;0.05180237766868142;0.007363803274224445;0.07782864100028002;0.005882479953864833;0.012692063956792432;0.3285672174296154;0.15766513689784412;0.23825169510778962;0.12985299313427018;0.0;0.06605610728048991;0.0;0.8804091865684293;0.009685121456472068;0.022608531258606016;0.9570180593641372;0.12613181540026153;0.056915772067929436;0.042289352831979606;0.9999999999999998;0.11466710004940751;0.024242698617586163;0.15116182136177195;0.053024250718867516;0.13267854380282382;0.20721707888864616;0.01135840567411977;0.05169189362784704;0.041169002791202995;0.06070851144883051;0.055853396748026855;0.03809591923942378;0.034420306624503676;0.06057474258114766;0.020653122229409328;0.0;0.0007012238123051404;0.06774382190092072;0.10559465967561693;0.17223267164683584;0.1481707343214549;0.03328399380979847;0.005404995144706888;0.004017181041629423;0.3197240883096404;0.17080705143205208;0.0739535147638556;0.10213528558538829;0.0861414452808569;0.0;0.04514408622439393;0.11918753269213721;0.05706920265216255;0.0021499106515312375;0.12972905851991756;0.06348595092885369;0.07485591942850728;0.32534010929824486;0.04648267235353273;0.022802191470011512;0.19507320150793378;0.12813942854450086;0.1558528530146846;0.16951390800492094;0.07048013391689655;0.031231209819348727;0.0;0.00041190445354163946;0.007543193471963818;0.016717280551097256;0.027881407526936585;0.17642787895786052;0.0005053581075218941;0.0003456432935900841;0.0005526432506020938;0.08081943390095324;0.023626915689462017;0.1609579553228752;0.012452523585853694;0.0;0.08709967696567666;0.0;0.009096019767867529;0.02553251610566494;0.06092028369500374;0.0007797128501792097;0.008572628359080493;0.006082393372335191;0.030717627036834987;0.0003867786767233559;0.0026673686739728765;0.026235827924571683;0.0743201412188776;0.025262166031729778;0.00923133248289255;0.02683770898670389;0.16979803499362608;0.009072557491801053;0.013217209155700238;0.03744314458799783;0.06214671805208972;0.14663024179251824;0.13748897573871618;0.19675933072832796;0.05440656401020717;0.22941452632604503;0.25584490387417524;0.2888537015110866;0.35472454340204307
+Metalaxyl;0.061956771933151605;0.02314707606664413;0.09946631903311423;0.02847892082172553;0.03366030611607123;0.04072882258958642;0.022264385118415754;0.11677802703391645;0.11588593181986066;0.032441075606523616;0.1582224447908875;0.15080075806152565;0.013531786256954377;0.019739778864899995;0.021975026639889778;0.025367048560122542;0.019683283943583138;0.021608070851803312;0.02263410243540305;0.02233687523862204;0.018904960517949196;0.01816756103898245;0.029383155935859946;0.018201920641407444;0.04784599965215949;0.015954624405115834;0.1659759749471728;0.08140609440087605;0.15620305316702685;0.1691953452127548;0.21542647107896967;0.02871585682894481;0.1190542700468023;0.21928292801151641;0.04050828345201111;0.06854374409740709;0.21503243190334626;0.0235076918096789;0.015831842517984744;0.024058142502997083;0.02055400067233964;0.02035680544118566;0.08656307893239036;0.0010864975334588778;0.10783194404725242;0.062252752939603966;0.06712317695654317;0.06925058419771363;0.06914669025280536;0.006603301570703918;0.006481901867700387;0.02123329799966228;0.051600552188804764;0.16846402689653056;0.05969676381328231;0.015035593620997269;0.022835233373814417;0.01828409703073018;0.01971371160449217;0.03129174247761572;0.022077319500132652;0.018989914058689602;0.021835680008576032;0.01743512625465933;0.0243704879183322;0.019181530836598515;0.01801847224424424;0.02107345028577555;0.02057741635261245;0.020459554831035957;0.016816673707947215;0.01945868101827877;0.10119894755635403;0.10732396912034604;0.11881797801445418;0.0630573012882628;0.01960133943725427;0.02537113540617627;0.006565406005424202;0.08105316717178132;0.054840451376742254;0.036984563850568045;0.1302871283315156;0.06854609152263913;0.04219970019605048;0.023544279544476233;0.079494474140608;0.08226848817664599;0.0887893131227146;0.03295052983504541;0.028967020110994574;0.014310694064490509;0.10002348489626435;0.0576630570417587;0.06600488248297856;0.08904724055571904;0.10843908975124149;0.08262412166136152;0.08431110778551755;0.09125680771056041;0.12758440211209598;0.32843712829974653;0.3069484698338608;0.41732784133611217;0.34438950979754346;0.03086971224990969;0.024967407111006694;0.02714243453442194;0.0295577469680692;0.02292592928472981;0.023240599790324487;0.03132771823035327;0.02988208445477917;0.025917322344761927;0.029779409504535018;0.012917274243721095;0.014943432992443642;0.016998002204883886;0.028653142097100827;0.07661792450223967;0.18790285160614376;0.017857281635462338;0.02032929985862671;0.05309221212109531;0.06631936960383793;0.013979728202608304;0.01582531866895634;0.08698664953608165;0.12577531391513527;0.13165203783522803;0.05889309454921235;0.26483398922928336;0.17992328761795515;0.2543215308436673;0.31295099990539205;0.1724391467590256;0.416257350193634;0.3554804649814421;0.31399300026173665;0.3295359001640642;0.08902194162197968;0.2327814395279332;0.1164458599240892;0.0949199924440948;0.23448064969407825;0.15418781635638484;0.43721416586995393;0.06643522827966525;0.12448855376989572;0.21573237766719525;0.18028741626767844;0.145907333064538;0.06353969384466455;0.09026660142756691;0.33120776152544495;0.3116493087252259;0.07969180582399048;0.087493401547465;0.07891837623580691;0.09126827756324332;0.17443838697942543;0.08270511611249018;0.12724276217133138;0.07785848278542297;0.1021873800305597;0.17905030478072992;0.11872385141151642;0.03995651893689263;0.0508014846094536;0.11697459201794608;0.1424520978124654;0.3096428188312375;0.03354154620395757;0.025655733898112525;0.18046097486808305;0.011976301692553822;0.0008129632600143269;0.011036802338436593;0.04463844409427897;0.02670199394686073;0.029499388358003836;0.013283390213168409;0.17867506491711255;0.0821145991819622;0.06931439360244329;0.04990035401995098;0.11960681912195108;0.007046623907607425;0.0410033634983721;0.09090830720029165;0.1327685325572277;0.02333619942717648;0.1315643888319649;0.018705948922263845;0.35979434932241916;0.02087333578069496;0.02019442029980122;0.03150818285899824;0.19045322085061886;0.02655394119991469;0.09501565963920727;0.026074682957097153;0.029930465061498292;0.03200963341754058;0.035884930436171934;0.016692042998265037;0.21270534149371545;0.16311248802176823;0.19078016596102731;0.6946494277428459;0.15197335160953745;0.3575282172038375;0.1764385592677795;0.07720853587087682;0.3028207421349503;0.256461496529245;0.04828557472114787;0.47044964125314553;0.5282220730354528;0.04626450683395801;0.13817704840205938;0.17362550207970964;0.007883325071549164;0.0863039406580021;0.048570477098632735;0.02566197608627277;0.021589575541076714;0.02401877439233306;0.01733979274207277;0.014859897834962188;0.01777302702827024;0.01764051667846943;0.021903487507611136;0.019079993093431977;0.008701055178667478;0.019351722521722653;0.03042774757388759;0.03857785455214484;0.029592094019963867;0.017701426051746443;0.4159370837473126;0.14727564128897266;0.09158057878969476;0.1683719588517905;0.15820173245485208;0.10100727839290162;0.014336899666217286;0.04572276953119578;0.12751012499112846;0.0586809733896532;0.0463005530893831;0.04467850590130551;0.08263058016630273;0.03502326521680957;0.10240910644222749;0.03533933477912598;0.09355211976582503;0.0376074859421497;0.04278442313728398;0.03250612176325684;0.12811262043675206;0.09032015479781628;0.002233399724250843;0.3068808666687699;0.11519249174156307;0.08949138330296474;0.227364346433713;0.17149960039164824;0.14685277337711;0.054584645089011716;0.07142285646508986;0.037526340781687526;0.30120379140040265;0.11284667437668501;0.14970889857744352;0.03914096431215613;0.005429371121555902;0.09919588363756394;0.09418295176141354;0.13314569906371077;0.050222076881523234;0.08154099760329911;0.12829627040011898;0.08044124443298203;0.1943140324736059;0.36559053290221183;0.0824057914342228;0.08897230602805507;0.00033533591930604283;0.1885492705508284;0.07626739274958869;0.020405151593744193;0.047514766470894636;0.22351620202648484;0.3228426022452136;0.021074197217145867;0.11466710004940751;1.0;0.1082118398244649;0.4237422384573826;0.21127481803627937;0.21315987096304473;0.03730496471057532;0.016987695281471194;0.012443171560682035;0.05269628314497252;0.028711248016449357;0.06161729606520302;0.29833446072931746;0.010029120928009073;0.025946711482154956;0.21903098188796144;0.060725236028646996;0.049716870602956986;0.3828931232364074;0.16728397864958022;0.054268267854063544;0.031061578258363635;0.21348825569751625;0.10428501637925322;0.010093102367334593;0.08529814447792006;0.25593413495043027;0.05048821668466179;0.2059825374085515;0.29540254837191693;0.045896765118732384;0.026341832692089593;0.1357991014194067;0.17853270030096863;0.034539140088279276;0.050106353763547766;0.09083418173953915;0.09594106445989362;0.11650465095356363;0.05598247185925174;0.07927423482649713;0.1357813289062873;0.14685242817721075;0.07395618072503206;0.04612381876102812;0.06791960029440192;0.030514367990781152;0.015254127117195287;0.01269236162259932;0.034353954285871374;0.04119607650493418;0.03479703678619503;0.1401505616754115;0.029829009676910268;0.027018531732623585;0.01741696665181965;0.08141956027974924;0.14357449266824135;0.23367838063739885;0.06948527240079917;0.0010891683254727177;0.15212522837330467;0.0998778659685527;0.042793068290358345;0.14762598035246405;0.15107063831670348;0.06240247965940552;0.09093291549750407;0.26791098878162567;0.07445750236303422;0.009293346494995665;0.07129349537467286;0.15075742909082193;0.21452370135291635;0.12303301247354088;0.07025684328129723;0.20735242121682057;0.030149157755468118;0.024673459099795396;0.04017005940866994;0.11972681596425279;0.13497500618969113;0.4634442052436767;0.2792950909609;0.033762439276925;0.019022990806563965;0.23572537620199144;0.26643747977093013;0.27659287351182543;0.3010423011492258
+Myclobutanil;0.03564097091449291;0.02984198287266439;0.024236482206696896;0.2274012442131446;0.21303702461190316;0.4104807511497014;0.23670393741666415;0.018527835120440508;0.017605187944996825;0.03771059844142974;0.06305053869459896;0.018022201365496142;0.0199526861632665;0.01360998281173358;0.016992895782108473;0.014281039825911805;0.014308089844779173;0.02345556080041101;0.02884975357365252;0.024359810473810084;0.041390117562961896;0.06505608347528427;0.06227616961842506;0.026792350675211428;0.05465062002447551;0.04864170779282246;0.1366019564352716;0.1892571564095455;0.07921797448967552;0.09996457993777276;0.13733427706198523;0.010212906937883189;0.17646247458004877;0.039048449693455486;0.05550491644879247;0.03280892656642303;0.3185712579461413;0.014085686202593782;0.00296160455769812;0.016498911346104015;0.026825522646592707;0.08181173894325934;0.06501196481115214;0.0010899661076663031;0.20969680936968949;0.1990009102798665;0.20364118756669597;0.19714107589371577;0.20932034904394295;0.01148392716145536;0.0062416732503708305;0.05150590346751776;0.18674526620681262;0.0477230958980684;0.018155196981192785;0.07504605369201957;0.026024681783914434;0.021773330786523114;0.016735690896339528;0.04080007974083013;0.0299624921928501;0.06449618661991707;0.05789975505571121;0.05814217279305112;0.026888697543659593;0.021669202274972765;0.021982655460944134;0.01719382778418212;0.017362558420293592;0.017791867542779727;0.013153602380980756;0.024984485069367703;0.02033410061552952;0.021729102914777917;0.13643328897376567;0.13367482281620388;0.11395780605210293;0.10428887241059077;0.28152467110764545;0.34214716635028064;0.07558041623053129;0.07337748462914317;0.17099932999243803;0.17384981554354875;0.13870167086934804;0.089099025393261;0.3111333207182518;0.28636250251374734;0.2283743204072409;0.24257019673025043;0.26973514804387116;0.11154141438202071;0.14534519857102807;0.09283685450687829;0.10541685037081976;0.024478445725156936;0.017672505197647508;0.30470988930553317;0.3051114289958439;0.2937795286411034;0.2739239423669868;0.13942299585634998;0.17383675277281416;0.13851435882911814;0.18444637071709294;0.00893341508959414;0.02604534486770585;0.00806328364393645;0.013462198649982108;0.009935012718084706;0.012443020355934769;0.010095421035140276;0.026390967041114072;0.011859719229680502;0.011010210956937376;0.0038685845913708464;0.006658581312919508;0.03692057171281039;0.039881011587996465;0.04475207470426536;0.021986775151885792;0.0008022502898568733;0.007857333534208179;0.014996704898596263;0.01840039953894529;0.005777967993387834;0.0034972658460024402;0.0013182524936370267;0.0038816231008064884;0.008415034503303848;0.02163571453983282;0.1415587748164058;0.009429725614160063;0.1083983158712848;0.029148051684545297;0.08296623957738432;0.03438857197920451;0.10395902667876684;0.1383744586708549;0.13016321038304385;0.05716307829672438;0.13722987772409176;0.11716884939855618;0.009410075761950253;0.0570862467267195;0.2090825956829921;0.21499934496467987;0.09455061950668919;0.05855349552058811;0.10584530033566912;0.01193554257159468;0.10162925871784335;0.06663266352503748;0.029254719474319475;0.02596812840246228;0.12414215824296534;0.04754091724008967;0.034828434010190625;0.035733964371281284;0.04761583414398467;0.0631360372017482;0.061861841477312586;0.12214734461716299;0.030954063314748616;0.022184568078832335;0.09705561818048063;0.05316538308726966;0.04768354530212905;0.051271862891838854;0.11262370068747654;0.08698628926740508;0.0444906524228588;0.03856262492330982;0.04699140594472264;0.040279879245017566;0.01745283903147155;0.026686465557196563;0.02063685164387093;0.38228788078788356;0.1312412724884569;0.10458868751426413;0.05141540826279172;0.07831266271937058;0.05785001659125212;0.16681999269927647;0.2272405118898323;0.19127138607506344;0.00918063819835119;0.03403232043695844;0.03678356638135673;0.06370521197498233;0.05004295513138346;0.11718960241689898;0.06641433076273465;0.06033699339792363;0.04362298338776893;0.04444291367707945;0.1078455148313318;0.09449046681827092;0.09055961881571098;0.13150631798754397;0.0877670770503254;0.12540718511579582;0.05447427285480164;0.11550416266978294;0.025615125239459465;0.15237575696152914;0.5606921153972715;0.04245828161200774;0.6294397861554593;0.10592955930672977;0.049077861911103776;0.12054336170537773;0.17111104869272895;0.09111162028682986;0.049581515059366935;0.37303736242997265;0.17657827232606463;0.0036333628487960393;0.043330183539168565;0.060122028226345985;0.0343068030869116;0.0008967533836447083;0.22999124586245337;0.24650366296555748;0.10546079564587955;0.08164703803966744;0.07008201776552132;0.0508650357221465;0.03155441698824031;0.03100314319043637;0.030960265299534863;0.03452409935307456;0.02739110176246306;0.01922954959011959;0.017295764389977493;0.09189640969034928;0.07963423100623473;0.08327347785768649;0.016088801338462917;0.05605137919636003;0.2199437726777091;0.2528433971168607;0.03370738239059876;0.10619978396892338;0.06568688146270614;0.10520060330132469;0.10945484669068739;0.17170324297602207;0.23252568089500963;0.07836276335906027;0.07200777923827568;0.07104537283422312;0.11509085538762708;0.06812811737866699;0.00646539841287477;0.09258808028015014;0.0939346337120643;0.034123497981439266;0.017582861712149483;0.017268578465443513;0.21540656008367248;0.04275863091515526;0.042082759734733806;0.10019354247552405;0.05648924590111286;0.15355952666919073;0.006859703608469253;0.14543380481675228;0.06077164618445929;0.04881912436270331;0.10039804211952512;0.26180814881968284;0.12129052404450007;0.31324690966333824;0.12152440690783926;0.02071258602293321;0.05996381763925446;0.052477225780025505;0.17496431394177395;0.04115920769687954;0.35612971689577927;0.017247565765275072;0.08120270157166112;0.027662237828680353;0.040447300256213674;0.07718523314826928;0.05589463516047947;0.03699904639705704;0.046882323579933986;0.044790820827223944;0.3259507480444204;0.03160999037000924;0.1396190225190757;0.08306600472868796;0.008697758193852911;0.024242698617586163;0.1082118398244649;1.0;0.12059014477300527;0.05859821836492462;0.09224438681640951;0.0452188362113506;0.20397208705816797;0.0100106285070241;0.04739283633077908;0.035040768100157584;0.20320258851345327;0.039105320044593855;0.022327485315761748;0.0298056303463998;0.0393260914511376;0.002342571621346207;0.0067623731434290095;0.09761903035792407;0.07167640305802231;0.08177527665439413;0.05115242560046267;0.01886184717300327;0.09428821665388754;0.23302897583931728;0.259743494306901;0.07045920127432331;0.057634459588011146;0.299923704758482;0.1309904860374353;0.03878307798840855;0.11600970272365939;0.0598477091640079;0.02904949194221801;0.05038762869093907;0.07312474971866144;0.032035497396242084;0.029575790774144208;0.04311786355886668;0.0902323028093841;0.08817395681801689;0.007403734919903296;0.01772690276692389;0.030640094484801147;0.0970599082915533;0.06563667835783565;0.04190818518589516;0.04241792938085038;0.045523470104089976;0.01748438763459815;0.017136106283788685;0.23955461344566048;0.09646541357086451;0.05553882377964631;0.06378046187900908;0.00546027918978594;0.06773351727210783;0.40060159501764175;0.062067421464343964;0.1579304695739347;0.0022204435400602776;0.32291552885184327;0.11866772003888926;0.10552304598409598;0.10927700308356245;0.1972148276175564;0.07996062835494282;0.09014296251535202;0.03193301468742397;0.2032150484553929;0.031249161031728624;0.10549351667072038;0.18142122249914602;0.34970125600149166;0.39963400077167;0.2403604812582995;0.35332669873219646;0.05569775197537466;0.12166060771841683;0.1217502425199842;0.09998824224847733;0.07458556158894812;0.1250486230901334;0.2510674693106644;0.1397692260549813;0.002793074151130011;0.14342334591360262;0.05796997217374101;0.09513122718362071;0.06572111033523048
+Oxadixyl;0.07799961883659744;0.008384296984234364;0.014884739585537515;0.009884092093647165;0.014263382449551432;0.059640616984176414;0.005801329635234699;0.01585613876956302;0.014520383590877962;0.02001159243616743;0.04876397481549127;0.03673066422509361;0.009891399661635792;0.020343361931670675;0.029186556541148226;0.03824449472470045;0.008753767385659732;0.008594233600921694;0.008324160135950666;0.008535854721295134;0.008618565701424455;0.008563375162524898;0.022660402962960062;0.00882765869515068;0.018378497058663172;0.03736952019598464;0.23387452787231536;0.08217378632840062;0.07515930078455016;0.17441345448674442;0.16926572836458298;0.059343026438021695;0.018950882171451192;0.019511827681566604;0.09022962946028731;0.06152335681165955;0.2055123609875471;0.04427555500421361;0.04511465980704869;0.006960905030119419;0.010121759896754684;0.0414263862734605;0.019259699730664652;0.005314215278037649;0.07750624582467097;0.06380484054868608;0.06767272530091564;0.07135568579605657;0.07231336061928281;0.004893812166076957;0.003320138888798489;0.02944673953570744;0.018778928582758418;0.02609320380391454;0.016208790779615442;0.03321936780050259;0.010292116487797511;0.008593336194298813;0.01003468161554636;0.023811266027708947;0.012237932558612729;0.010294297773598287;0.009126890656839274;0.008963335061649492;0.011456584036310972;0.008533646456059025;0.00845152655554565;0.010173436531955859;0.008919227883678747;0.009924372156106073;0.005117271194014579;0.011902105349177065;0.15539650097417684;0.17311173575704358;0.08625397531128103;0.08111864016299264;0.10517648855540648;0.10032600361739354;0.09030177584141048;0.06024417402842375;0.062457831734992766;0.059196368641505605;0.07307777801491476;0.07129516964743457;0.06658926493605681;0.02692641474211108;0.0422017196125991;0.05093193491440228;0.16102856354504147;0.030076958600744354;0.05764306182286777;0.02599794032282609;0.35261491040059273;0.08664746394114664;0.10741796552122992;0.12173085485198162;0.1557273676787137;0.12344528817237166;0.24676639443001752;0.1768934737101667;0.29322651091568297;0.21038074137693694;0.24305458486366704;0.24363245108872694;0.11958560946048058;0.005955819114652145;0.01271395759274462;0.010535398442370055;0.028203830297237064;0.015330259802212321;0.01167925088161684;0.027782967832389815;0.010410727657757945;0.01214429833765204;0.007288236898066936;0.002693505804940582;0.0007819763017428082;0.011604678209227236;0.035973602682760224;0.047458071461178385;0.0231176568494744;0.013478839906069694;0.006512522444353401;0.020037323118977105;0.0301270782829515;0.02835447982920169;0.02750090900469411;0.19242161129998187;0.2724141824698914;0.30111431285412765;0.22120907841264287;0.2580444536080316;0.2720078347294469;0.14280675756462832;0.07379288546633024;0.24634895474894433;0.3128712617892665;0.3633568411502447;0.40564388931255657;0.3423689628005316;0.11261765670778576;0.3068370708267159;0.3508553117612061;0.12777500189714966;0.2792448717503815;0.3819694213518012;0.35461223295814503;0.3363082129343383;0.052614430102631816;0.09008639792822594;0.187887059584797;0.24287216785319202;0.15096804214286194;0.06665308366563275;0.3656778058616787;0.3000768343309557;0.05123478467610394;0.03139718458469458;0.07607243969362104;0.028431541403654625;0.09189695341425916;0.045992185231231816;0.10474860784516915;0.014078481966499015;0.016881213657254954;0.06603697813041104;0.055646297042574615;0.0034458699656734954;0.004653038084512598;0.09211489679721849;0.0830305633023294;0.030289462610542522;0.04051704515996765;0.02216831808520711;0.024989611317149045;0.026358509562372567;0.010474454431169596;0.01413658827093287;0.1593269853986543;0.07292138910800776;0.06908070389592035;0.01840106389625929;0.301606271962948;0.0799841223936387;0.01739981288390348;0.023346898496486856;0.0256072957740414;0.0;0.07676075748414118;0.0418992391921841;0.0859320952000557;0.013793761049400773;0.08579029147726566;0.016370656096861946;0.18758673335845985;0.015621873743376978;0.015888414078595408;0.017770088302952975;0.022331654868501503;0.01391762685185135;0.028702379321659366;0.022285889464619867;0.01829273758000918;0.03665128017732625;0.09099652535269714;0.02401331622630908;0.2129264353973815;0.053385786420870086;0.23777918778755228;0.3033752643856659;0.02623518259727042;0.0523414632636037;0.14470705320195654;0.05590785873550385;0.5208780112977309;0.1260327545136736;0.046713817248774034;0.40710699201868694;0.04889518661823767;0.10746053605072589;0.12479148062842738;0.0648071923895786;0.010205194870848899;0.014107099683933845;0.042009851289129284;0.06888273510634561;0.054449306898866956;0.014788335987323622;0.013237069093720157;0.011155589382232507;0.012457875292482209;0.012080904671415019;0.013827568335256805;0.008993363348414878;0.010221382989825648;0.011384086326935963;0.019709032035442334;0.0267750369931954;0.018844970458915398;0.010854502744289644;0.6285926264161376;0.13641036128292516;0.11229334022793995;0.08328931857659166;0.10481499866501183;0.021042214266009072;0.08976615567450015;0.030866748727892718;0.10561823272361381;0.04083043446113284;0.03685797872358311;0.03707381635259516;0.1057275124418352;0.02750119685982729;0.14537490741924572;0.02551372722247965;0.20098482346602237;0.09183670070053743;0.07176996239843632;0.00872442843608153;0.13543654189625626;0.11984847317561073;0.0006682485727206929;0.7594390634216461;0.11001669221874234;0.07118010837177442;0.13432871860087425;0.16641563960459008;0.14578074826229617;0.028022815882889424;0.06353202604278504;0.0348469112816425;0.24305823344360397;0.15090650165966618;0.02232258867833243;0.052563660932928594;0.00580810526270739;0.05665894372945684;0.042726581902709664;0.13748423198061466;0.15861369128915745;0.06142075491235716;0.133622661167561;0.030446729810962185;0.026851113799258582;0.16137033351680413;0.7411171783935935;0.023393030463041472;0.014763876460621751;0.14135287299859525;0.041661844139202736;0.015462027413115153;0.027154937042990403;0.09419775433072343;0.31795031998892176;0.013665923648588454;0.15116182136177195;0.4237422384573826;0.12059014477300527;1.0;0.1459872786483281;0.12811599901375534;0.04717612933434979;0.006410113360694563;0.011390630281120941;0.01790940513597636;0.06053225705246627;0.03392672745585723;0.26118224743283514;0.18855977380731803;0.012761814124567476;0.7940647814332445;0.00027770202273934085;0.0022817342163456295;0.6567167392839195;0.15207497197811023;0.03487294749293619;0.02050210441354219;0.04158373658000365;0.02083959407896058;0.026265259247182985;0.01838175166737171;0.2809888966923592;0.06177303101862218;0.1677056170193646;0.1064080081431111;0.008771611273710268;0.031908767918223;0.16720330665170446;0.07146865473103847;0.016986237515344352;0.04874850005398518;0.10245482169263842;0.10902192500525988;0.11928602964138078;0.06388175610100967;0.09525104444933927;0.1711043805770796;0.0250235249189555;0.06592352744254475;0.025209524537718686;0.06955844073879948;0.02797345223698152;0.02258216715841806;0.006522419556705366;0.02978132764554512;0.027376005012116945;0.013235655348848909;0.02165460356995254;0.008409245091082746;0.004052252705294469;0.007412666088650351;0.06550591691043581;0.11143350199815155;0.14883306171328198;0.033430307487372767;0.004992741694492991;0.18230407586623143;0.24371296443992813;0.08799807293898271;0.13400119780238068;0.2078025327491313;0.023179986370496813;0.19234599723953805;0.09486774388955023;0.058118740866764496;0.00627036678632905;0.14104205498243164;0.06236100458276679;0.09144133216356973;0.19178576938926126;0.05622224146533169;0.09343377883523091;0.025000997912162717;0.10803257163416367;0.12704776738088305;0.053737628257407646;0.16390051227782873;0.16132166138636342;0.1634331786449591;0.04428683232114529;0.04045940180611238;0.15790314161261748;0.18627220881450368;0.3170275687271385;0.35449933960739016
+Picoxystrobin;0.022506864057736952;0.0014485221752686041;0.037065794481567375;0.004295272358653197;0.005180393849242197;0.008527598132074727;0.0011141936074214203;0.0028730971640638244;0.0031611093785701995;0.009973498994254749;0.16724730936148424;0.07293407939545912;0.005986255497443378;0.0;0.0;0.00029973059116795926;0.0005907886685484419;0.0012922109918351295;0.001197699216576286;0.0013062846635936405;0.027642956560953582;0.027380992499599587;0.031634134976203494;0.004735601387793298;0.008710933708631106;0.010055473257184125;0.02451727805046135;0.04949841393165983;0.1460046957735862;0.20905655027697267;0.04187931792104289;0.012318955592257878;0.01519357589743064;0.03774358246621572;0.07809000356411269;0.011339523303273511;0.1816760057075885;0.03220664466185544;0.0064145779340616885;0.026095922631185473;0.029314233582330953;0.023451597798155366;0.019810639096316262;0.0003042803625585442;0.0340085217932161;0.08027633262824291;0.08325332133556985;0.08828657005311001;0.07506257419558199;0.007714585714342096;0.01332944523348695;0.015161639879948667;0.1429638568511578;0.005120310641882547;0.027130586156344744;0.02012486528165899;0.02217259430184349;0.011087264024606244;0.019748568901053063;0.013316257137024745;0.027133903856016463;0.02149693437231371;0.011414760374825845;0.015305502084599316;0.03016187459010991;0.008622424238921147;0.010957893146506402;0.014430311551471163;0.015221129637900644;0.012779989707987783;0.007790035352051706;0.018510484076431813;0.05429349969259654;0.21156692241257447;0.16822324819250767;0.11910824206628862;0.18272139763747422;0.16423091067351983;0.012884203403925038;0.08019654027492555;0.037901653243250184;0.0331009608738677;0.27214332495787524;0.01984232524662921;0.12165754255997441;0.1214151058769913;0.1848645246591784;0.17078423300767187;0.16059243356023817;0.12390442078873161;0.07632901465637865;0.12119572134713721;0.08631289404796397;0.1646258194727189;0.1839924438072151;0.06330592536098255;0.37756373251668857;0.10238071933205185;0.28745672997008354;0.15225574936223576;0.17812882868578395;0.16213430099279008;0.1775786436053869;0.0846041066861583;0.20405638215154084;0.025592220102860146;0.0222057618651398;0.021847137035383962;0.02213809993086715;0.012567274498318829;0.014948111229898092;0.019620179037069082;0.02244110928131554;0.028791235482875294;0.02167645277965616;0.004660955610613748;0.00020066697190489327;0.0048739649630275125;0.018439353961608028;0.029684351241573606;0.008214410665178157;0.0011775151085628337;0.0008954518877829694;0.0233946090400095;0.004564111214132728;0.00687933556299067;0.009707078089330263;0.01730500069761816;0.035387312792562374;0.019242404306784453;0.05405977444138764;0.43641134419063193;0.17725199106950298;0.03546282304974884;0.21293582276607964;0.44363410877349;0.29451762657747194;0.2641183094981505;0.19430121802731143;0.16252714068391544;0.04707402866353497;0.15472730328470893;0.15005654453924888;0.030474365570582404;0.20725496430373028;0.04135740789560416;0.1824545636663668;0.04924396926104951;0.007606240400651064;0.017990748979065607;0.13567420741384825;0.043341345566327856;0.04443898792952997;0.033921827764262426;0.15387781019049945;0.12687697591973524;0.12700423169430514;0.1236719826169683;0.1357368274162401;0.17623063737228212;0.07132860189272652;0.03304760971694876;0.04524323123913638;0.02110667019662793;0.028339182141605516;0.041611925645674674;0.08999452606389409;0.022433313780366462;0.024507754450786217;0.133573361466256;0.057934702985436924;0.011977343904410673;0.007744986843205941;0.004210215445569935;0.0040761227042965635;0.019415723996211998;0.0009302401498294729;0.033756676548882786;0.04683859715969402;0.011744213838773325;0.010809979902744921;0.029355749503030496;0.19547755377317033;0.025674359352585146;0.003763370428827553;0.19367827978167465;0.11752374349610954;0.0007049228352201115;0.015146162975785277;0.005486249305562525;0.040379834235654666;0.022942803682834675;0.40435075325283304;0.0012066683915539595;0.14119395731114665;0.05588446405863454;0.05886482568288092;0.0430792488614929;0.050460587186209646;0.04960362486676891;0.052419506777022805;0.04832973223748489;0.06004081959520712;0.023892888715331878;0.06353073533118644;0.0029780241161146102;0.18854696060721476;0.03291604517442691;0.04721764384535768;0.21004033283665105;0.13548046614766318;0.03317825879439062;0.13689987707527285;0.13276145815798673;0.05699247012411697;0.08231704930011598;0.017530267767937553;0.16592005107973454;0.013338775025293171;0.05020816725134996;0.1440383015343269;0.06137498518865358;0.0019006806464196984;0.019813906467887173;0.004413119283593952;0.03993605766644009;0.027399729854982093;0.028809050614513578;0.00829863910865547;0.028430889414953156;0.0283850587437397;0.033529263673675105;0.02871573816468719;0.009889250771487822;0.030314657336115228;0.03619399759552091;0.02257608040196226;0.036682674366900155;0.025598570894733993;0.029317858427026305;0.3061927680913542;0.012836220562521145;0.007507153035953286;0.01990655240733395;0.07450926120892691;0.1640052798505803;0.07449278233736296;0.01743371366813831;0.04547398016625121;0.010039093091541215;0.3814123562012679;0.3803138945265213;0.12061067369195885;0.05413258040396775;0.0740940521900581;0.01580240494656125;0.09654795338566084;0.006547130791105464;0.006314575573900039;0.01135436645933949;0.07760242772412124;0.012357815389855944;0.0;0.020854392213417585;0.015543963399168427;0.022943828834664844;0.06012635713461689;0.08115902016593032;0.04170421739428183;0.000696425569039449;0.00905448541780907;0.0033698809082491053;0.03785113295452947;0.11180218163029906;0.017747917804406488;0.0008323662722617677;0.009557081769737226;0.020613732715776305;0.020969562267892414;0.03756377365231296;0.06141911298830967;0.06158204794258685;0.07747215710742851;0.013208083043922032;0.05381789619088258;0.08440055808164719;0.004648532109234602;0.017328116948358657;0.0017063228625895043;0.02329289984728654;0.029440923980019948;0.04924805361526891;0.3605086029739992;0.13222250891241216;0.17002468289817813;0.0009295254718282247;0.053024250718867516;0.21127481803627937;0.05859821836492462;0.1459872786483281;0.9999999999999989;0.12813850549427513;0.0019049802929594461;0.042565294839056404;0.002306046940464302;0.03967697936423693;0.014468601514043129;0.060475658285848714;0.29421754958394847;0.06333406069335364;0.002273241370744986;0.7729783404926245;0.0052873164782480725;0.0022423972789743295;0.13034929433883619;0.2738525164048691;0.020017593803998913;0.011552368436431131;0.02358988436338225;0.03487408174852443;0.006575573873123881;0.029541825505286997;0.30067394620580457;0.07254700101857446;0.0770504062453549;0.03729020708461786;0.015785231819254918;0.02800623306926815;0.0732555123765541;0.0398925138018684;0.05485613952652543;0.0075871179050714015;0.11355889508244489;0.10685187043447983;0.06705349685350478;0.09658997760550116;0.03726754474674852;0.10224805799266028;0.041940693757776724;0.12720714203723854;0.01955172695403098;0.08075275995804977;0.014763473671080458;0.011788165421406288;0.013288924962866806;0.01681852538671989;0.010772796818649504;0.012703525469512396;0.010194848463047884;0.0470695807459947;0.01253669084930026;0.009502336489170876;0.016046589083667434;0.098965099348679;0.14080163732690712;0.049496993124965936;0.0024161162702376576;0.045651104331444335;0.0072703384057744925;0.034577619877533154;0.02674874565141285;0.03925211660776723;0.09170176210837795;0.08341686741365655;0.038746192652823884;0.04036648096880777;0.08677978100663147;0.02908855233762166;0.06485240926698879;0.3756214611978802;0.05137951956455612;0.07481208924884059;0.23153807601806822;0.023516747223960088;0.03838899743908261;0.07383451813005591;0.03310225050226916;0.06172559842389956;0.22243611642114158;0.2535581703204285;0.019153389414466246;0.019955509788766375;0.2679460465822039;0.26728602409183116;0.2301494611915501;0.184212014644299
+Piperonyl butoxide;0.005920616360747015;0.0;0.01975531639214354;0.26579985660561417;0.25594851386877887;0.01654119057670713;0.0012905394603923556;0.014993065110378866;0.0001738830954753295;0.011693599913439703;0.026686554210736534;0.0031530335453573023;0.0006428869157908606;0.00014790194949196794;0.00018386563838114657;0.0;0.0;0.0;0.0;0.0;0.000463718857315458;0.0012273515220009084;0.01421865521528161;0.0;0.03305514684211064;0.07421964444934627;0.017503307758637354;0.027444047041323076;0.1279349710013553;0.19027370819848902;0.11754416575695248;0.017239985896667767;0.018945888323373516;0.04227648930521028;0.018858623123014628;0.008614338006858244;0.10726151265753837;0.012805304230451007;0.0076471237290985875;0.0027193019909470817;0.0072896351039373666;0.007936204527317898;0.02223307394055662;0.0002178306286020629;0.19097192059510598;0.009837415333552816;0.013494842539212114;0.012119863245734759;0.012075154126892381;0.0;0.00020316237054241018;0.19347055838610205;0.1036212913308208;0.11507216172694744;0.004513148135954824;0.006252362030231111;0.010089139383091954;0.0076929245748392295;0.0063560581427618236;0.008780892914686953;0.006782275449533627;0.01352166957289148;0.027515325801504276;0.01234096965373295;0.011749586328909607;0.00954348968561684;0.007907893173690252;0.0071171470707591;0.005162685744652296;0.006660655923683135;0.005949209150444155;0.006361657864293211;0.02872106580480887;0.031110894630130267;0.02257124600169508;0.027963268346603974;0.023381830669040555;0.026962291591070775;0.01658660054533858;0.010178493180153044;0.017405804606923682;0.016903904193456814;0.02887554554711545;0.015176879395585327;0.019228126728432434;0.009011026704926633;0.01624175305796718;0.027411933531388353;0.05181809312788403;0.004276616728339142;0.023205189959740788;0.2715160317508624;0.06671410246031001;0.018969467737549452;0.02479124389744355;0.03090471607202139;0.03520157445644615;0.027625309506080494;0.0472794459739095;0.045521198015874426;0.0650670344424958;0.05005489037636123;0.051819953104504726;0.056084917114429124;0.050416873488541375;0.0;0.0;0.0;0.0003340190080689999;0.001015243483020653;0.0003014826613273566;0.0006256768293121806;0.0014928518700764654;0.0015210247731489617;0.0005485447946038871;0.0;0.00011739709167819691;0.002179098741830062;0.005831754334719712;0.02549311179003836;0.0022160203415762005;0.0013584966502157095;0.00012755343836335747;0.012964469016640503;0.014635899163336833;0.010935049390250555;0.011044228260506501;0.016628640215215845;0.016151373447139187;0.02077990489851904;0.05851384896748668;0.10872587556811245;0.1078056220071543;0.0403052782969987;0.10075688099428698;0.1075484494323245;0.15152927786932366;0.08638569681976156;0.13493499985058122;0.12435128154217859;0.023176652236125733;0.14357692918895595;0.06388368060427414;0.031220123944603877;0.14737439281428127;0.046726453755873386;0.162028843391808;0.07061411207970453;0.010595002206998013;0.019708258611945518;0.13501060870348325;0.05116868898778549;0.08933011161002191;0.164569249274203;0.12302236534300896;0.16010887799267062;0.01723732570218313;0.017282489940523955;0.026257190409020796;0.018815987467692835;0.00973160730196619;0.008550936048591478;0.4101295640651674;0.005485166925601125;0.008191184058928904;0.004138027750984958;0.05304225027061867;0.0013871376886761845;0.002315610855285076;0.12593479874159544;0.036289262536329026;0.15469535622881708;0.0014328316949307545;0.08641506107426228;0.09617958073496065;0.008015697836995368;0.0;0.003332899845562793;0.04688545393161422;0.016019068066598394;0.014380253937320899;0.007702828000841147;0.14405480958332473;0.037081377791215876;0.023879185159499057;0.1063672117103779;0.05955292409016469;0.0;0.0022587558979853505;0.024675766339419328;0.03702177685155332;0.000990180364016822;0.04626973102181643;0.0008259326958993497;0.05125776776266437;0.005602488772227147;0.00584136259566847;0.007173530169471966;0.008666485600598796;0.0051091602696095965;0.00653909359410042;0.005083697960943226;0.00705016661163528;0.0029611420218618417;0.017468217797742394;0.0009644348730029952;0.18395486208222808;0.026720829399565906;0.03616169278268473;0.11132001879352621;0.002975625830936857;0.02645489345389173;0.04051865569551394;0.024742620408572683;0.05645116607131541;0.06241298541623161;0.007934266195933556;0.19312454874011742;0.01696776374797693;0.06999042984769811;0.046851574637258676;0.04384146093393048;0.007560341191650591;0.004611050511547837;0.00622345373144972;0.010255618655746949;0.0035189936976901285;0.011285561898282974;0.010291481737649941;0.002645237112111969;0.00537109278179816;0.004843723277505844;0.009417268653313425;0.007843867955405301;0.0026595449158548345;0.0068828935943093415;0.002264785851031945;0.0060507652875172405;0.010241769461071108;0.0053193257969440305;0.07225880382103904;0.05858586531396508;0.02767827214531712;0.023311434125901746;0.0231997210074961;0.016120961381438852;0.004753650761663647;0.0026437602281899402;0.02614475841497351;0.00853597163094247;0.04786705631105983;0.04650387005332304;0.03355338793041315;0.004528414131780144;0.026983558182200575;0.020838582125924737;0.1539459209202837;0.03954108788305457;0.009034722518268883;0.003298627258349718;0.068373967517074;0.01925376163358164;0.0;0.016175207576987986;0.01154439818811118;0.01973980947610691;0.050766425804037646;0.031345327990685706;0.020687007564087805;0.001692905358183026;0.03850991775977436;0.00016568097342459047;0.06665007197085586;0.16259884377557313;0.01247095482185444;0.008584286407038188;0.000158331245424821;0.0179102702905204;0.044711640985681166;0.0716847569377771;0.028881488447748613;0.18494093023658265;0.06740709451325301;0.0023705653185500985;0.021953255842754205;0.37373952662816223;0.002637963216752667;0.0004055312913464709;0.0;0.13483272701956553;0.004850632719386041;0.006613147784732098;0.02401993090603487;0.03330901110494705;0.08421687343363855;0.0009931122420467886;0.13267854380282382;0.21315987096304473;0.09224438681640951;0.12811599901375534;0.12813850549427513;0.9999999999999998;0.0004760586902766723;0.002762329713021464;0.0023119052426612274;0.016041867355508704;0.0164572179527143;0.01792472325005956;0.11690435099325877;0.007757592101699431;0.000152782179096975;0.15629508440558082;0.0;0.00017124610440224155;0.3870794174941397;0.6224329008747258;0.0013123039500506724;0.0015421832668422425;0.11907782671282334;0.03900998280446606;0.027946356815230382;0.05769702407574949;0.16438962900587092;0.006954403340118979;0.10560342349309924;0.02325820376361464;0.001173317961275104;0.009617909251727475;0.3186302242751752;0.006063862536013691;0.0029785917567158537;0.00281554105580566;0.1095394759377023;0.10603742394665522;0.11592543774502624;0.00958988610334122;0.049406865456626585;0.1452788004191405;0.043216946717865724;0.08324540094617222;0.011500390713966574;0.009818602371351962;0.003737083841823348;0.0010116675278952366;0.002364975381914073;0.006667755032451212;0.007094518700457433;0.00481982218185382;0.003049374807379268;0.04445350827033627;0.0027158109478192752;0.004543112436737495;0.013962244391315411;0.11707365821869005;0.3062895965602313;0.1117944738757525;0.0012909594926941146;0.029683297423267953;0.017798668966493913;0.02265170207206489;0.07246726284594347;0.025924932783810858;0.050696142304417276;0.04557731924603767;0.011279777832478995;0.01886148015357587;0.015967761681139076;0.0041262198863304825;0.06822561386840051;0.12270209381660122;0.05247586777183728;0.06025003737479446;0.08669582860984115;0.003702158095681691;0.03916283854481155;0.04840951211789132;0.01146085556890592;0.14334791115636;0.22272625462877338;0.09856335506761571;0.031532362657658256;0.06503535481025774;0.07071234682358106;0.06606545305179509;0.16092564725740888;0.16510341696367972
+Prometon;0.3193302862375246;0.29561361267660125;0.2974360806905994;0.2968875196846392;0.29959232005237063;0.31074592503996007;0.22555290649756166;0.30399624019205806;0.30368634378439835;0.3370732169577202;0.5409035847914417;0.30105251239431585;0.21487786964538666;0.3118818142211586;0.30002052876906204;0.30251429603259733;0.3048372134330251;0.30107412157238544;0.29397937784416306;0.30038742004874736;0.2971939435264983;0.2940919042276082;0.29304679206898576;0.30006630241331445;0.3028708210470356;0.033279357485164175;0.18455951983458319;0.4391340126182919;0.5968429857999689;0.16014002383741965;0.29970925943061133;0.0666268129809006;0.1350413530322534;0.25486148510042855;0.18378245377888308;0.42340465838762675;0.4682955248409586;0.5395079573647755;0.025719155142179678;0.16664956277464205;0.050098535045630936;0.18872559934500988;0.15755580805680808;0.0002238783914291288;0.031114398598066667;0.04063251762390248;0.04449868792903703;0.04137822799526026;0.04114852398031756;0.137746123302954;0.10234218810443114;0.04260372726212299;0.010058158469790218;0.0036680863910894404;0.09220219958336105;0.1942484040059217;0.09456315385364884;0.12813923193229765;0.08670696592333116;0.025421296066863976;0.06479363211137618;0.12233285708948355;0.15463678921084256;0.15100775234319266;0.09319587729175366;0.12120828202805624;0.12783320564545222;0.093247064810547;0.09177166157287285;0.0921138364568224;0.08674330350959465;0.05995380386196357;0.0273895254876846;0.02890162101255394;0.03894242350512885;0.02450928189910194;0.0322240424672679;0.0023603416227685027;0.030205238655677636;0.14472127324493617;0.36762878299781865;0.33871394067672156;0.05157438976612623;0.05030883049997777;0.12138145961583077;0.10686177034972567;0.1873406744444515;0.15470705082471958;0.02676840390000622;0.007379511695306646;0.09934760609419759;0.031859968716013785;0.015344228508196361;0.47560999872550974;0.4777007048739079;0.035997608933892374;0.025602717701253698;0.05142943720666933;0.06938924087350212;0.06111223843130943;0.13201883652277743;0.018004789009894013;0.015200536665229745;0.017045949231254826;0.027845103501458156;0.19838678736832144;0.17299596016208132;0.1820840909474923;0.1837028763558899;0.21901269351822725;0.20591694833291255;0.19581545464819847;0.22034118657275445;0.2170785400680485;0.21047948970961594;0.05765508645870092;0.05161525395893102;0.09049370484681109;0.1636845304075559;0.14707828051940353;0.012162071351602704;0.06472664130063402;0.16106239928112934;0.042425477771813526;0.03167401395649769;0.005865989301874743;0.00195664916776698;0.0004766776352999854;0.01054666069404673;0.0005962871477260321;0.011582622578231346;0.1533409292287222;0.11052395855629217;0.3958374855166885;0.31148842930664433;0.01676798207098314;0.6193428690353804;0.11771337335629971;0.42199440457118037;0.3905391045584201;0.15470682861507645;0.3821849589349315;0.438532804054501;0.09740768979433563;0.45186775774120896;0.048773800100996516;0.01615115403194929;0.019560817357408746;0.5702767311278941;0.3410615461051785;0.39694328521351746;0.54385381673723;0.14220381266257412;0.099777771589187;0.27534044362726345;0.6094693274311995;0.6126105660525888;0.6804619953628944;0.6421859978025991;0.04232915643201194;0.5973006105209431;0.13519211143556936;0.02098337768940384;0.026542508406405152;0.019550067556196694;0.007709165455028282;0.014197329023793203;0.007603571175226231;0.011916507778186633;0.09334274346876666;0.04138002937598392;0.04500002137604705;0.02115207740325133;0.002673954014667787;0.0037887299171437865;0.5507635560842639;0.16610800565459238;0.03190630913239781;0.14236163601558005;0.2943718345246836;0.2806735131220461;0.06291168768962442;0.14975274300881836;0.3687488513235316;0.16273197832342984;0.040644384591748864;0.03077309960271661;0.017153326762541332;0.2761126664377442;0.39214019070404454;0.38719127604166237;0.2517417325529128;0.21703543605787737;0.5555160438735013;0.2383509517906048;0.27307803388064156;0.26843182805027344;0.583224740286074;0.5558640157462379;0.5987809250752236;0.5550905623984006;0.6034318158409269;0.5902993046066054;0.49473240509653194;0.1703812515123796;0.5415046593872385;0.6023662383150098;0.11481749393800993;0.03068226565556661;0.024097027788690405;0.025875771974528932;0.19308006536602676;0.6841361234176686;0.17998950609498002;0.05735743138448281;0.123203600091066;0.18871833547311562;0.03745921203463107;0.0002912999120199436;0.5574469220084235;0.6137679973176655;0.02019962484881972;0.016769903413913708;0.27401496628008465;0.22850920464804078;0.1495872030398998;0.1978419683599346;0.13200431977348717;0.1686884221615138;0.06756172886851058;0.06775788058774465;0.060541970050586855;0.10869300374059396;0.13232277088567057;0.036436484934850834;0.08182386792446218;0.11634900416884127;0.1946459920490547;0.1315858050954394;0.08331525868087354;0.07448549190395481;0.49206766922469997;0.5123415644827638;0.07333997403683402;0.09215079085184585;0.5557683833203698;0.02757459667103861;0.03074190964005572;0.07197521270335082;0.027527984551321792;0.10021738302463014;0.10143094615415486;0.03097646077184469;0.2534632720957582;0.28825900516457603;0.14971357831314291;0.10461629293383469;0.21659346254281717;0.5724357660092052;0.5905319549349892;0.0026305716704817152;0.2648757693157922;0.12696455381105318;0.0030987146938865266;0.08173242458308455;0.05308645950693414;0.2032908989188149;0.1424494890436421;0.24480052628154475;0.14229606333697067;0.021312878190056422;0.336639148960563;0.38375828601779843;0.5687180583173792;0.1150671536746924;0.623117072429093;0.11998615996803845;0.016380061393266424;0.006255344860763602;0.018040022567280378;0.041051496136093435;0.022512020441355883;0.002644367298357942;0.8173987522939917;0.18403085415267242;0.004562111950488052;0.012719689823645323;0.18968277371284295;0.01953885332473478;0.014558229971029835;0.047444137283436986;0.0579873773932068;0.1361004114428315;0.04817657748743042;0.0024468376891647044;0.1343194470885493;0.20721707888864616;0.03730496471057532;0.0452188362113506;0.04717612933434979;0.0019049802929594461;0.0004760586902766723;0.9999999999999988;0.047751691907292;0.15134297220019027;0.06502382546005059;0.0470897516488256;0.1508500982514911;0.005146729410111967;0.17068845081256037;0.24813049211706137;0.00395921853577474;0.050256263958907234;0.051237878548637185;0.06684771907500757;0.5689384996075381;0.30438955401494944;0.545388901038577;0.05954604729744204;0.021552638009750096;0.04342808867520588;0.11623406692210707;0.1114807715726949;0.11996479032536568;0.08489011110742452;0.13229200105905545;0.5007312648396314;0.03249042852108325;0.012272194407957534;0.5463352743006527;0.09656363343577606;0.9248402269828299;0.05175344433439555;0.038433164987037104;0.01924440883471424;0.0809676879910966;0.05594529837686649;0.011640411907700135;0.2074869846928909;0.26978243093702686;0.4141675406007692;0.13452844170131403;0.4696475685955761;0.10592337788049733;0.1536470017605341;0.008800921533777126;0.009621037996555205;0.07768869625659816;0.2315416249827363;0.02395278064427215;0.002920793964214842;0.006206905973713988;0.3002940924666814;0.07761697272067532;0.2744186162479558;0.07518795754515006;0.0018697972835255087;0.06268174306647738;0.015015966518351102;0.025791157500622826;0.0977306275846465;0.1181081127788594;0.006998906450201318;0.07523419511128104;0.05909149613469592;0.14538975983508887;0.009373554372881423;0.42915737354408817;0.44699556634942544;0.11020043978913928;0.06959010359426326;0.11828180411102515;0.1122147827923238;0.3519443993971312;0.00751611106865153;0.012483029139309678;0.06616460716436594;0.1014364385801376;0.1292883499787701;0.13539312323877986;0.5500239525529853;0.040574638404832185;0.4181342224046304;0.34810783826271335;0.3508245223761747;0.22650136131747978
+Pyracarbolid;0.0621866436063544;0.1458832881799654;0.06255626112920284;0.06121686719703023;0.06177191068189914;0.06316456645124194;0.03347875865676148;0.06504984594533186;0.0648308688606749;0.0611195125739305;0.02393791735922133;0.06149106848758952;0.036919638709098535;0.059952239134837444;0.06014494773225469;0.057412549417025185;0.06516661854176194;0.1127643992742323;0.14002116719415883;0.1149740558202969;0.07737454300933101;0.0897093118410145;0.07625516820525048;0.09102363507492829;0.07164076801772871;0.004577296582600296;0.03772007053465095;0.049146669783169374;0.06767425781282185;0.06245555538954039;0.01988661051937644;0.0450618239528472;0.10002462374396393;0.045378608066035366;0.05006490231671407;0.06703258476425847;0.038821614893680814;0.011402842150200498;0.002197778195424083;0.035332643255933764;0.01440192734630059;0.046148120981911435;0.004537007537105185;0.0;0.0024423785367508055;0.0030644066388575177;0.004129955815450637;0.0035430217849838543;0.0035082999836732985;0.028520512241270377;0.023436133552820714;0.015839217668353136;0.004864915273444811;0.0022567088556047746;0.042480803267736664;0.04850791525021492;0.019954194937048263;0.02646999145026487;0.019244613045727985;0.0028668599658547805;0.0173393058223514;0.025013394381364962;0.032248467733641;0.030645551730921726;0.019481545767490813;0.024981841701550878;0.025997866787659803;0.021374721261952095;0.021830424308345236;0.02141506489213672;0.01963173362981976;0.015624172353078346;0.029371426608717357;0.03778188699661498;0.02010546481240196;0.008467200313165408;0.009454804070307864;0.02503092008515668;0.0001383788037077827;0.19722314267676702;0.011034070795306185;0.010033418304531626;0.015566437854108588;0.01388380438148885;0.025861815660018245;0.023543091615892523;0.6763178473594528;0.7584460139207988;0.008427527419909495;0.00792774350903306;0.0010575499489512662;0.01544087479725287;0.040150306352597004;0.004511069317024869;0.0038288200247425406;0.049885775214120166;0.04400345194393477;0.02778514099252514;0.02118460740884786;0.008988478601718567;0.02249633601023352;0.012632000702338816;0.023003611891484012;0.004259142566560445;0.02473238562116355;0.04565231844655663;0.03798711056053471;0.04093331574827007;0.03786215919544091;0.04651377015445414;0.042655986403141916;0.038990836453932205;0.0472905732726148;0.06512378678269366;0.057291582745189785;0.004297717678292548;0.0023252476991070287;0.004419381630206025;0.03367572328184185;0.012711487018524632;0.004509389548554263;0.004335827142295331;0.03369885024119358;0.03492668543966333;0.030391858925432315;0.006830950670623122;0.007936744078111011;0.0294922916142002;0.029390005558290702;0.031646210219148894;0.07133188581686968;0.04199705781556385;0.013681701379169667;0.04772311503784097;0.12678492570239533;0.542701193983324;0.004504569169321851;0.0023254632564139047;0.05631505799128754;0.06391621697361557;0.04634182095994122;0.0831748247445049;0.01783882114392625;0.09867528420210334;0.03916604698023152;0.016998718093960547;0.011535946949710777;0.0023302107028271304;0.013395462639215285;0.21952070733348364;0.02858465948210821;0.04650310604017727;0.052927964860082125;0.005282254667185838;0.042485615278456124;0.05579005677532445;0.04867767992582214;0.033482158681556906;0.009724566297353058;0.0005958816091236459;0.027389370706805343;0.024662887722528098;0.01057956793408949;0.01845920936195643;0.03427942812849245;0.0031643136929398277;0.02628930412948838;0.011548369312254617;0.020214350629595184;0.2544632281986755;0.021696507475748025;0.011859602972682824;0.0;0.0018972518644179593;0.0017161836284142783;0.01162139553208766;0.06224145009662555;0.0027309751715876977;0.0558986871013884;0.054575029199040705;0.06214174516330087;0.001628942256268941;0.02579367011947541;0.06353539318425183;0.6588631451555125;0.26126766297522774;0.6401409956601742;0.0;0.053239407207686947;0.04814648439670579;0.072495690710428;0.0488338856076539;0.07547643174433265;0.04854957984983356;0.03897227152486878;0.04174050410351443;0.04071560572588221;0.044398515886355544;0.08906273680056354;0.02557664444111123;0.05523405281057751;0.02790204298309923;0.04032855269400352;0.0870150607836353;0.6830171185613306;0.06707159888721524;0.05408589752993328;0.03823186659729056;0.17065048472868213;0.011737210018866373;0.09617748367989874;0.045467776205121845;0.07239842678492074;0.6099580318832645;0.01644755551289943;0.13032643740731284;0.5660705888484836;0.05125937899868758;0.014719808598284376;0.19090245380818374;0.050900316715644975;0.024678495390724288;0.004928361379912292;0.06566723571623115;0.0609196162756729;0.048367577862533144;0.05410626430478603;0.02741461484907284;0.03534853197687759;0.018623445868567765;0.018895040584714924;0.017576361161900287;0.02314581850672035;0.028401993435560647;0.01076500209639345;0.019665366001177007;0.014308382540031495;0.01786865448384332;0.02034837610075607;0.02058348899434728;0.025643036292897516;0.015151051893684816;0.01826038560397339;0.0058787858960481585;0.0031087772964183877;0.0008811709065930547;0.014096680598029362;0.12771307833385895;0.03908000938564628;0.6134246235732379;0.02583971392721241;0.02576938684008331;0.17357673174839436;0.3154168541798495;0.008438271136458397;0.2090048724122996;0.05610546249102621;0.032283906174149744;0.020895959925153137;0.01662931106415977;0.0007541193039057784;0.014749792826400413;0.0;0.0007181567767350319;0.3339895877256306;0.0034892669988906967;0.35012212398834525;0.024561162036420267;0.2157588701608019;0.02164405545411608;0.004255717620143059;0.04176707199737896;0.018504821123499823;0.0061914158399015715;0.01361817585330402;0.16104675701614563;0.02038158663738186;0.008114576082580986;0.0538882518744709;0.02949027562284314;0.001079472849079684;0.0276734492633868;0.0010122020899128524;0.05286969058225016;0.003426618480960297;0.010745197727090308;0.0035438828485388125;0.029041058124944123;0.002234764113732381;0.00221640419595795;0.008727888063337064;0.1155948922213181;0.03100094827595392;0.002645383444043766;0.0049677177658513745;0.013525194374943726;0.01135840567411977;0.016987695281471194;0.20397208705816797;0.006410113360694563;0.042565294839056404;0.002762329713021464;0.047751691907292;1.0;0.01662283486465722;0.07305940357340554;0.010227429801989311;0.04122925353107518;0.030291286189688824;0.02822556688413619;0.01209074688706497;0.0;0.006979372313808842;0.0066921783678169245;0.014914677155267961;0.01975376388897969;0.06567675669372948;0.03043092015228929;0.019819022666639173;0.026992684994962258;0.03130808811981675;0.024624239393207292;0.06326291958776413;0.896367276388801;0.018407720051196928;0.004028054974176153;0.03826887832464644;0.011677385016235477;0.00865580258090907;0.02573065721523467;0.00196011430057872;0.04748893833103707;0.0262711038926456;0.02805772392771959;0.016742956355072634;0.01679332060426878;0.011281061290468837;0.003512625364670824;0.043615672464944785;0.05433761639533217;0.06480903194009574;0.02945804174884039;0.010850564931188595;0.0;0.006843862899479366;0.0;0.0008854479992638943;0.21071700362151874;0.2232088563476687;0.03725600462775782;0.004917520321722116;0.013260103321346046;0.01575717057280749;0.11809519176696863;0.012731595409568459;0.042279736803435504;0.0008503493913277723;0.006095951962575535;0.0053116332807400905;0.07518758546322764;0.058834871264105706;0.5490517435561825;0.07523696931707968;0.019943269966845624;0.0;0.5848632899308668;0.022093275441252083;0.0014443664402724319;0.0036824695111549095;0.790391208861039;0.06412848034778569;0.13227428535652955;0.7344758310729241;0.08122524037147372;0.001975934741178134;0.0010229655359330601;0.019537612020448517;0.005164714270299338;0.022194544359571213;0.020509605367507282;0.00817808102692561;0.038130880556692635;0.07062553230072573;0.06064603406214062;0.08580262917530099;0.08545503348016772
+Pyrimethanil;0.30173233255419407;0.3028824685354459;0.24587858243624078;0.35659981058573437;0.34146268001167734;0.3782993647733961;0.8783310872815301;0.3648235171387153;0.3843149166011264;0.3374580285709883;0.10468492723227307;0.32447035539063673;0.9120557383270828;0.3515113515563099;0.3240326238635627;0.41070716844120414;0.24721175655932218;0.28755065991724676;0.31107572219663665;0.2987769091749331;0.3022732480784003;0.3185460764316599;0.29109536963277444;0.27011732309837855;0.24245411338187545;0.02610710874081195;0.5035885042628248;0.0954085658788194;0.07770974158908472;0.06935111397200902;0.06701598781832915;0.05200445286124103;0.11530705603580409;0.742063006356993;0.14746518523888427;0.32916921710237995;0.1454666238033546;0.05159304214455831;0.0040626412301922234;0.13439378133783353;0.039041942544771065;0.1495138599967092;0.0582834070049398;0.0;0.0006317870879254307;0.0014230058945137764;0.0014844303447867596;0.0012120041083856306;0.0016313170139343998;0.11874846682896793;0.08320182938752856;0.031740014477609234;0.05441358367166954;0.03493876074550169;0.06954979700389724;0.15477334329893394;0.07657146761996603;0.10595807988173044;0.06977904684471734;0.005121746274021184;0.05164019529192127;0.0937907240286328;0.12376332315503617;0.1210973093526509;0.07536972228591352;0.1006673921006857;0.10500749348709383;0.0750445316669927;0.07452046062405283;0.07434817506224979;0.07006776077598303;0.048985252507454;0.004547852826765479;0.009784231367252967;0.002953231761246854;0.0026447580275667797;0.0037605574980456627;0.0018638017807974313;0.0016331567263819238;0.016534075485759313;0.02912019426682589;0.032108790563475355;0.010645590712543432;0.009331078348562276;0.10601081518971829;0.09281442713184586;0.024480434745243404;0.025874116326932626;0.0076307691896528845;0.0013115274660523402;0.054470433334209485;0.0322018964768787;0.026702802707315867;0.040857611031076976;0.04031686178177246;0.010901918064704703;0.0062202274194831705;0.004539319156829084;0.008885482740632823;0.028171208347581633;0.03156803890065394;0.12868906571815436;0.14297366466721684;0.01223037003203226;0.13595803963278189;0.20555781355446193;0.2252057682995845;0.2248086624283595;0.2254420206177259;0.2429543419927052;0.21882427353495368;0.19231070550196783;0.25390252283980547;0.25141189318840645;0.2320151146787301;0.5210430700543739;0.450472132219694;0.40275668519785934;0.17529418751885906;0.17428473254699187;0.010670730259033374;0.5978937440229395;0.16679687492253367;0.0047226248288198755;0.0004990427753471903;0.004791701351518254;0.004012779642504986;0.0011621690917041135;0.0011684473617901917;0.0013256251679536863;0.01843968612025101;0.007891270762991306;0.919071067630276;0.018162546633622958;0.27194304542833464;0.006136073477304551;0.023365293438549452;0.009478452704206403;0.20361425182608345;0.25009103102625735;0.388359409213096;0.18942288670565374;0.12080328893324474;0.3056136315838728;0.6895662665748041;0.030159435668355588;0.016773623035861673;0.022130773093119515;0.022953322836912527;0.0319252838234207;0.1199936120394607;0.028897026339668317;0.009531060625304;0.0020070165450611255;0.36443144991059767;0.1043572050621578;0.10610579909861138;0.0464722506337481;0.05441565603937768;0.15640280906497367;0.09241272153029717;0.003972096096382885;0.0007792390867220497;0.004503387277711927;0.00415482383808842;0.052632612218266706;0.0009443376492156343;0.0028538945036370765;0.005038045552636999;0.001655798867247909;0.0019320078354310773;0.3383323045678594;0.0017874219888449152;0.029688760025236387;0.029125760205886145;0.047808463314664304;0.021019500590647736;0.01102832982484275;0.12249967208909988;0.7419565483279628;0.7726788895556077;0.0004023251367509052;0.10153505624967499;0.3297052685773881;0.06969942205713986;0.00016591747472633603;0.006587590213015989;0.0;0.8815135371333541;0.36062310074140336;0.2523622538177149;0.20349369929856062;0.10608461606781852;0.1814718688341652;0.17446520811098096;0.8421528872287638;0.8482965319992424;0.4118014688253001;0.2417834958731583;0.17599066107183728;0.45498914184805056;0.22656598167364614;0.3485423074841193;0.28633466554226567;0.270463937913695;0.27809577687438053;0.19763275955004986;0.072422876664539;0.05907667425238815;0.011056528528888275;0.004397009835264558;0.1248631056273837;0.13402498240992947;0.05694982410632585;0.0005618082143475466;0.09558366903740458;0.12647020573799814;0.010938544494164325;0.0007102101028888233;0.0;0.038669155915927705;0.024140346666114344;0.11473842169502911;0.2071370055801942;0.17489422356701065;0.11294918963345231;0.15603309801788323;0.09774987998595588;0.131526173570823;0.05118395952341668;0.05392767554909524;0.047353562732936526;0.08666841999186545;0.10768211247484355;0.02821296029767954;0.06327648486931356;0.05316658574393067;0.06319358753234237;0.07160388050260058;0.06492026359405031;0.05234554372829842;0.017060113636834153;0.010692854188033948;0.006805281322128992;0.09366302983079974;0.0;0.0;0.003226747493109657;0.020113230408486806;0.0008512678521751999;0.04437266010061892;0.04484931437887582;0.00023295748823313767;0.21268911726794987;0.021019605475454017;0.22586023665616278;0.0054664343973471466;0.2906363851180896;0.0019080393635133894;0.06122325700891523;0.0029685797842323777;0.06384692055563213;0.0;0.0005690269441620344;0.027134871910291312;0.0035213681185087163;0.08018295845664686;0.10360942381175443;0.10542705164437183;0.0373306874210981;0.003959509544634818;0.005575134357097907;0.13175333583603624;0.0019584973440171117;0.03734995798895266;0.12984102736169556;0.15455558542627143;0.002660288810711283;0.001047367260245303;0.002043152377749485;0.002229574818570152;0.008158602968190255;0.0029337554506853546;0.24529448719030855;0.010900378140150779;0.006327453108492252;0.22791159848038445;0.09125608861008612;0.0014827952651486984;0.00873482518346944;0.012460637697830857;0.03352532434353889;0.028438152109245995;0.019126663841300354;0.038647141207806095;0.9906116417319353;0.05169189362784704;0.012443171560682035;0.0100106285070241;0.011390630281120941;0.002306046940464302;0.0023119052426612274;0.15134297220019027;0.01662283486465722;0.9999999999999997;0.08614737959823174;0.03354103499875006;0.005069340981758537;0.03166245688709552;0.0021709946825298762;0.03240283795581711;0.001136510062013123;0.027974509026065297;0.026851045385148157;0.034276286923807124;0.08928754360972682;0.23240206382126838;0.02440173593368169;0.03814396995768808;0.005168194768649206;0.00942968642963043;0.05264793671972225;0.009541380750553474;0.09874967906681835;0.04845845462172241;0.014711918317059203;0.000866329282082956;0.0041489837905513685;0.004103277086515117;0.16444477817884465;0.9729113592261598;0.19104079579718655;0.020141066138362626;0.01821814688078891;0.011588571709891679;0.05793928052860203;0.022905638971871596;0.00829486193850562;0.1788633517345256;0.20774585661101508;0.3580553756922648;0.09683350983308567;0.067089404761634;0.0;0.0005141665748245236;0.00025402836332818584;0.0002068450168394905;0.002784088377809479;0.0005113447536735888;0.0002257210936236068;0.005058815387382179;0.00010085469885566828;0.009865254232207216;0.010121799093880135;0.0421087856843067;0.019231717244814924;0.0;0.08489994607218879;0.009446424962689878;0.004596453502492964;0.04570949473790996;0.0032940718547769484;0.008590718300788003;0.0006253887462978926;0.0004850504757766479;0.0046068603815980205;0.00037034676159859904;0.0011416178917428626;0.0034066069335996116;0.007737460101241615;0.01357705482138167;0.008073950112071559;0.0065589972359699055;0.38059309908781297;0.003324343091871272;0.004396233270789047;0.004082933331193818;0.032602522376425136;0.13779831464449055;0.07586556017963483;0.07009668039396429;0.0014991664271481102;0.21462521769127166;0.20227281104194386;0.069947672104223;0.054746540083621745
+Pyriproxyfen;0.021175754338820997;0.0181756991803418;0.01948413982845908;0.04572944648958725;0.04367535388250486;0.026549078181743176;0.07135554988084311;0.023611045998247548;0.02533100011765348;0.023715331503729193;0.014674954362138011;0.02042089010219857;0.07498630704784544;0.08105015740438862;0.03767438110127655;0.04288402361028681;0.015501156135580486;0.01670695128598872;0.018928630969969017;0.01781552940692992;0.05983560931957288;0.07827473290264261;0.07432711074502393;0.01864143244333484;0.03876883610317559;0.006799993317768765;0.05628350261889076;0.09137401132026939;0.056734264176065426;0.045834030534151936;0.13688996315813132;0.007957287894340869;0.03250055973950699;0.062058953003433955;0.029994138979264343;0.032781882193120886;0.06207751507848581;0.006407862649823751;0.005839511447166382;0.01743144271811066;0.006936680229287564;0.02670234633467166;0.013173575365915477;0.0019366443858623006;0.07144407315761715;0.03254122337790088;0.033095132014832676;0.03223556044520298;0.032646061944716545;0.012231184989630517;0.006400047028589988;0.015778216140892427;0.02960605611725326;0.03763997669926641;0.025932338162743207;0.02458014169049828;0.01652400144990149;0.014190656130492377;0.010658901034078561;0.005958291886497194;0.009842427898578802;0.016912655250139765;0.01622712256166788;0.016494223745416786;0.017262680070994407;0.014822488293128317;0.01392214855830348;0.009872893636096645;0.010989502872973662;0.009674530688624587;0.008841874190644253;0.008218177179672145;0.010550652837502606;0.012978324617526705;0.03516606678622972;0.032682581475003754;0.005772775717783199;0.023529034269240325;0.0014161806554399863;0.009162188474950277;0.012454956024755486;0.009397886600673092;0.00980577995781718;0.007463567648565777;0.023461524716536786;0.02273638433814856;0.013075512665629901;0.014571484835337328;0.015075341164437362;0.006430986602294247;0.012555473588301254;0.01091309357563408;0.016716663268148257;0.00992466230971933;0.011492691868051047;0.12899566452193795;0.13532249445872455;0.016439169152048416;0.01822590991565651;0.017110317209197614;0.03619069187059594;0.015173883708097342;0.02330350715051857;0.02697707024557679;0.024815734379898837;0.04477356956928197;0.04353108576322916;0.04443039987380482;0.013985542327990699;0.014364568735622554;0.012731951232628306;0.012923666215150263;0.01591706466931606;0.03549583155405484;0.03636354281854846;0.04740684288023635;0.03790779694566477;0.05007390792990094;0.011507958955696744;0.03673715812688659;0.0041829761905073665;0.050785714943089484;0.009493706748973907;0.007657143690688874;0.005777893330123138;0.011063999617096816;0.01123566999843718;0.0147050745997754;0.014430646484404714;0.013064317174652744;0.026551105387959795;0.061132457677742384;0.0968334291459773;0.05418802343389819;0.015496426014632804;0.1955957359844612;0.014296267332275929;0.04896464849443543;0.0506425990301467;0.0394049773042975;0.06109286923072023;0.047510953157934604;0.06458772488640098;0.043927899189372156;0.07975040052735483;0.014042594720808196;0.05396060768877995;0.012238261401783822;0.026470593507764886;0.08776581308253573;0.013780646922883853;0.04339898835192008;0.0775326734796467;0.04762413120825239;0.0669298418203618;0.06559547083527072;0.042929568525940806;0.050669472316999545;0.01231510363000368;0.03049500797810084;0.05231066893799271;0.024145810539843094;0.02770226207552225;0.013598415022002716;0.009466483539228096;0.05197790093606408;0.04135735788469581;0.003872395468607542;0.011424346584141983;0.0528950418147918;0.05836019989281605;0.032439612952595356;0.021694024173421114;0.02896967527129478;0.03632637025281252;0.005081063720406782;0.008005999797765041;0.00861294288854804;0.28998359131865714;0.09796983972049329;0.10224410460955771;0.039742604744176395;0.026444705998853853;0.02820201756585939;0.010508203385085697;0.007997902931948622;0.019670387024176315;0.0;0.08105502841998471;0.0267873414801696;0.03007579132195039;0.015564952804381417;0.04620894852371017;0.015373970449335536;0.019752506844628242;0.07693728525741968;0.07807820787121485;0.04834254962190962;0.04505047561898835;0.03479003023349385;0.05092126871376891;0.038374703810672504;0.04555600336091419;0.02755415698903465;0.13434007983638502;0.01734760269518796;0.04698513099918012;0.07050258979690513;0.12663979330551198;0.021100856549209176;0.02119775531683177;0.048377285034806136;0.05039452983939592;0.01073949187456386;0.017791211391688645;0.0238663604872292;0.08402274997754085;0.06505855973621921;0.0014947834742779563;0.015008970827393903;0.22489529007633746;0.004221083260735248;0.01686036968000755;0.016001049987547276;0.02072343005146068;0.036558462037079215;0.029965290376888228;0.016924690834726176;0.014318446293407908;0.009452978332173408;0.00995214575602942;0.009876174331157823;0.016481901123597396;0.014122763781599542;0.007211870531920359;0.009918047474108042;0.02109818395408105;0.02294949720708464;0.024920328943303663;0.011300404740051197;0.021841429995076843;0.04029527051845712;0.32024803667257296;0.7428503932944845;0.6070338904315863;0.013535727387997694;0.003794137371571158;0.0042136533182796955;0.03669406165473304;0.010357496476674553;0.015348668327673766;0.015404339206387679;0.00022528636098232313;0.012001916746575058;0.03744951564182723;0.07933993551966846;0.06219653842202711;0.7767244081778117;0.0036706084585127587;0.007414347416538589;0.005716929360627075;0.05842632155750022;0.001127882948534342;0.0026703916961277304;0.009984777895055112;0.2795549185705051;0.016577026511613628;0.014952061336385112;0.016312536561557723;0.013035119254992634;0.011522997232633503;0.0023970897619693026;0.05013273456143117;0.03689159854337168;0.012204571199283535;0.09394531014705397;0.023496691737797483;0.004689887553469005;0.002644544426988019;0.08875847363669113;0.02657569803357436;0.051437638563564855;0.005660516867854816;0.04595436621862261;0.018635032862604047;0.11306617723088455;0.007057030448141317;0.007717512365807649;0.0;0.004321467382151148;0.030748891048461662;0.018520124492598718;0.04355250510407927;0.026676550342790692;0.00854466479296583;0.08442001180532765;0.041169002791202995;0.05269628314497252;0.04739283633077908;0.01790940513597636;0.03967697936423693;0.016041867355508704;0.06502382546005059;0.07305940357340554;0.08614737959823174;0.9999999999999996;0.030293236969304055;0.022272424605499493;0.010613301740021903;0.006443119772847674;0.02311251683491723;0.03650242100852405;0.0012381267572415702;0.0011760113714982302;0.08282977323226406;0.01657217230431769;0.017550089407386074;0.03781736803571415;0.03468623172189938;0.05468678498944733;0.161783506615556;0.04607783750665798;0.04199648190103428;0.06814555207193809;0.044490046093274886;0.016632827810626683;0.0028126515211807502;0.37080261145805926;0.30292575590407606;0.03475269693361456;0.006860370951766493;0.06515830255384847;0.0931877906070581;0.09527826017455114;0.03302810260577466;0.029743390551569247;0.03186132120302437;0.003987716640291294;0.014107916414120444;0.045922247691161655;0.05718564417624506;0.018234112037114746;0.12189969537293233;0.04617015644969769;0.0035821436809178623;0.0017281139720888895;0.0;0.0320592092487064;0.0036442864592138974;0.017945306218190828;0.0032658826344546706;0.000565124321313798;0.08622237829512516;0.01945653752454594;0.02216252818071077;0.009560692139183317;0.001764498814955778;0.06506616453347266;0.008371767001413032;0.018413573468249577;0.0193729807775363;0.012603427150979483;0.025126831620234474;0.02934892557903275;0.09025920788953752;0.03507633693614126;0.08279068528256185;0.016013052483364057;0.018848704007697618;0.01671317219898229;0.019886285765532998;0.02196059726641955;0.02426000305552399;0.03685452158155393;0.030267811456009888;0.03113683616276687;0.009969407140315406;0.059545481757632725;0.07942962868294015;0.049283250597007756;0.006595354109862636;0.08435593379765455;0.06174313937118542;0.05672246026902474;0.08375472338703117;0.07158142375321293
+Quinoxyfen;0.13359798749173338;0.13038121443207343;0.13132484733787536;0.12876752259895188;0.1298566771881696;0.13024475100289892;0.06791562089036518;0.13081302115825413;0.13034569135949267;0.13187596418909794;0.05477457682458942;0.15206222686664214;0.07704208699363153;0.13236540033371438;0.12966736654952413;0.12401602349149993;0.13568884650857152;0.13387857883958892;0.12950407432208783;0.13261533478743384;0.17328005327325544;0.18494701435882055;0.15318036724327883;0.1409807858077959;0.13543689689347177;0.005603238838200661;0.06901935697094076;0.06382767892513876;0.04100194414591467;0.19656116765179354;0.06280647642650451;0.08739870726654302;0.08027221205872556;0.09804334355174736;0.5670331712422251;0.15485815402953976;0.06547790809096686;0.027304458907681423;0.005596078147051769;0.1624562900254333;0.3557200454972438;0.5882360583246877;0.20158278781661548;0.0017390012584826997;0.007518178457288577;0.006460497001815883;0.007933473534612183;0.007406663256303875;0.007174684401019843;0.21714207723648304;0.2616769489377313;0.7594197799680168;0.4158616786998421;0.41576376546704125;0.16144649059625024;0.5209279889275525;0.5723942124855053;0.4052367308128432;0.4535996103242014;0.009376580919848058;0.39942577613607466;0.7009281433816539;0.5251990776664656;0.5635780323912387;0.6103194261220507;0.43574011696448295;0.3934316498025699;0.39714224950297156;0.418130467664282;0.38880336089606304;0.383117761550743;0.3119659620569615;0.015866108312526578;0.011614767417256488;0.004120197786938322;0.004940890863152254;0.004951088567450764;0.0034682880692224072;0.0377525710637103;0.030328385130459004;0.01194045560836301;0.011480702707570924;0.012152214089248764;0.012282465989696803;0.014923830172278633;0.009556925895844635;0.01395843608005338;0.014880180602341236;0.025265621155573702;0.1218429554510745;0.03163372937352656;0.006273857131526213;0.031023697318360705;0.005676224229259317;0.007226987287940628;0.01454628408904562;0.013486259165955718;0.03193931657363884;0.026762806733228034;0.0348005923931186;0.03761886277108479;0.030639889904608003;0.027118623017695097;0.01861913190571454;0.02323952604273955;0.18848415884805114;0.13938308250107515;0.1481880279831702;0.15367659911728332;0.17443996933779024;0.16846905795932832;0.16488688244466151;0.14791299383088355;0.14811406499201468;0.18455621359356522;0.0396289230778017;0.02554926583530767;0.025261126237523756;0.10933842050437095;0.28064051508845145;0.012886321783781995;0.02595959732870104;0.10889298540318597;0.008869170671191655;0.013489133090208117;0.023241991714358957;0.026509587652330826;0.0014932324907095086;0.0023019640554675733;0.0016705414384399066;0.08525313390154976;0.005639931483691928;0.022280871736285467;0.042441177982963686;0.13512170292911063;0.012245097837274828;0.029989784561767856;0.025816914079337977;0.14569676979478827;0.15208295303644545;0.06594785100320322;0.10725409294644413;0.01592117161083085;0.0350141091233535;0.12200363981463469;0.006681739403731796;0.008308587457953;0.004682048659752276;0.014405867591643013;0.021789046302973316;0.06304109834329673;0.004838558168081313;0.016852575249422488;0.005904419848591714;0.11013121684949763;0.07183295581315247;0.05074934905690494;0.017064997550988132;0.020508448275432474;0.0036202936732019015;0.024526065967390594;0.009502235035215599;0.00828108495634217;0.06309285288954929;0.2204508752089711;0.05319543530653934;0.06849059198423996;0.2663511730437877;0.26877584523320175;0.05167046026541668;0.22945061946779796;0.11053589510421002;0.0189779295638477;0.4520718290706554;0.44649632988154225;0.01808816379680201;0.021873416539723953;0.044354643373296525;0.05571088780311101;0.10561066677600613;0.1061217592909112;0.001992669076938431;0.050571631477473504;0.1364669086380813;0.010567686412666416;0.04911500282408934;0.03026532017902783;0.02353199597112553;0.07841808528159018;0.09028195386000694;0.1172850614903048;0.10269934263112346;0.07888558376475341;0.09943383594908681;0.12458778276487972;0.08716058971320705;0.08459063210066278;0.08943259846177065;0.10216940336495829;0.059064928072277235;0.10082712614421509;0.055952149137106284;0.07966743467471658;0.14279923261953412;0.03748969259622927;0.136036665771984;0.13237154953158953;0.03180865333793523;0.003439935308365853;0.10567921300827245;0.036420166883281806;0.14050723811150703;0.05913460587353559;0.06457424979325584;0.022833150399139746;0.06823109337707713;0.08623864037223086;0.034553361373754164;0.01511415167318916;0.011142910009118708;0.02632251878390502;0.013561696019454079;0.009596681431064714;0.25282329064979747;0.6073182322109513;0.7702719617928238;0.4810144310342065;0.6768193063060786;0.4020573681702134;0.39067826618765583;0.3759416972850269;0.39570152167376843;0.5407574538391879;0.38110965690314247;0.24520592083762513;0.473360033134856;0.11558347841921882;0.14156870111121198;0.1297137137799998;0.45747200445838127;0.050938921348715305;0.01948440778393583;0.012090153824132581;0.023914786793190465;0.04736846043143769;0.00015083584469141232;0.005658537473289529;0.02371292058445515;0.010524595636708196;0.020690168255323178;0.043475140060388245;0.04446024448445267;0.019446962144237412;0.12391328559816114;0.05925458440027443;0.0034072368893539435;0.026930183414919862;0.08657905530821741;0.0046407810400703724;0.02554303926917857;0.021907924293252078;0.031032863803230032;0.00020014490336845396;0.003853315595305679;0.027928464522129024;0.0476536245634987;0.10241581021049687;0.08692501489671522;0.08111143215261475;0.024032115732140796;0.005777442305498375;0.004969296825525388;0.044520417805796374;0.005042865980816663;0.014360581728334567;0.06585541483518582;0.012217209881608907;0.009166670711632189;0.0006452542889043088;0.015352542846491173;0.004589795010965846;0.022263966787300162;0.021544185100663478;0.10244973760449218;0.01268667248114524;0.0035859880278447625;0.06068284878290364;0.1263523568839428;0.002877558257752587;0.042969634561153124;0.16891512576824466;0.15113136950379397;0.013746566555940854;0.005504496330102193;0.006725685608193025;0.030069346715929948;0.06070851144883051;0.028711248016449357;0.035040768100157584;0.06053225705246627;0.014468601514043129;0.0164572179527143;0.0470897516488256;0.010227429801989311;0.03354103499875006;0.030293236969304055;0.9999999999999992;0.06744397224188105;0.011517189508493904;0.005921655483358268;0.01067374659555749;0.0675953918650427;0.0009725987892929113;0.0011912913146580422;0.037864602985700546;0.07702959077656016;0.12304616966270199;0.012508303441079976;0.02528712920233036;0.01496345219886939;0.029285345130197066;0.10000719602066258;0.024298279643855704;0.07026809199422607;0.08550166889790509;0.42174431305579807;0.008611393761579466;0.008296882336018474;0.008170203380503702;0.0098197988118948;0.002405076700058231;0.07787393731991413;0.02783350139876096;0.026742110278260456;0.044822910513372054;0.03784463037181678;0.013037229863158608;0.048729404771701026;0.10386382481313136;0.14818367025625553;0.1307928807574887;0.31937357873837763;0.020677988384469933;0.0020386023862559413;0.007595066176773948;0.002443299984495367;0.004321208889303718;0.010079846964155722;0.0029661116477572203;0.20189687751278734;0.010930799271223908;0.0020364919171715497;0.040569853695566906;0.023859369561139245;0.06241934939199271;0.06688216573716557;0.03042841343495089;0.014406705618946;0.004862226247615519;0.017215510635168345;0.23213961819983264;0.12604481209029375;0.10515179550687888;0.03656643498133585;0.0026987279139027414;0.010987292649889154;0.007050463031496843;0.03170191312875029;0.03328636082204352;0.058391903527990265;0.04796698763141557;0.17392464213742637;0.045407854743663635;0.1253665112768343;0.0020553982458296548;0.0023411049055989948;0.014676358360540546;0.04138602572385949;0.03796521298938428;0.05727335284604899;0.023118360316625664;0.018570902915940178;0.14626171603496704;0.11734659728354363;0.04660412441814832;0.05222918108605921
+Triadimefon;0.020807566914575734;0.006585171880775318;0.007733560420798558;0.003507649712123461;0.004184729902438757;0.00838059945276497;0.04396316053877205;0.005924262176716701;0.006247517069689362;0.005974440228976624;0.0039050235857987074;0.002575864973521859;0.0013317293262567799;0.013477736025444666;0.003780280401601785;0.0032919651446435133;0.0041028923702236065;0.005853193864362733;0.006398939988726401;0.006678499556663091;0.005114709928835133;0.0073190436124909;0.03839502140332584;0.01681131700047574;0.022817205133592224;0.04468223066735095;0.17202548618200114;0.07825094960530382;0.057125341234072355;0.07957055567735155;0.16060816507974296;0.015031784442355372;0.22311498318426531;0.0021673138262829337;0.03555272610815398;0.024792648869820536;0.5136378395801181;0.010273997834069981;0.005664424847496583;0.02865243124556301;0.03114004076889603;0.011194431495024566;0.030955999325605593;0.004402261820049322;0.29248826565847363;0.29910825212637704;0.29831879448018916;0.291719421985811;0.30352850650669794;0.005308648478437059;0.005807513196879377;0.03225662191973153;0.019176112102865517;0.017291239977806037;0.01396338397322764;0.010296874431148297;0.04275596321948756;0.03073262151179125;0.024783488783733775;0.026616010738110426;0.03214627887337515;0.026822763897059294;0.020732798600430587;0.01942448668143598;0.045008700293366906;0.03264524681227828;0.03322640465907297;0.024657662224677846;0.020837277140215122;0.026670762290596083;0.021702583680884884;0.024800349868078095;0.01921242410139012;0.046647534354054304;0.22895456612151593;0.193738206321832;0.01246375096063883;0.0028321687156201143;0.25395331552531314;0.4110265852335248;0.11881865563680302;0.11631031920788909;0.18333278254347615;0.1706730984787064;0.1635898758088278;0.11524288461668918;0.25170077899016247;0.24831258227716116;0.3321891152720473;0.07702763531034319;0.3726450630871711;0.04080550044207242;0.10259203370680509;0.17937404005686325;0.18902622116779688;0.014705293191776792;0.013411518797558676;0.41891227750882254;0.37426078976413246;0.4220732879501593;0.3404092121337748;0.10157322489048683;0.12977848685631246;0.03612536172141859;0.14764624179759359;0.004506422535651218;0.004014148877106917;0.009056903541042768;0.0027617717793158407;0.007656916731470172;0.0017225522321574049;0.0030388566100015627;0.01615340310009389;0.005277622615331775;0.00439748938653305;0.0033025471634791355;0.005157000912511749;0.05727584374928606;0.05548253337825741;0.1279731881337825;0.056801487219871216;0.008948017493687021;0.006371471243929727;0.017852894949979478;0.02134790984701006;0.014130703271270974;0.014860088778119887;0.0002716678602099771;0.003222475604306669;0.0007205522959742794;0.033053931502227324;0.286189184216269;0.010632805667852073;0.02030064264118328;0.01205369940750256;0.09376270339240307;0.2467642399180239;0.2253107775292472;0.07869294615946215;0.11778325730127522;0.013349414988430331;0.01494966563448596;0.011437768456804437;0.0016588286806299385;0.01524311395130223;0.02191470321182474;0.006697395241640578;0.016235200333906682;0.04173963868175409;0.03595519322142598;0.0290128655062461;0.022433791557546653;0.05915115539658808;0.02066590180499191;0.17859289414873297;0.22647990976413046;0.07855824158836823;0.0646834900236209;0.09462121560093247;0.06350681373699538;0.08494688526890132;0.07818562333873169;0.10717341279088503;0.02634715496954119;0.03576236629800504;0.037324350989816964;0.1253691421986774;0.02306999266601808;0.024272219113103736;0.14749297090880958;0.11165025478399293;0.03046542803252054;0.021636606392277002;0.013913510029338692;0.01722730951346374;0.010987824016373415;0.16917043985387323;0.11703129340682114;0.15602836460116187;0.030007189667690413;0.03159962305169317;0.3435033400686944;0.06846693985772656;0.09387848157958831;0.14175437742464134;0.0802887989694105;0.09350186774698256;0.12393395860133781;0.022721271329365363;0.042820200176055756;0.06944967092457181;0.004053389280736422;0.15352825769077297;0.06316330364784584;0.06446518558727095;0.028655881203877225;0.028953193947032982;0.07592722379945557;0.186487874953554;0.07556150253174582;0.08657823849182518;0.06327346896797185;0.07931635384013327;0.017168661011298034;0.10002305877471775;0.021269361605620554;0.03324592270253482;0.10378623715214705;0.021085547165121704;0.12577711673572495;0.1861507127852376;0.03301316734578208;0.1426647079606729;0.1448779924318697;0.11108055645001208;0.033775378110391545;0.12051863311463244;0.20545287172753296;0.005921472508594507;0.23292028967715803;0.040634826364679424;0.016860827519142748;0.010886993644701443;0.04435926747339357;0.012342045989222325;0.027390750848838956;0.018733321647649293;0.04245898936431282;0.029781751420381426;0.030631622070205623;0.03040628508682812;0.029947527286302515;0.06316544120508129;0.04458878471234037;0.014068548096386895;0.034684991712512235;0.006852925598541813;0.030482250837077764;0.02106721265771948;0.030799437670471493;0.15330531411749448;0.03294908743520171;0.0642930087074753;0.05694892742604832;0.12307812305303152;0.3243874905915266;0.17597787555517802;0.19555633339013231;0.22728750172187057;0.02924278771024545;0.1776875423275339;0.1791580353654843;0.026891584083861705;0.024138122353349382;0.11522519488325755;0.0025222113617949372;0.01555408557936456;0.007030579771474589;0.06223162150244869;0.03890438114407047;0.003055380555579794;0.04916913255400778;0.15849691636533553;0.004641945115775842;0.06163077058931715;0.04549063030291681;0.1515037179080607;0.11591828173927601;0.23748936368451168;0.040502840212864925;0.03707404325750098;0.029605372666103018;0.12080938114032275;0.04769799088908548;0.12172163885963569;0.023669639651071092;0.029203861163612507;0.135795450618802;0.008712209268723514;0.0;0.02804559344986615;0.039189117245676544;0.002944796523650634;0.07706279757841678;0.019886444423943536;0.01688133002555102;0.014029521737367944;0.04484490673609384;0.0710772096434731;0.006105788414050473;0.017615308293146583;0.03259824493679333;0.013346740829853756;0.013781982654372867;0.13265514721663246;0.026303451844401027;0.055853396748026855;0.06161729606520302;0.20320258851345327;0.03392672745585723;0.060475658285848714;0.01792472325005956;0.1508500982514911;0.04122925353107518;0.005069340981758537;0.022272424605499493;0.06744397224188105;1.0;0.03141168880003246;0.10430840146940494;0.05822404610131338;0.012332333121568898;0.0010033307560764404;0.1337381504870483;0.008548414977572253;0.036673452153962297;0.11525688654639102;0.09414990926780631;0.021653371888405715;0.03973568110080543;0.3158356696635731;0.062032202035157157;0.07209418604592993;0.003028380926015683;0.08444163464736117;0.0490341959936123;0.06592853670073008;0.05557525045711568;0.019424591650765363;0.025405219512563148;0.03550238114705929;0.08729352673686187;0.0076768503292853184;0.007435040742175762;0.05055531550663542;0.023749698876501506;0.06637772685928463;0.006253204885536116;0.027450808023508157;0.02010867821433368;0.05398092021420144;0.049348449348137834;0.07365674294702028;0.006471068557232189;0.009135194707699199;0.054031033784844265;0.05263023949583249;0.11076545544648705;0.10205926632914421;0.035157411803575685;0.03627121221232414;0.010274768736403575;0.01417950744324095;0.13314991561135475;0.15916777620159153;0.12955436962147004;0.0010445712647601496;0.0684255388389815;0.012149653402453102;0.03759594919912847;0.13187868157058935;0.14204663135268542;0.025850578642827287;0.07523807234272462;0.04429534239996064;0.10765553439967804;0.010157867953995708;0.21823293851697684;0.1861361916744395;0.2619111959521654;0.29553639272016474;0.141644731779606;0.2289393690659359;0.05624922972009808;0.01166454556573329;0.015548379061251035;0.028396488991698294;0.117236545947438;0.068783040004772;0.343977479043065;0.01873169118935944;0.012246437748431422;0.40848581416459867;0.11463614870550139;0.3867396041098165;0.29873505869435935
+Trifloxystrobin;0.05730178967506257;0.005340822951450397;0.018151497111909037;0.00993216979255348;0.011036802077613284;0.018220905989252602;0.02490123357937827;0.0032592360239947623;0.0036227485189763335;0.00343360144756733;0.021075784310412415;0.02990229506623532;0.01556191790424439;0.006509595007162058;0.0016127603641096448;0.00465148911185035;0.0014742657720915706;0.0036401648770507168;0.005396786624806199;0.004372516641653658;0.0016193735788789638;0.0020185198577190987;0.0030351913044232076;0.0014049714412246235;0.004202435999280559;0.015303180235326818;0.029573912635199075;0.030219314093897824;0.058072299654510925;0.14293126854272342;0.04206292072474712;0.02127899935024786;0.029902136461933185;0.05724959000140956;0.06942586095788614;0.00590155489906291;0.11557383620247208;0.027340581789047243;0.008339403760037875;0.005953074538834504;0.010605188462781107;0.09515221469376482;0.02103724555061989;0.0007065133185620052;0.0361309869580451;0.021087095953379122;0.02536107001234916;0.02633243761489526;0.02829997225033363;0.010488522809490128;0.0029891199814516783;0.003177142187784641;0.002388523488662752;0.0032539033295040914;0.012738015903856257;0.08290749792194696;0.01655700218040676;0.012244990585815466;0.021322413903839713;0.022490824883419445;0.011355612382389338;0.03831768940515698;0.029061462979715527;0.03248301351517724;0.018341325404749215;0.016469451545395055;0.012784073661989106;0.019833267051322184;0.016219722539314405;0.019705216712546016;0.016151819279045392;0.012417164762465585;0.02751830371579321;0.03716537826058229;0.12683249513481526;0.05290819864562939;0.049460434406067684;0.09338530888022374;0.023434369078436598;0.05805255531090151;0.031155738135846687;0.024624055181954107;0.04242494942712524;0.025468673595223913;0.04743444642576007;0.017743243520012098;0.0810806080043487;0.10111273614325116;0.06088640161917656;0.014629533362218894;0.029418160916451955;0.04532766192571741;0.20227289179919772;0.25709133511775356;0.2742127203394934;0.016147535927204255;0.009653455482679258;0.0988489336933121;0.0893784366442375;0.1518738557566831;0.1817540461671983;0.04459564062325981;0.055326788372156904;0.060048563723699044;0.06429966189449901;0.002256026565313582;0.00404836848864579;0.002224319886625411;0.005989934319139828;0.0016349150508302589;0.0021706780854251696;0.0070190362851108145;0.007124604653060851;0.003525983796831495;0.00379609245579774;0.008112536705307557;0.007008220331117282;0.010424970113579202;0.006383307074782173;0.05918002935279983;0.005300934179559429;0.011739029665949852;0.0021226874685894882;0.009723104839948522;0.006938139639113513;0.003414453096805383;0.005029295206823349;0.03107602393128021;0.058505512212858;0.031956753103266636;0.01914066931250205;0.3217987145790669;0.4382911027415137;0.016860115688544217;0.13605268453483302;0.3006693829577986;0.3660451237589265;0.20989651768641587;0.18717084050872823;0.15994309651901667;0.016631770815725366;0.0965943438321149;0.1283748265948277;0.021539650852647193;0.17544346188466575;0.030604399577575207;0.2523447426070104;0.002904020291237107;0.012504843464796384;0.01410958684890329;0.19405434270640118;0.007858059408487016;0.016954104875683128;0.04268887644344763;0.3327854152302695;0.084755179952081;0.0870122529074753;0.0676475803867532;0.05743544141932359;0.07277379498671309;0.048190634346330544;0.03305417578578887;0.08153548952082738;0.021435355806894405;0.011727255777132769;0.052764710857048605;0.025335317395092084;0.0074062323949149935;0.010895187862910004;0.08465096280213472;0.027957386492022784;0.010073936632888435;0.005665235436686825;0.003055854346959862;0.00220276973818187;0.07346525122754585;0.0024488702425317067;0.006112337423599152;0.1283320544041341;0.043753899598399766;0.05197705989144868;0.0028915161775275133;0.14815304885545102;0.03437051428281292;0.02615768399300079;0.057007121815223376;0.024468084762312263;0.0007157900027086624;0.030846583008998972;0.005390437295438787;0.024761140542179916;0.005747683191002207;0.18021150197867059;0.0036804907558138015;0.22301636999955918;0.04032030989680682;0.04563048830626531;0.031213104123304296;0.028755803107679393;0.023058867905360436;0.033363055714626826;0.03023495982619051;0.032635732939157114;0.006357533198468275;0.07147263600192931;0.001943998502514387;0.18227852891309848;0.023188570538597436;0.07823722221714345;0.23887729462632365;0.005753418320776214;0.024114050648778477;0.10356784177448163;0.07999093624946485;0.1521519493442133;0.1732253291712126;0.03168486346042917;0.22468939529201662;0.02550095912463513;0.025655088348561696;0.06318052853909935;0.03608135910671681;0.004830447782441653;0.0728824120551843;0.08244687656016823;0.12355717627722389;0.07369515250861648;0.036749848680345976;0.023454176292413313;0.00967421365326433;0.01124703273529344;0.011523575282598604;0.015454570245633624;0.013597030610236871;0.00651834454389348;0.027336225320801745;0.008218915703872042;0.013481539820840107;0.009152472834065246;0.026505096443252083;0.33790672482326267;0.01818185864728442;0.034628472016556194;0.002978837868122299;0.06690206726937105;0.2804893027340777;0.013335255564814621;0.013504133373897517;0.034514504693282586;0.029352541240475954;0.033787925996858405;0.033916270876833694;0.054479650300865434;0.047076955968202674;0.053551672919352436;0.0063795982746729304;0.42381780606646774;0.003946975287453812;0.001605978468972941;0.013206317832789789;0.4864481705401566;0.0035716361462238516;0.0014262970567762727;0.17000375853389904;0.0490014195001212;0.0035365501271991265;0.07367569021081;0.05172777152016945;0.045087254403625654;0.0007736001886792239;0.0006534696348468066;0.03329819816564811;0.023531415687101515;0.11908768903867142;0.05552079479532977;0.014483405209553891;0.0024667164869584556;0.003714898490790697;0.0029214322312328986;0.01881993673958044;0.46553734723104545;0.1007971632441778;0.49346608803643577;0.02534564737587994;0.0406682423701766;0.040178657720852384;0.02628276180692979;0.01645035029914789;0.00023558614296609106;0.03789167542445978;0.022447760134833742;0.036152489137310825;0.08146999292159447;0.09224200636451613;0.9076862602207206;0.08241303264716468;0.03809591923942378;0.29833446072931746;0.039105320044593855;0.26118224743283514;0.29421754958394847;0.11690435099325877;0.005146729410111967;0.030291286189688824;0.03166245688709552;0.010613301740021903;0.011517189508493904;0.03141168880003246;0.999999999999999;0.042368992563535796;0.004548587784895988;0.24746029392405597;0.0009109299064672924;0.001959723546442839;0.2759235946814029;0.18053919814984523;0.008147230437102176;0.007956550493334002;0.04778119256526924;0.04024464099362553;0.0019810400602546015;0.010469842066868889;0.1918701560105893;0.0319260474323383;0.04142975227758416;0.03350002382984903;0.020314704747638038;0.030431192605114076;0.033511315901799815;0.02148084451913523;0.039747654752468636;0.028340651536393004;0.0576185508794818;0.057933031448014836;0.03867888506076399;0.09649002764461156;0.05336327547625129;0.14228233704795507;0.03275678540214074;0.0705916776972988;0.010181437765427924;0.06711031284295091;0.030068855862309646;0.008359118424348229;0.004652930487793991;0.033828208179278306;0.03524627370378867;0.08261619576673591;0.0848746475967588;0.01982749672398184;0.0016146376224588416;0.0033292756045411685;0.007689237200621277;0.0625300089397632;0.0985525934314828;0.03557969772078926;0.0021627692176490253;0.012896358410040238;0.0019398758888278399;0.029910401347864813;0.025487359835933258;0.1033867534952794;0.02891428811502384;0.18513760608719282;0.03319549490577892;0.048924395981716766;0.014109829106799561;0.036385044924326274;0.057826490877503155;0.19618605845637713;0.058730447774769955;0.08833434679174625;0.1653564510725433;0.012392565944787711;0.007885328104915787;0.02193532218403531;0.04524665259850116;0.10381559681017813;0.16610766889457715;0.16343398963312067;0.010243797362248558;0.003376251618982412;0.1864548985632919;0.19222736315684724;0.1952084556476743;0.1592048730563699
+Zoxamide;0.045104104589400756;0.003857465213388927;0.00055046043034548;0.002516470070925869;0.0026720451525560026;0.009527060173544953;0.003372057680815166;0.02055795712466595;0.01680105615206322;0.030193199556822925;0.03999829765950028;0.05530960952431049;0.03079913161275004;0.052930158041504916;0.04432243278518669;0.0754628587911949;0.0012123659694011737;0.002459642225344383;0.0037893332065251266;0.0029382251927154625;0.0016123742162613545;0.002662198150553733;0.005563331942650552;0.003518221205364305;0.006206694626250965;0.001049297298668962;0.0024994274447998465;0.03701855480267275;0.07366645802383341;0.02853512168564175;0.009898422036857864;0.002258164616669077;0.033228468313077304;0.03482538085335314;0.05624850425878309;0.0006161406775164371;0.15782157792027632;0.007260261479859272;0.0009673782090100071;0.0006810437657197772;0.004466674109974722;0.22993036489184773;0.0018989259394465055;0.001820675392256671;0.030435672801815482;0.017592613160403663;0.0203041999872927;0.020808648404762653;0.021284963625335523;0.0018520317146169469;0.000526234996225227;0.00347503843041308;0.0018925301005393563;0.0031693889713247094;0.0026305407448293247;0.2277135949456317;0.006902028563393191;0.0020458008388919017;0.001362099336986079;0.015987527714302962;0.004505298898653116;0.020544690166027595;0.010935224018076704;0.015627758390450074;0.008280691181396892;0.00231097308755738;0.0022145550814246786;0.0015424224506769386;0.0015284091126648183;0.0019922839236817314;0.0006655309479518313;0.003939892735816223;0.006008005900082406;0.0037029863136668908;0.016946103619446387;0.002697721200195934;0.0008489239562616313;0.0003177443005625392;0.002811148149201031;0.021772624765704848;0.004660969027525006;0.0036291127396477023;0.0034175116881009528;0.0020605080854025383;0.0030817694558294183;0.00015778917168494087;0.024180094661446733;0.02681711639856513;0.010859426163952728;0.03492205348272468;0.00882072354625624;0.007583151669154923;0.022162456217074987;0.0033333645711763667;0.0038112494428148226;0.0009256840499206914;0.0008810318606567179;0.004185041636949964;0.005501834541438854;0.006943966058820942;0.0064123365526910624;0.007441215419722892;0.02041125336902521;0.014449586758126973;0.03304321272871367;0.0017198184997410894;0.0003390371385966806;0.0005167352065632291;0.011740147181455923;0.0007342985189128488;0.047952671129300184;0.0010444560335827224;0.00160655212878327;0.0055794943465654005;0.0013364376175599795;0.0044969155351641124;0.0018308110872571086;0.00261362690103238;0.0009690708083003734;0.05894546375564218;0.006530321240872293;0.012574749583480123;0.0009774124682704049;0.011049900140277609;0.005938650854828504;0.004980532968673169;0.0025733163716934386;0.2765658804281764;0.2732573114931839;0.19410444323994133;0.11381596541849033;0.010872269409504757;0.00029028729977877496;0.025858365466109874;0.002247935678561245;0.007726501883971749;0.1450879416509861;0.2915888620954329;0.018958980418793063;0.010499714390698248;0.0781658442787529;0.007592235391070612;0.1126114706061623;0.003374717365991741;0.01340350958857835;0.010660384787601548;0.01424293580237894;0.0007835580094475935;0.08589002785084911;0.018847001685447853;0.01382739301750921;0.1149853605221091;0.244898536443397;0.025363399419878294;0.013548130763885486;0.31132477555750887;0.11522549847695263;0.0616190930822921;0.10966246832302798;0.050595268601113144;0.1213757583385234;0.08386959639014782;0.00639371429099575;0.006373422925092703;0.022443202142994736;0.010349717805086516;0.017516891168813862;0.0050808430099454896;0.004964795950164798;0.07306631107286216;0.03339380243254115;0.0074860342491746105;0.0019044014106701732;0.003447975359193611;0.004870395462773462;0.0;0.5108561970656583;0.057059607045457025;0.0827744810219672;0.028915153382653595;0.02646125039634066;0.1329689414493901;0.022846748792079506;0.011327935969749398;0.044343558468621334;0.25068095722163003;0.027527033233770166;0.010724955944346031;0.02431357629183566;0.14442436181592438;0.18823151586958534;0.033135402378385935;0.04078934825316355;0.006305535890177811;0.017685719883516825;0.002789022280371599;0.0012625031107595778;0.005365995787920169;0.017869499104653495;0.005923716082953212;0.006979437713306644;0.0057777131187232164;0.006194269650443252;0.017300893503117094;0.37391433146662184;0.004912998690032613;0.04445135637369563;0.012687489549461216;0.0;0.020132684339344432;0.04196092314599669;0.055804318104626195;0.061117321143571525;0.031804497073957265;0.024586521059031106;0.028106650025905403;0.018485115885816385;0.013857885838639077;0.017618474998748634;0.12035069648197629;0.014028858359523392;0.048354064823385834;0.020629525099853305;0.1407035142985965;0.04805796637397793;0.21466555159169973;0.2264767566017053;0.02436788254515018;0.009858384488288826;0.005840378402166513;0.005209300695921845;0.005563036484618192;0.0028199875184180385;0.002293898812916548;0.008087767231684698;0.002264645313603615;0.01626994141585743;0.04791720598039566;0.020899195748164536;0.0021846937840251644;0.047603894673202474;0.022135540692187015;0.0005531058190715842;0.04134694922147099;0.02841173783114043;0.006924601956536811;0.12155772407960974;0.014289929303950304;0.05094533783185787;0.03845206927575871;0.04235520601962226;0.043656111040032974;0.01769014036568322;0.020671447159162918;0.010300173108192779;0.00015279690632519663;0.00550639625510234;0.006018885761861473;0.022330761043445925;0.013119993301982538;0.0055868828774237956;0.0696174101471993;0.0010459909829828808;0.0007896934414911292;0.01838083972802411;0.01881950300653019;0.34795866400545;0.28685628990082984;0.3878006419395643;0.03936771540646983;0.021335664400859235;0.046751882017457246;0.11311203222251795;0.014739455917742974;0.05507285521299254;0.1842000213688955;0.005417281160679335;0.00017877913542236031;0.003374530492057891;0.018512524812352174;0.29876887881267494;0.040147807841237775;0.005652679477661442;0.05218616078117151;0.01990198582587485;0.02853539253601991;0.0019491332246567132;0.006574714730692321;0.09115390586023782;0.04588319550335903;0.001887938908503564;0.006593976985525509;0.05355786461135863;0.018708840577800874;0.008014955312849556;0.0018120055768326897;0.034420306624503676;0.010029120928009073;0.022327485315761748;0.18855977380731803;0.06333406069335364;0.007757592101699431;0.17068845081256037;0.02822556688413619;0.0021709946825298762;0.006443119772847674;0.005921655483358268;0.10430840146940494;0.042368992563535796;0.9999999999999994;0.053468689168527296;0.0;0.0;0.0020198213116723925;0.0018827423697725303;0.0014939631238126787;0.00044168811707756534;0.03794979316863503;0.007481632989868796;0.0251360730164003;0.004717382268707563;0.0373752059618055;0.0857156316774645;0.0025211477377120586;0.03881416432261661;0.04052110075029167;0.0015337193028679087;0.03947099228223423;0.009404010110207707;0.08882944902642902;0.009896430837476395;0.03332410533868821;0.00740523733800864;0.0058775385785075325;0.03467244452748186;0.009916445173551844;0.007408680230990671;0.020462200713926827;0.0021447369516517005;0.4570826564434455;0.022955531976906265;0.13350454682597662;0.03759411741538816;0.01801406017951655;0.0025548597975979096;0.014330270341393454;0.01674368696200687;0.02322165643133714;0.013773471222589005;0.059483293584420976;0.006226474246439734;0.000987691286312537;0.13526395453187018;0.047855726904543316;0.07563464881043454;0.07087607169960873;0.0040971247255248144;0.010515010957461653;0.0758863669918192;0.07239761107102002;0.07304223894071134;0.09627256457540916;0.08448358741206491;0.04113194517452021;0.3148576752252025;0.2119021136164626;0.03360672299981625;0.018973092458817772;0.014194791127357156;0.0510348603971938;0.04901237468103022;0.04002386704292094;0.04764335154626345;0.0;0.0;0.0;0.15335688151661758;0.10937139314296518;0.0036958505224737787;0.05962262267708162;0.013579272193054215;0.05619560331857446;0.17046496536809908;0.22639799948035383;0.1251124044265376;0.12242150172343544
+Secbumeton;0.05343708983337038;0.056463022387137816;0.06903061115125993;0.06189692867287125;0.07208055739370227;0.06456771583687007;0.08693092309216434;0.05694095877046895;0.05704210580972068;0.0864710962859887;0.28901602590168973;0.053406110326647625;0.07388693698349309;0.06007978293910786;0.06718251124270821;0.058543592919734676;0.06791938515002727;0.05835384130330746;0.0656673720386626;0.06756145612390531;0.051880126522279905;0.05106680090866286;0.0582501564024083;0.05758311654975296;0.06590388912635355;0.02492645823339487;0.06872665191823352;0.18526343959767336;0.2563984182276487;0.047285100524555326;0.245800545716305;0.01919477148923634;0.1359162470086825;0.08293150044109372;0.04502727877125823;0.19495975060992368;0.29594231526466297;0.25265230498189123;0.1314817193441114;0.027724533336206444;0.05967090216510508;0.03702806427369339;0.10632598618144537;0.00016286846921250095;0.02553736845307549;0.014077498676360623;0.016724540751044247;0.015428458158263342;0.01444309741282914;0.031376314003947386;0.054088608575399516;0.008127365208884138;0.0066003605603285375;0.002524260436050583;0.023327180192859058;0.03784961628614637;0.035202599068607364;0.021376594469971737;0.0370822199267444;0.006625382424457501;0.05484905209741446;0.02993449144583109;0.026560256763412424;0.02584648107880042;0.040199435910585925;0.02043460152095698;0.021482805271184804;0.02496440279147303;0.022035983612563044;0.02295443469474315;0.01516462670677518;0.023564790319299134;0.0034715844065955686;0.006476732142996802;0.029946939929530448;0.020756331860189665;0.003294805035385172;0.0010322376842744365;0.019640632136892766;0.08139426971749554;0.03783139715618334;0.03750876088185342;0.029390754088343702;0.028634587899584785;0.03377784436180477;0.02925814589471136;0.07171265224144592;0.06159301782902755;0.029283853520766918;0.01577480960318118;0.07258838376043651;0.03394763946266354;0.005811056987846207;0.030025183008560847;0.03608259992753819;0.00838268306192604;0.0066433845784243314;0.04010408162733616;0.03386161273704355;0.02125126091750404;0.07402121707504848;0.016100560169934122;0.014558130024778956;0.010372233553850821;0.02603619513694669;0.033541575498182395;0.028925780641294578;0.030123457454632404;0.030330143157636217;0.036269180488532594;0.03384503604132193;0.031953124644667236;0.037525732466664456;0.038140519878300964;0.03603379742262651;0.013718242455412085;0.010700829948633769;0.029224878691356378;0.029396994854131765;0.016982355085212234;0.0028044448984868137;0.012529071957207063;0.02755513218302174;0.029699541037290382;0.017204575555086705;0.0010206674468286822;0.0014833540844262924;0.0009147042106872364;0.012017449671669175;0.0010879601427001408;0.005781748793472587;0.12102055202718362;0.31184905728031503;0.3875508708537298;0.05656285237416789;0.008020644024100769;0.2591050787055149;0.11887866091670654;0.1414417996063409;0.11231261203145924;0.6766491099004386;0.1834260828475758;0.25252965327760096;0.7909373321454795;0.14822125500288463;0.013813150269692659;0.006631055287989498;0.00662896317439019;0.1467993572645543;0.32998227712558936;0.225253773850605;0.258133133905441;0.19469775769516162;0.15058414163151748;0.11424108120494475;0.2929227294554044;0.29173940052885894;0.2825168436608061;0.30010116329841263;0.017655337755765863;0.2680450403544526;0.033744471602121226;0.023533898162156834;0.01834151719708651;0.01354547681189292;0.006525900971897228;0.018306395538981234;0.022464620449585592;0.02241960705910763;0.13769332268246792;0.0248480050762355;0.01129603943152398;0.06823361580053441;0.00538438223571324;0.00356530874305589;0.25310974508774575;0.10173384545984328;0.010107688777498708;0.05498682625460937;0.10223847001340541;0.08761207217855188;0.0374507041822576;0.03237969017664865;0.08952112163493525;0.06845020230330226;0.08755542536767644;0.006434861421645015;0.004012365245821837;0.09511049713883736;0.28756022783535523;0.2544250428901142;0.6272111350538184;0.13242539181634755;0.7911159167811191;0.2501024401798559;0.07806105912788269;0.07679148723403995;0.24072806583670278;0.2781482828986554;0.27903109886642685;0.2176993700018544;0.25679976338930605;0.24825124257786665;0.18419521850149662;0.05257290117080195;0.2708993460802317;0.2195355278604215;0.06532660095914278;0.05592815522133308;0.04025845699071406;0.019533766817890427;0.07001531848446535;0.2403263570345215;0.07063100331319834;0.053157705888644824;0.024610301326875063;0.04158268222157369;0.6768510835488041;0.0;0.10546612068361338;0.3318661145769716;0.5906463884546178;0.004262688368518341;0.05817881620696416;0.04589935720639995;0.03151421793510773;0.036401233022654834;0.03153557914274008;0.02945134678916602;0.07410835204518017;0.057241788768912526;0.07387129001703306;0.040145612969652356;0.022462723138115474;0.10713493319402555;0.06733483969610464;0.028958659030551614;0.05698616735670308;0.03650189199445957;0.054728070948029166;0.022314274387352562;0.0907386326010699;0.09201404420087442;0.025896314106071686;0.07059027771945363;0.10554019051597863;0.024927608098180575;0.012879257763609014;0.05810069153919182;0.01321524829152542;0.05754054692415347;0.057971207953392154;0.03250435917014459;0.04120036847630778;0.05286324014230513;0.023271616532160123;0.049623755169690045;0.46530031954937634;0.09553817669183207;0.253719618413897;0.002934329617212917;0.04433245765226678;0.2763772217459163;0.002396925641358437;0.03377819134316245;0.030045646017100122;0.09416123693785834;0.055122401020740786;0.09301122179096527;0.04683897214218702;0.010684372117679398;0.06643753131266067;0.48070997020226847;0.10341551614059316;0.15320513149884135;0.3879956856565587;0.038669055181315956;0.03988238301536055;0.012787948194717846;0.009719151023909092;0.007441171330624738;0.014624303997117448;0.00296145226793986;0.23841126801622772;0.092218046126707;0.0030340993296991948;0.014261279477790684;0.07098924607710472;0.007227075564751921;0.00527401693780083;0.015878318812744645;0.04586806629261849;0.005270097756205518;0.027135392559466273;0.0016183053950935891;0.029571972985625007;0.06057474258114766;0.025946711482154956;0.0298056303463998;0.012761814124567476;0.002273241370744986;0.000152782179096975;0.24813049211706137;0.01209074688706497;0.03240283795581711;0.02311251683491723;0.01067374659555749;0.05822404610131338;0.004548587784895988;0.053468689168527296;0.9999999999999986;0.005165950252729965;0.036485103823577204;0.039621391043621966;0.022806830996205202;0.17683124685062995;0.08435188278431632;0.4046669008316802;0.015840467005695844;0.013287540653449548;0.0176942676067537;0.041301946754141006;0.06849225409725634;0.0212112093680684;0.03205316015109248;0.050654217932666085;0.10411801868606096;0.020780492175985744;0.004978889125740362;0.3429925876580795;0.06688692007172632;0.21298368116988237;0.01670852789950792;0.011598796406902648;0.024885576779095808;0.018383062423914145;0.04805565794705709;0.01439638974182845;0.03902055420227669;0.10361857495803699;0.14744447574733135;0.030838147607282155;0.391018228710941;0.06516223085256631;0.07548350373456654;0.004267217803927438;0.006203049558955815;0.035849292172241275;0.08204643689078714;0.007861616576605114;0.002851952515921278;0.004415069308034643;0.0025449276373564777;0.04371470996995287;0.3560438170253813;0.046455935656254194;0.0016263078587404952;0.01938071059698492;0.011541457652635388;0.018605949379179844;0.06024123454122597;0.06958204466872236;0.006986781737772963;0.04473716223345407;0.03788415877234227;0.02352478526011296;0.005094875744927665;0.13148089539551142;0.13464904409789152;0.06201393439080056;0.04673766908418548;0.06835490767870671;0.05421754678501275;0.31344672981103455;0.02103545798906049;0.019794893324412456;0.030385392500721135;0.04556876544228919;0.07774785821371391;0.057055484401932616;0.2590532079665999;0.136572877423433;0.13519898704864353;0.1054251581503341;0.11740856368128962;0.06834825436267856
+Fenazaquin;0.0561633281402326;0.0;0.027445846400484208;0.0;0.0006583772739598941;0.007636634485905143;0.0;0.0;0.0;0.0020851035979046768;0.013633856955135347;0.005787968366996682;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.001332624108550952;0.0;0.0018183664067512506;0.00223574569335803;0.0098812880671135;0.0344821315070346;0.10732860808433685;0.12829664248382414;0.01737850266213017;0.011731285126079521;0.0021520134451022406;0.00039724020095275345;0.028945221318495768;0.007556172475710773;0.10653190533944606;0.020483464949931064;0.002808638505952932;0.0;0.005593350422515522;0.0403804531937139;0.010596088775616344;0.0;0.018438918025610908;0.021386757078896087;0.02305083533019291;0.020572846379121733;0.020213888915841336;0.000477121803770801;0.0;0.012221026144505645;0.000762929421005197;0.00026912759422442317;0.003234311335141919;0.030855662748261112;0.005059684735710708;0.003186927334342712;0.00530136866067545;0.0067370551563677725;0.006410093570672929;0.0019855162560173047;0.0020502926760213123;0.0015799237785532935;0.0056902982586556974;0.004468682949813728;0.0034207841080220285;0.006261111198445266;0.00399919967634386;0.006009477252618582;0.004997244424350371;0.013621554484499;0.013886189101983765;0.058665822611848883;0.07260546060357927;0.08329968679843285;0.004530227471831406;0.003471774589833997;0.0015441617936032763;0.005295840633162191;0.021775181925513212;0.020101523106361326;0.00728558888933406;0.007485683415597632;0.01769908791763495;0.01850595261986174;0.01329978237500591;0.014371826197423415;0.024293106163416144;0.009272429053717385;0.017342053966380527;0.020589399782001992;0.05687057583737464;0.014626776350527105;0.018420535723072083;0.011439368079489337;0.01802386679302092;0.02840409770710572;0.03346480032482751;0.019761439360581758;0.08435314261755615;0.053897650895657935;0.047877736924356054;0.053715232858768724;0.047825830607666465;0.0;0.002263811507379244;0.0018428179489663032;0.0;0.0;0.0;0.0;0.0002589960080162723;0.002881056058924855;0.0006874734886629881;0.0;0.0;0.0014852547862974188;0.0051195892175493465;0.018634497582538913;0.01086364672618289;0.0005848673647401701;0.0;0.024616134212209123;0.003944435139141009;0.0031674753383877275;0.003141145880601803;0.010429303984904598;0.010347532629425744;0.09250025212289177;0.03192075703004882;0.3584124603277443;0.033823732382214894;0.01753777261395072;0.15373604860161258;0.3657371494022466;0.1561307266386349;0.16476567088646274;0.035462193922988924;0.047934256815734884;0.008630147066570884;0.06952551149001127;0.05947762578126646;0.0053719068739548825;0.11074087628587807;0.034909409622292414;0.09996569884739724;0.05831361070886543;0.00461138180798135;0.006144214023282708;0.08014971067288512;0.026704318259503198;0.031292176463504906;0.023879906930758456;0.0316865884806303;0.0848192805991142;0.04296062276837833;0.11667747612888568;0.14465582176730526;0.06061887451909178;0.04269416498200565;0.0023536105791149148;0.032263181950916445;0.00397130983416819;0.0068235859400804086;0.012385798086409711;0.01426859094623446;0.0007530331482758948;0.0009547724721901708;0.054309511335470004;0.03814977295569313;0.0012644488225521514;0.009913598210621;0.000486300960272747;0.00041420419180512776;0.008796100238046823;0.0;0.0;0.018098070079189146;0.008726150666874152;0.007303292985790443;0.00019726855434074462;0.1304503391345975;0.00807097608465334;0.01004386233345767;0.02527071035233597;0.026335422033646364;0.0;0.007951548785193028;0.0015200093236246665;0.02728451958332597;0.0;0.25809479989501055;0.0;0.09313674778377895;0.01369289984105968;0.01441024970919227;0.013234153581913991;0.014119992896497046;0.013520039182719344;0.02439073544454969;0.012353000610492016;0.028449120201483182;0.007760029252314528;0.007123030803058545;0.0005875402025438302;0.12120101722881985;0.001070974573751086;0.04201206014197573;0.231352489724381;0.006434425038165216;0.013310067095914075;0.08901754605244888;0.09003901043244378;0.158557355559247;0.06290132774171699;0.0015206090492558791;0.13797980542972224;0.17800766842094873;0.09951567801713458;0.07628999646228474;0.06352655894227971;0.0006692365633093953;0.0004943946310838085;0.030667450666486205;0.07337686355524982;0.055568201087117054;0.003672457033459331;0.0028767560860095817;0.002196475047027335;0.004523334089025937;0.004050635333889731;0.005308233952605769;0.004501585729547374;0.01228452133104915;0.00619586280190195;0.003623764881114913;0.0036055173412756847;0.002114520983360797;0.0057123802521984535;0.2707064762866388;0.022390667941337625;0.012637151904267367;0.013304385928331393;0.04223198030768056;0.10314767287169428;0.006321088707427817;0.0005983603224546636;0.018959104547684014;0.0027109960947331252;0.005882050373213257;0.005776436549111095;0.1403002694526987;0.0037962198462783855;0.0325369093654898;0.0007471350228328091;0.0961102953691773;0.0024050554025479595;0.01859306289473598;0.0019308460073136865;0.05429681900927651;0.0029843842576172965;0.0;0.0;0.008224410482151731;0.011025338712696692;0.02132368881249092;0.023742068334899946;0.017747932454843466;0.0;0.0026587633532909644;0.00020323195738454413;0.16478808320104907;0.08309783684797425;0.0008875309281715515;0.007740218184216603;0.0;0.008797574818637377;0.0013099818625811126;0.017719017567354455;0.03222067374648474;0.010428165152644235;0.05414040599034251;0.018675928431446193;0.04190084727145644;0.0341750645680664;0.8678788470897566;0.014920773285702224;0.0;0.017695636951159437;0.004498492334137627;0.002705628544441708;0.2629443214771422;0.028829713871611335;0.07336908712355049;0.010230918077354396;0.020653122229409328;0.21903098188796144;0.0393260914511376;0.7940647814332445;0.7729783404926245;0.15629508440558082;0.00395921853577474;0.0;0.001136510062013123;0.03650242100852405;0.0675953918650427;0.012332333121568898;0.24746029392405597;0.0;0.005165950252729965;1.0;0.0;0.00047388586367377866;0.5904169203513172;0.22097891066058944;0.007290577774204183;0.00130002959713806;0.004913271928214673;0.003593928865934438;0.0004281227139561801;0.0033710976170812676;0.07922965615057523;0.05126866242006568;0.02960449151334807;0.016300767814338195;0.0016958198116122148;0.0019822607733081606;0.024400465892804552;0.020846729626432654;0.008031559293332657;0.025062464345957297;0.03326389342126849;0.03818453421356613;0.010651324470352103;0.01018966902581482;0.005857264262063014;0.07689693186733307;0.008673656197743225;0.0038489989048653282;0.009706321212988188;0.016968207269545763;0.010092086624054456;0.002799566985075751;0.0032384868870986155;0.0023718301490761643;0.000146541346522988;0.01124725229442237;0.002467810879955035;0.004755000750547414;0.0;0.0019359253524354914;0.03415447529704342;0.0542323446608009;0.05917579182257942;0.002905112110129967;0.0;0.009141725988647317;0.030220795556688666;0.004194719759813531;0.03955387117612475;0.008628208057603705;0.006989075950921293;0.018559005078072795;0.0038238652451104286;0.041387363600472286;0.0012020497889486926;0.02070453989912852;0.03782389951740556;0.18873963713628944;0.14252211224575317;0.021961163906253686;0.1332093206492656;0.008005051624774148;0.030152228540054983;0.07206393134546879;0.014318533805116912;0.053050965302633306;0.1833334213497158;0.25595308812977124;0.007135533600696607;0.004361699506134609;0.2257155137043852;0.2534811553343772;0.17920353786212723;0.11787482883203612
+Spiroxamine_isomer1;0.0;0.005991203329203176;0.0003648296207884611;0.00024340311528373698;0.0010654872574851215;0.0029820194316905134;0.002433362963530793;0.045282352654544826;0.06168602698038384;0.0010888862449922724;0.003048880322978849;0.0;0.0;0.012943217653950375;0.024065150204111263;0.022413538090082074;0.004323361861570189;0.005705963534712989;0.004281953863490666;0.005692003237864568;0.0007104104485054274;0.0006814781377830172;0.0008729351328900346;0.001485893933371484;0.0022099348210256023;0.0022542980111319444;0.000817318917833451;0.0;0.0003086810874781536;0.006886479086977313;0.0;0.0025210339319693283;0.017682487950873446;0.0;0.002067132183623853;0.0;0.005099924268422265;0.008966022673114662;0.0;0.002817802238452138;0.0003321025262490042;0.0006289511802570458;0.000803764678865837;0.0;0.0019998575391043235;0.10270713003882066;0.10980388346834909;0.11266833453901974;0.10217448457491358;0.0;0.0;0.0003833332057529823;0.00041542247466957517;0.000231775797656014;0.0;0.000472562983051594;0.0007189811061092413;0.0006111420294587681;0.00062957841353958;0.0005949391428006236;0.0003643661057640728;0.0007299446436641792;0.000638148659311227;0.0006510275668588341;0.0006994929405771371;0.0005075794566271067;0.0005581752212415017;0.0005581340322864857;0.00014877322612221738;0.0005804785567700257;0.0003939647572110129;0.0003812591661790771;0.0;0.0;0.07274732052088044;0.002895966627662495;0.0004701395765590261;0.0;0.0;0.09438986053172364;0.0;0.0001722812611563051;0.017591010081457897;0.011735655607016917;0.0003655106825013779;0.00748324378469219;0.008330076879000241;0.00910175304879843;0.008766322852850242;0.0;0.0;0.0010459964018765732;0.0007323617232243512;0.0;0.0;0.0;0.0;0.0;0.0;0.0007902000703441323;0.005899289659481349;0.001367593166582171;0.0012474559627451557;0.0003726951117576753;0.0027374924122660054;0.0001573886925061325;0.00017478443326798669;0.0;0.0;0.0004439167544801086;0.0005743213048767506;0.0005605207363880152;0.0018167311869346388;0.0;0.00022428382158415196;0.0007033031880892219;0.0007767699304612722;0.04020308495618178;0.020339003767222943;0.01686332294496885;0.0;0.000574246419166925;0.0006247220950920704;0.01753639824471991;0.006503715269745109;0.0;0.0007860023508114219;0.00017049970087018481;0.0003982408452883875;0.0001669640226125558;0.0014936213630705678;0.0014426131736505002;0.0;0.006302044137477862;0.02231445817774383;0.0009229356343565102;0.00030201039553727976;0.0008115705488779347;0.0;0.0006689924902776262;0.0;0.00021785686933863178;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.004951038893763305;0.0;0.0;0.0009358484089258628;0.001003894801482334;0.0;0.0008807513275196472;0.0021886261956984817;0.0003484109687353119;0.0004062809796919547;0.0;0.0017239141463766636;0.0027421289985292063;0.1290819410557009;0.006213043376375662;0.0009545191748596043;0.0014367211827106363;0.01854624486988933;0.0008629797382017655;0.001431461680981929;0.0064923782184590365;0.0017800139941211335;0.0008800176903339144;0.0003521880704034451;0.0009538269895889767;0.0006108921046962669;0.0;0.0;0.0;0.0008006851291512775;0.0012145540131408609;0.0019285058178133924;0.001392284062158115;0.00024408931641677883;0.0;0.017027261641934598;0.0;0.0;0.1942537680337154;0.0;0.1183517322685104;0.08820364532916504;0.0;0.05558284965102214;0.0006324773582468982;0.0009375378771453912;0.0010109001009482926;0.0010291275925465328;0.0014068883110221002;0.008143442814573187;0.0019309702764955955;0.002645701452584424;0.00235952265160707;0.002369434171657195;0.0164759326609173;0.0017291388543280647;0.0;0.0;0.010335154537345797;0.0011230747500943017;0.005722947871696638;0.0013949077492785725;0.004555570368168563;0.0009773056458673005;0.0386735567300496;0.3191859330116667;0.0010749572272579634;0.0021950744106118605;0.0020333738419751842;0.0;0.0;0.0;0.010975843558515956;0.0;0.004842448249875875;0.003984797751644526;0.0009304394534036508;0.0006840904076505928;0.0010150011234023044;0.0006900292691507571;0.010685157751771444;0.0003519718227007133;0.00043837366371352884;0.0007455388346841634;0.0005802116569713859;0.0001656186135408298;0.0005855099851362964;0.0005502118752214495;0.002465585775638723;0.0008021185193331465;0.0005172560954728668;0.03551821200323098;0.0;0.0;0.011111708840967413;0.02164609337495158;0.03001773166707489;0.0;0.0028958536985962996;0.0013637899800824325;0.0;0.0008145557049644617;0.0008880766933198658;0.00096763607750738;0.0003241658169095721;0.004251174206369937;0.0;0.0;0.0001762033603308201;0.0;0.00042408713821406614;0.03392474712684068;0.0;0.0;0.0;0.8568032149924135;0.0;0.0066843934904515295;0.00016984325514553454;0.0005286813217119216;0.02112698933580648;0.0;0.023351486752391036;0.007546795531782225;0.003266408466987694;0.1931594790623922;0.010294196467466824;0.0;0.0;0.0;0.0;0.013584205150181756;0.0;0.033687040400365194;0.0003735616730474946;0.0006425133493334383;0.0;0.0019307017932145493;0.0;0.0;0.0055516547393719045;0.013715623474776367;0.0017211706809071024;0.0005835237625103922;0.03322063077829028;0.013297163696523649;0.0;0.0;0.060725236028646996;0.002342571621346207;0.00027770202273934085;0.0052873164782480725;0.0;0.050256263958907234;0.006979372313808842;0.027974509026065297;0.0012381267572415702;0.0009725987892929113;0.0010033307560764404;0.0009109299064672924;0.0;0.036485103823577204;0.0;1.0;0.998427469896954;0.0005667938297068008;0.08035845935255503;0.05033059729183048;0.05538168952703116;0.0016742243163508277;0.0004379311682849165;0.0;0.01454786095187605;0.16697023147150244;0.0;0.0;0.0;0.0;0.014876068029389181;0.0;0.004027001482362436;0.030878888218219228;0.0013224019266365296;0.00035479427744144397;0.0;0.0;0.0077160148117330725;0.023770290303695797;0.0;0.00017588599978603524;0.000249747372184962;0.003996747808123927;0.0;0.0006988636913817427;0.029012163274972014;0.0;0.0008648550236357617;0.0004493171464238374;0.0011542400215827859;0.0030625581613838208;0.0;0.0007624968674865718;0.018427182338526776;0.0;0.009497276834523574;0.03584898654214982;0.0;0.013985933988152089;0.001132015797742583;0.0002637682929371759;0.0034999669776501654;0.00016921397126925614;0.0004874940916765378;0.00040737429199460114;0.00473288601349973;0.0177047077391857;0.001441320623317588;0.0;0.0022412723738351294;0.009568665004082738;0.0035706779731733695;0.0016962752162068986;0.013735301644854606;0.011479164757754018;0.0;0.001975758298069233;0.00086625087349983;0.27870887634845815;0.0185237155695199;0.005276051951457851;0.0031821243402203204;0.0009646543915838022;0.0005763787920711684;0.008254159263208967;0.004849733626968195;0.030211391855336583;0.06533075716795377
+Spiroxamine_isomer2;0.0;0.007104002988166088;0.0;0.00017480204680075083;0.0010216435597824173;0.002851097216045308;0.0023585222923579946;0.04563164140423041;0.062060424971830085;0.004704091805731628;0.0033929678890089934;0.0;0.0;0.012910438747345408;0.02400420482468049;0.022503792800578813;0.005483666837418516;0.007021252884900874;0.006039165779004037;0.007832730113971929;0.002600620167735809;0.00331910461049723;0.005115508825004644;0.0033187865707123856;0.00013363369938883618;0.0021945055444028356;0.0017229303179583143;0.0025506660734356196;0.0020314335997419553;0.003550100107359511;0.00011615186167572745;0.002627123651920506;0.01871192743166935;8.861149561880248e-05;0.003991278337491356;0.00032315525764200896;0.019861019430331615;0.0007242000435767852;0.00013335538235779206;0.0035092068989091003;0.0008065367596876185;0.0009545828563694366;0.0012010470685565812;0.0;0.006135678287047026;0.013500875037529928;0.016823776322406395;0.015009983317043021;0.014575654305607632;0.0;0.0006493515445228114;0.00035862428508928463;0.00012473867198705047;0.0001664517883508573;0.0008122682113271795;0.0007840121749506851;0.0011405277705014384;0.0008858430972636175;0.0011402740627357833;0.0011174518860103194;0.0008292707934577571;0.0011571395158123442;0.0009695505525032584;0.0010082162222659432;0.0012081628570185616;0.000836029049880982;0.000921747334240887;0.0009497480638633887;0.0005572491861170993;0.0010412145983369617;0.0009638870446114182;0.0008743692364730621;0.0006866512065225833;0.0005597382887032936;0.06309137241477042;0.004808381903614732;0.0001254241301021291;0.0;0.00024330626633638314;0.019214758312007488;0.001638866222033643;0.0008651413692959305;0.0020273551333667077;0.00982815927854763;0.00098403592322775;0.0006678435807556686;0.005342198158472357;0.005742782319964263;0.001786158536278544;0.001299183375849572;0.0005812735097817139;0.002735164992526136;0.009060281063446142;0.00044709347821676493;0.0006354499485745749;0.0001310164806059139;7.93417670226914e-05;0.0015507146382452842;0.00048644920574698154;0.0008716785816094802;0.0068968196622267814;0.0014484027702940298;0.0029106721361903403;0.00417085151427037;0.003435602675507411;0.0006756398482509051;0.0005717445283443651;0.0;0.00038260769889402255;0.0011893527899493428;0.0013130358745139662;0.0012141528225876384;0.0031379502467739997;0.0016625544481827185;0.0018875328552680956;0.0048473424686419206;0.0056623204325695915;0.04308801127541501;0.02198334594206437;0.021377328196834425;0.00026648495220197655;0.00437096341540673;0.0025001264940973265;0.027981942458132316;0.011347307422072251;0.0001593401491184501;0.0012522329430747678;0.0015202947443253656;0.0032337866314566003;0.0013636659835850277;0.0027279784851470296;0.00961596791465813;0.0;0.009372737855438235;0.02244491945724948;0.0073838901922055585;0.007066942626452107;0.007181984289583338;0.0030365303060243096;0.005981603222063114;0.000943112334529101;0.0016498930359517732;0.004272333381751976;0.0;0.0029775650332475685;0.0;0.002434588895070565;0.0007027671136980052;0.0;0.007743513819157697;0.00011414695060087639;0.0001226354081377185;0.0009334660442736476;0.00022421129400380918;0.005927618990180585;0.007612223281664237;0.001713471973297206;0.002230996325132439;0.0020867172171019945;0.0011463813324265233;0.003523639818347529;0.005658256699823998;0.016549856825134476;0.005553128268690606;0.005603953312972171;0.009028366092394154;0.02545045956986323;0.004377605797060508;0.003305288929572394;0.012121938052037226;0.004900456636874874;0.003240700777557462;0.0017737026119709397;0.005140236112656275;0.002827308459044489;0.00048806461374071425;0.0004311448185443103;0.0;0.013956001342791445;0.001165777204496163;0.0018510565168947672;0.005155588968309617;0.003334653805164732;0.002001933315524932;0.0645698479618846;0.024862129593104045;7.588421279039165e-05;0.010839193203195707;0.005846490221563732;0.11624601426559589;0.0856076793958495;0.0007923227233722917;0.0631876131449056;0.0013115595981526387;0.001779539324870939;0.0038614518556502396;0.00403501604901447;0.0039190095313072024;0.03303362567097966;0.005965316979190613;0.006083192293640852;0.004331652108186902;0.005284764277601069;0.016745016692769163;0.00020602134233439588;0.00013106129731762757;0.001560175691711025;0.015954077841626006;0.01126676867258454;0.007321885545665666;0.002007772424738988;0.002373769542347487;0.006491992207532799;0.04275200814903576;0.30439064602755384;0.0030142134813833325;0.015576535974585939;0.005707678092567899;0.0;0.009407807727351523;0.001974822795999231;0.012613074965473783;0.0002639151773264231;0.004835770977217925;0.0044826947075823735;0.001572295340816499;0.0010564965340314303;0.0017378790576472606;0.0006229393225367713;0.011607374157978677;0.0008701269335264298;0.0011319773569611051;0.0013030774563960066;0.0009377848674927608;0.0009985182663008769;0.0011327095107231437;0.001322612500311216;0.003829617242656767;0.0017834487268914346;0.001018144846232344;0.058393169722991536;0.004888416646116234;0.0017290883184257536;0.00013503308776607217;0.02138570297363922;0.0425846778665204;0.00016935111578359158;0.009570657454680782;0.001774644243642734;0.001056851857673515;0.004816467883135513;0.00493196820329905;0.004805544826185127;0.0008200244350878456;0.00824394077515265;0.0;0.002758098221465527;0.00041989900823170763;0.0;0.00533491331157036;0.03954287799524124;0.001582451119556834;0.001488971042446412;0.0;0.8564776568867345;0.001755495236931498;0.02963496054208964;0.005213770451802229;0.005357202681699854;0.021083577744198636;0.04183931900756315;0.021986414497421714;0.01700384098607413;0.0005869800644096253;0.19468232146490644;0.0024715202913487373;0.0;0.0035112175892326653;0.0012508358236377898;0.0006529368982528607;0.011812969370555284;0.0019510211605205865;0.03921618135649056;0.002809708591909854;0.0007227228933240355;0.0025557457325057794;0.0019470298561532458;0.0002689195699015855;0.0;0.0059685495080721;0.012200500022069512;0.0011158895904763526;0.002145567304440834;0.01263873539392748;0.0003218516328724982;0.0;0.0007012238123051404;0.049716870602956986;0.0067623731434290095;0.0022817342163456295;0.0022423972789743295;0.00017124610440224155;0.051237878548637185;0.0066921783678169245;0.026851045385148157;0.0011760113714982302;0.0011912913146580422;0.1337381504870483;0.001959723546442839;0.0020198213116723925;0.039621391043621966;0.00047388586367377866;0.998427469896954;0.9999999999999997;0.0008635189348779798;0.0008965760534205261;0.05365415475131276;0.059010740971698845;0.00193018159555661;0.0032769021605553368;0.0004136471385266075;0.0008756255442955222;0.177318876042094;0.0013381944515859156;0.0032152070160051415;0.004745937725910232;0.00015540552252336714;0.00035363412121340473;0.00032984995340574574;0.004167801639504082;0.030049543593272256;0.0017914571825949647;0.001496777880782025;0.0017161964313809224;0.026537687618699513;0.007362674761213004;0.025303334290221538;0.0005860695990429558;0.0007381499524361339;0.0009193194257049971;0.0051208102938692995;0.013710845191262016;0.0019893401573930092;0.00271905888077138;0.003782840948875596;0.018382041579285704;0.004125099249401971;0.0003606219817739478;0.003715501423557102;0.00027998546607381676;0.0011979158971844935;0.018910417915109418;0.0015542258313828473;0.010130107557965668;0.2813028512041699;0.0010299428332611875;0.014157677343110882;0.0006192817101618792;0.014690353009204798;0.007185572962913204;0.0009926562627985789;0.007013456605950785;0.002133785022044216;0.02376908011538094;0.019692426330311905;0.029127985353576497;0.00018878693217002732;0.037768658373371795;0.025933092594505394;0.012032347888951014;0.030432264765628426;0.02795844834658062;0.01235444522141949;0.0;0.0025974097014964184;0.0029858355884629824;0.04885348576162653;0.06172489265890648;0.02642775613985594;0.009551208708182731;0.0016157048020198472;0.0007543419529452446;0.01592993102345337;0.017577602124713806;0.1635500874171271;0.29220597270428633
+Amitraz;0.18817433924441582;0.11820298628465775;0.12434355049185628;0.11891683793094322;0.12058450549228934;0.12703490450459132;0.062694176668185;0.12021231986201547;0.11960303463409912;0.12267030176544219;0.06804367378521017;0.13284152869151877;0.07215316426147833;0.12202812726513275;0.11838603023357694;0.11286917792334863;0.12318393375730108;0.12136549376931395;0.11766544959221008;0.12025362658347835;0.12168333746432795;0.11992256157810843;0.12126218897878066;0.12302479480071063;0.12683583309047414;0.031006876986584716;0.11167280746693538;0.0783116150099569;0.11646815988701077;0.23172443679418328;0.07506338308671279;0.05290041911149727;0.06453683539704709;0.09664776816603203;0.11829744257468983;0.15324590837010377;0.17326643847240156;0.0517090244758213;0.016862678445169938;0.0678687266438729;0.03192411679321507;0.08136158226933891;0.016984884859289232;0.0036366003952893306;0.06968038200603485;0.05883748596172193;0.07114039626636737;0.08133889829767035;0.05940445255990085;0.055635341508783215;0.04152183246191664;0.021709258528888192;0.005172484989921759;0.009021552706298586;0.07473139611350646;0.0797834638605068;0.05259315531657341;0.06153517071102767;0.04678153058525391;0.01990506701871434;0.04148167869692664;0.05583729446020855;0.07088733123604278;0.06814262379516957;0.04980340043930549;0.05767096649463082;0.06057143635071493;0.058145269204339975;0.05426776055860932;0.05482029810030962;0.050298445323158726;0.0354498145830163;0.08827088545354204;0.09647536281916191;0.0476972623693004;0.04243081095585221;0.020838125378255263;0.03230307417365729;0.0010706356320646935;0.014486836334227135;0.04101687274739831;0.03342060398042009;0.07473919911844903;0.07368549989713849;0.03437049307289245;0.017973198512140735;0.0234803892306916;0.03375253070475441;0.08266105790073493;0.004399376878135551;0.025010169986323248;0.02154760383479203;0.1728461190634623;0.00995874712741308;0.0114971214311306;0.07366701474507406;0.07658521475017223;0.0436396191365733;0.03412995725742774;0.025241811409253335;0.0934451421916265;0.02406545770624388;0.06595267293130408;0.09278567278132116;0.05894953534586642;0.07853824356696108;0.06910987630897739;0.07320352468074116;0.08678746346537736;0.09026523981869397;0.08512109091684521;0.08820297501781649;0.09821949625470569;0.08949191277568538;0.08564518764326065;0.015616262239095086;0.01510336167290813;0.01469716322871028;0.07039945939918317;0.04701741659093624;0.015289840072726471;0.024305744597378304;0.06568853348392771;0.027731456805408745;0.03867256623296714;0.017048049774093965;0.014827153025267034;0.07067205659075149;0.07035399851717031;0.1353764872135706;0.06417958995766787;0.1319032879920044;0.2458900750109117;0.08476643416126708;0.18835286009160707;0.12363852591906914;0.3555137857183587;0.12987135655192497;0.37373618602601555;0.32232927034431924;0.1790605832592232;0.3702965241197717;0.10737865467334733;0.11441592351577858;0.5228846281223701;0.07869049079340018;0.20041592800899635;0.05170989748827512;0.038280679548909596;0.0716748980936253;0.1942455068960804;0.12705772336676363;0.05770748092320112;0.0458655769692225;0.5339652979343846;0.2635429894455828;0.08631337177032526;0.04596200363536731;0.05737162704009877;0.020766325153094692;0.050319514257628956;0.021515964386251193;0.15044508301057577;0.009641561087960177;0.01988919579654427;0.023993319390345772;0.07315110088563126;0.003531548399894793;0.005229329312933082;0.10327914522361879;0.04138467979070767;0.019577300544832203;0.005412138259883926;0.005043448089415029;0.007822872211629004;0.03962694492443082;0.0066406391260621315;0.0075414988159067265;0.09531594199720585;0.14047293299992314;0.1270275050454871;0.019431385476407197;0.2587613366005655;0.149958647645034;0.025584425449582768;0.028225288600015053;0.10063342507174633;0.0;0.07680555700980678;0.09650609778766733;0.14050729593421984;0.10311938122179222;0.07851530019745323;0.09760259283606415;0.20717787047981379;0.0829830777510087;0.08087005645085199;0.09655010935084014;0.07786375721789929;0.06087603076421344;0.10833063885940183;0.06914138587270767;0.08759476146526383;0.13064222746168255;0.028265182616478198;0.1250850695732759;0.3266573941413428;0.07572597394754137;0.16627780142718918;0.3168039862228428;0.0058761615323683685;0.09263347008443001;0.16336042824017935;0.07667253056328696;0.35139624556461785;0.5003225081409036;0.08931190193021901;0.4142203613322183;0.03325130919148717;0.12713170976011115;0.1472319744935985;0.052904125219017495;0.008681720321939894;0.10086265929269489;0.08969450678798715;0.06193200878511758;0.08175573470017827;0.06247598418939585;0.07439761676169274;0.027601940674371647;0.038163850579072546;0.03486541264891916;0.056025319749243865;0.06255935126097398;0.018435553456411582;0.04974894677912715;0.03015862610296296;0.041604901311148045;0.04317627948104271;0.045095503189094895;0.4744686388741478;0.11993378144704882;0.1358955737958079;0.21893449884776683;0.07535375950777917;0.027358823998705574;0.0029476517231897775;0.002591692775453887;0.04649435809598807;0.018319791287578307;0.03576406277390146;0.03611900590495622;0.057653726367577394;0.11278682490879414;0.0548040332233841;0.04019125674707058;0.12352915008835268;0.07782670836898291;0.02978170629270701;0.037648447574016655;0.07479953115017275;0.09441224840157643;0.0003057264256695646;0.5148681074748938;0.13345963298937868;0.34542684267172763;0.07104616617213086;0.07181120204345828;0.0880580835531047;0.01876196493428224;0.06173006525870529;0.008833540045817403;0.30993984165609656;0.16199315479313176;0.009975676884263032;0.07780817815299845;0.001472605899950403;0.3532194250360519;0.2609460955351166;0.03351451050654912;0.06775206044249707;0.060810791037419425;0.07425140678560284;0.1376703063204103;0.0337631395533996;0.14764160384969102;0.002375248694556558;0.07993329241994539;0.0;0.09182308962506018;0.03889853706258793;0.026224243281792094;0.03191367064066451;0.07241125274331836;0.25444743086418886;0.032792527684973566;0.06774382190092072;0.3828931232364074;0.09761903035792407;0.6567167392839195;0.13034929433883619;0.3870794174941397;0.06684771907500757;0.014914677155267961;0.034276286923807124;0.08282977323226406;0.037864602985700546;0.008548414977572253;0.2759235946814029;0.0018827423697725303;0.022806830996205202;0.5904169203513172;0.0005667938297068008;0.0008635189348779798;0.9999999999999992;0.26385405645914806;0.12082170021795707;0.021016605300437;0.10420739207036277;0.014820128392015401;0.03292833566744656;0.03203680047092625;0.2063398756860565;0.08387908385384239;0.23000490865390585;0.07401751092384545;0.014165615067845567;0.015011185954687645;0.16221087916875118;0.04178821682618021;0.02351705321953921;0.13511934528137556;0.10064457215058775;0.09508819988326687;0.17337903281686512;0.057552981020096705;0.0744844768519695;0.5341277206176755;0.09888823873653078;0.352930964422651;0.12174457638938531;0.06426381068124849;0.0434084104408259;0.0003545494071725737;0.002264306532138332;0.00033691136256030867;0.0008051086128383878;0.007690873571812826;0.007008777542206171;0.01451816013822226;0.001769858022979295;0.002782584084373475;0.04959867269833297;0.18841462141923346;0.27782968099732125;0.029950568009932555;0.006309110632580326;0.03719937817995919;0.26408872037854186;0.016976810097532713;0.17858830884839824;0.07660441319145173;0.01114072959424367;0.0776007123023338;0.20651748602712805;0.06901140204412368;0.0004350064685539358;0.04558856670817642;0.03256228548348846;0.0665756481009436;0.14111974681372882;0.02149124457031963;0.07053763756093799;0.12087381105205625;0.16240079962920578;0.16447652389960596;0.02493592060296549;0.15290999268073754;0.2126231815892687;0.15180691630199128;0.03551556847109679;0.019217938923374825;0.21119271867728595;0.21263988354169389;0.30929792866051165;0.3204987910247821
+Tebufenpyrad;0.2992256444934002;0.2780880041669092;0.28566772062402745;0.28138494565113625;0.28495103141290173;0.2942982713500101;0.1531760587268894;0.2851335159994114;0.2839506890385483;0.32250516356929787;0.49226731282908537;0.29614808845750085;0.17250653692785753;0.2826258087450516;0.28032102121351304;0.2675125207714393;0.29017598508389947;0.285909734107263;0.27682455330880357;0.2830266786506063;0.34112889447907047;0.340618763942039;0.34083109727885424;0.3429642306262079;0.2976887154606531;0.004507155115622243;0.16229970479635988;0.4290800069523507;0.5612424091058812;0.24755735101605122;0.3281275535968234;0.12857138639832785;0.1276040346564682;0.21662544634651063;0.23814890459937668;0.35562937032209496;0.38026994474358605;0.5751813138385398;0.01171668695847011;0.314413288629414;0.08649474948883468;0.2352815959639787;0.08567852541510147;0.00027224749672762494;0.17515565312295317;0.06022081028528366;0.06176160305062821;0.05865333441868144;0.06473165764170488;0.19975308652903126;0.1615512408889383;0.057637851993201955;0.0179223628003096;0.021168522863063047;0.16558395897182576;0.2414513375812445;0.14550200460786097;0.18588762468834316;0.13892595855818554;0.01051612141773156;0.10731465240648194;0.16759800625063356;0.2049901946396034;0.2035444744701223;0.1410959411898695;0.1759346849780517;0.18385400821304188;0.14391370332480088;0.13978462155443824;0.14220135657345773;0.13745578299452899;0.1083538362960742;0.02595177024490842;0.04042133293614551;0.15860457300809347;0.13638556667364474;0.007980638918636273;0.008426091070185866;0.013523169758363107;0.03793230906669037;0.019473578176340718;0.016151845832007784;0.014251500570494523;0.0567444878947593;0.0818805331072986;0.06913478272324262;0.025713519721940636;0.025017720100554506;0.08667534408916502;0.010911156706122983;0.009724511064359741;0.041991060905331244;0.04304365830626954;0.01732613649267219;0.022339360541856593;0.03304685807946648;0.031780262084558385;0.037888673169417346;0.05131668204764232;0.03345780271219269;0.07629897495158391;0.10733349968796674;0.12048595476005955;0.04937016824393497;0.041863519087515136;0.23673331429345326;0.19219077409786026;0.2076043361976172;0.2108094018178731;0.2540063883311083;0.247771995821125;0.23954243525010915;0.3028571297226087;0.23959656021807735;0.24512226301593865;0.045596276654386265;0.04372432239019041;0.10202439281970412;0.19478321441699845;0.041333899048403296;0.01682782065664611;0.05711074623038615;0.18787300600723325;0.051538508376749975;0.010505640742915774;0.007068975746477024;0.014447143699286302;0.020628221874546274;0.021589346622954152;0.02894626686549742;0.07098554345694649;0.18797485275705683;0.2190104369629424;0.2832386364948792;0.3005074072942374;0.19648897331335521;0.6087046401886363;0.14082030208593377;0.4494306562565888;0.4408712409056;0.14770327275466436;0.41928840746005275;0.1887810113685296;0.09994619411815643;0.3970479896279196;0.06486559679055445;0.14998804036211805;0.08548134957369947;0.3134931167017374;0.28985781258878923;0.2854189437297873;0.2841322213206651;0.09589011432755892;0.1307192478389961;0.30284815520290487;0.501275394208701;0.65651783972348;0.6525953698411676;0.6029969099364921;0.19704551647976093;0.610151541540896;0.0063888248309934125;0.31658244565777516;0.04240945638817856;0.04138686073265232;0.03783796143380733;0.05099284614886815;0.03482700346759242;0.04396934048168689;0.12871460857175024;0.04977780970074009;0.034504304559082925;0.009196887799951396;0.01353026644102735;0.019888236937273807;0.5326394362896029;0.024415375282599013;0.04334958484928356;0.2582423867276272;0.27297710907746947;0.2502411161666107;0.007294445315663384;0.24718157422692888;0.39908951498628836;0.08488344276986265;0.10627567883051729;0.035203955675415864;0.0;0.17595859308350995;0.29894027451674426;0.3313740260005289;0.23598623549538955;0.2168780929577765;0.3690737711863367;0.30027388945449346;0.21085833607751242;0.2061927544183698;0.5382267494628673;0.49502131530691396;0.5625856443501266;0.5015683512430841;0.5637808796635588;0.5447489913113613;0.45964881416495285;0.1695297183660665;0.319779273346678;0.5594347825867019;0.157226725028157;0.03613275061808157;0.09782972500127829;0.010179093501095643;0.18386991390803087;0.6573515127843707;0.16608672824210566;0.10883360424416848;0.18885209009842183;0.1610904793776648;0.1604177414699695;0.007200313802748945;0.3015150591614761;0.6322623872535366;0.04819635159173613;0.015968168028021153;0.2683027767785128;0.25493910580157925;0.19199316970663918;0.24486432627035953;0.17718068136968035;0.22103996857092933;0.10654127795847768;0.11246190705364066;0.10288115158320733;0.16091948536132203;0.19060382402898904;0.06879838453142104;0.13016099972386724;0.1577559487219421;0.264514521003413;0.15547846148786348;0.13092539281610677;0.21022179468753277;0.2623754239980178;0.27190499647847655;0.03675006308456011;0.03622184694732687;0.329371346311446;0.0008445338138911449;0.0038922875620818944;0.03542501538017599;0.02411783412868151;0.07537890033144141;0.07464513045998332;0.03481013155087393;0.3186061049805727;0.231479195692244;0.019728553075176975;0.15122489426742122;0.1723058438259954;0.2932038350685235;0.6013112164624509;0.05261702327937536;0.1201418083434702;0.06975830613802449;0.042692393613591485;0.0438849712329693;0.023547712042652026;0.14418584504792714;0.3151449285121454;0.15585568682742007;0.05032439229762917;0.023561466567816474;0.1312453737311124;0.12478707121867041;0.3352667739977264;0.04001007508528403;0.12252959958113639;0.006144964089533663;0.12031806083088833;0.0037258000322605393;0.01876533698928116;0.060538086829955165;0.03147350730038181;0.0522019745070247;0.6217918789678019;0.16334135487032245;0.04384108975701504;0.009956414508413386;0.27615247092758144;0.0;0.05612347776247943;0.0390315885798219;0.07236375896976298;0.25482847644273976;0.032155296635738774;0.12235763045838195;0.08234881110703281;0.10559465967561693;0.16728397864958022;0.07167640305802231;0.15207497197811023;0.2738525164048691;0.6224329008747258;0.5689384996075381;0.01975376388897969;0.08928754360972682;0.01657217230431769;0.07702959077656016;0.036673452153962297;0.18053919814984523;0.0014939631238126787;0.17683124685062995;0.22097891066058944;0.08035845935255503;0.0008965760534205261;0.26385405645914806;1.0;0.2621108477002026;0.41890401543889205;0.19266811014217;0.1600059655806745;0.013169523196558747;0.057520916950899455;0.26846588611801075;0.13975891192825585;0.10904710383984824;0.02236978206700257;0.32564147621253714;0.027243368078613505;0.20676322570659766;0.5421733986793124;0.1158831384119302;0.6019943047313877;0.1445157969064303;0.12400894057227933;0.06995339134297089;0.15921637821501966;0.050413309877272834;0.13543868330483652;0.22420453711931232;0.2612841622504507;0.36584131445751666;0.1914870522583233;0.400829124160349;0.09388070819350354;0.07805355266909306;0.1494977306915056;0.1520178338164508;0.008321190061743132;0.09365755482062874;0.020375322991990484;0.006337681208238461;0.007194576313831614;0.025761716832963216;0.07428571187936726;0.20120907223212955;0.05018894827991119;0.012173091636880002;0.09975364583802718;0.009580763162942266;0.05414366359739322;0.08681189517604672;0.016114701474656296;0.009667186574834404;0.17651845427176774;0.1401748766469298;0.011927913089683965;0.08516663046205063;0.0423307608984839;0.05029985563402041;0.09345122576107277;0.10658346082098277;0.03500825465662209;0.06391374783021388;0.2891710312334714;0.03259386113515312;0.04431393013358835;0.07369485724918994;0.11872497242452412;0.2612527565412788;0.2093298709682237;0.5240683167479301;0.010145900024955776;0.4372755633079219;0.39639919785591715;0.32690733643008596;0.23075740046511872
+Fludioxonil;0.8224562269496215;0.8237389581044458;0.8544634711038533;0.835151774121609;0.8429313587996995;0.8505208162166188;0.5254222855745521;0.8467057651192881;0.84374824012649;0.8559237132076518;0.3207646314095526;0.8482091194367483;0.506778510267424;0.837533315689777;0.8277904490470908;0.7920820208308958;0.8601784344711737;0.8457206385783661;0.8186142807594995;0.8383412113333063;0.8484087381604906;0.8333010228072654;0.8192020653673777;0.857648895600983;0.8391216920168642;0.005143254810797875;0.4169787803620893;0.2735158913031248;0.2128349602557456;0.23609626132500236;0.14906177699410605;0.178676704196848;0.3085981980014281;0.6366580614280076;0.4844418673159249;0.8662969550529029;0.3446359225716305;0.13481860559794392;0.012824364224369035;0.47699114738140164;0.21547680437960443;0.5289228206156704;0.10173895322895048;0.0;0.011183552549202848;0.008460424635152333;0.009303006383028927;0.008941911217321031;0.009025112710651503;0.3954308122300175;0.30534754152281135;0.4663827655851028;0.14620686224571494;0.09138860785909392;0.24280463997747512;0.5477845564298006;0.31025558756743093;0.40227653051690043;0.2846821012371893;0.01993663179492698;0.25306825347904355;0.3478364470327707;0.4496142735320591;0.4414630412645554;0.3082946699090763;0.3853195530390255;0.399635419297624;0.306022465560945;0.30774730978579506;0.3028889286635491;0.27926994589261017;0.23664268034034214;0.012388744359816378;0.027082872857993726;0.04598972733359988;0.045459926866258604;0.005007214540205896;0.0038284095298609933;0.040685317908092995;0.06718664909992567;0.06508027585302073;0.059868809714946895;0.03097538168657148;0.031235082645160155;0.052403701909902164;0.01877422108020007;0.12139787218659756;0.10984445149214885;0.041707281709794264;0.1128525108905255;0.04864039201125072;0.054123866065963366;0.1336295919133655;0.12376506944717384;0.14148924554757483;0.03902040177397054;0.01180767977303258;0.11972754246310456;0.21901104476862512;0.20668000029808764;0.2219528989925286;0.14220617886982115;0.1695094463916374;0.03491628276906667;0.15057122010266857;0.5558559471291863;0.4984866580650067;0.5248514707234105;0.5305631374645249;0.6309490886291762;0.5930924482461662;0.5439924392474447;0.638291747175629;0.628090331986662;0.6067736436586233;0.09092056660602545;0.08320452972615307;0.12259039217144818;0.48501358626895247;0.09307624168788396;0.19619434934071894;0.10613817598226025;0.46237818333436287;0.03791240523248788;0.0022530080716254446;0.0016620656226422857;0.002209346975568604;0.0017302731079709595;0.0022661852219651606;0.0028103745833171555;0.02495684106042216;0.01986485702985294;0.16025839093097405;0.02015473139693288;0.8707352400532139;0.039076642080119316;0.03556818028946548;0.021717279449600807;0.6102675650960674;0.6989548543040333;0.2808317284170738;0.5735759212619151;0.08669217472821722;0.22705559298889857;0.45997200033685065;0.1855792738185917;0.03471748510459713;0.0326496962349718;0.06571093828083807;0.06854733640165127;0.39459638725362006;0.02217793063048771;0.015390990134349615;0.00185642920288797;0.547468963152351;0.3015248703236641;0.3416201690013366;0.12209027493495751;0.14567900947386425;0.018500799027556965;0.16523570701681511;0.04357641927434483;0.0058939539956441985;0.03767288921913579;0.029057837034543225;0.033360742047260916;0.057049934543030006;0.020387714144829476;0.02904502180801796;0.030406931995919727;0.047693163311447836;0.4171783410613518;0.011973640894096714;0.05923738926442245;0.0920649477828124;0.11403759865236436;0.0440278985194285;0.038321004479051735;0.31758430349140615;0.6734997114422122;0.6628755863822549;0.026801414923489388;0.3015335755759068;0.7873285528635154;0.10159902325148991;0.13386510559663914;0.02979646604512728;0.036994538477510414;0.4933383875526827;0.5733922807867101;0.6653371442560405;0.6362352959100757;0.39695648042300513;0.6383883769833655;0.49292699174336646;0.576076944750415;0.5601596527949939;0.6197358105793676;0.4444975884100139;0.3608370245783846;0.6719543179574428;0.37858068766045655;0.5614768643173913;0.6243241283017334;0.06427481880898746;0.8783453631571274;0.5804490583000358;0.13953181486098226;0.02452617744001144;0.05963997302494585;0.14508669617450365;0.4751643931670095;0.21836954061850208;0.3524292510948947;0.027305036244470844;0.37033344159432197;0.5716689934967626;0.09496145289667338;0.010529543966685788;0.01715365936697539;0.09563376393394273;0.12477158569156814;0.02595767342991406;0.7575079714248715;0.6270726475159739;0.4022753283353793;0.5530909578091223;0.36655196422878844;0.47796854822838325;0.2547981833015461;0.26206139545887963;0.2436751531371475;0.3624045199962279;0.4193303813002369;0.166301957534958;0.2703506088920933;0.18590989174586178;0.21803607881728929;0.2566212944280653;0.2787722949566549;0.18354726880889147;0.05504318536610551;0.03368619263290111;0.016991588941390866;0.04906864185713994;0.003318044876556418;0.3159919193150139;0.34682657271304057;0.34820609503099204;0.01581681621149476;0.16215261612833728;0.16462731432578093;0.029018539414302085;0.7572307292228542;0.02763484953706426;0.022604975067543047;0.017687362332257657;0.4483189525718015;0.06643592915970206;0.16171364917100575;0.004802031702619898;0.19616036310276644;0.0;0.0009568058858466219;0.17007455887557085;0.003043657642111589;0.3236300675480915;0.32941507509091417;0.5065431481109393;0.1316770589697049;0.018815623804528385;0.030100395322558756;0.3156302801403186;0.002782398598702411;0.12659753979459065;0.3302073175091205;0.011318683744906483;0.0026250951233105064;0.0010246130269324135;0.0017858919879362022;0.005339695735663412;0.037568931647388414;0.004794394996899336;0.6371351846459069;0.0209940709858779;0.059415824992703786;0.010993476270098557;0.3213265607886245;0.021063802883913747;0.021264866198127664;0.10531116337694774;0.11858368726617476;0.09959254037674489;0.034633921084422425;0.012942754144737988;0.19220816957896905;0.17223267164683584;0.054268267854063544;0.08177527665439413;0.03487294749293619;0.020017593803998913;0.0013123039500506724;0.30438955401494944;0.06567675669372948;0.23240206382126838;0.017550089407386074;0.12304616966270199;0.11525688654639102;0.008147230437102176;0.00044168811707756534;0.08435188278431632;0.007290577774204183;0.05033059729183048;0.05365415475131276;0.12082170021795707;0.2621108477002026;0.9999999999999996;0.14861143017063716;0.13336547220700382;0.1678235788338993;0.14345652212468116;0.13210198154736513;0.0978865986381783;0.3513395472671438;0.17276853281606816;0.012499013861019976;0.00163996218513392;0.0066867506686202685;0.005013381432569507;0.019456347492888153;0.0296107381972013;0.4805479956037145;0.06497632243939465;0.05664174889483945;0.09245671498475924;0.2039351271179229;0.04216348248378461;0.026140769263081946;0.5814360238007015;0.7294925321338152;0.7919250366516778;0.3465096472088945;0.12876665627461492;0.0023519405481693735;0.005190970126425679;0.000950947946854959;0.0006090053324206147;0.038936755027572295;0.0365344483612461;0.0048590808537377905;0.003939269076162689;0.004903301122460179;0.006936035396886297;0.03216902869361164;0.11939989005185601;0.0643448426399158;0.0009538238155543841;0.04840588257830329;0.0041892734265405055;0.05370536495810325;0.1399558735918669;0.07108243335312837;0.6664625856124987;0.014594050131199328;0.0016508731777541523;0.07879766571592695;0.0018577671379209724;0.05761441108687032;0.05078088624435906;0.1415556844293015;0.08692992130347857;0.11907200021123793;0.14172421694521922;0.8224259232426876;0.06488130326318367;0.06725821896662319;0.05095749085217767;0.031955856838756215;0.23011501989067484;0.18796666836149656;0.08384414468360203;0.0012940768350158684;0.6997259294711642;0.7059756039557669;0.15672784671936557;0.16013387140172308
+Terbumeton;0.05893542815215096;0.06307440977234365;0.05549681058114104;0.06590474407819351;0.06840010148037567;0.08980164449757376;0.2112473803383124;0.05952109987115194;0.05917617758146894;0.09906775859346553;0.5487242874247077;0.06686499268008458;0.03340728446600252;0.06417711157036636;0.05677985005465168;0.05686640388498671;0.061846904294792206;0.06288720155458496;0.061180386372510484;0.0634816882825974;0.05637105679227463;0.057092017756313444;0.07241259490299339;0.06149345276868791;0.0698088993853367;0.04131657199967395;0.04495925630736738;0.4138129407713774;0.634321586823556;0.08551105244254145;0.321045489812501;0.02777631464351049;0.1447639137740579;0.04436096789850126;0.05521484887954021;0.14451585255340946;0.531201836408417;0.6579807868291053;0.35099372232612336;0.03287547796713146;0.013144569171438407;0.05035315902732992;0.1688471939005611;0.0003342635385898269;0.03147233467542128;0.03668676267612972;0.03984611415140859;0.03746267711605893;0.037269089274821116;0.026752281886997454;0.020961417223860423;0.01050996628498466;0.010685351740257254;0.0028662081126169404;0.02972643099159835;0.051571556430211725;0.020721286161368768;0.025056881436660627;0.018241914684599136;0.005602035740869678;0.015488185563428885;0.027640170934812695;0.03185859503777487;0.031111556553474987;0.021146613380547137;0.02365147818125819;0.025815620419089066;0.019703598040171067;0.018988659179104125;0.0195723816779196;0.018090262244111564;0.01338668964987988;0.007263805254121303;0.012119056326765397;0.050365462136248935;0.03719357157627966;0.00563800262444358;0.001125728197080871;0.013481728914544806;0.16392540600328712;0.08090627786514355;0.07998076919172784;0.05578724261028741;0.05201152607941144;0.052754500404924735;0.0525163162478716;0.1435223858360612;0.1323859210118094;0.0469818336940271;0.00933820563308776;0.0951929526801558;0.03156210484878242;0.011663470482116437;0.06965415537325458;0.08337234282247818;0.013136422820123932;0.01211072495720618;0.07500391652431758;0.0699189088201886;0.028362973290985815;0.14859887422321175;0.037608823147345635;0.035132238471608075;0.017099094631149486;0.05908279494271502;0.03912819619256449;0.03350900262174403;0.034656958412038974;0.034138408148571664;0.04131168724046723;0.03924125753208127;0.038066311250460935;0.04180301829033973;0.04260676286039312;0.04110723474160907;0.008717530181009354;0.008240028811552804;0.058799995857275134;0.0334185402725921;0.030794300855922434;0.003202876002754131;0.005415065945298255;0.03221180964623913;0.0554885418647524;0.026214521011772608;0.0016862407553192669;0.0025656564234000944;0.0011143957784299852;0.012535193093929755;0.0011047365144103939;0.009654932421459284;0.25116691665981594;0.03385859615177514;0.39278953773769454;0.07338098694718427;0.027559202719946087;0.5933247522669067;0.2012903581237431;0.25207797917391206;0.21491413348326735;0.05051902518656447;0.34916435651519234;0.1809017775600004;0.023257838500260242;0.2027926312464878;0.014547506975992702;0.010416114926684051;0.0159097976757728;0.2995058683238002;0.38857355810518357;0.23723332848918818;0.222870121602338;0.4922599691591749;0.1293222805394799;0.10523995297996479;0.5562013542520103;0.7165448092914788;0.7077717691138634;0.7398242872789138;0.031283211745235864;0.6540021143713317;0.050565155522787696;0.026095964452564867;0.027002526823268497;0.01403399096300208;0.009379896306463768;0.01947740848684881;0.009566754989034714;0.01112030698590415;0.1479933438299457;0.03643963924522916;0.010026490948182193;0.03828223653380436;0.0061687356496969;0.004675058001000917;0.6506842608598512;0.06392360884476322;0.02977516836398062;0.06525875571610865;0.06710603172942897;0.0498683625187754;0.06240128773054184;0.049751271340461166;0.17311072977891132;0.09780192019804307;0.1461263345623364;0.0194130130878458;0.003584530723827409;0.15491035637660375;0.3916404868265596;0.3562419597470681;0.06636538793460302;0.1533315270501779;0.2166312109242198;0.36241779011012554;0.12594260631168452;0.12443404928976341;0.5001608550186739;0.6210956470909604;0.6221076606240196;0.43996308801037176;0.5984204192757854;0.5373707538458048;0.386508958079891;0.06408832932563636;0.6543218722207431;0.4120614142847988;0.10630815371539996;0.04037602266947053;0.022347574758540874;0.010643720654172281;0.13217891605959867;0.5936219542553107;0.14171670755044166;0.06348104640751233;0.0282269705815402;0.07628104336220135;0.022559294731389942;0.00016470167891890222;0.15395426115680988;0.8217239089580635;0.29281744709278656;0.002025287799835282;0.08002513048990434;0.06493137011786793;0.04236790997490616;0.04686233518347453;0.031617064381293226;0.03576975430509881;0.017854961338067875;0.016311793381503816;0.015769057878545153;0.024571086968898988;0.02709865689811472;0.009439594903145146;0.019341232796438738;0.05314915779993673;0.11998919643965082;0.04238831758929685;0.019354951876173466;0.02753859233825826;0.16211790243600913;0.16714609352345525;0.02893854406477841;0.08796055103595585;0.179709536849328;0.03113843077399139;0.03150316594623179;0.08035560830020563;0.024278087551101217;0.07025145256770685;0.07080608849496096;0.05772891924284679;0.05146595943146354;0.09835900442114553;0.04185692706981261;0.04238873420155191;0.13639461266170674;0.18193386838788825;0.6482689739591867;0.005987716884247996;0.03560541527952507;0.6387845097051321;0.0037412993878064614;0.05105118426195446;0.06657955309131736;0.10661441696644766;0.04818594985926832;0.14841215335964056;0.06587338023245608;0.021671319407708493;0.1358909417180278;0.1764821759215276;0.20023752204032658;0.18027999023065508;0.32393027776535405;0.10632342552721087;0.0828312879930992;0.0022704609096602622;0.003285939398457259;0.015191327113566518;0.009956657938519234;0.006008562512285501;0.4926312787458053;0.16750795098880322;0.0018395469375626714;0.032522404603864005;0.08972124988628434;0.02656581628813761;0.014365823397370756;0.03346230840475105;0.03130691280895853;0.008612471875707177;0.011304402044174234;0.0014506383221908868;0.030092646211533236;0.1481707343214549;0.031061578258363635;0.05115242560046267;0.02050210441354219;0.011552368436431131;0.0015421832668422425;0.545388901038577;0.03043092015228929;0.02440173593368169;0.03781736803571415;0.012508303441079976;0.09414990926780631;0.007956550493334002;0.03794979316863503;0.4046669008316802;0.00130002959713806;0.05538168952703116;0.059010740971698845;0.021016605300437;0.41890401543889205;0.14861143017063716;0.9999999999999986;0.025602681759083534;0.02204128056117873;0.02927088024495114;0.058903433533600294;0.12994381168623584;0.025478836049755326;0.041866899961621816;0.07394713935326513;0.20524313888109294;0.021503488624513428;0.010237693920899115;0.6495076750651109;0.11093567400748913;0.4491928706298125;0.03937736714475628;0.026251493220528162;0.049642913040796;0.02454585156448298;0.04259676932204504;0.03273018059169048;0.0415716743970453;0.05276623061912198;0.20848676750390982;0.034156103924360096;0.9660220950337177;0.13492555633797282;0.1507034054813775;0.005743149106317208;0.008521463922936477;0.051975903313897315;0.1056416879975958;0.010195154248729405;0.003793898656907107;0.006862433344036373;0.009357235196443738;0.0323630973269861;0.17881430926812797;0.057440979183299955;0.0027579055912157254;0.04354739034285101;0.018575361616221215;0.025081319769572126;0.059099259558749916;0.10627281827787684;0.00757709395238927;0.06261154279409381;0.024632564238919002;0.042946400496953765;0.010854368369529892;0.15681121930767716;0.16742465535166165;0.09876453900492774;0.08313465847856309;0.08009955575320621;0.11350454607280873;0.09627271771829592;0.026554436370589272;0.025252329775342825;0.049107252951566864;0.0901545033560827;0.08187311695442147;0.08431197952862395;0.6593451288832364;0.3634374192089165;0.18832695610577085;0.1322444449477805;0.2355651449317592;0.1031810078648983
+Rotenone;0.14263201901652325;0.14538713841810277;0.14980476195008022;0.16655609776699432;0.16570665229452877;0.15392416931590533;0.07801455615073778;0.14554028271624436;0.14449968693585982;0.14845249882615102;0.12724397485623856;0.14691447700840776;0.08725501423795642;0.14919832316097326;0.1453086258296787;0.14011232073310498;0.15127458269870708;0.14942652716556312;0.14506805922861968;0.14870724054903553;0.15478920576000488;0.15074735216045365;0.1716022273742598;0.1525091787681603;0.1577281610605588;0.010666999490610897;0.10307186602562092;0.07754699153898086;0.10485865800495794;0.07087321850037881;0.03700280576348265;0.05467593389929844;0.0929239051931062;0.8662998906287304;0.09153596274963019;0.14942531219493202;0.09732607197059877;0.03271640383619406;0.01253630814359341;0.08487834753086487;0.025831282297067094;0.09768869162430618;0.03501515377096266;8.782138552636436e-05;0.007901833714765504;0.009022673087256659;0.010926928536699302;0.005695546217256326;0.008203456156310561;0.06708809340480809;0.050315523341518564;0.030501279263255666;0.022367347709559494;0.010610773639447943;0.0512879527718175;0.09907352995277484;0.050739987481180374;0.06744481301790933;0.04551992921378374;0.0038119196097227658;0.03372593118998373;0.06325409346724827;0.08356763011761095;0.07864812604220407;0.050488644548915294;0.06419662697725287;0.06705070540387148;0.04849274638390076;0.047651344307803566;0.048053650786121914;0.043861371773762405;0.03169000293015366;0.09135388423153536;0.1020210338542311;0.07293483701901764;0.05657593909145049;0.0199363208834353;0.03694586809016144;0.07733008289761872;0.04171617432787367;0.06967750513293738;0.06785722069255569;0.08853086000232836;0.08351544498328807;0.039155726009566766;0.023253899923204396;0.019849948259782247;0.030406705672670956;0.09806790427116635;0.02649380664624081;0.031309786281324054;0.16893653393722308;0.03543393795664829;0.012550106719826818;0.01682158270542705;0.0978904012660154;0.08884510297030603;0.04037424882850377;0.035744149084632804;0.06495430056738857;0.10473920749041997;0.28713993180468894;0.35669410187571987;0.08484469140073506;0.10439240708855685;0.09516047155785348;0.08535999000438248;0.08889093741373925;0.09255192652580785;0.110948668062361;0.10383942028633358;0.09656856983999147;0.11214649376482584;0.10833464296982455;0.10431918274161922;0.02411473351501424;0.023976099172108137;0.022177670500662636;0.08531664189621578;0.041904462711837835;0.018956236995166856;0.031011007009604262;0.07992325962762431;0.02186940463090357;0.021720863832105683;0.009459158320446496;0.014647031282593866;0.027230855382002508;0.027006950087730366;0.027945100455880802;0.04352766451086496;0.03245314775306505;0.07256382580611746;0.07903558778361722;0.15122051314034762;0.0317104207989494;0.0448852473869027;0.03900652864500886;0.17933799929611194;0.1781092046339633;0.12102856388007414;0.1561816126469345;0.04607494348129104;0.06299564194679488;0.1319219339632377;0.035142679835451336;0.5436754858705424;0.021216047036488536;0.1535978298864068;0.07323386560287401;0.06800062708736587;0.07137627329355464;0.08331817956147897;0.5969798747902872;0.13837349712152333;0.4767074027416871;0.06569751010198632;0.022621212772982322;0.027542320651999106;0.009815110194660215;0.02849556715309087;0.008063364057851049;0.03963105973221636;0.009135273302246541;0.01639708326081323;0.013547339981523184;0.02594591269205912;0.004578111576960793;0.006164479988494378;0.05840028366140345;0.033726181375191865;0.02406060462867839;0.0026260044211773833;0.009200286932268792;0.007744058818278561;0.024951719890661327;0.0009885542858382825;0.045327110770033985;0.46985808370993537;0.2574472144374527;0.21539422395938226;0.007393369905321198;0.07086301715478777;0.3022144420541221;0.14113129649118028;0.010177492264435865;0.03249769343231125;0.0003867872745095628;0.08645879314037604;0.09926458886823926;0.12850204248189015;0.11444432553273294;0.06737311179586757;0.11290425285182114;0.11023867173348728;0.10292321247587632;0.0999431323909955;0.10457348138871028;0.0863062290448273;0.059785376736168766;0.11246823442527147;0.0660464122152568;0.09350055581178963;0.10821339426859028;0.09278232042522729;0.15133236125657662;0.1881130163558003;0.05781165223219103;0.017087454087009252;0.021190399356522553;0.008182622164271142;0.09263360883107838;0.053620076199387225;0.053032164161280586;0.08425967471065969;0.065902724957239;0.0933998989849494;0.20097324592180174;0.019329674555399582;0.00698273888620864;0.03498312657792554;0.017017339517591223;0.032748505784579385;0.1441861076542269;0.11434902663368524;0.07924137783160028;0.10065029566543317;0.06570225081394465;0.08501725451590017;0.03279497801698158;0.03490996762327736;0.03105371817607395;0.057787123349826996;0.0692163042292505;0.020390148905228965;0.04252623539609917;0.035890967286539024;0.042981000678421755;0.049681728180058754;0.04294875213670159;0.06370559718700834;0.03238746200661374;0.040787134409060864;0.034778441326101556;0.02607365316200227;0.006576811220972419;0.13444260921619847;0.03464391714841521;0.1072805134883642;0.01139095231551482;0.03247397119403294;0.032825514264155226;0.005830082072787701;0.15474135623459417;0.03003850864876761;0.03352099698827213;0.0794658537087439;0.08192000839990701;0.013207144521381511;0.028947573270759155;0.01819341248273808;0.0675652108324179;0.028582604018402583;0.003957711832640508;0.017281959985126903;0.06399709790341349;0.07007367702720944;0.06338415705221136;0.07991703726875271;0.030497159607283147;0.032971529239784976;0.005607018336894695;0.04406438472401928;0.06574664062892223;0.018228603174314285;0.06983376159732678;0.0023532241383135803;0.05781861716941928;0.05449032507802465;0.02276384012364469;0.0241962062799274;0.09307737947519118;0.01797870589972875;0.11599414547783743;0.04735719985758128;0.02360804349100916;0.048681085582025274;0.7335565663366632;0.0012299213621712233;0.015931063348799693;0.01215166002339418;0.13755788341040753;0.016809749356698395;0.12766946949411093;0.018435476478853064;0.03186997522376988;0.03328399380979847;0.21348825569751625;0.01886184717300327;0.04158373658000365;0.02358988436338225;0.11907782671282334;0.05954604729744204;0.019819022666639173;0.03814396995768808;0.03468623172189938;0.02528712920233036;0.021653371888405715;0.04778119256526924;0.007481632989868796;0.015840467005695844;0.004913271928214673;0.0016742243163508277;0.00193018159555661;0.10420739207036277;0.19266811014217;0.13336547220700382;0.025602681759083534;1.0;0.012687972124225544;0.02785731406083395;0.13476559128026466;0.10536989351247841;0.06009170614075783;0.07125162304335325;0.025741279747095853;0.01937316399603172;0.050625026213181566;0.7562179526845487;0.03286641065578623;0.004191856260526746;0.09194756483597898;0.05563890381887223;0.05786656887106745;0.06390168241566058;0.06358203960822986;0.06448151492168577;0.18620432197589268;0.1029716613914533;0.16071805612152154;0.14368392037408365;0.075979064833858;0.024862147084170918;0.003331420042672097;0.00761655726948601;0.01865385842103555;0.01726032856338449;0.004710346147739207;0.002267416041080555;0.019521387561425563;0.06960656334510223;0.011747245219222088;0.011351250367004753;0.6525430681220846;0.052794164094889295;0.09526255073831846;0.0032250036632366615;0.0076464151494716965;0.04745350038692723;0.03460687481498382;0.12206626279443596;0.020650835677703955;0.0485260608674674;0.2602817806348779;0.0060698223903939965;0.035751677828244864;0.02340204026744924;0.02812706732768;0.0589820167493297;0.1323481974566969;0.07408491990686356;0.054159309674301825;0.08629406995447492;0.14076938092245295;0.005341431631438972;0.008959437665027487;0.04395760936975627;0.041563127635073235;0.11469103500801862;0.06757307790463554;0.017632230637125476;0.03067930028201162;0.14268800901023088;0.13888264736647776;0.24896895819609463;0.11609557607181138
+Enilconazole;0.0036848741571449068;0.0018083537661844928;0.0004453836665472735;0.01000706144998074;0.009732860893619199;0.00417827706593105;0.006562034971991116;0.013960480414345186;0.012898053940131163;0.02934740784150951;0.03501707937308536;0.0028302887965156887;0.3032097915085894;0.0021509040164145706;0.0011409460161998476;0.0014717787121433321;0.0007754228117668487;0.0012917222935231835;0.0019240714048979026;0.0016366940312838752;0.006395527174166278;0.006153057955980075;0.01440733542124;0.003556962029885806;0.013781103397562947;0.018409824862382348;0.028873639525471253;0.046153139066626735;0.01425190008723719;0.02325028084551949;0.05726014232973743;0.011148888206545199;0.06636203945204304;0.004790113058029723;0.048383174738395124;0.02303105140098816;0.08792082376932452;0.0019101735604707944;0.000384655899630323;0.03745127505405509;0.020324292414958946;0.005522588409211776;0.012667863501069554;0.0;0.15415166547248424;0.13719453632276035;0.14073484645341228;0.13747918114477153;0.14266512059683112;0.006613694172341986;0.008246619242865898;0.015570817504218529;0.029506747379838084;0.018138512942031622;0.010418485842571278;0.0036123584664106783;0.01039090462946715;0.0058368712619248425;0.011463608997377417;0.011634318384614891;0.022996323009143196;0.01178691375027877;0.007265956051601447;0.005445894289731569;0.012832752777152854;0.006392019089621425;0.006480268331274353;0.010725290336722003;0.012574646269373007;0.011991189999832928;0.007621402565830768;0.018654777268668103;0.042778858936087585;0.0372296294007929;0.029955031334248015;0.02740477314126832;0.004175229496494024;0.012058345598366268;0.0078834927876791;0.018212768686879526;0.030197173554355517;0.029792064051539984;0.04576566433438399;0.032485661160585065;0.041049415219656965;0.02676188788343529;0.03488637737485656;0.03527409591605515;0.053596062762116245;0.0626556111827539;0.018256377904729983;0.08776125071071099;0.03311392446846489;0.014480029066744808;0.01660258313017047;0.039783485713647815;0.03768699232069778;0.09840067140529032;0.03341295273628833;0.01922171488960622;0.036091259600283;0.034468257738849616;0.04503015566547546;0.02594706283461759;0.038717423544060124;0.011237923268721636;0.010887849681451987;0.008139410485944269;0.027238326704672067;0.009199321935564529;0.0033746668789414315;0.01051912779516086;0.02355137207087849;0.01417979113788541;0.008857825050428987;0.0011318459635349745;0.000861897739688727;0.00859838103795326;0.0068913843337058975;0.004234394607833006;0.015643557507533313;0.0003676800970936629;0.00044738016593177677;0.006460514466113689;0.004255520917814045;0.013319904444058873;0.020988579186280037;0.005709172789982566;0.014986153105021096;0.00910402426412331;0.05736173922329052;0.07560790244173078;0.005120180080886459;0.03850938491674543;0.024333522626470875;0.0669442635195904;0.01259525886964587;0.04721606739465115;0.021322246440386054;0.02485946254940967;0.03282942406416737;0.01887462506085419;0.02477457645194574;0.005608183282137818;0.020976820456819284;0.27721148793919453;0.19471605273580178;0.15475863254253447;0.022864751991262318;0.03839949427896678;0.012735903796658381;0.014604971410285182;0.023677521958300116;0.00975293159529603;0.03420764842700739;0.028977471736000508;0.007519954353473538;0.0062431845837595135;0.004730535365331871;0.006453265776418411;0.006021802826132633;0.03927569813233604;0.04852280949756561;0.074282655588831;0.05754876555793154;0.04188728979497453;0.17153086481512772;0.02993610922004714;0.03316577685189968;0.493820223006707;0.1693000223147707;0.019758147476139926;0.0072109329543909;0.008550045920435475;0.01457636022619806;0.006655461866780987;0.019425316203659036;0.06796576948013933;0.031316323017491855;0.016959633069874035;0.01626750302560487;0.006472866337821161;0.058997853540814896;0.0333201896527776;0.02568702722798496;0.047759667882701654;0.09113006646337979;0.01611961632052903;0.06600678913370266;0.028332171884526407;0.05877531853514195;0.23561670902431497;0.259205907015736;0.025954176565315977;0.07024319569986606;0.01108072697810931;0.011073677951849359;0.019564282267800985;0.02080577865319243;0.01456781734162118;0.02078813753786325;0.015400662512409995;0.020483909118840418;0.04171444371965769;0.26184286311373783;0.0024385756524058456;0.02186301083292487;0.10849297573859103;0.02812098084221977;0.41982668071147167;0.5201812254167165;0.04927489915550926;0.3271148269769461;0.056446320240816306;0.03113686906782924;0.06619903212382992;0.03530737490873788;0.13407517324406829;0.03704049956008212;0.1042133789503491;0.38838549219725765;0.04626954710684841;0.012659989002822404;0.006472404478621818;0.011398897932110364;0.011830891276406704;0.004959879754820157;0.013541611889128247;0.0058133586709859545;0.024544864586921886;0.02104330487753605;0.02186059008193626;0.012478344802206075;0.00735808446812294;0.020595180871259305;0.013874730456886503;0.023619739380701332;0.043952780589960175;0.024252180367788805;0.012048970610741668;0.008502212845619042;0.010451561163869697;0.0226361314688552;0.04920454138182728;0.02284463881440252;0.016467159896238686;0.002489541590349854;0.0028765887303142906;0.020552173312602166;0.021160296129385605;0.016460942507192045;0.016905667894088868;0.013582216376521612;0.056408948580673045;0.012947561932306737;0.01690895250693868;0.018397415970318996;0.030104912488526668;0.021921135905265645;0.0021829267763715985;0.022182739554052363;0.023661898875234;0.02868493005889569;0.001364534638705397;0.035563097386301375;0.023534527280403665;0.3544883731990601;0.0983087503287678;0.10098651676659824;0.005193336853007538;0.004814204567927169;0.0028314995170562185;0.038589900681209106;0.01807764193730649;0.01171804496859091;0.019431917338719868;0.00022206563552574333;0.01867102932546847;0.05608128584416248;0.017582412626445023;0.015611353906366565;0.0824409595439805;0.022250502532655505;0.010368490572297037;0.018999066673398502;0.11768336393021998;0.008983992697221338;0.017447575645216658;0.0;0.004833012404627143;0.26635130359305126;0.15030938785456222;0.6820992269274165;0.020629584236187354;0.05215941750056374;0.0009993755379229616;0.005404995144706888;0.10428501637925322;0.09428821665388754;0.02083959407896058;0.03487408174852443;0.03900998280446606;0.021552638009750096;0.026992684994962258;0.005168194768649206;0.05468678498944733;0.01496345219886939;0.03973568110080543;0.04024464099362553;0.0251360730164003;0.013287540653449548;0.003593928865934438;0.0004379311682849165;0.0032769021605553368;0.014820128392015401;0.1600059655806745;0.1678235788338993;0.02204128056117873;0.012687972124225544;1.0;0.050531675628446286;0.3581452270515483;0.02692737752602113;0.008635889122089896;0.28520028822506127;0.005418006946572632;0.059306552073268966;0.020067151786171734;0.015622107798227773;0.007290126329251593;0.0033778552817451614;0.007446988702739982;0.05521549656410096;0.051525247190746956;0.12686330467211143;0.04742829838435591;0.06531379389404511;0.009385565762910091;0.14714205319409723;0.06333929263938762;0.021839023971778924;0.204163153908359;0.021803520650140875;0.004206880990774926;0.007838195424424215;0.7988450449542019;0.8317398894036582;0.1132020360831059;0.01870451429006206;0.15871677617902677;0.33562035329914;0.030034215783263787;0.05700566521192793;0.08063100268457356;0.027170358935515268;0.12338951350598916;0.010397515989093825;0.054623336735443326;0.025667856874779144;0.33203717824283074;0.1997407075752617;0.015654639828658532;0.17310850662200267;0.7068431079474209;0.7335590467773758;0.017255394522370047;0.09224899652322491;0.021514590537200447;0.035619806292299154;0.08118051122881545;0.10760196103290097;0.17309852271797094;0.05947247639694155;0.015786417284479468;0.0014408730642527807;0.0021508772961478986;0.12578445405378894;0.012636851080388058;0.11412527238543126;0.07092967541668146;0.0323739321142715;0.01398276786602865;0.0689475479447161;0.009679906800986002;0.21251691692761093;0.06536501695877456
+Acibenzolar-S-methyl;0.051834207059937264;0.012020395985187787;0.018323955725306734;0.01597305097309136;0.015614695013710414;0.0494872628674884;0.20257275946091635;0.012104390750366721;0.011947272573458498;0.020890183227001553;0.009718977908047608;0.011361368917683825;0.015529669789729821;0.01221178498530383;0.010979939872750512;0.012153708422159902;0.011442068003823535;0.01123354105383052;0.011893018281632318;0.012066734956010463;0.021538894509796163;0.02714484847490743;0.04643428211479247;0.021585860749048308;0.029108585072826744;0.06646935007351092;0.5046358446424836;0.05120270603237681;0.026738122167903503;0.04712182361831785;0.3930172325950436;0.03707245059802168;0.03878732088417102;0.014636282972983453;0.024601883197578105;0.028508748928333615;0.06969419787426154;0.0030904533959935573;0.003032857939078622;0.02040233475837378;0.028536357740163235;0.010217879429402095;0.0459774541523864;0.010253998482007216;0.6184328550327051;0.5821450377240912;0.5758078833327333;0.5621299506007804;0.5899393930827314;0.03834539895687883;0.03336988316661582;0.003646095632122978;0.006579975835956277;0.009240382578370662;0.010336878415079877;0.009549214615669823;0.01784177247035223;0.016413369333701827;0.03843985108552905;0.04078780393090225;0.04099496203972041;0.011088217649074979;0.013182084190193821;0.009979626129959802;0.020442322624247344;0.014548594703087983;0.01664500357955075;0.03679962940858757;0.021272260200434157;0.04006546061799055;0.031941787849482844;0.031004437520494664;0.070257158262536;0.06817868914631167;0.0461904341746835;0.04243081714299387;0.06162677419246721;0.09678615797612813;0.014597856812458789;0.710937045867686;0.16210571259595435;0.1633773422287129;0.4084370574972698;0.3996496140603145;0.34589098062999485;0.2830682246333605;0.2582109319984943;0.24667351935269513;0.5663683933761587;0.049907097154315044;0.6892882400738104;0.008885306101701435;0.013450993184542724;0.10879903347148966;0.11702216483948714;0.10165293836592403;0.1021464675173545;0.7066339289026878;0.5030472914516029;0.5616990812684466;0.4456477356835539;0.013089162277099161;0.028439647202696847;0.025482459299677282;0.027321157978542607;0.02054961561521089;0.027242785960018282;0.04412856075990386;0.012581631811583035;0.014752694614116655;0.010840864787424933;0.009688893422292634;0.025619030036064472;0.00953721387911804;0.010583407875044179;0.015961650782765742;0.020045289490350914;0.06456064009677422;0.09001873290261025;0.038927524492056456;0.008795752388668985;0.01670588330848037;0.026259583511235758;0.036106602037133236;0.01537115964568597;0.01837863994378053;0.02062426004231767;0.05372505489452057;0.04897512595115112;0.04152247981693541;0.15804524803805567;0.016218595607447855;0.05410328768077112;0.06236942479832382;0.015269151052253412;0.009734703439475656;0.01764780872123536;0.007526985279644179;0.0479990236183239;0.040626747655744304;0.09393294287711551;0.1358634839180483;0.027345396480547977;0.08785539517923519;0.03177122373029538;0.022634689402045764;0.013098412703161973;0.0012715157671517663;0.11999192760374254;0.07467560785768518;0.009098365147077824;0.06917374765638311;0.3476307534929427;0.037934454932246967;0.07244564750554436;0.13561135048639109;0.013580820987175467;0.011325870695117115;0.012248673544568517;0.0023909852210181625;0.02126753953101204;0.06161864632268515;0.03332834544243317;0.028434408837206635;0.06926390278410242;0.02033193694950374;0.10771569184946862;0.013839080677541965;0.017988430304637332;0.12412566548235317;0.11716737481648451;0.00429101675842702;0.044674162238787146;0.00766457045550717;0.006828215779165098;0.03729423608378439;0.003320299985787867;0.015682081514559763;0.0419336657565016;0.07313893462237372;0.06993816308244077;0.01791441856935589;0.02414256237176574;0.024835965292587702;0.07433614958506012;0.03597814816744072;0.05139866686004123;0.00033830418084597957;0.023189114938641703;0.017521105826446698;0.05387779901192008;0.02426174303689862;0.018215531856252982;0.0942666790072237;0.11914261999077957;0.02713148878426158;0.026323163857956973;0.06147912544517658;0.046843947701521095;0.04293519182524215;0.07150348716790832;0.03635346450604867;0.06862216340919546;0.022663469377514827;0.03942870427515735;0.012994035000667899;0.07071858104065054;0.03690349166533805;0.00841816989351466;0.05868484581342838;0.04623364642287072;0.07750891199772786;0.03447534875226171;0.031145493838339876;0.03881935940215997;0.01304027983780643;0.05654742443406962;0.03409967969780338;0.0018711304863755903;0.031782023369291104;0.05061608824732782;0.006299950319223063;0.040292362400642906;0.06796777516473511;0.02344321365831111;0.010850756033876108;0.01118820628991791;0.013880791411653666;0.013160555860503279;0.022086607102227762;0.03137187066838616;0.032393547536415476;0.019684270332014187;0.017140915145144466;0.020619968099072367;0.04465753000122676;0.031496817194694;0.046823044485559163;0.036061967711069155;0.03660163852422373;0.00515377819419858;0.04439502140916798;0.09198140752035444;0.15920316232053153;0.14412432515694734;0.0008241840812834294;0.007891746840656487;0.0020553090183797573;0.0410312715379032;0.006777343817621318;0.017353140252531346;0.02396333230176354;0.004155851209483706;0.026041008516025387;0.052316136263446514;0.25118085866360124;0.2656251438211802;0.24593186544134618;0.14906786990987606;0.023963370363532008;0.0005909352018229953;0.027522496266198824;0.014153594209859972;0.00556558539751173;0.0025645094667376784;0.08456974967898769;0.08804375656589408;0.01220117358353883;0.06400860628387747;0.005234933161787319;0.023651028094082795;0.00480757968234664;0.15824460514511565;0.04267207028169421;0.0028529048550104273;0.03191421515652121;0.013375261558644037;0.07643315894791249;0.09292505710886682;0.2877624997384119;0.0085455007001137;0.03529623111999084;0.0005435119823614277;0.03256094391418558;0.0023990714058501382;0.002652795003115373;0.013115830082688965;0.02486446404490583;0.06450421070150508;0.00612821225512813;0.04890471559176298;0.04767472205313816;0.006817039001267728;0.06633113354391978;0.008375935517662301;0.012088030118708713;0.004017181041629423;0.010093102367334593;0.23302897583931728;0.026265259247182985;0.006575573873123881;0.027946356815230382;0.04342808867520588;0.03130808811981675;0.00942968642963043;0.161783506615556;0.029285345130197066;0.3158356696635731;0.0019810400602546015;0.004717382268707563;0.0176942676067537;0.0004281227139561801;0.0;0.0004136471385266075;0.03292833566744656;0.013169523196558747;0.14345652212468116;0.02927088024495114;0.02785731406083395;0.050531675628446286;1.0;0.056427383307757276;0.03189850759821963;0.0055890625822334165;0.04168219452723639;0.00563494859747551;0.039940898509227836;0.08458181236442006;0.06597688451111305;0.020455103106894218;0.05003761719213774;0.04373108194929278;0.3213065388350121;0.32829763574352094;0.044693942566680474;0.09937971871878955;0.05890167298807234;0.04000806371270995;0.011958189969097463;0.0627308889536395;0.04304985529089477;0.036198957022507465;0.02378936884839536;0.007666463018629083;0.012654509039838807;0.003503689388970288;0.003721481012233438;0.10589013194573707;0.08023222912181172;0.01810269015339331;0.014933621502296004;0.00929205196372119;0.04478892491914006;0.09872264956984425;0.04306052988347367;0.2063334221529293;0.011379376551239379;0.2483058163642932;0.01348710947154698;0.056272367637919034;0.20832960858458957;0.05144578783696129;0.02012548108262616;0.022869452455854356;0.009987923474056604;0.03872364267160908;0.017211279816700318;0.025304601252753637;0.03480328852576719;0.12389474315601816;0.08686291968810107;0.0640862414020133;0.09835634819177173;0.0739913123533401;0.0008298542034870448;0.001470498598911518;0.03828919941099255;0.006845123389568088;0.009350588925018725;0.08580203997125235;0.02680033893548034;0.3557642127241428;0.0524590206150816;0.04482755329981098;0.06939851100829626;0.07528353746322132
+Bupirimate;0.13637673483623428;0.135593819292077;0.17448738014427875;0.1484454292409277;0.14852838213751693;0.16569726267431603;0.0967022842722293;0.13885735963750317;0.13815332243425266;0.1454824342075702;0.125078806660029;0.14002059327348162;0.09634874816811735;0.14071364071656636;0.1383215414420994;0.13083616507072207;0.14070025519986318;0.13890060675789445;0.13482634216499423;0.13768892856822357;0.16574987243813638;0.1767257929320371;0.17956139463943607;0.15689478056035341;0.1700495831863213;0.020719272602121655;0.08130875402970246;0.46846230927576143;0.19662137334739704;0.21338352548526138;0.06228461990933724;0.06703672977622528;0.06743901675898635;0.17539939996913018;0.09465769001263306;0.1553136042432181;0.2285394557156519;0.05578665374522426;0.00519840875012321;0.08461087560368431;0.028442854249251123;0.11663525598329805;0.05059239990630329;0.0012290457901824173;0.08398418905928363;0.05557712756572803;0.05677827827899773;0.05268402973559944;0.06465396726050822;0.08678704078236438;0.05387733562440705;0.032800165035661875;0.0908731699433544;0.06848513475100443;0.07475369121438617;0.11629191224551526;0.055135946139124675;0.0714806286065652;0.05036099221118894;0.0886081698899416;0.037198697772786435;0.08158364909307776;0.09720036334365968;0.09360260499306161;0.054112103873733414;0.0685535992926502;0.0711610035684508;0.05377270360297316;0.05329394808798217;0.05373161758048788;0.05101261274930076;0.036371770873690104;0.04614261499885118;0.06806893707921845;0.05131607829006174;0.029219018095732494;0.10824681239487358;0.11135132847964158;0.1918534239441624;0.0888127137755258;0.05578643189757821;0.05654968331155212;0.08182983422081283;0.05284614325542274;0.031394652367768186;0.014179375558694043;0.04436915836650311;0.04645834730114242;0.042315352908386554;0.047404151762542666;0.05235980100401946;0.03328052642211168;0.03059050715108065;0.043018834818735335;0.048483200259290635;0.05760209146909903;0.050563638433189464;0.0681795421315993;0.044637852263669564;0.05520047641031898;0.06449002813270382;0.0365035806798083;0.03600280058423057;0.03693020196653312;0.056952433909762394;0.10569635659545365;0.0877533433928622;0.09142312715126992;0.0883172490579901;0.10577710629975445;0.10023660449896452;0.0921958896279086;0.10567966790743318;0.10741581765147158;0.10644192997319381;0.017590504473547673;0.013052320750077147;0.012924162293645515;0.07833563508024845;0.07185119360564927;0.10453350186878468;0.016637718397720543;0.07818979524484142;0.021383432820707777;0.009928417577877156;0.004758802604293541;0.0026832053376591495;0.0022621784573916355;0.0027666936651774927;0.023727987137251244;0.0202553468873004;0.08249162453975781;0.02361717486387572;0.14989760202228716;0.1427063617054077;0.009477623651852967;0.04739994779727479;0.02569301167493562;0.20433086238773487;0.1919085721922197;0.14982635986538712;0.1595404920906988;0.2745544871315571;0.03750148850635488;0.14989085632092028;0.1524804846254942;0.2408708341294579;0.00940037112211496;0.12830651417913885;0.17261125304717784;0.06441434734858087;0.2898701920144412;0.044296214895258285;0.0202033300115365;0.09664257214364165;0.27957445655607627;0.09158345571486075;0.04475987465762173;0.05554176736392071;0.027574131602759924;0.06253753079771254;0.02974600623516599;0.020024527172560716;0.01913951512484425;0.0475145932187087;0.06664541250210561;0.02514692067730772;0.014336062948498826;0.017768148817776497;0.05808891007781823;0.24990170355622376;0.02269326592769228;0.01857602152709484;0.05365173388176068;0.05182889728339545;0.041362461729406455;0.019740187866040614;0.005539685905267157;0.15993638088971596;0.18885723374679045;0.18778766829471583;0.007851781261037086;0.09363796976578714;0.3548388962630687;0.014823382071095499;0.024268349838664684;0.043422860695725464;0.0010074776281150893;0.07853009710381981;0.13360074924968532;0.17543103086472395;0.12362572190252598;0.06105825689596443;0.13711155745524958;0.10130139914584606;0.10060362987653035;0.09790054352256947;0.12501708890880459;0.10892019600473579;0.08372585338920335;0.13281133519898772;0.09486400414155856;0.11856988697316889;0.1355029174633164;0.06061251768624396;0.1811504162983978;0.24222470631738072;0.11944872894295733;0.01507581525390369;0.24563290214460418;0.26874714761363205;0.10788007572665596;0.17748491335828265;0.04916181080124693;0.03746414196744106;0.11105616654697176;0.15670482611722725;0.20983333580498736;0.000814183622586138;0.02105545360540545;0.11570029582038033;0.02648820106615353;0.008570487042069978;0.1440781525418903;0.1504711697086895;0.10403393570266173;0.11877849186363545;0.08830200278661984;0.09915426288695396;0.03698448126808561;0.03961238820523011;0.03547458941536007;0.06292072565193789;0.0738522114566063;0.022597593064778265;0.0490286820674241;0.12573430360118537;0.13639731402269648;0.1501418219651474;0.050247267128163575;0.07870212265250731;0.19561110296763673;0.14161680498443993;0.07691880524019834;0.08536239488033817;0.028843919749328775;0.044740719591504156;0.053470698379328906;0.09296496536175397;0.07510885246882106;0.1621897968009825;0.16208266597472565;0.02955221246278001;0.1453693863027938;0.04376343698199844;0.016538589233069185;0.032760561249398815;0.11480197805221645;0.030146067058944823;0.05324142165354291;0.0011191911101418256;0.11909593962447668;0.03060346247755967;0.024418755301369693;0.023560392329697557;0.03098447214116399;0.27656103979408136;0.0992750961184842;0.15703377592503814;0.3306669981794966;0.015452595419702595;0.13450852156111165;0.106702843148922;0.10469239629782356;0.027033377384604436;0.12110629108031475;0.00957960169849879;0.03471513535519528;0.13067611236599355;0.07425115791548026;0.006497312100807248;0.13011269690681887;0.0010354116724486998;0.21507366835105912;0.07359796651718926;0.09259707840476668;0.016315029464927282;0.10059355984318713;0.0002195268754939884;0.011827741597254289;0.043791297173673714;0.11249574802280358;0.31056446985250025;0.03938730639079054;0.1171106857495742;0.048071633350302824;0.3197240883096404;0.08529814447792006;0.259743494306901;0.01838175166737171;0.029541825505286997;0.05769702407574949;0.11623406692210707;0.024624239393207292;0.05264793671972225;0.04607783750665798;0.10000719602066258;0.062032202035157157;0.010469842066868889;0.0373752059618055;0.041301946754141006;0.0033710976170812676;0.01454786095187605;0.0008756255442955222;0.03203680047092625;0.057520916950899455;0.13210198154736513;0.058903433533600294;0.13476559128026466;0.3581452270515483;0.056427383307757276;1.0;0.024836905223525062;0.06659189766227433;0.18317334818950615;0.34545935737907396;0.0034661149990590084;0.13389166904846564;0.0800858391447754;0.03587031687300953;0.044878137058194496;0.13852114726102613;0.03413056372204428;0.03184910814786391;0.0039056370677420463;0.16637937589630084;0.04327991440608555;0.009713546256554632;0.09580257060118695;0.13053564632432002;0.27408880603146457;0.11226532622692655;0.05689167168393026;0.002667620928589709;0.00423783907237808;0.028115418709870138;0.03119076911024046;0.06027139602835711;0.028365845478937425;0.12093782189971759;0.010985391205365548;0.005453728958313573;0.06305307503257762;0.1630764854331541;0.04810667535054055;0.06222676672968798;0.009057721853791958;0.06359893201600214;0.08607782364170394;0.13063015666686748;0.13248245568772501;0.1466892343331493;0.058840352997014296;0.024335119849052587;0.033645104958895194;0.09772438955709088;0.010048600118445248;0.010481445660519612;0.04368034356725468;0.10918651274925407;0.08980695167135484;0.04716260253679685;0.14441538755907182;0.13283310742179835;0.011805895583190907;0.014663718908409932;0.16296170494119291;0.15537069952311286;0.08872512083947653;0.15536791643023606;0.053423561792281846;0.002259059608897414;0.1889046648278481;0.19404377922733837;0.23400440919791293;0.14631099884719126
+Buprofezin;0.049357705155226604;0.039045468315392025;0.030397654249052563;0.04560622546877751;0.04511447946664677;0.03452174111077077;0.013927339805707675;0.0326351788074762;0.033368714192638226;0.029776983139679143;0.041635893407233344;0.03909824536890668;0.014386598516398983;0.027152186201348138;0.03061078157800363;0.03201279774102051;0.027298320415063485;0.034982509008792795;0.038935742180400995;0.03541531351795091;0.028530098114715522;0.028433091809964055;0.043488841946552566;0.0270656486951361;0.023277170293751936;0.030569380833623403;0.40601148072693277;0.0743081292802426;0.07659770151190222;0.338266702088282;0.23247665662316894;0.03155058546629915;0.06307255127267716;0.051429912581706705;0.06478236115489375;0.09457562159168226;0.2777351372357995;0.04748045530834326;0.04998965034666387;0.04713866359291215;0.006972026310458833;0.01817129364885331;0.042809734429947614;0.0022285466789156794;0.04349179594283705;0.0429714513485091;0.05039517258951023;0.04645157221559872;0.0568475303610857;0.01132881921883978;0.009921508328349938;0.06949378269634857;0.0174029922991385;0.029215053332405542;0.043927124154991386;0.01854493029473045;0.009943073541496967;0.011613654919950157;0.010666976524188576;0.0055386088852832065;0.008071415967787628;0.013763898141937948;0.015426063207010584;0.015151787614021472;0.010817983171599568;0.011326607967888196;0.012101285558659185;0.009229188262869512;0.008776523253356908;0.009721977493833238;0.008434411490832747;0.007474287742086933;0.15252639607925195;0.16201592716277444;0.14763331564443946;0.11271690979409343;0.044359345311198596;0.03411877592444247;0.007582825330365713;0.06995729129300671;0.05177248312037085;0.04219902186099127;0.07715994050406658;0.05416895197438424;0.12633866120445295;0.11130422281067387;0.07588876081572433;0.07876218508356056;0.12488727306039477;0.025029695742566287;0.017117597933298326;0.07128184628874114;0.06229988153088958;0.029562883104534275;0.037950512975911004;0.10132193175666875;0.1987222783111482;0.11612773923878288;0.06697219804624019;0.07114576252681233;0.14716939368674384;0.06600264141066114;0.07891132752587827;0.1101108881515908;0.09751379406411405;0.01703768511984571;0.016433078618305622;0.013840056695329336;0.015334570913024688;0.0178657261398587;0.017753368223928468;0.02133290092678987;0.041215934416371856;0.02073372806141359;0.024125372269942415;0.00938096828716539;0.010922892440788309;0.01659339565974227;0.027717944871801067;0.041260408905792925;0.018126278929332832;0.027160175503660254;0.01609487191883321;0.05569050659641143;0.09697587487198295;0.020717121238324934;0.021693227272663086;0.37698648182767397;0.38379419943613036;0.4733144257009902;0.15466592882565294;0.21938918850030434;0.16896523213156753;0.2455448237770465;0.03443668313437475;0.19352516396163744;0.24428334041088218;0.28991259834469885;0.21959901779121593;0.20188267652096534;0.14850330850830226;0.16769349248679952;0.26080193630429194;0.10361741964288257;0.21746544228795261;0.4699247326049336;0.20038268834209982;0.055407416931743336;0.0964688333138993;0.10428761891166978;0.099445149258398;0.1644568333783066;0.1503249268111164;0.09293340133853886;0.2368811407831821;0.1959513856073599;0.08050550851944144;0.07655532186675502;0.11049944291836715;0.11762788339955964;0.16147125843453877;0.03730904970241526;0.09665695131844437;0.10358891911564025;0.022638035997072495;0.023115533454104453;0.15542942954437497;0.022563271050222707;0.02791921028626465;0.3207685002497972;0.08312365383133336;0.08417219074946154;0.011277755181656324;0.021161871981038288;0.03693235480914906;0.029819184744703284;0.043418937649875665;0.030012210477045463;0.13823862746182677;0.06471517816110083;0.06142483509528685;0.09797195720370165;0.2540640096796542;0.108831657271637;0.08692591158869632;0.0740767836104681;0.06475911585772991;9.081174752340629e-05;0.04365318454639967;0.136600012401466;0.1639542501709986;0.029390292171563616;0.16912473724778065;0.08341028690058522;0.24850084454971783;0.0643297735219684;0.06598546231335675;0.061997201572916466;0.11229402088476481;0.0545182021245827;0.10113555660558218;0.058729487079240444;0.06363003751722028;0.061014658312385985;0.11090025226527112;0.027456792794372083;0.123073412928022;0.053278916177515456;0.050696026277407547;0.127444112228787;0.025873713039824223;0.05900805609036989;0.22059839225427208;0.04853966421582348;0.05218198413772056;0.04596415753115946;0.03709298583037002;0.23199896051029642;0.053793512026695134;0.10997063555010761;0.24097093073671502;0.06997770217419708;0.007311207375512879;0.04594662702202619;0.02745577201868547;0.02081718059765209;0.021946733395694203;0.01645660844445242;0.017359814003910776;0.009895715721540885;0.008133778742147643;0.007234570678849054;0.011425118831995826;0.012275178357095429;0.005658083221719854;0.009409437605754769;0.014466818681135021;0.02387754043266384;0.013799164690356028;0.00901568225057295;0.17173592265661142;0.09888328355742712;0.11765658168605367;0.044348707419532625;0.06641720147679175;0.16311591992736132;0.02157918074049657;0.01908544111088388;0.10502927082868077;0.041000553856901406;0.11589468981322908;0.11459025832310381;0.07248135358247079;0.05851030405988234;0.26700715528944263;0.06463501090715033;0.0825547363880968;0.06315872101484947;0.10604280716183617;0.06475313726155071;0.13635394439889434;0.04094065427448605;0.13155184048362648;0.05226572141158263;0.21537879715710592;0.03419068486311329;0.13408426793531686;0.054444761466203646;0.10408990678708455;0.017119783532780597;0.029698664931221367;0.03655222296976164;0.1766062295074949;0.15502058610965058;0.02277246653534506;0.03855938532000332;0.012462018764985445;0.04497197970339691;0.03975457052543183;0.05701323395459335;0.1141860487583445;0.07843793578275939;0.13566102900535995;0.09487961501448985;0.0678683395137085;0.0510671449318932;0.00939066018336019;0.1604627714855841;0.0;0.19009381037430442;0.017658870950412013;0.03778537930994108;0.037017029013595736;0.047790788389858264;0.17537678536617135;0.006725586358474019;0.17080705143205208;0.25593413495043027;0.07045920127432331;0.2809888966923592;0.30067394620580457;0.16438962900587092;0.1114807715726949;0.06326291958776413;0.009541380750553474;0.04199648190103428;0.024298279643855704;0.07209418604592993;0.1918701560105893;0.0857156316774645;0.06849225409725634;0.07922965615057523;0.16697023147150244;0.177318876042094;0.2063398756860565;0.26846588611801075;0.0978865986381783;0.12994381168623584;0.10536989351247841;0.02692737752602113;0.03189850759821963;0.024836905223525062;1.0;0.038530836114745656;0.13956055367982095;0.07421594146561686;0.08746526467033613;0.03133728723499396;0.16829596207207723;0.06812254414648984;0.03268785577172569;0.13453770976394316;0.10391443181195849;0.10159913580194477;0.18359753510586402;0.06635239937474623;0.09478720254443118;0.14226049051880316;0.07423013959783029;0.04472768421919467;0.05859379980478496;0.07829263109798204;0.1573129385835043;0.041302324825752516;0.046617148661953337;0.02917292411004768;0.01802382754275983;0.04488442743484448;0.12126230953039517;0.03825749867789142;0.011356942580561987;0.028156917801081028;0.024902639955008844;0.2390440438732127;0.18296914239474765;0.07326089120562816;0.002802589579342296;0.009340783400809675;0.10208882851434664;0.20992219954704044;0.13587410144122458;0.09955049768862499;0.10770739426679862;0.05706205989826966;0.228337828432651;0.11482844249000368;0.008008075286906344;0.04710225149634461;0.06620246196561805;0.16329018464226056;0.1042268742070934;0.1316850746797174;0.2136935251101981;0.04830876364208395;0.010351870655493886;0.04842078876339651;0.05311882782804805;0.11828066692223002;0.18463308002532225;0.16758176539431696;0.048529841341883755;0.036652315669677686;0.2119112611871915;0.16619909576247152;0.39129124069859955;0.31686299036015636
+Carboxin;0.37173438146116483;0.36256180824260653;0.37332684952196016;0.373474814098329;0.3770627662330072;0.379005213422514;0.19695482720496543;0.3772993201703929;0.37464479385131483;0.37715574987564204;0.16055703864741655;0.3757867866064901;0.21925449641312258;0.36839976862762586;0.3674758815038703;0.3502136422347484;0.3790254583632838;0.3723848490248808;0.36043011242047757;0.3690798826350917;0.37361448678600423;0.36747978225596895;0.36363401288204045;0.3781244425258371;0.38287613663285447;0.00048420064005554806;0.19091909430670667;0.12411111723922691;0.14485641707491254;0.1414749328873956;0.06758152737215828;0.2815878559477764;0.1387908201074455;0.2820434349460169;0.3380924770410368;0.3757878576332006;0.30866620957240487;0.059520660669928435;0.00595139878233663;0.22304205527004387;0.09139705858322186;0.24728562282989822;0.08383643734241124;0.0011214081062763252;0.059953651491052;0.023345188298905237;0.02748161448542639;0.03060016664349914;0.030041316604037086;0.24987932505340293;0.15556034502027888;0.06244883909296003;0.2897578505717055;0.2934047533009461;0.13839734414274962;0.2554315188674561;0.1332294473694335;0.18214368073680545;0.1461926548596063;0.03415584021613978;0.11961301468742494;0.1563664317642168;0.20478856798729023;0.19974597804834177;0.13019789112226354;0.17367471503469017;0.18086211104744665;0.15274022245209973;0.16512410617056714;0.1513198080285546;0.14215177383265384;0.11567778667604402;0.00796178540205103;0.016220195164128922;0.4335056667223604;0.38839728207286917;0.0033480373032439303;0.0035270567353554495;0.0005349010844185472;0.009714742838299073;0.008433698458652933;0.0041071744601158785;0.005002371859995095;0.006070590375444821;0.010385958367836744;0.0015386737244646562;0.017985050555506213;0.013387831810888458;0.024050612674989074;0.001416261308670859;0.0025207878954009886;0.014732675338083395;0.13546211419914758;0.004741835575133324;0.004796598632689212;0.02835595935211118;0.016933701109032428;0.008670333126951557;0.00825155282824216;0.011795702978412845;0.050463487446699276;0.00732889273474318;0.00719350239187044;0.019428676830471264;0.0108824789064949;0.25770660970481113;0.23920643030232322;0.2484110306850784;0.23927400026078627;0.28561166846515507;0.27174811557637824;0.250326260422368;0.28413335366852865;0.28881664907508;0.284338097274956;0.0639343139972691;0.0618592761567306;0.046082492370176774;0.223705179893567;0.1809569294071358;0.13738300413759144;0.04261421444260489;0.21089935396168497;0.017755652076373796;0.0002661710851917224;0.01074382693575443;0.010326290805215924;0.0021211814120710533;0.006839159015615759;0.03821386073018742;0.05402080144642879;0.04543628540545655;0.06645108359146291;0.014331296534768893;0.38741535913053327;0.5105189106944145;0.046440895931909;0.045591991336238265;0.2893793840729238;0.3206923829002066;0.16263335810452803;0.26184281118177716;0.06534285152592552;0.11484857265803543;0.2153266066650346;0.03718724250748999;0.033836050266424646;0.02168293168687753;0.035998632699110036;0.04902181038914565;0.17806286120579964;0.035808035592774075;0.012599973992670169;0.0033907380519925053;0.2528195675112848;0.15509665033574885;0.18719400854525212;0.09531946194886359;0.10747758091417703;0.007911714324679344;0.16205728444784934;0.014572817199953856;0.003202415979810698;0.008779034566236046;0.021206677091901195;0.01178950930510362;0.02588209499031366;0.007015555047762778;0.010945868115631977;0.23248520127408703;0.02963461342756835;0.041115376848292653;0.0018578598173748845;0.3115401568457144;0.3101767305601634;0.05193661806531147;0.0;0.007237488523383382;0.15336415910853057;0.29226219112587726;0.28606867231214944;0.004471492627519519;0.13738294507594978;0.34040414495006993;0.05031285819140358;0.3531628834730513;0.19946930634482765;0.0;0.22011183000532844;0.2580379366718447;0.29448723403329485;0.2817525057849805;0.3309671265294724;0.2877194195623198;0.23814258747337674;0.31688283453004873;0.3085521668540649;0.27312781776363537;0.19236887449299728;0.15321502016568786;0.30653411064907043;0.1680699503700843;0.24211426437316622;0.32394925873051683;0.6521222533101293;0.3864833195175449;0.2757650605769767;0.0472258887241352;0.19195914385188642;0.05007655492097519;0.010924079092901353;0.1996878582883989;0.13536747657645065;0.25727316925603677;0.039936037668811784;0.2442215191772161;0.2787882873078052;0.12356027245180629;0.002799223679301933;0.02042255539613285;0.08711180784243099;0.03119266017993576;0.07224533863019722;0.3196266254271868;0.28786822458355776;0.1911048961062122;0.2599619606200087;0.16415461183197694;0.2199416901037771;0.12122037416435881;0.12598500866010556;0.11669796177684962;0.14933450399678583;0.1844252368687861;0.07726767200809227;0.1409176704368591;0.12247317114286246;0.11712476549512506;0.122926818907054;0.13809243106508878;0.1333728010804278;0.0338702137904998;0.025498616817659723;0.016644783847592604;0.04802797271191931;0.07017688031131344;0.0030749512049279243;0.005010387183905492;0.008404179495070718;0.29175512296704165;0.07090280744998971;0.07166523129929935;0.2835992549073134;0.33846365262373007;0.02615081719958707;0.10409280757698026;0.013019316399696302;0.19601240862332223;0.006459035842221819;0.0825758578353247;0.01802858781741649;0.10932635723583817;0.0;0.03946780897069875;0.046352902359730996;0.006318493204127455;0.13364221307452948;0.2628233491779974;0.16930480129023628;0.05917027245706823;0.03365011476637448;0.009117696759099205;0.1881440475308703;0.011401669891293556;0.019161940031451902;0.15308493735987402;0.13107815114726176;0.005433274179018946;0.04979279855406444;0.028906317296346372;0.01940932420583193;0.10785950289181807;0.017951470070804987;0.2798967085968039;0.014214363472296765;0.02042758044518501;0.042577571761376554;0.16472365692136007;0.017763527253991013;0.01925404363944404;0.029650467185071697;0.05624652913576808;0.05058228363374507;0.013840680558512146;0.029749818985309248;0.0832888431800842;0.0739535147638556;0.05048821668466179;0.057634459588011146;0.06177303101862218;0.07254700101857446;0.006954403340118979;0.11996479032536568;0.896367276388801;0.09874967906681835;0.06814555207193809;0.07026809199422607;0.003028380926015683;0.0319260474323383;0.0025211477377120586;0.0212112093680684;0.05126866242006568;0.0;0.0013381944515859156;0.08387908385384239;0.13975891192825585;0.3513395472671438;0.025478836049755326;0.06009170614075783;0.008635889122089896;0.0055890625822334165;0.06659189766227433;0.038530836114745656;0.9999999999999997;0.11019460885338869;0.018538983615115526;0.03591225321829813;0.0004760586693014487;0.00819214799026476;0.011309665098485449;0.021257760608396365;0.22345772977837725;0.03221482613822855;0.028930101304645794;0.019275890697088766;0.1046278782300652;0.051706036718924576;0.01719748766808042;0.27030301802388856;0.3224002515316211;0.3505062456320797;0.15808955458602353;0.05755972704078877;0.0011145661198296174;0.001186011865971998;0.0031195665734714026;0.00352443465822941;0.003933710647958814;0.011588126009737383;0.0008916504846974891;0.00025129454607879;0.0003530447582587309;0.015120286916402978;0.0026081767204471184;0.05465316547390643;0.038386688904274026;0.0;0.021440016227037378;0.005509728874803028;0.048086026889951665;0.22001697094218337;0.05788843463269493;0.007874383829701593;0.005057422508808632;0.003812805018405993;0.0022399984333424357;0.00607719824170982;0.011862490127286558;0.013705900921814384;0.04710863098472122;0.11486867256351725;0.2553898607145618;0.025424115525592726;0.37543992430918666;0.004923953510071197;0.00794872113359994;0.007589604500466671;0.028727139992836687;0.16159859945785385;0.1020123703409035;0.03329277312342324;0.002128186005818223;0.3294385502393195;0.3248318392929335;0.14663796833041015;0.15686508283056178
+Ethofumesate;0.19132605639473899;0.1673718543994404;0.1840082756572871;0.20093879043512525;0.20366862008778105;0.19515906864527863;0.11084041278425998;0.17236372697962388;0.17186256504445202;0.1867608849688147;0.07577840381041678;0.18123380990375745;0.10203367954921509;0.16946263663612254;0.16821414894951456;0.15993982641137713;0.17493459926065655;0.17203361585017254;0.16678803718911303;0.1710338864286559;0.2043825418206778;0.20756567205993579;0.22387353119830208;0.19612382183658447;0.18491188136569303;0.023128628597872174;0.22530838588010224;0.3640830667704471;0.12731049327925956;0.15107343283945837;0.10344459571536357;0.08136029585077428;0.08938964752366557;0.13338495790962168;0.13390566735047232;0.18523438093282138;0.2842118940822345;0.05501528504314268;0.04062294304621134;0.10510927340094939;0.03717782852496155;0.1305644740677521;0.04939245819741518;0.00022186344285858722;0.0793094024017322;0.029350135075925723;0.0319783092815231;0.036320557593403836;0.03636240699284722;0.09668322330411648;0.06564937123250618;0.042578376179523286;0.07764150064523587;0.017039000945273067;0.08938492301608668;0.13394438395989552;0.06425048741732105;0.08592039887553941;0.06289355614138488;0.07552442092847271;0.046800605181559006;0.08015473107805055;0.1041070691955264;0.0982258184690084;0.06582872822977674;0.08199130776220707;0.0855285593817842;0.06565520065236581;0.06587469284038452;0.06521484175677479;0.06144259680432795;0.044786693541189276;0.1315722782521643;0.14342173954097837;0.1087684502860537;0.08810562000696559;0.05340484769709777;0.0658078579276243;0.0237167904217398;0.06048021310757863;0.07030933774381407;0.063263481398715;0.09785451636904284;0.09249755306335405;0.046764030035106034;0.035369803849902584;0.038032565868635064;0.03725833925578561;0.23672470844353663;0.04243089164102407;0.1069376527056925;0.08140391716792338;0.14167032653965456;0.05124141438848305;0.06052074440477289;0.13086046054211964;0.13238656120477088;0.09776207608467781;0.09351842940861181;0.16578000151169006;0.1404167950092024;0.1555441864264904;0.15247085231299148;0.20060821983201096;0.14685397705279415;0.13013743725111052;0.1166964689261106;0.11267261944387308;0.11972286101147633;0.13483052049746566;0.13174623492666676;0.12597020635639655;0.1498441047448319;0.13207689508718892;0.13031192916588993;0.07151264823075364;0.08738444371968407;0.05560089765878161;0.31290264790421946;0.06014936087486826;0.1371866313996445;0.06116924550558054;0.16194235606883675;0.057661492117530994;0.06649286252278869;0.03709289726830991;0.04353359800480101;0.16481642579698796;0.17059133053061457;0.19555659821828403;0.12375278333614768;0.10562547534277479;0.06325305977690485;0.234613498753435;0.1763401308954592;0.18713641337876533;0.11750253807985873;0.23182863029715148;0.2964106549911761;0.2877719636467071;0.25482604081586097;0.2678496149014819;0.17938199852692804;0.15375796299940256;0.22902711838953357;0.2579126373060328;0.2193366165400514;0.10239810134828306;0.07238377752959269;0.07004420431369443;0.08594521824416511;0.12083537960251056;0.11543160615907527;0.0713063326726665;0.3073670065791927;0.2565657180548409;0.07706580725115285;0.031759556610353866;0.04740860163181881;0.013770390034114127;0.05304728260053284;0.047240031769888495;0.03251613765714238;0.037519525714229764;0.16502040102131765;0.21494273632373323;0.0639720169366194;0.04461654330777581;0.060612869655456404;0.06476274185770983;0.09483170003128796;0.047274326922466;0.005450845735684534;0.021192284419430062;0.017646116048244113;0.03836379931495741;0.01363731645250894;0.04296814424063248;0.17949508995013913;0.2502919896037673;0.2395348300918191;0.005479017802870886;0.12316169603162919;0.2385567384698107;0.007122376638685971;0.1313720388303877;0.026612074150934133;0.0005326982553741693;0.10034864045923746;0.12730993374832453;0.19111312988762205;0.14758608362365375;0.13455524771381605;0.1434447090289558;0.15933160362126783;0.1445678552956597;0.13766021176856513;0.1473852973850116;0.11987948877609597;0.08923484245492537;0.1691628943426083;0.10458900793825905;0.14127133626437216;0.1642861499391821;0.0575884455993727;0.17777102159838382;0.18724463090279406;0.6313831238303165;0.09355385132051154;0.2090944911162288;0.102120938170638;0.1304299467825818;0.10633819249495546;0.11278909051405604;0.20251632561433977;0.2027446344740905;0.18235267080134976;0.3445748645236029;0.0976819852133125;0.03206189035056739;0.12313426839262459;0.043472044332839264;0.027057919612125943;0.1534144700601911;0.15181047832870373;0.11299958317764486;0.13638964090557082;0.09448795213852756;0.11377273407586777;0.05190439413213118;0.05109915716833597;0.05093847376873635;0.07834287044519717;0.08842977889090575;0.04123450021519642;0.0625948403052017;0.07904423001120225;0.09355020561137638;0.09081074994432614;0.061382341246078685;0.14015677879650076;0.0748439985278581;0.048737981851182895;0.24308746026840553;0.040168191758461154;0.040510856199689506;0.012860414537782345;0.013703022191032749;0.05684666680221925;0.045815635355146475;0.04783857532363783;0.044751043197560805;0.030516476440407152;0.20016745038942604;0.10547178159066987;0.052634014964165525;0.13866742558904932;0.15816196470030036;0.02130347338690025;0.034166290992782074;0.06524885934406775;0.2327685166076342;0.006337103274511017;0.030360597796029086;0.06118585359929772;0.04893471501755252;0.27102141235736116;0.10693560869517447;0.11939768921460497;0.0506403701166963;0.03363646192260148;0.006963445227081179;0.08555020845438593;0.051978873594881125;0.014130345718291292;0.12062535994234425;0.0033787539061403095;0.0386693512562929;0.03185711876749152;0.0885560925014523;0.026146030627982222;0.10925959634620964;0.06501533341228345;0.14696050075453468;0.015434916541400306;0.20885418067751843;0.01967212182056244;0.07092995471311477;0.03893759193235116;0.0500479789077641;0.09497023872464849;0.18608931131139073;0.05044160644659699;0.09269984345947546;0.11066060885998222;0.08918859954435508;0.10213528558538829;0.2059825374085515;0.299923704758482;0.1677056170193646;0.0770504062453549;0.10560342349309924;0.08489011110742452;0.018407720051196928;0.04845845462172241;0.044490046093274886;0.08550166889790509;0.08444163464736117;0.04142975227758416;0.03881416432261661;0.03205316015109248;0.02960449151334807;0.0;0.0032152070160051415;0.23000490865390585;0.10904710383984824;0.17276853281606816;0.041866899961621816;0.07125162304335325;0.28520028822506127;0.04168219452723639;0.18317334818950615;0.13956055367982095;0.11019460885338869;0.9999999999999988;0.0587483489685061;0.027346783745286988;0.09147277283879811;0.08208312644256328;0.010820118491427373;0.025942470317211953;0.11640108959118516;0.10351097115132736;0.10384959829387728;0.33313578556572304;0.13807050181107283;0.06109852173440586;0.07114906887452732;0.12145161865692151;0.44635446694970293;0.17710555399077693;0.39170047828871984;0.03691659022988589;0.01404275763689663;0.01326402592606638;0.03689570571708153;0.040869927111668765;0.05816942883882889;0.010942820315779327;0.21749719067089907;0.21281811077169044;0.00739757819341145;0.05527217996314599;0.10179879450242252;0.1939722069317887;0.2252454037235497;0.016516976806273485;0.04104676282786209;0.03529805035539529;0.0757751044392163;0.3852284907732587;0.07434114122067152;0.25559750321866337;0.017831911728067158;0.02738180853951445;0.07721135054650526;0.05661963934434245;0.10622724103914608;0.3543481750858961;0.14235616489713007;0.2307402187050796;0.061495946083491675;0.10971428225506603;0.16896394504241766;0.004259775250440733;0.009530348974334224;0.0780156512666848;0.05042517986521205;0.14263560004827824;0.19514265588317287;0.030690232358606278;0.051934763373813884;0.3236623107932981;0.22489954113753277;0.2549411168072453;0.2502894060505306
+Fenamidone;0.01677678489575285;0.010258555155502457;0.016166496725202213;0.01214175168653713;0.013663025284394814;0.026178872789324327;0.004826507809685265;0.01422173083317972;0.01563582945475295;0.012216932867195836;0.07406186924952955;0.011287535262727416;0.006025045736893391;0.010145315924252347;0.010337874503526818;0.01082878903144136;0.011889337369696459;0.011325265534095234;0.011195696598487244;0.011760382488021612;0.009152689977702176;0.008139066101091247;0.018567830387085236;0.009133712113187928;0.021409997695098323;0.010964353986003829;0.10523783689049898;0.6094709335090386;0.2659528522931286;0.24798665247018267;0.08773754970380872;0.024515999962833466;0.07531150794791898;0.018051841016290603;0.021010723579469814;0.044413218224655514;0.2749342984312438;0.03413180065597358;0.02253416942501213;0.005021588077165364;0.007707134911196283;0.015209468176846382;0.018822784115202575;0.00010907683256827231;0.029522568268196065;0.01159788811756164;0.012294696863084114;0.01130909913812549;0.01271714552181917;0.003659612554279439;0.0049233268106544876;0.012218945637845183;0.20128165079219648;0.19111383696653866;0.01330824309903853;0.007662710354028827;0.005874083630537165;0.005656217763519063;0.0056583109217467386;0.1530464399069842;0.007606153593747367;0.005762166429631587;0.00664481039211655;0.006199531719893694;0.006254714355155854;0.00550009309164845;0.005681147274094578;0.006675416848223224;0.006118587288570885;0.006624293373028442;0.004592941546660258;0.0067533077336432434;0.06774019875138783;0.09035860717676995;0.03317485352118229;0.026559641093951425;0.023275015243482466;0.030397959311646662;0.020386018142265136;0.05336186216280011;0.018724366773580196;0.016595252772073396;0.04485435932708576;0.03667882727171171;0.03471431664491707;0.02202154129185878;0.021798831964896483;0.02980424886399108;0.10791552950415094;0.011425629596301326;0.0214268720049721;0.051656185548071186;0.05753546818278487;0.040049687488328135;0.04578391474463358;0.051811449954346944;0.10112020368861067;0.12832414653978366;0.07190750834142683;0.1299049228094414;0.1379683727853672;0.16630146877213978;0.1575091006025861;0.21035764113682912;0.16328625431224586;0.006624103474936693;0.01223639595914813;0.00979238611862585;0.014977131449350109;0.010613698218628832;0.008316322298160123;0.007503373165971736;0.013739295152983454;0.010651870014826226;0.007925870672904527;0.00450473737368677;0.004334579956930014;0.005514799686793528;0.015046735102958394;0.08842139524695593;0.010362309338479623;0.00662586064394396;0.00983956215878118;0.017153084837417003;0.007178288913469262;0.012023358775814981;0.010458492902884356;0.0448012660382738;0.12768931744430392;0.05516776359185647;0.1038947857928527;0.19249358755582435;0.06472628587262763;0.4553005222167358;0.011633601342964485;0.05974192682420411;0.36177477692269566;0.21477431088001123;0.34678666682592457;0.2927464761352254;0.1101103876912274;0.21998614822383927;0.48727056203818964;0.055812565100921765;0.1917369772194412;0.10645529606004685;0.11287599873633117;0.10559733069435778;0.22326315341783473;0.3938767820886828;0.043095283892126766;0.5378894028617509;0.06691369264471198;0.04040007990978062;0.13242985658736786;0.47351416574781363;0.04302277438344468;0.05075177209906512;0.03372880309117112;0.03765112807220257;0.07649419163150735;0.10998903756392718;0.01983204502056704;0.06590316524018273;0.07891903580465891;0.028501575182784688;0.06941760452006988;0.03539540362517007;0.052417005155852694;0.029734747681644375;0.08498940054933758;0.3929842676744374;0.02902340183523727;0.20892301418229112;0.20740877617628042;0.009001922684725765;0.0002765962864727158;0.04275511802549025;0.052256438613996314;0.02826805963524759;0.02624492828703203;0.005936615194095424;0.13410382366483592;0.05748012988092516;0.02575214291882182;0.059876786076356825;0.0024175906407037998;0.0023933274684494106;0.016271188853156378;0.024784111557369565;0.05135486365006243;0.01604775407517997;0.07640443923623669;0.030139269274598833;0.09764992597468097;0.00742436539498166;0.007579608291434522;0.026467553302592543;0.13186076517957673;0.018422276429513874;0.1409932311162789;0.02579744233914807;0.027234541312231693;0.08332055434526749;0.03775045408458476;0.11887949896864433;0.31052580153588577;0.1230229508638059;0.03249012960167875;0.14700015727456198;0.04897550476878049;0.42029878290766737;0.1720829178968498;0.20142387029026307;0.04207158709490995;0.2503098039162676;0.012907039739266485;0.15069908504065907;0.011613369977585724;0.017830451463590913;0.03184616953055001;0.03417644914959032;0.0014259096972246204;0.014164909182801999;0.04728847548545874;0.015927669168554752;0.009345192932160367;0.008907024408314129;0.009063813270446192;0.006683787593925079;0.007345539529433574;0.007548528064699185;0.008334048221806068;0.0061454282272889035;0.008428635000121459;0.007278374497362682;0.12801119292076402;0.14807871247378385;0.16342973211729728;0.006840557129901343;0.04063234941127109;0.16291953282853083;0.13655986148007138;0.04952716011514016;0.05423657411039593;0.004096652467151952;0.001849661880264632;0.05232754029946712;0.07436372605184925;0.0431334157153938;0.012743862644463484;0.01223193956581665;0.020717344733962532;0.015230980331212144;0.36785761944696194;0.020246346364416638;0.04584820892794141;0.06864167701575001;0.06649950811734597;0.023932751382515795;0.023938326771227512;0.08642416268897475;0.0;0.03666554110518018;0.007756443230975775;0.07250968823830968;0.07158608110841856;0.08814603808904767;0.049344734853137964;0.1660532008134338;0.03125097313054748;0.07863432596878428;0.09801632740129855;0.11126890590433995;0.046830856353232954;0.11165426356346643;0.00041433538338992896;0.08118605406628168;0.04684885953734965;0.07218514805149219;0.011435342779763418;0.031243298636873588;0.023601593452754855;0.16850641988216483;0.13002771460237667;0.07832932185351849;0.0029349711578662094;0.007286741884677979;0.008867461875976715;0.04088197597122147;0.049104043547375104;0.07395522860266433;0.03555441199706922;0.07192361052076436;0.07286957425405036;0.0153358076394511;0.0861414452808569;0.29540254837191693;0.1309904860374353;0.1064080081431111;0.03729020708461786;0.02325820376361464;0.13229200105905545;0.004028054974176153;0.014711918317059203;0.016632827810626683;0.42174431305579807;0.0490341959936123;0.03350002382984903;0.04052110075029167;0.050654217932666085;0.016300767814338195;0.0;0.004745937725910232;0.07401751092384545;0.02236978206700257;0.012499013861019976;0.07394713935326513;0.025741279747095853;0.005418006946572632;0.00563494859747551;0.34545935737907396;0.07421594146561686;0.018538983615115526;0.0587483489685061;0.9999999999999994;0.05131125519776908;0.03157479245564298;0.05378642564752942;0.0903520207904326;0.05435229825798888;0.07555029995327096;0.022479849409745168;0.02888572520724462;0.0866041933569995;0.044295283182564406;0.05212197770781894;0.021666262686127244;0.023376860768606664;0.053976352515090004;0.22351993641118786;0.031214802576019298;0.03807653432910587;0.0022892410527887556;0.0034819146986312466;0.019425943159072347;0.021290523759438795;0.03967923470175324;0.011382663811187617;0.02991671138461292;0.0006881053440119194;0.0016874301820826757;0.5644992198221996;0.056345214254162515;0.10255582445892678;0.017030362859660017;0.000600379366230671;0.05152655315173419;0.0018233407645007636;0.01280111823535984;0.11130844748454757;0.20722233684151026;0.01861268223535407;0.06960748229316657;0.03967579325445352;0.10288379138939313;0.0027382279950062386;0.020417309625765403;0.03839751727377973;0.04772983642831125;0.13620113311968987;0.0930893335753309;0.10260009394725338;0.02765209769615963;0.0031805960023529234;0.004822106554371245;0.22555830540295294;0.04874855698171537;0.4334413788243185;0.070846341749342;0.014268788713835788;0.02033688392273727;0.10392369315246955;0.0518894920015883;0.17560805589533468;0.15632555985381263
+Fipronil;0.004234032123237971;0.0036399247197572513;0.0031710124625285727;0.05210380511056043;0.052124479621627244;0.006309498033342967;0.00549932000195556;0.002455288134652213;0.0025082614848893577;0.003148012122932308;0.01740052024263069;0.002975676807653268;0.002160766616175643;0.0027140530482245777;0.0033721850763728;0.0041879154521573215;0.0013486384922728027;0.0026407041889641427;0.0037152838611846056;0.0030145611639615915;0.002802295754648565;0.0029226056506773644;0.016675499785362258;0.002115900128130742;0.007860242783527089;0.001331197910960685;0.016307861589582102;0.035797765090791404;0.018622257471993836;0.05802034742547725;0.009201818732765123;0.009937167227044911;0.03904865651550324;0.0033456991497990184;0.03143925755233834;0.16314090318048433;0.09404407373813738;0.008323611485095505;0.04833301701022857;0.018253385301644415;0.016309665519220168;0.01916672906408857;0.02384143594824072;0.0017353057854669143;0.016235776661497673;0.01622292541128946;0.01759673523137233;0.017839618692064532;0.015992730414227642;0.04067982744971566;0.00816459529872689;0.026916718316680882;0.015302576975622718;0.012720210257634352;0.030654393310914536;0.016375349746196182;0.024967744301681825;0.02398786433376235;0.009926447559016826;0.014800182342764262;0.01792368229317299;0.045186229722485864;0.01636560210830706;0.01744313685233254;0.0268967841282603;0.024463258290074563;0.0239022793900095;0.010974356920456962;0.011284440731634048;0.010925567944324942;0.009398852178519332;0.016342781587209584;0.04291786293582676;0.019700011037841515;0.021670560400067297;0.043776990409422775;0.006426462093406334;0.014811857877699211;0.010114185022261923;0.01053860334620315;0.014525856150426293;0.013679734505821314;0.006867969474619872;0.006621607840681095;0.019072648321691334;0.018981511452905872;0.015589833651062071;0.011868796446884449;0.03308093556078234;0.031195888678042752;0.009267924552680797;0.022404718857888955;0.1083791564976051;0.018921245158956903;0.020525087581946194;0.016523081994728222;0.03395889235588862;0.02729138664282881;0.010629831216283194;0.016883173660211217;0.04221168701695748;0.007256094667020995;0.007989883741279824;0.009656347239250575;0.020397834405890488;0.02487337943190127;0.028066712937876128;0.014963994761801635;0.009875729362447858;0.008586900540496614;0.009699643814151136;0.014513096490030759;0.018042154202789488;0.03321835534291146;0.017197355915258634;0.0030861911121916764;0.0021770144912154174;0.008538989471440812;0.01060590208813173;0.019467494754599166;0.0064679976076261365;0.008858843090858522;0.01953704221592342;0.006121554402325273;0.002547163744383332;0.018671875133928345;0.013856273164942806;0.005503206750039716;0.016990189162062696;0.008473011580218778;0.023041672503489027;0.06792842817327406;0.10820872861250991;0.20067798083340782;0.0013948113205595784;0.033498730237026604;0.2699357035264211;0.04182109458751566;0.06758330134213322;0.0596085433687332;0.014270747952747857;0.05366116124299196;0.23248368580492854;0.010086619751433849;0.2457842765664913;0.006857572121732978;0.019822067158798386;0.0002780205288704639;0.6375864968324377;0.0363596076827576;0.32303880429190157;0.3837101361071175;0.08720471626594735;0.015192691056096466;0.06893363931649499;0.10319923737696172;0.05543356743428199;0.14299002344813616;0.11671930326995607;0.011100234552474683;0.04514639789529301;0.04440093507141892;0.028871709457537555;0.02047371493672426;0.06572876997843281;0.036379691251654064;0.048325270631385;0.01959306734824499;0.026651862693397615;0.04642130568321453;0.049745682553594704;0.08754521289658616;0.006253458910050802;0.014206095053526309;0.01163111027497905;0.006052956006353793;0.04839273276306674;0.011941511191581057;0.02305749479066406;0.0071667986979734285;0.005841144789228395;0.0033183906609823882;0.028470091667820135;0.009821352373253996;0.10781893579373171;0.05324125673063274;0.03762832036354526;0.0;0.031103262198994484;0.2611918920101247;0.2199794321122287;0.07369108788808686;0.11446076510444718;0.35283596549237956;0.14842937663301645;0.013086855507230754;0.012312693394653412;0.013291942241245136;0.04643390723516293;0.005485351555187792;0.03146550000728137;0.0027290122964121017;0.006524885509189907;0.0027043078500945676;0.16768521182281343;0.00010351073001902425;0.08266437299109355;0.0988059660112239;0.023594040507153885;0.010334687285049467;0.04399398786905172;0.08047666940020849;0.1060322731653643;0.02361733300875312;0.03216164780560189;0.022313423011851373;0.023355395792414024;0.02667570955117558;0.0015361146530947544;0.709760447101028;0.23152250154130594;0.04388656582718237;0.00938283493712128;0.0014154929602517483;0.010095617431733999;0.014959852956344085;0.017175719814823725;0.05179426282121967;0.013066323318929226;0.01636904373441515;0.01667165572085946;0.01594939623563968;0.027812432125549746;0.02423812798448675;0.009505774813072191;0.013101833359053955;0.01943588128940818;0.015825692397542696;0.01464151396144288;0.01577027915727704;0.0025891827232429753;0.5440931924646917;0.5872426805175737;0.04913229848869061;0.015767857922086244;0.6633768228055207;0.004563911018559799;0.014923858135158292;0.01081767869138527;0.01447758680024639;0.013007194956118654;0.012576981576303938;0.007061384995338995;0.011858736958456455;0.3299313072335192;0.005705519389459303;0.12189163974160745;0.04860389303497226;0.6721884276348611;0.0021352275410638573;0.006801190363160174;0.0011803255732792573;0.13759315303798603;0.001949156259821608;0.011394850729769633;0.03076756005836848;0.03579682699200016;0.03407806298502719;0.011545484854867644;0.016417181517924;0.0;0.294966297628148;0.003929594033119658;0.6322999887739843;0.007219761737124453;0.013925639330733002;0.0026966686792204825;0.5283129152489275;0.00295827745156977;0.007539999856531183;0.003644190620486913;0.01970343264121782;0.006824618006384204;0.2499600008879181;0.03300802249649173;0.0008899639713328398;0.01749471201116313;0.007644755513613017;0.011114196507703912;0.003408464832992389;0.028393937922378494;0.032891928245888616;0.0;0.010606249849532231;0.055774721405369744;0.001631153216446589;0.0;0.045896765118732384;0.03878307798840855;0.008771611273710268;0.015785231819254918;0.001173317961275104;0.5007312648396314;0.03826887832464644;0.000866329282082956;0.0028126515211807502;0.008611393761579466;0.06592853670073008;0.020314704747638038;0.0015337193028679087;0.10411801868606096;0.0016958198116122148;0.0;0.00015540552252336714;0.014165615067845567;0.32564147621253714;0.00163996218513392;0.20524313888109294;0.01937316399603172;0.059306552073268966;0.039940898509227836;0.0034661149990590084;0.08746526467033613;0.03591225321829813;0.027346783745286988;0.05131125519776908;0.9999999999999992;0.029911775631719813;0.027087707879924136;0.06706711108760476;0.002126077211086051;0.5683074707155292;0.0009591571822254153;0.001592676199090207;0.23583962723180454;0.02356815060958684;0.8668151656551362;0.08527628815972738;0.024025154355898703;0.04650875013947301;0.032713796880045484;0.08727755943169162;0.16436736575136643;0.009549454002732955;0.0024296071952500326;0.1068201594029031;0.11537029160704475;0.0022055461894438942;0.21328491315558748;0.7834896980827496;0.010103817881941377;0.007050495977053434;0.015437686758600447;0.027868182321879903;0.16055265731641058;0.018058201501274636;0.0007787766188643853;0.0057050348516344196;0.002874497656610674;0.044430490112159854;0.015900222480492762;0.01339653044378501;0.02513549135763213;0.01580988148703602;0.009021577239178583;0.02802070825848968;0.0039875171253770485;0.004772821649451363;0.005392207747712236;0.056033643195507035;0.060078874256177084;0.00927443817027456;0.015916520204967408;0.06982610366188453;0.0;0.0;0.06878116272048988;0.008034709473747825;0.022438148158761224;0.03008234289810483;0.0021292977467172202;0.04625997676455108;0.12067334685522932;0.030403046526316552;0.042036227666719404;0.06157073783891902
+Flufenacet;0.00013733027627834985;0.006475821964656818;0.00022560789616063353;0.04196244691796722;0.03582226480581903;0.20275373477115796;0.11573518583548816;0.0005968115474198619;0.00020935007925776975;0.015414784891309386;0.002796394312694132;0.0001864437980376923;0.015438273363930027;0.0021844791848441513;0.0012029246826957152;0.001550180185807543;0.004550157145792607;0.00425421936445324;0.006272678811529165;0.0054191469606735794;0.036929215033407466;0.05111997040268664;0.052165110747111235;0.022928753747744616;0.050762951641520435;0.012460253457824016;0.031924355255653326;0.11416493343898315;0.005788897862150699;0.04789262598274538;0.01565149442434236;0.022124186815076233;0.07955942868817151;0.008856028657883144;0.03135918029919093;0.0018003110600987742;0.04230656458081697;0.022819234973434604;0.0004550365126282024;0.012108222401962573;0.012501948185172492;0.05570766805127038;0.009105017827200449;0.00185532072275361;0.10084259889503588;0.09688416406134451;0.10598839185145094;0.10388164795761196;0.10348842259301484;0.004317676822599721;0.002802443128149087;0.04780017995144074;0.028914323287609622;0.03931199346312701;0.006652466846070882;0.051946506918920304;0.022588083484161078;0.01647286422878768;0.0389784761000563;0.019863367488144573;0.013834590254781447;0.03777004533724193;0.03224670988639786;0.025709141944203942;0.02671257836813551;0.019226427490654452;0.01793795391924392;0.05075876424059425;0.036743908189918115;0.050185989430089555;0.03866339884095773;0.012237157782432156;0.2032755071633869;0.20621911487602104;0.12461172493383339;0.20772908410671434;0.030923838995323753;0.05959325038707917;0.014577109789090017;0.0966405639373705;0.22094866911032368;0.23294202025285118;0.24055827293063842;0.21092824912078154;0.11337879354391842;0.09662677545069628;0.09449933338545001;0.08142812845570677;0.03135981674978464;0.03729056011109454;0.1619458956113383;0.0190589118944819;0.08153259372971598;0.14873903185095222;0.16583380975380974;0.22111437437510034;0.2346388488961675;0.07149201403886137;0.07861294178884486;0.05838722434912675;0.07776667313534727;0.0480938195785918;0.04755496158335454;0.17592127629511872;0.07427371167162931;0.006226419471544495;0.03936902022514368;0.00718826602430443;0.005651837974159712;0.0019440857295847359;0.0036029772545211917;0.0016929316987892053;0.0025372468499478113;0.012852078411300937;0.0057685221200691255;0.02545960020487111;0.0009589565617672927;0.0030392712043869527;0.007034745338699762;0.09723823918700313;0.062153352965131886;0.000592911819559954;0.0003206241668877434;0.035736968468090276;0.03212532706369815;0.009290978260429737;0.008792340089818983;0.004525694620359097;0.01751860501046463;0.019557342991941073;0.03456128008521939;0.01651921765769154;0.003931383680279184;0.15755851500320983;0.0014982710424800787;0.016697672789655827;0.00436377463434878;0.012513314029359703;0.046467750978142756;0.021165077862274864;0.15737130273892366;0.05508728264390627;0.016385053523945342;0.012241544528534267;0.015244183016068022;0.012564103487427376;0.010831367628411337;0.008678268570935777;0.07511055785679971;0.06102770296451536;0.0024025545367032017;0.027598678420403207;0.11082999371447132;0.039377583013375135;0.01541648604159128;0.036788043227092136;0.034533654645804567;0.006436757206079643;0.00810444922467198;0.0017787647169328258;0.00957210616334097;0.031972279970960714;0.036171188756488545;0.024267563551230113;0.039406405259438906;0.04876357861743117;0.10538576922939957;0.011038834694671328;0.01661672324757284;0.12112558177861305;0.07955972719208394;0.06333149154709197;0.031192012835802526;0.027664118714900293;0.04144869676037892;0.003948980278381314;0.0053084398697623774;0.09518239806638232;0.015728696670052323;0.00890961110129188;0.00968964450336477;0.006308094515479496;0.009961848536423042;0.01734948718656748;0.022876129107514503;0.0048246088092340125;0.02499900502927787;0.0012368584540243485;0.03732068373310721;0.0051207050605583835;0.013527355213341316;0.0262710360272336;0.01343593068944738;0.011506097131479907;0.005097388832229409;0.0031960377348146454;0.00326461424795034;0.03531997675440125;0.040207856155171584;0.023128306401103672;0.0464352052134468;0.02818383706551162;0.04218306621742832;0.004806695325777166;0.024335442009878416;0.0012924084838405547;0.13696342746545367;0.23698147531170421;0.006150650864564996;0.07747279925235391;0.07307197870742152;0.04974106137160597;0.03344665503251161;0.022592370559049314;0.06511082006153565;0.01933655642385077;0.08967175562617667;0.022857095069543032;0.05110967068118624;0.022701557766398688;0.062163099737281104;0.01606953379689857;0.013647368057246716;0.11938071604442153;0.1227408883858017;0.08282698939380917;0.06076939977989768;0.04433162042264535;0.029523176601155894;0.012450234131589532;0.012795361873436533;0.014029828117773306;0.024229978377368275;0.018495625436087654;0.002747617698962221;0.06099340254552146;0.008771479936363619;0.022604615862458342;0.012838923858328428;0.05782120313199501;0.0705341643590403;0.06494352587116455;0.5331980133003774;0.35606347792375603;0.23467154240829538;0.0032647954552111115;0.015170784786968811;0.009395203086972488;0.042722063385077634;0.017609053604814115;0.025480461087447275;0.0266369872827471;0.010355426374107515;0.013114459214732725;0.02509529752928369;0.005977534283313896;0.060531423259452696;0.3107794416270105;0.05104555305058322;0.005118609806808605;0.003450719264620295;0.049119702243822054;0.05387782048222545;0.0024409387150699465;0.004518982395849289;0.12696977460332715;0.0763029945095099;0.017251871405545308;0.014928140658533321;0.03944345084907463;0.006028575539833456;0.4940061422214695;0.11019391074675577;0.09476084344941679;0.003533026508558905;0.14140873590968225;0.0004687616354729016;0.05022899961309335;0.0649056342712968;0.10002767928252349;0.02252301059859175;0.13473704763818847;0.003413171539544411;0.06144341797357483;0.03649148455311093;0.004921755453701629;0.005736064755739863;0.021464593295104306;0.019866155522165637;0.002899830982102751;0.030113747598288644;0.028320416235275682;0.023160578418715484;0.08203825007704461;0.18516166198131195;0.00031782754999177604;0.04514408622439393;0.026341832692089593;0.11600970272365939;0.031908767918223;0.02800623306926815;0.009617909251727475;0.03249042852108325;0.011677385016235477;0.0041489837905513685;0.37080261145805926;0.008296882336018474;0.05557525045711568;0.030431192605114076;0.03947099228223423;0.020780492175985744;0.0019822607733081606;0.014876068029389181;0.00035363412121340473;0.015011185954687645;0.027243368078613505;0.0066867506686202685;0.021503488624513428;0.050625026213181566;0.020067151786171734;0.08458181236442006;0.13389166904846564;0.03133728723499396;0.0004760586693014487;0.09147277283879811;0.03157479245564298;0.029911775631719813;1.0;0.1484211655685348;0.021624090091023913;0.026592098574014733;0.03344344715822384;0.05903235689157192;0.05606957873333446;0.034890119640443355;0.01862498617940318;0.048846467004653366;0.0018133651267486324;0.0011764236549362589;0.026315475469569822;0.05378134446519284;0.11999333976424222;0.04642601785411388;0.025503542402817686;0.03656958163847556;0.03136241720503129;0.024252793577051127;0.03845411457679536;0.030726073999913003;0.052234856274620885;0.009343358286315776;0.016261374779251277;0.09077880945225232;0.1568454871487244;0.04843581723786558;0.03542468748085853;0.0056155941603656225;0.06068952175837029;0.36879147942550183;0.027957886229933206;0.13882471740893795;0.0441962869063392;0.03998427088563658;0.0327617784389661;0.023210048203766452;0.09720307577436475;0.05747363141231929;0.033959945964417024;0.06597511620639801;0.13685820157805997;0.018374207980093024;0.0705316997620797;0.14893999742737943;0.02807982040792416;0.002074634616250222;0.004965843252123451;0.050494146917366874;0.017240468022263943;0.02367148645823548;0.06268686068199117;0.006536054520297331;0.04831757921349361;0.022186401694471804;0.022191019656295555;0.14498881883398032;0.17850524434839174
+Mefenacet;0.006896226959546212;0.0;0.00114673655777155;0.0022259737716468705;0.0036160905189980617;0.02693254383646177;0.0026950444304710865;0.00019491131599168868;0.00018498443525383532;0.00025460049001889163;0.02871577746409084;0.003120145584064318;0.000442240685357334;0.01212963513045408;0.00019560430061096978;0.0;0.0;0.0;0.0;0.0;0.013869398079709144;0.020172073408018385;0.0422451172527508;0.0017215303844038943;0.012165777639355847;0.009168860493383604;0.13049940182997505;0.054629159787683304;0.028293737748673792;0.11719988870651075;0.09773781401092252;0.024857047852847838;0.018384431789355084;0.6605592284700187;0.01603738806816013;0.03018863395496989;0.11851774814389783;0.012937013803007272;0.015021114097426097;0.0049784982653914;0.004450953497513914;0.005520425539158352;0.02075759167392101;0.019722561579175096;0.0701888401326245;0.05658275370559562;0.05856172865037129;0.056546733170946474;0.06451046470080647;0.000703788990638499;0.0;0.009805423246492277;0.008920082381856624;0.01792095601179832;0.019725767072127604;0.0045391950300716355;0.007679968666291474;0.004773144465667812;0.008107425831946668;0.011895286153168828;0.016380337975747762;0.012739320387529481;0.00937192323460322;0.007363018645627912;0.009056679415608138;0.007546801062361487;0.006657743653817358;0.007351522582904789;0.007598064311670729;0.009041858442993895;0.007101555156108027;0.00944761009265583;0.09336609068227607;0.08296117859342711;0.03777010714415112;0.030305343963768386;0.10001462115175479;0.11324480793518368;0.030806241915139813;0.01522775925813869;0.02919158394791111;0.027446584045332848;0.05393524517155491;0.03145629710716113;0.022325663462725177;0.010074040899361134;0.030604095913971827;0.04105788088779208;0.09315041057890369;0.0348695637936081;0.009967666136969451;0.02347294284036743;0.07272691719764404;0.1229310590618793;0.1257085531077107;0.12737300184955433;0.24928859061955616;0.0403608281677386;0.1303598365048951;0.06209924388061191;0.09111061549408409;0.07868784165544548;0.0772836543150486;0.06109189793992984;0.03735106634607914;0.026205849491467568;0.0013067434609026305;0.005956729981158868;0.012730731143698213;0.0008074568905320383;0.001245890143564958;0.00025085067149662393;0.002122740059521003;0.007981778236807869;0.01855715331567117;0.0015039382308192732;0.0013431394012110342;0.003804222759929906;0.010755414923262591;0.014107972636813876;0.005728236727734699;0.006850689937589485;0.0015250482449410288;0.02092328998975124;0.023892476957643273;0.019257413381675963;0.019871860721366125;0.0972255566991134;0.09705641780606516;0.11906194744367361;0.12429508343038216;0.08230155016360961;0.028006244366911754;0.0877174261660606;0.01887283568444412;0.05828640895362823;0.06953652599354931;0.10486646540219055;0.11659030896609723;0.1089326035769006;0.12028569426095524;0.11633556385642951;0.1340479368549183;0.09465638544151653;0.12956858073938646;0.22117071698545498;0.6118237069499973;0.13515279724840898;0.033777453386342124;0.04476315954109037;0.05013128068304532;0.12014463667615842;0.10344429311073841;0.03835899738341428;0.06181585290045294;0.09561394437700942;0.004297592634929092;0.00192925435222325;0.04457451267821975;0.0;0.04199244656224562;0.07174449092832255;0.14671995472185492;0.0225806923484337;0.01258366596574294;0.06376037448982547;0.04296398397545397;0.007496303826517224;0.011320216997964342;0.06965143237456446;0.044893701183734584;0.017529266944285235;0.0016319612548408797;0.011717541155422815;0.017309472121205392;0.010149327497998262;0.0009388333832042892;0.05958357613391585;0.07714083399225022;0.043617105925025094;0.04562872713097468;0.01316599050360794;0.07998028956563427;0.13470157251996479;0.0010652822592844447;0.03908709562556214;0.03698216780533375;0.0;0.00707283877597842;0.009572149499341709;0.018002281499343242;0.00426294493603533;0.013612078759893193;0.001436534217541185;0.026628831548530945;0.0;0.0;0.003837181848669874;0.004817631575436999;0.0017055879850459664;0.005530237512506514;0.005027039783367107;0.004221634926292328;0.014642154512385097;0.03195584073807166;0.005291378961312753;0.08251382799606705;0.07596498743403572;0.0968775576265538;0.046520209063204664;0.04681852480168811;0.02606846298613928;0.05530649236369052;0.011367138947130134;0.05934793106542036;0.0592528344559377;0.05693021393223126;0.18348378145364858;0.023972747132282292;0.026815707094768302;0.03964081101817776;0.01854570816828646;0.006217847959963979;0.01409323573905042;0.005989297303638762;0.009889358927781741;0.00787930443852631;0.01961049155570259;0.013750159075673715;0.010746456866651568;0.014541697358245217;0.0126329715061156;0.01113048543862116;0.0058343605991406896;0.01072296861190573;0.019474747495042966;0.0036700800384225755;0.00839425597447029;0.006348170711692167;0.011479899044124543;0.05007513627562046;0.0794343629001757;0.19470549315957442;0.2902984161984017;0.19779015774627365;0.0;0.1606111250175465;0.03955173779599943;0.13531014417582132;0.05286784469261262;0.01151953297305215;0.010499060891818887;0.02184979484755134;0.012874103255156937;0.05547150482814278;0.050051894917392765;0.09752427727163086;0.2651760871208275;0.030511268034590845;0.00043592245697979406;0.07225249415557727;0.07594925132087414;0.0012840771947078787;0.017927975760197768;0.004310419140047765;0.12049102895762982;0.04719243907801301;0.055581445241292445;0.02433240892145775;0.0066801178355947255;0.019940453649788616;0.017132994451918952;0.04259391334923476;0.09317099330608844;0.0009001595498197006;0.012943233982313;0.00018661355313948004;0.042900351583174394;0.05512877688095915;0.06285997728434377;0.017368383221865485;0.0828043621873013;0.07127152815626688;0.011604498938050836;0.0081581861222313;0.1022605827171904;0.01428769109289878;0.011634289831305007;0.0;0.08724028581509338;0.023168726357489667;0.004040985505768653;0.10521552907341919;0.02595152955739582;0.04969826376197985;0.0023871682284501775;0.11918753269213721;0.1357991014194067;0.0598477091640079;0.16720330665170446;0.0732555123765541;0.3186302242751752;0.012272194407957534;0.00865580258090907;0.004103277086515117;0.30292575590407606;0.008170203380503702;0.019424591650765363;0.033511315901799815;0.009404010110207707;0.004978889125740362;0.024400465892804552;0.0;0.00032984995340574574;0.16221087916875118;0.20676322570659766;0.005013381432569507;0.010237693920899115;0.7562179526845487;0.015622107798227773;0.06597688451111305;0.0800858391447754;0.16829596207207723;0.00819214799026476;0.08208312644256328;0.05378642564752942;0.027087707879924136;0.1484211655685348;0.9999999999999989;0.003744736915892449;0.014481688619316643;0.005270381294229639;0.06790716014454933;0.07484691966958443;0.09225909538819639;0.14889718036937863;0.06394767764755924;0.06613815677054627;0.0043236901756149235;0.027386375356529075;0.0037600374425595887;0.10767021000535823;0.01485126810716853;0.00020600521519726286;0.0006605379116705496;0.009551833127258538;0.01596381775217341;0.011152488557366343;0.007748697747393601;0.012231476194801711;0.0019270492872644953;0.002706352937899736;0.041513070615393485;0.7158591157006106;0.03213464610301325;0.07340133569716598;0.0016586079522781583;0.02412561239258647;0.030362020583966875;0.24158001273991087;0.10127018142207747;0.03374437953473046;0.05166607680045971;0.04983554793031068;0.05052323223713572;0.024993767503944747;0.028928261150493472;0.002560565605765428;0.025776202927608936;0.09435940807348646;0.029368077155442488;0.02127673005711133;0.04780524191537745;0.020508423059123447;0.014774184572155872;0.016635025130672984;0.0825241526592894;0.05584580539943467;0.12344340529580672;0.03569997984786118;0.021118543553371272;0.05677343613264482;0.03641848494060368;0.03374112749717319;0.1336963467538178;0.15082352190116588
+Methoprotryne;0.05998924524245105;0.022769372061429576;0.04917727174235832;0.020171352626288414;0.0222112481410444;0.03152925308953222;0.0226379327416062;0.05616462507883604;0.05873130453520331;0.09433212375327966;0.7379644267679208;0.045969290417804176;0.04627353042288236;0.19298920313025528;0.0785948583962595;0.09626019870732243;0.024357120447391516;0.02362126055324194;0.024979656986019092;0.02608629976183894;0.01649255643653615;0.015361992674499133;0.026279418647601027;0.015520845231596152;0.0373180255089044;0.010339430091428783;0.03984936159796401;0.48416104538708044;0.8282740536480566;0.041866721905947764;0.4595946490175248;0.010305688728525492;0.08970180516235605;0.016580261493767352;0.015030551256704085;0.10359952365824317;0.34943061849924517;0.8194516724480326;0.11918848486626524;0.04121005979539613;0.04106893328067878;0.017190875726894712;0.06948160241664413;0.000588892847098977;0.020397312091508635;0.08538535157507182;0.08497440129625364;0.08336833895056182;0.08713049589117595;0.014743786212448512;0.02637649416058578;0.017156457403661514;0.0682748524051645;0.05685049157144676;0.061421887054126253;0.01422669582783105;0.04603989019417991;0.02771768522722886;0.023690217438218468;0.023965274019837224;0.025960187388383692;0.03712434956849682;0.02423267876444355;0.025054238571899555;0.05530793183689423;0.030312488533787367;0.027109745298448725;0.014416659465122102;0.012677173784246529;0.013557923265716742;0.00697974012020999;0.011916766546986871;0.011470831884745054;0.013046392893829653;0.03728512976664179;0.02731513560709623;0.00795442152742051;0.00296720923681206;0.007087644337749379;0.07127279695884658;0.04436453265900539;0.0396241759688199;0.020826023209116876;0.018068839537606022;0.089507325814551;0.08456107223341118;0.048912274301074775;0.048545209064799075;0.051409254453543794;0.006874786293180372;0.024663776705516664;0.01162357288454335;0.009949348131066191;0.029276202458787873;0.03043685720178846;0.012731021520025351;0.010466751029740484;0.01466820876626417;0.020224815491393766;0.012494141653376003;0.048605384324470195;0.056384767548611193;0.06622428285107383;0.036358445173205606;0.07681511409236128;0.02801095073128779;0.015497273816544347;0.01787021512311802;0.016040828326415256;0.017196868301577312;0.019043132017393598;0.024212452691030156;0.022983889874010083;0.014362266300412528;0.02080525364869434;0.00654065381046801;0.0053992634967939025;0.06479387925760333;0.01264722743473721;0.01856399385324441;0.002718923037373684;0.0059835645183025695;0.008189021490740613;0.05664713541013727;0.006435718362195582;0.009441924450041501;0.011515304814395673;0.004937777891170435;0.0120928888341803;0.008082690132012122;0.026117891068281336;0.08620027489371132;0.021015073330441125;0.5041174127386178;0.02678879633105328;0.012879137682701644;0.7541120250373102;0.18273696200139483;0.38328652688935294;0.3174822997487343;0.1129340094031331;0.47177418463641435;0.057307360683982865;0.07636369532554332;0.2110260717140888;0.04770776292547651;0.09481687605729808;0.009424247731961918;0.20924159382146262;0.5762860271688005;0.030400819096477304;0.28791116572077036;0.21503100320817134;0.09145476767040633;0.21999800342482598;0.6643541881414188;0.7892920945498169;0.8884741829327065;0.8634690976416971;0.06485501533121209;0.8847508334519325;0.04376119116045808;0.03905089002131831;0.08149401916549562;0.016237664078156605;0.016682990353976263;0.020576865153455977;0.02522426288792314;0.025404555854190013;0.04583517257897048;0.05466498360232358;0.016772480100021154;0.05056012697640801;0.04550455435457085;0.047713212792362354;0.8305837309622779;0.06684747889648551;0.041522601522940746;0.07833557886849604;0.057592287521245004;0.04531339653335187;0.02376085613240632;0.02815041692312155;0.17665051952318758;0.0675738818598681;0.07391291639801956;0.036795614357695884;0.016460303689894117;0.03880159858367988;0.10560627419864023;0.1057958288326951;0.05131067642406946;0.2025047705506323;0.1021148412669369;0.039573831885114714;0.020819564965193226;0.020522302089578077;0.6214929890369502;0.7468460744392303;0.7950340296905702;0.5477562403311171;0.782954259721304;0.6661342877061781;0.65807505534151;0.10912301693364398;0.06681230714665805;0.5217348110221668;0.07661051385571852;0.023025892204357683;0.04598545084900982;0.02187761375651639;0.1829554348658559;0.7264446111193883;0.14464026889767315;0.02399483208573222;0.032186853545144736;0.04495083428628965;0.07320503449194234;0.0002663400703531065;0.07106923087755315;0.72697966170184;0.15576330006100594;0.003329530725221109;0.027684373417063625;0.029991376120488425;0.02118414181042362;0.014865293041373902;0.04050572700512502;0.023772346974058587;0.03398148537183461;0.026420435185475384;0.03496587504772016;0.049987084337923496;0.026571082586136344;0.03322852617763558;0.039809678875384766;0.06662198771800233;0.17139831692411078;0.04949153712322558;0.03223066601809643;0.03060260430100592;0.1813711090630032;0.17710259061910544;0.07946724823268146;0.07608742715680747;0.06775698306692277;0.021191707534648545;0.016350340908386028;0.10722949236007166;0.03264633995518904;0.02600502168373674;0.025572097852226708;0.008594324419918756;0.04312370025619833;0.11042424329029744;0.008327946540477905;0.020973028679985056;0.026755576774623806;0.09328136290492141;0.861056421910167;0.011948524681917124;0.08201733358946885;0.020389676206705107;0.0006011574034940344;0.032154296313146154;0.031842358106133804;0.12581913799732328;0.18483044423729458;0.11668196008199809;0.08471439857176039;0.003325123509556773;0.08402536797560459;0.1942122069279837;0.11698585867352468;0.04351521958749832;0.09437700312515086;0.02361316508001344;0.00972727972746111;0.0048143906275487595;0.10849525383952184;0.08271598636170739;0.018221718731677498;0.012065001643643148;0.5796753867966895;0.4783452071086605;0.030231857017071304;0.12257971649816798;0.0414446135028973;0.0031623762263673165;0.006756031667871552;0.07860131848276442;0.006415088986866316;0.002082904770033369;0.13134127171612225;0.011976434786163795;0.039733670917071834;0.05706920265216255;0.17853270030096863;0.02904949194221801;0.07146865473103847;0.0398925138018684;0.006063862536013691;0.5463352743006527;0.02573065721523467;0.16444477817884465;0.03475269693361456;0.0098197988118948;0.025405219512563148;0.02148084451913523;0.08882944902642902;0.3429925876580795;0.020846729626432654;0.004027001482362436;0.004167801639504082;0.04178821682618021;0.5421733986793124;0.019456347492888153;0.6495076750651109;0.03286641065578623;0.007290126329251593;0.020455103106894218;0.03587031687300953;0.06812254414648984;0.011309665098485449;0.010820118491427373;0.0903520207904326;0.06706711108760476;0.021624090091023913;0.003744736915892449;0.9999999999999982;0.27386618778375343;0.5117913306182071;0.04605851201916439;0.030087219121838687;0.0027672679629682424;0.02543343068194612;0.03129501734216165;0.0015466661021700523;0.030115569818926657;0.02951206176688585;0.3317449642438909;0.02169442341294733;0.6012342378598027;0.1593478779238129;0.15950691709406706;0.07512675384051046;0.06618310312069375;0.040489064648134655;0.23486740815171292;0.0038879351833677476;0.00046156861825392867;0.0015977268618154333;0.013542749009540517;0.0330475587885743;0.23527206908444256;0.015207171129578102;0.004033755841229788;0.05394175909813899;0.021386634201062498;0.06190595261022591;0.025608441064668436;0.14212064368555616;0.05968188490792473;0.03310721231509576;0.12531203408280572;0.03806798661636104;0.014903929848795011;0.021845227337639623;0.013785219680854631;0.05643302382307962;0.1042895337310119;0.03871278367049928;0.06378703441857186;0.17753295036258454;0.0009858150863192882;0.0027993586648159077;0.050731287128797625;0.08463535707746615;0.2439171461574324;0.1874837319381346;0.8666832297430326;0.12394282699468323;0.12975281404854552;0.16279356582741056;0.2480670805025969;0.10496525194001774
+Metribuzin;0.010662064075493144;0.00213337846124007;0.007236265358731869;0.006969383261789765;0.006967342822012138;0.02428024292820811;0.04175479970780149;0.04326366314522252;0.04591094009148075;0.013591617978261333;0.16103455774616673;0.011110318803978423;0.001077035092192724;0.018697856282404966;0.004163860077841896;0.01282017030995194;0.0023270111508016393;0.0021505521838124497;0.0021725248958366743;0.0024938622840258305;0.001178071572862218;0.0017746996374145645;0.004909239996438167;0.002242362994154007;0.0406126044869622;0.016580217494804452;0.0484037658149212;0.13018787011004268;0.1514394031093269;0.07748225530655728;0.07577032761693922;0.00560232536875788;0.04923685967517728;0.025082549483027107;0.01591312189875746;0.01914357075514577;0.1586475618867478;0.13147358481728558;0.015977123804942057;0.026252805465761704;0.011587098206160803;0.009968910758732387;0.05287022767191756;0.0;0.020756279042991405;0.0197052018653667;0.02107890763397145;0.01987997922559654;0.019938862859437977;0.004897744996952443;0.003577640114058225;0.0035315877277189486;0.047408435248296396;0.02390950084827717;0.016912742623703878;0.007590759414992114;0.011677195822607258;0.008528423794979144;0.015334522853745461;0.026821077359044123;0.010746694803277501;0.013481054999300926;0.008982536831091384;0.008692044027471089;0.013958856517398534;0.008391482400442454;0.009091257127351217;0.012793575927639318;0.013103651380425657;0.012682201955195361;0.01066155475543132;0.00783741697719082;0.017068694510820572;0.05752201931432536;0.06241906509565335;0.06057681654688423;0.004981293337091178;0.004540103625340685;0.011897287535977769;0.0404223857886854;0.03494711436211609;0.0373079576019168;0.029681213972163018;0.027817960494938093;0.07210037147949565;0.05561693889533105;0.035421461371681194;0.03112709154232914;0.03803455493407914;0.015749465480474647;0.054211266637416655;0.021261178779798592;0.004702615834483944;0.02713021608873853;0.029116525368000662;0.015203235945675932;0.025579020013185114;0.020183423116853994;0.02027938853783968;0.031066794570479377;0.0333750459807207;0.093474636177381;0.10187114238471887;0.015554873195471317;0.11525016873085683;0.015626250797820603;0.011134053908370096;0.010308303080219756;0.009694612271141276;0.007403077995011455;0.009307345245839566;0.011933075647899343;0.014310471047698963;0.013190531929963596;0.015032884714278497;0.0016729180868998341;0.0007655386347622981;0.4493975359176224;0.008979265456847314;0.03630311152242209;0.004112818931524541;0.0008680008999335353;0.0020321119349022156;0.09934167383765731;0.009387975124765614;0.013001794685803633;0.013423870749048513;0.00825140470746714;0.008020609363442281;0.0062905551075022395;0.025196163661679302;0.07116994629357129;0.008605600942852964;0.09854878412143545;0.004370640822688371;0.03598848451574351;0.10635164823726649;0.03928235924907746;0.0904223800475891;0.05970028286083383;0.07597788451161132;0.07814795969924372;0.07178100187524097;0.03073945805563808;0.0854244162305283;0.008950024757575432;0.027228039419277126;0.0010466339071382614;0.03368685669849269;0.13279795450766496;0.01370947308672306;0.07502355820584636;0.03613185132579759;0.05515902361721968;0.021953745948762638;0.13166165664139073;0.1274089750715922;0.14499997177886087;0.13703771879205756;0.04547313433611127;0.18266298353345375;0.06334939421329114;0.016295412965485513;0.026206522311924475;0.01250061103350237;0.012419460732415101;0.06666216913748803;0.019641291608313082;0.021958962911863247;0.05192723967716661;0.07738482812488988;0.0024333010268074097;0.008204925974238633;0.020187357650277283;0.020020792827352286;0.1373308698688996;0.0021868006739708223;0.23360956390443835;0.024549626968495445;0.05368021532975103;0.07708014934559572;0.00548626010061194;0.017091646695567942;0.026804977738502322;0.04474547989134585;0.04824749564718816;0.07767439432440491;0.0015657461846099979;0.007072896049460038;0.04462409541254743;0.06617718082429043;0.018383991379963115;0.05862942786652686;0.012954869431741624;0.019923383872003125;0.020677903561306513;0.022813428765872553;0.11951213673787796;0.11731356219524829;0.1380101468452645;0.11470697743559664;0.14412816711120385;0.12941624829091888;0.24464340618860395;0.03193296443018624;0.08305751445964574;0.12462974051404523;0.07249799520609577;0.04737550202554181;0.03050589907535143;0.04458663702898829;0.02055254599344092;0.1620775598038507;0.009396902707773533;0.018810385374554407;0.010344712590066835;0.037298758656448404;0.03458052041073435;0.00044093292774483516;0.009461945028009299;0.11964988729730727;0.04525332648815213;0.0020661228736410537;0.01765356782727151;0.016636038409344234;0.016163761621632054;0.010271569322062378;0.01850915953428621;0.010291211526407119;0.00999954464065364;0.009660715069697443;0.010867777804140616;0.015659448398096167;0.009508541247325296;0.014241804020754683;0.019518328129092554;0.023567218339283887;0.0422043310599438;0.02425738416179989;0.01746418313049576;0.03220299895214513;0.011215119920171136;0.03480292580637421;0.06060721570885049;0.04263132985985836;0.09131749982239384;0.02462292979125079;0.01284403358060675;0.040254154004933325;0.05601742361128394;0.046653399476840704;0.046776167299200276;0.003512765657601333;0.030153507330168396;0.057398787119950404;0.018778471846233758;0.003381946286162611;0.01322601217176769;0.02080136976540854;0.15316774348287762;0.0033833463518729207;0.04498276245165109;0.06684447931095709;0.0003113076565030713;0.031491367037811545;0.005124732343504734;0.03924352122153146;0.03642575825874307;0.0192135171668864;0.004809469912618452;0.002741218652748683;0.03136997984558267;0.1686655494770454;0.014441386139307136;0.04895355318167284;0.07780511160724393;0.071557994606198;0.006108737645028374;0.004004913826926309;0.034231156966830656;0.02311879316276505;0.017340995966877038;0.003111140547671028;0.10075822516082102;0.04860951098483227;0.003459578470719834;0.14382829814125314;0.0046475820139665535;0.012267977427692207;0.003727300762465997;0.010154787022473542;0.00614886789224971;0.0030453026802609424;0.026753880709104883;0.008078814060857158;0.09161293635322593;0.0021499106515312375;0.034539140088279276;0.05038762869093907;0.016986237515344352;0.05485613952652543;0.0029785917567158537;0.09656363343577606;0.00196011430057872;0.9729113592261598;0.006860370951766493;0.002405076700058231;0.03550238114705929;0.039747654752468636;0.009896430837476395;0.06688692007172632;0.008031559293332657;0.030878888218219228;0.030049543593272256;0.02351705321953921;0.1158831384119302;0.0296107381972013;0.11093567400748913;0.004191856260526746;0.0033778552817451614;0.05003761719213774;0.044878137058194496;0.03268785577172569;0.021257760608396365;0.025942470317211953;0.05435229825798888;0.002126077211086051;0.026592098574014733;0.014481688619316643;0.27386618778375343;1.0;0.1162344046187154;0.010332812322159936;0.008732577998115023;0.0017712545438352194;0.03392648993798293;0.03226295411630568;0.002973273951592574;0.002101015658782887;0.0032904629116053017;0.16297389520916722;0.011666677523692546;0.12816617425474353;0.026013053881747693;0.026270193836199492;0.0059795638962839796;0.005131720031115352;0.02463994279743748;0.027397129316696113;0.011676815368627249;0.0010060955280889558;0.0023930264263965777;0.0170362828636566;0.013580953819156881;0.029330543428486327;0.013509633508671097;0.001328103053489336;0.014454763261154404;0.04215006769494735;0.046063053178044835;0.014617527931433635;0.03364093512904124;0.01668303449135995;0.038224720852448976;0.009593607255777589;0.03634146796436373;0.012225032546329614;0.028360318078378046;0.0503865778868264;0.04792563434669389;0.07258486048281704;0.0658289274272825;0.05338029088915349;0.019553112032969954;0.049650162365417416;0.05473684002803188;0.03477619174003301;0.040286509873049686;0.12092151347411528;0.052871834158606454;0.16800191896153976;0.020331501860103122;0.06879336928448058;0.03872197501512275;0.07396760535317494;0.0328681907045638
+Prometryn;0.5370866298729147;0.5104263005996973;0.6438816664484392;0.520584160988128;0.5232557412598947;0.5254629239068926;0.32466433881748546;0.5304590976051679;0.5294930558061385;0.5586977560217242;0.5023077995964172;0.5294336778256161;0.33634383056689154;0.5185904765786318;0.6202232512108592;0.6255476647538549;0.5329040628411058;0.5227958483982755;0.5109376817359043;0.5238307767261381;0.5196802274665586;0.5111379598338694;0.515486205601988;0.522821341598449;0.5203134042847117;0.03091539410393053;0.26778515711218304;0.42665407916275483;0.5089793305318658;0.21230421543036632;0.26398783642007884;0.1407772737004346;0.23238478655271957;0.41317893055880467;0.31366415968873945;0.6999972541702583;0.3869444440383821;0.4414479229804113;0.012700043558462258;0.30930006788870545;0.10869269042931105;0.36535433110097965;0.14006292251311928;0.0005693005089956824;0.03371559007467251;0.03409358657742066;0.036610593232150906;0.03510277168509177;0.034040516865866094;0.2590157118114546;0.19624794442506316;0.07759180115227277;0.05501937525657421;0.03193114459987924;0.19030259077410663;0.37305895750227736;0.2760353622928033;0.32542358399591514;0.17372579222247614;0.03217995587282339;0.12408925702244629;0.26623742186723215;0.3282966879283007;0.32328456453657656;0.2832924488157092;0.32488416873874576;0.3209136089046314;0.18595744599780392;0.18119322202912572;0.18320168889703697;0.16465832616242623;0.1242657524627038;0.00587927996951833;0.015341578416209612;0.033894507206324934;0.019365890559564423;0.01001809478700587;0.0028514843444402177;0.021578778776565676;0.059732570570740794;0.14156873477041876;0.12313392606149161;0.02059018687572664;0.018671182537123025;0.23571067045793068;0.2214653113216268;0.06899141422978759;0.07481004382123493;0.04956735307501962;0.0030237993395965308;0.031699865288974435;0.020910524351197397;0.023743086301606337;0.11772878677803714;0.12012808515137736;0.02546576935339545;0.010168233602063285;0.03550994273089365;0.04530477273771418;0.02421296655840696;0.12203108162334592;0.11465563123195803;0.13831361992147662;0.07193697946360515;0.134257755310362;0.3569406832251497;0.3077570858112316;0.326750141590078;0.33046602738893294;0.3956624665050979;0.37586352392176176;0.35239996850765437;0.3953947170817282;0.38736403563475313;0.3786451700000573;0.0728776003274257;0.06508751111601266;0.08705311432225186;0.30057842305157306;0.09356463745771762;0.022838126715091445;0.08296006164424125;0.29081516133676777;0.03326727836370033;0.0152562970444803;0.011729141957754345;0.011452952977539052;0.03126366310414068;0.033428703053603175;0.02901437116702789;0.03675298369880517;0.11994044081360235;0.14563227937447562;0.32997421107523905;0.5317911116779742;0.022140035072963832;0.5201857406385225;0.07406274251629336;0.5344633229341957;0.5431974608935548;0.21238633135105045;0.49725901671933126;0.34578619287819967;0.14993230908431382;0.5637767606082809;0.035190293077794345;0.022484575211644466;0.025892141183768657;0.6227346233933524;0.28051349628368594;0.5255445732080273;0.48344070688464685;0.09852707761730876;0.058612967863461804;0.4102416564727381;0.5542294402172302;0.5498534613362481;0.5650793263084315;0.5359002150292886;0.04294642380543768;0.4789011253354235;0.09361765820113663;0.015829907785105287;0.022719401703916526;0.02865101005505889;0.0123837229137097;0.017106251163071705;0.011394376683933106;0.01750012192515066;0.05608080467978011;0.030893883377213112;0.05657263558551471;0.07097450790527766;0.0264001340775537;0.027153293052078115;0.42758177874700926;0.06170830372690315;0.02620852103287531;0.2077340358630201;0.4409416419702183;0.42646346928192536;0.015520544570534957;0.23223913615302505;0.5392199485774887;0.18101335942053032;0.053380046333644536;0.03452759396313918;0.01264358222583581;0.3429015154634267;0.5598136369642792;0.5682208995934367;0.4211965570570987;0.26521444903696306;0.7076224466752474;0.3744694475977619;0.3781223012528213;0.3687079361237846;0.6271490391191398;0.5563674019418278;0.5430913390023655;0.6264008264632327;0.5593983864027811;0.6064338607473846;0.5789778810303843;0.2201397346967327;0.5574368649792566;0.6533098206428279;0.18074221080644057;0.037538451207659064;0.02869930039043097;0.016138944786504295;0.29231479618929074;0.5879265936807416;0.19883728039459955;0.020700461243885332;0.21345799545606686;0.2700562336755974;0.04610528232435181;0.000837861829038903;0.5958914783373943;0.5255686426779789;0.01202660096403585;0.02308203641122739;0.4640414328213095;0.42206947678042916;0.29290869754502674;0.3768433221512072;0.28125389604504936;0.34571080632747375;0.13232400311621928;0.13583051305835425;0.12197150079595726;0.29326625302701587;0.31767873917509115;0.07130017966928248;0.1596486302928095;0.16225013708724798;0.2308514033087923;0.2009056000822957;0.16286377044211306;0.16699663491752795;0.5565398953983453;0.5750539601292236;0.04549014505630212;0.1022762776698805;0.6101326187249898;0.02411992472669892;0.03456470756098291;0.06627916807580331;0.02307238461430475;0.12990385079067054;0.13090918787533345;0.020628090623642653;0.46065901293679223;0.32568419036145624;0.022295630549257362;0.11406571908092468;0.30626803926753454;0.6242142470825659;0.47797281191639934;0.017603519144981126;0.23136104762703003;0.12409682579481555;0.0014555586313262459;0.08917025673123558;0.03468275422399899;0.23314190410370153;0.23553627432074664;0.2583257297560207;0.16870591216508365;0.023162583559520056;0.34486008362132115;0.4103385418957385;0.6182054002124908;0.09367987825271563;0.36391782261254835;0.029218426730010964;0.04788383653512654;0.009091315969026735;0.004943887064973298;0.03680063073498423;0.039041644161225415;0.017695032682975387;0.8793483659627397;0.155031906059382;0.010256052456986773;0.40447621137861034;0.22621862342794322;0.005290212161417147;0.02219430410236518;0.03200969670333343;0.0778910113765663;0.11786237530598054;0.06954432185255854;0.02317808699857681;0.1657945682757923;0.12972905851991756;0.050106353763547766;0.07312474971866144;0.04874850005398518;0.0075871179050714015;0.00281554105580566;0.9248402269828299;0.04748893833103707;0.19104079579718655;0.06515830255384847;0.07787393731991413;0.08729352673686187;0.028340651536393004;0.03332410533868821;0.21298368116988237;0.025062464345957297;0.0013224019266365296;0.0017914571825949647;0.13511934528137556;0.6019943047313877;0.4805479956037145;0.4491928706298125;0.09194756483597898;0.007446988702739982;0.04373108194929278;0.13852114726102613;0.13453770976394316;0.22345772977837725;0.11640108959118516;0.07555029995327096;0.5683074707155292;0.03344344715822384;0.005270381294229639;0.5117913306182071;0.1162344046187154;0.9999999999999987;0.05985260154463357;0.04817067213154591;0.023224808944511708;0.14326644005627748;0.04041489906392857;0.027235399333643048;0.362131747101052;0.45212991965896965;0.6030331435524244;0.2232995177399117;0.4094166194864901;0.023889045437043552;0.014234088283479518;0.012034817355490517;0.012944397064117983;0.037491917848825995;0.20912378569520082;0.006717890729606612;0.0015320308880689966;0.002870421832452766;0.16812919312934127;0.04898271679124678;0.2613870198078511;0.05285585213537094;0.0005333413940462407;0.04804957353751018;0.0404465541283923;0.014373852802377822;0.09527546554648954;0.039545764389826356;0.017723200064112314;0.06607972010611214;0.02928028813384005;0.07253128253383022;0.007357499195294744;0.01635192457753901;0.03286244623008555;0.07196866008805956;0.12168128114582938;0.05596524593622847;0.06566296217956677;0.663745999669833;0.009419170852023075;0.01769593966470938;0.0717722235085489;0.11922888451028715;0.19325504248033873;0.17133474982653005;0.41780702754097554;0.019614615517711258;0.6012317455415461;0.49594619951028346;0.305657490461376;0.24179240409750177
+Propargite_isomer1;0.07012573984804386;0.06693680067000433;0.06919091674742592;0.07460836292029306;0.0765560090847572;0.0900340046064914;0.03959282347069763;0.074313373054072;0.07499669519012198;0.08314998437484755;0.06706855491686871;0.07063540678964979;0.07175946548381561;0.06799132073394513;0.06824930479989931;0.06446484440015353;0.07006145541206868;0.06883227911537766;0.06659330279721001;0.06813421791969593;0.07401863152025814;0.08385085016546862;0.09470037386758458;0.07061245577353516;0.09196038238273065;0.0253883922461781;0.07136113158945392;0.11225182542056278;0.12293758551725503;0.11136701029396966;0.08122274721801144;0.045577674703383024;0.035560749794732574;0.05291938903540677;0.05292806870607391;0.07543001160965354;0.0890312539059141;0.06804341570427977;0.021508209863700518;0.06907686893929929;0.014336619839099797;0.051822425502699686;0.008057449027345218;0.0001959385856234338;0.003139741625149448;0.012687061159154621;0.012644470016893736;0.013003533679197073;0.015469970377162062;0.03397620446179337;0.02369777437231984;0.01638676183324167;0.016534663810027887;0.007364612287448764;0.031088853483756368;0.05218729266198294;0.022932843961806337;0.03091690729557088;0.02184163811874205;0.008756477305564178;0.018678245828896347;0.04106856921407015;0.04414335381259241;0.042116134400449715;0.02809668601025302;0.029349016072919055;0.030704446357452096;0.029960523723982436;0.02451534494321373;0.030294234388057797;0.026066455808015306;0.01758256512155883;0.10649704502755955;0.10664185213211552;0.34917760203551756;0.06144912137900783;0.1296290672001476;0.16910387587552878;0.03924616217058472;0.016177884021029692;0.06236342330235658;0.06110832813933538;0.0818462509414647;0.07775759935951963;0.06848174710751717;0.056138464528978416;0.01043994703047852;0.01390882961014427;0.04955646743495906;0.019739700431763242;0.024608780196455196;0.015640193636373045;0.09431145692888865;0.015376288699487232;0.019721951246725555;0.14039756681645926;0.1351491283297354;0.049484124549882366;0.05342208271397376;0.037421175584054604;0.09549032118985087;0.04981819232172696;0.06332885440813515;0.05477156248329331;0.03498637596726758;0.04519328440049781;0.04093571498424054;0.04285315542150847;0.044238462854417564;0.06748333968455983;0.04867712121708368;0.044957037659667576;0.06230202853056519;0.05225697599948874;0.04984849135938701;0.010521373999843854;0.008795980675137097;0.017102109424408492;0.04336413090753781;0.023113130621941622;0.021900147933343606;0.022774064358898734;0.03766224994364933;0.021560411164091332;0.032633465962960205;0.01606821730785429;0.017703101893334298;0.0707397600398325;0.07049942943284254;0.07323357712082974;0.14285439695142135;0.09975029891050166;0.05846192377413946;0.11140129610390201;0.07824331884980595;0.10531348237413178;0.10703233830010007;0.09053679003368134;0.15546889637886654;0.1346783051431107;0.16200240703179877;0.2761590975262041;0.09491442267368586;0.1317526482750185;0.11156865033515335;0.0757784039725313;0.08641339786828421;0.08361346404425768;0.08747611897457862;0.11094800894496198;0.04282054590846646;0.11499860476880942;0.8842087798540977;0.08764882896533567;0.28474005540467906;0.3458972818201764;0.17387163904056427;0.0797162781191209;0.0811750321630329;0.10127461638057755;0.0691071550233236;0.019266422757415205;0.03197942193182931;0.04241303250957262;0.022235453919810435;0.019085561841290878;0.052650403202981415;0.005245043680960627;0.0074226555089410735;0.05958628773681549;0.060351206880887846;0.01514311095488435;0.0020702368135597864;0.006014286285774646;0.0068787199682498485;0.09476828385413472;0.001317348032040658;0.020143044481201116;0.08983338635243582;0.08943123211253576;0.10152058454869399;0.011036204107329726;0.0994054724839543;0.13479986525937637;0.06821996860018482;0.004100671119983308;0.02066217180810683;0.0;0.04400624759069804;0.05659407480583476;0.11608203505202604;0.08151570846760593;0.11256250264141297;0.05218870257671202;0.06437915596412766;0.055111831479951655;0.053709500808432904;0.09916917398993774;0.07726883851201248;0.07838009147594746;0.08674959103664771;0.08047445646301399;0.09269163306500239;0.0790322537170254;0.022465741354553925;0.07349527661874565;0.16835765789666682;0.13680343245535603;0.11484463589288675;0.039728847515142655;0.015823316695482027;0.04978715158158008;0.15767424918532705;0.07781772777196524;0.07620589505627949;0.045350399572616724;0.07834512075212406;0.12282895750622053;0.009951955625981269;0.014841910473417867;0.16326591318433187;0.012989633358819665;0.054755807349802066;0.062310689719260424;0.05927933589825657;0.045331987254621356;0.0540745716417075;0.04552602897461009;0.050404475395435536;0.017385315509661114;0.019499901410938617;0.017679420863965154;0.02641054945623054;0.031107795090441533;0.015754417187619985;0.02079249753181616;0.020361717021778566;0.057398954085727066;0.03648119159332112;0.021218669090638395;0.09521166719542623;0.15520672687151849;0.1468604538715165;0.12900003799237095;0.12998668118341114;0.015197428222750593;0.005175340804069356;0.0027222260281009555;0.022334601494956245;0.024690795540995823;0.01704803183342615;0.017145965799650865;0.022305330154449396;0.07336000680936966;0.04552742922193601;0.18155083598354954;0.6621840738632009;0.41384026491568976;0.03518795545024215;0.062114259853369935;0.09018212485639142;0.03614409510409503;0.005518609522328046;0.0376702168365757;0.011847465238019937;0.08239676113363548;0.04041790292040843;0.05698645442594436;0.04160009666786531;0.012664016796525434;0.038563217670377875;0.0033936929664887053;0.03513053218831957;0.07435428226083654;0.004493137675664959;0.0359371306754581;0.0009005363637529676;0.08442876772280229;0.07172893047033053;0.8618406916112095;0.03193251174626202;0.05388048607002465;0.08950842896036026;0.07967984366024253;0.025239183284503537;0.2721131716397852;0.00933260231815725;0.05255978837299257;0.0;0.031998864426340264;0.03797290472883161;0.014163078285553393;0.247884651871276;0.04476819669784201;0.04909537731367965;0.01723201611958615;0.06348595092885369;0.09083418173953915;0.032035497396242084;0.10245482169263842;0.11355889508244489;0.1095394759377023;0.05175344433439555;0.0262711038926456;0.020141066138362626;0.0931877906070581;0.02783350139876096;0.0076768503292853184;0.0576185508794818;0.00740523733800864;0.01670852789950792;0.03326389342126849;0.00035479427744144397;0.001496777880782025;0.10064457215058775;0.1445157969064303;0.06497632243939465;0.03937736714475628;0.05563890381887223;0.05521549656410096;0.3213065388350121;0.03413056372204428;0.10391443181195849;0.03221482613822855;0.10351097115132736;0.022479849409745168;0.0009591571822254153;0.05903235689157192;0.06790716014454933;0.04605851201916439;0.010332812322159936;0.05985260154463357;1.0;0.993252044228872;0.05304644660116841;0.036319330460463393;0.04392787949948113;0.05747095057330954;0.08295395098478373;0.21890283122361226;0.07641552376218437;0.030358338317175753;0.04292950036317076;0.014067285532469833;0.004288989199874809;0.00326114206827546;0.0016464809464763238;0.0022916801968372413;0.0021638503796896718;0.006970066203772412;0.01443666357108208;0.01907367572780906;0.020508066596358537;0.06374248829601227;0.11009976004266943;0.08172432685530998;0.002174753775215262;0.028717009846144847;0.016918865214392488;0.005837386287993366;0.10288335524219347;0.011929510427197035;0.03883988352499567;0.012354391745548678;0.0013956713960511396;0.01859187074960739;0.019837309527850865;0.009420538326959764;0.0267604805286926;0.04958793029008612;0.02088297963953634;0.0228535976277585;0.03849709720487581;0.06757396305838408;0.004023597209244438;0.015020721631713441;0.014121898948911167;0.0729412354872;0.11409823025481385;0.09269375222884806;0.0865199472401606;0.933348027918741;0.10562572326542319;0.10808029498183042;0.23728045026124375;0.20560588522808376
+Propargite_isomer2;0.060871014520538794;0.05724149934910279;0.059630573497757425;0.06508540372603634;0.06735341917435414;0.0858823041716832;0.03495746256502367;0.06430984886289395;0.06501481234133336;0.07753952697404771;0.04689164433666012;0.061987201904976565;0.03771040944293879;0.05821043454838917;0.058196306941930766;0.05521367001925983;0.059763957675957276;0.058674784301920815;0.05683093143048526;0.05827621843451074;0.06277470963812236;0.07255664677664153;0.08416307836784617;0.05947782836950224;0.08048473015040834;0.026580484995107727;0.07486160869205158;0.09523416582495714;0.10660377442754117;0.11761584848793108;0.08311997515898402;0.05172057895033257;0.03619480073659687;0.046070485114727736;0.05097122280945556;0.06969835605184889;0.08656123287194188;0.050435697858577745;0.010797163889458571;0.06175647185840547;0.013102386414841518;0.046366274715276386;0.007000308539526113;0.0002367368200535696;0.0022062914376390183;0.002370713730343362;0.0020678177309772627;0.0021890661404475893;0.005045161215040394;0.029669221106338482;0.02089751884168236;0.01466865989826201;0.013802776372789143;0.006925720493243458;0.027636250693643016;0.046692360378149;0.020350072461229527;0.027276680325345467;0.019415739844946683;0.008675426627755452;0.01665248522430531;0.03768486937123622;0.0393610688414478;0.03770659823714009;0.025439980333586885;0.025984599133467123;0.026996604654128644;0.027360487597672987;0.02152323000430016;0.0277051000280354;0.023900044439404574;0.015448100123298206;0.1465652496960348;0.14710544838740958;0.3738226012807297;0.08666958979180313;0.13360330199911202;0.18544962486196206;0.03325633567443972;0.019270950238153593;0.08851445434796645;0.08740045220080137;0.11522185230808378;0.11088140879480689;0.07493027541258794;0.06049820209170052;0.012164354786624419;0.01686146678381402;0.05974603116928909;0.017141763197825035;0.031244990430057122;0.015677457464577275;0.09670790797384712;0.020716498258347104;0.026124433332503725;0.1829001359682211;0.17971508142600223;0.058795887674188;0.06919421350903804;0.0447196563590303;0.11171024884669216;0.06081346591526041;0.0743655175616765;0.06496709472368069;0.04057441045667428;0.038872296741995195;0.03504109473871289;0.03666056189848945;0.038480931123932714;0.06090387022638777;0.0422685927852903;0.039097682679889154;0.05602353051792183;0.045919651561129926;0.043086126995938605;0.004014718982219521;0.0020648656020627347;0.0051120427172392045;0.041430806106150755;0.021442832887702115;0.030984092512836386;0.007414938122940614;0.03295728283043294;0.01006363289243744;0.042219613163254864;0.02041128281638015;0.02198484504628343;0.08485406985618339;0.08466110410249664;0.08769630080548932;0.16615305793484453;0.11380568610725987;0.05983022592954402;0.12684984816250613;0.06813450507372701;0.11669948950759032;0.10426705009904728;0.11713559771421983;0.15976881543983446;0.1412458084933639;0.15564984114386002;0.29038960345683373;0.1214166357094253;0.15262468217543212;0.1262184970953683;0.09490283899909566;0.09640411538016594;0.11609302125380622;0.10994847762088368;0.130423045893175;0.041618103904459934;0.1474059003983618;0.9019798072938907;0.08017698425689793;0.2834415178451;0.3439580661692473;0.1393421226483579;0.05751233946395022;0.06468338087723473;0.06105608712591892;0.04938483382213748;0.023081196310110217;0.035506171407576385;0.03521945308697863;0.029388954160337245;0.01824918301982386;0.045858493177742064;0.003818408800871447;0.006087288442545967;0.05400994387893665;0.06498151143423715;0.011905211091821308;0.0021343727791143154;0.005627590157682983;0.0066458781602277625;0.07671388931833126;0.0013631568305980436;0.02023791032346876;0.09255267654715449;0.08557164790008506;0.09928978297196511;0.014996118766300184;0.11052163359906743;0.12800067025994583;0.07993646289777227;0.006821088257733765;0.02017207478112566;0.0;0.03746872790938263;0.04975661592035418;0.1035996342284245;0.05234721683243539;0.10544032598509105;0.04480372298911289;0.06378026337534831;0.05077148836782155;0.04923343831017785;0.08126131418199271;0.06114492205707451;0.05848111966362599;0.07105470804588362;0.06064420170997021;0.07421641376317177;0.05836911094446946;0.019793843238023197;0.06321352770207009;0.165714804177939;0.12611335856570718;0.1161625623319233;0.040157156310962644;0.0176242651632057;0.0448984221303803;0.13248800549599496;0.07445387553961566;0.08965764755422213;0.042334244071391275;0.07684732137007995;0.12002214229165256;0.010391510363958833;0.013081963384585935;0.13147176151492074;0.011099131443459446;0.05451857732483312;0.055226373285847605;0.052868501652913;0.04209012786581593;0.04901124505773729;0.042157690861048744;0.0457812094660994;0.015464055302157826;0.017414959641974245;0.01569636183345061;0.02358081987999047;0.02729743692629797;0.014934262187761562;0.018671884218475612;0.016453895605516425;0.0527731093755846;0.0325107414013661;0.01898915161285772;0.08764234990266423;0.1582564439491108;0.1496691908571779;0.12895758469551696;0.12831365304255232;0.01731708333339989;0.003935891087571335;0.002228373199766917;0.025401311271264358;0.03161310840007583;0.0152377655600445;0.015263960786205575;0.02554846604301604;0.06785645964362577;0.04779512710768601;0.1965035760939549;0.6664967346898467;0.4119158769720483;0.03583829460050273;0.04184775271298838;0.0984525181170436;0.03775260147425199;0.006263508193619456;0.027873316365914703;0.010467850291655641;0.09093977344351012;0.03807748715162731;0.06621301785135311;0.03941564388708944;0.010122304675310057;0.0485303520022499;0.0031704623001678066;0.03450266617613535;0.07727560597046591;0.0043943989874321646;0.030360396546366436;0.0009795401235017397;0.09191213839068064;0.07340104878905813;0.8703272763443841;0.024748042057295184;0.05302616851308392;0.09770313058792997;0.0637378991905034;0.021466403182128543;0.24702024474745346;0.0077371795852213205;0.047023586083342554;0.0;0.04165513991878843;0.03797149901912518;0.014510117923766571;0.21099570558989994;0.04640422362580181;0.0519293605006707;0.015199981971705606;0.07485591942850728;0.09594106445989362;0.029575790774144208;0.10902192500525988;0.10685187043447983;0.10603742394665522;0.038433164987037104;0.02805772392771959;0.01821814688078891;0.09527826017455114;0.026742110278260456;0.007435040742175762;0.057933031448014836;0.0058775385785075325;0.011598796406902648;0.03818453421356613;0.0;0.0017161964313809224;0.09508819988326687;0.12400894057227933;0.05664174889483945;0.026251493220528162;0.05786656887106745;0.051525247190746956;0.32829763574352094;0.03184910814786391;0.10159913580194477;0.028930101304645794;0.10384959829387728;0.02888572520724462;0.001592676199090207;0.05606957873333446;0.07484691966958443;0.030087219121838687;0.008732577998115023;0.04817067213154591;0.993252044228872;1.0;0.060147203071156695;0.03677385153970928;0.043019073758913035;0.06452254415494124;0.0740944262912759;0.2088567321137854;0.06478344791003739;0.02695579590864773;0.031326103889635026;0.0023718728859827704;0.0057701165425463104;0.003642245757445156;0.0019265360979470085;0.0023465953749535044;0.002789701615159292;0.00576478026922392;0.012414199673610593;0.018407804446659223;0.019835166952858;0.0627367047352422;0.1055700758717661;0.08240796991705854;0.002564838267327501;0.02877445860496977;0.015567432278776591;0.005938151831062842;0.10007603672696636;0.013058048174330334;0.040185310162847675;0.014695100858837472;0.0017292784994029234;0.018258909604036023;0.009470235476337682;0.009601002140999588;0.0299887502294776;0.052500779121345376;0.01970310243460596;0.023399426235803;0.04369130785097294;0.06073033821903157;0.004427643455215022;0.015442643290947529;0.014788981310678085;0.06953215106150455;0.105654807086463;0.09383035858062508;0.07024688476293615;0.9420947118350893;0.09937512239338726;0.10157554866069414;0.24812175163552377;0.2271655674450096
+Thiofanox;0.0;0.03445417938290054;0.009043914166622731;0.0009081349061971654;0.0011483885845364732;0.02226176568894334;0.0015149712144624748;0.0005723817727505623;0.00033615519215413487;0.0029016988027186553;0.006697356183768457;0.0012893818471645473;0.0022805635755030395;0.0040690029543490385;0.002063937427409133;0.001986116326535468;0.032560330957346596;0.03851763331157091;0.048350956182590166;0.05863100371470181;0.0692229683047443;0.08479623959178155;0.1088742315362356;0.04868584081004533;0.003504058281790437;0.01931302128780619;0.3546992908211515;0.10987851490517896;0.06202168039393815;0.3693983701888075;0.39214364775725113;0.03847913033277287;0.004012651770581839;0.00791784125892652;0.028067171384898424;0.03065988833117261;0.2764163405213685;0.017826315995591084;0.0164001085769717;0.009571002208431085;0.0058269490084225115;0.005108421639531202;0.011805728663126121;0.009067257801203541;0.03201317369964175;0.0447397595130703;0.05134468870937435;0.04349577314696151;0.04964945923973841;0.004035272688126973;0.005192013482052582;0.006398872577697272;0.009413441516815075;0.004647230040488854;0.02363110485401068;0.0032212829080775903;0.003836811420663002;0.00353832077776714;0.003993804427006248;0.004196764059957205;0.0018568796369383372;0.003670545726276377;0.003467965675571139;0.0030563284348939738;0.004623327632441743;0.0033112430989449466;0.003543264491211541;0.002595582046055544;0.003291057114266746;0.002446807422001638;0.0012355719951447238;0.001040469259335438;0.2049304523874103;0.2133768533148786;0.05712917980678079;0.0485670381756188;0.05557139664635302;0.07602458138578845;0.006177375043084328;0.10976412571722202;0.08055962939078717;0.0683442582473863;0.10761784480117817;0.10845871871633841;0.050145271086027274;0.01204489955040586;0.035718840826350975;0.039995555718007926;0.10462280805878894;0.12085857045199898;0.0784251062279248;0.050507998945207314;0.05893654133316241;0.0344283900922316;0.04067124254585401;0.15681004346662092;0.1580031395550004;0.11694799032349372;0.07256793077364199;0.12349888809993727;0.10588300984994692;0.028703306019177935;0.06904922059481236;0.09976253204387006;0.0684272414089056;0.002564195551532192;0.004181328819267278;0.00720997277588306;0.0;0.0004657661296312107;0.00025410973881855227;0.006869838877377199;0.007550516777499724;0.0011269751767567396;0.000568146520763181;0.004044927153919817;0.005540352026102676;0.03307635435344015;0.0016723147657540973;0.028892094605579524;0.014643123944063719;0.014694314245687354;0.012430028332909107;0.01988644741535505;0.0356030304165342;0.0237902551308068;0.025121155743528606;0.08548762784662785;0.08579500910999441;0.10431042126480192;0.07305584168876575;0.06461664054926936;0.1464352237372022;0.225102072664978;0.006418461140068418;0.044331462349754734;0.1104987441617256;0.06498488509878446;0.1953584552921451;0.1806438173955466;0.24098704478625876;0.15547781136042652;0.21467734068235272;0.3437383766785132;0.16157858514495718;0.2877144808220934;0.13509477677381881;0.068438376524257;0.2195503145641222;0.09868910074215195;0.039262336287448005;0.22684018636920428;0.07955644206186649;0.06510666943349852;0.30748988603336674;0.14104192610269323;0.023779856295609195;0.02060316235877497;0.01707914452381874;0.00013358723610403637;0.015723548561438018;0.04885493894924572;0.010560668684797192;0.02133214130262365;0.023105459989512377;0.011903147963443272;0.06799330986732723;0.00823836683396713;0.016039711295714694;0.09534818626420664;0.06586773990627662;0.0050453315435383655;0.0012631909629972871;0.012081768504882722;0.002596893630083847;0.01258036920359267;0.05138627783177228;0.10443858784868701;0.0658399520340422;0.04214353584000562;0.07241466506754522;0.032081641218537904;0.08916910264463844;0.09383055277571632;0.006377600168630006;0.02804793779008708;0.021292676285218207;0.010593735625199024;0.07534999236610068;0.036053091124344995;0.05384652896914018;0.03388805332098369;0.09067981954312605;0.012407733377237785;0.12517967661102145;0.0057512631420547035;0.005375218921172119;0.03370575279658211;0.03177419249941021;0.012060006952529281;0.040813395506637935;0.01617854078320835;0.030693795423327883;0.008962841516865293;0.05747855757707162;0.00022825995276562955;0.10985894628020103;0.07057557431828192;0.054984892844493344;0.23860584859497974;0.0904959772044609;0.05985561121113101;0.031042871381085854;0.026704193319722624;0.025517528977642024;0.09398108592043308;0.057422343269290604;0.19367930119017668;0.07989963036132577;0.05717965905863473;0.10646407081795468;0.011505540687870104;0.010462942693942061;0.01449580676218849;0.015958848638534966;0.004818274674632345;0.0034205562031637154;0.0039720136223888895;0.0025211051093670675;0.0035552896834639518;0.0017203135070496328;0.0030263746670998537;0.00392874241571152;0.0032749305687920036;0.006370512065944327;0.005465623796709943;0.01679427384437505;0.018205314634374914;0.017785553996543;0.004863726615080597;0.08040505293671359;0.041863339652599994;0.04949511045649769;0.01772257466852056;0.013977993371692626;0.0012474507392898331;0.3453084257547;0.008751011967583119;0.03446034916466582;0.035848691401874494;0.00671348182023729;0.006978297341627935;0.03373322301334982;0.010261845306136412;0.0500926897354219;0.09368775868658646;0.0593455267480331;0.044911253723107884;0.034913150732796015;0.023366644116380623;0.1320718100630596;0.07311039149052706;0.026297416235043468;0.03287792889116254;0.04568930305829464;0.08393500494576189;0.10018184654259317;0.0568577847022565;0.11011545451146919;0.00489158881599246;0.8066104667077907;0.08759516726806713;0.022133580338053783;0.05239207880663785;0.019891522159974705;0.0156934856197859;0.0;0.4378934991162625;0.05008808125772989;0.028702570988053913;0.04921643940552161;0.017203411767034944;0.1306593131436535;0.010721564748295694;0.022556818478922266;0.04353674941938638;0.010154928064761011;0.018403508593902444;0.003292588884963741;0.37986767273450234;0.07491363116930662;0.012572715345688601;0.0025280331925877676;0.21450597350085857;0.06760079305474613;0.008121318044309586;0.32534010929824486;0.11650465095356363;0.04311786355886668;0.11928602964138078;0.06705349685350478;0.11592543774502624;0.01924440883471424;0.016742956355072634;0.011588571709891679;0.03302810260577466;0.044822910513372054;0.05055531550663542;0.03867888506076399;0.03467244452748186;0.024885576779095808;0.010651324470352103;0.0;0.026537687618699513;0.17337903281686512;0.06995339134297089;0.09245671498475924;0.049642913040796;0.06390168241566058;0.12686330467211143;0.044693942566680474;0.0039056370677420463;0.18359753510586402;0.019275890697088766;0.33313578556572304;0.0866041933569995;0.23583962723180454;0.034890119640443355;0.09225909538819639;0.0027672679629682424;0.0017712545438352194;0.023224808944511708;0.05304644660116841;0.060147203071156695;1.0;0.03717234948725273;0.10237557391244011;0.1578160425833296;0.008956496250924076;0.20678342023399868;0.01791087121023297;0.06015273154939418;0.034220482607153165;0.04675492894194661;0.004428193039551942;0.0006811047328690046;0.0013494033682603232;0.029513829591408268;0.016036993856937368;0.18071836287188275;0.58096238676662;0.009641425578644582;0.01851802186604289;0.033413224943271244;0.11660429197339627;0.11674418618705916;0.0008493805182712848;0.013981730233691583;0.035000322755028346;0.004344303440905898;0.16222345960195447;0.02504201591479086;0.013766684073570424;0.018778422057139643;0.0091566211278527;0.034013214009602055;0.0035415412127694722;0.01408361138106976;0.04178302242955585;0.05625269750192248;0.4993847770438495;0.029757454893870088;0.046817271258333085;0.06251945763194795;0.0005906382561765329;0.0;0.024822288961711386;0.14700598053427005;0.0418349133678678;0.16593210793380211;0.08716644490277625;0.05544653529849242;0.1290765598722872;0.11798255435306745;0.19315315544983586;0.218989372412798
+Cyazofamid;0.20788809093993824;0.20793726419935038;0.22027707035851546;0.21381032003039624;0.2158803537194528;0.2188118780736591;0.13107311878242436;0.21865491513437746;0.21778206660581242;0.2195511148714834;0.13417408956634974;0.21924120443539336;0.16625610159672183;0.22471205790763482;0.21301679691462533;0.20994431260216959;0.21668480978370233;0.21300246007427243;0.2061047295820155;0.21261290956725143;0.21528690554233423;0.20989949914111175;0.22585058339105002;0.21520683745319175;0.21364796468582117;0.02350509609767139;0.1339054397771193;0.11267044227469583;0.07091313880528204;0.12074350221368255;0.06581682984566162;0.07469580263798573;0.1006533765525454;0.18900558822944452;0.1904517831458877;0.21809061798780996;0.20254540165289514;0.03922549117805347;0.007513625187267053;0.12526469580275099;0.06253909518484602;0.1434601635187943;0.06918245049880414;0.004141253467881459;0.026503534657250492;0.01840271421362516;0.019607969993509458;0.019048299039555728;0.021496889783043493;0.18380793629789083;0.09482937413314077;0.03552270239733208;0.03860360220073045;0.03208141351516622;0.07066690593631668;0.1470986946033047;0.08723254594947248;0.11019485978722089;0.09680585931816195;0.043608091941651536;0.0853100206615336;0.09234035003039852;0.11876019558348867;0.11499233246386302;0.08599953822263331;0.10873988591042792;0.10965188873587355;0.10564592474734742;0.10331184992052592;0.1061027390501017;0.09544877243578963;0.07903738526015845;0.04641936569063717;0.10817717074551603;0.01406489714638546;0.014728548979394839;0.14090679552679042;0.1333218300830778;0.06133506435280325;0.042715690532833556;0.023132850996049427;0.02365148220327872;0.018952448510968264;0.018516915253560785;0.08854490444301488;0.08707911911275945;0.02593523978365636;0.028574164167085938;0.03461789524072521;0.027807696458348564;0.03409023459604895;0.01406684533431551;0.0113511571318791;0.04347137992813186;0.044034089372460415;0.07888023586377244;0.1385996115701607;0.04663705004864075;0.1779966942024637;0.0435164928142229;0.11015382063388685;0.04679922759206646;0.044164445902426706;0.02591521074476797;0.0773223207049129;0.14968280423253358;0.15542637917822066;0.13407430323240743;0.14054158784332224;0.16896366074524455;0.15400433907163544;0.1433727236602719;0.16776189316462906;0.17031218630010186;0.17746444691447386;0.01056645296408686;0.008105287913995271;0.018222060470330367;0.13407075553598438;0.03276809312980655;0.019629844111961184;0.00902493667319563;0.11923526317087586;0.02068547077703131;0.0019254448117350645;0.0032804493170648834;0.00220994660259471;0.020331663338312007;0.02942211533117524;0.025287274962031567;0.05659960468794127;0.023953487141934446;0.12464148649148828;0.0420807187358586;0.2248140458849416;0.018703606548556125;0.03309922805491248;0.028559782007242324;0.24895395974911338;0.2716256315024367;0.08632546006284773;0.244497165858987;0.05876111252102439;0.219361529849136;0.14568468776657006;0.12584655191140434;0.16819902942901854;0.009329984339526974;0.332903565777581;0.1870649805932689;0.10023844081233635;0.03140428235449034;0.03728517644477195;0.015184351012532557;0.24083668670927016;0.1252785040803601;0.08995180697102652;0.03763071663247406;0.0438259686277325;0.005943279718363859;0.05532869061049363;0.0450657281811593;0.04852229924027153;0.04117790311075816;0.04970859808082999;0.055228538583081556;0.058142900499387216;0.03019436186779911;0.03869130727113457;0.04115719399710689;0.1086270989801222;0.03229937421562067;0.07238826862380186;0.03955144067351506;0.026110444364058957;0.032867900892993664;0.022831759993102968;0.030320781099531433;0.1549024614090472;0.2274819680905185;0.25281302817975415;0.004769029299222411;0.10701698671088866;0.276441370965812;0.0558370155488088;0.0019300761208604002;0.016372104499696522;0.0;0.12718729168379095;0.15987550131546707;0.18666211237035063;0.21484166854696984;0.12483041065796134;0.16848684201517933;0.20510416015631577;0.14475629247558197;0.1404209020172262;0.17702440304768274;0.12486967397373719;0.09341832871847641;0.1933801776292324;0.10654568032187357;0.15719007348578537;0.16588381169462862;0.05086962138050083;0.22285786674194757;0.22193260720226016;0.13232953933591468;0.041637483498924564;0.0567442246311839;0.050846362309549115;0.14523738961752886;0.09760874108719425;0.0593000772362312;0.07188083393393276;0.11091522241059835;0.1420859938327485;0.062324755299587815;0.005176700265430822;0.018325299172250464;0.06527132857014552;0.012399634948174696;0.006326394730815365;0.19139894689904965;0.16722185328510894;0.11667295486043963;0.1484258965922566;0.10614436575587478;0.12613458356447346;0.0844796708268706;0.08377671886153105;0.07982902069827547;0.0972795957160722;0.11221190699576691;0.059499552139959375;0.0967926998783077;0.07582532865450932;0.08991842859167333;0.09213871967994613;0.09630335468745316;0.07133803666400905;0.07423479501006172;0.058685319972661264;0.07491420233955218;0.047610421816113385;0.022917761862255363;0.08418126149824873;0.013800485680090707;0.050399351034147735;0.012558720597497597;0.08107889855157534;0.08233091604174436;0.06225793772364761;0.1870168679154383;0.018328663429150925;0.1203882059996383;0.04219623439564233;0.22697836234088237;0.010664902241788099;0.04246854625385532;0.019175705107404534;0.0615631381198576;0.03628085808177079;0.02689278801549039;0.04445859884953291;0.01615114216613011;0.11156879342580542;0.10763873997659787;0.14424009481604702;0.07308370868458897;0.0042014717346134925;0.07697389275472044;0.1282476735308888;0.10277000686990279;0.030230668822411003;0.09001791932719758;0.004864230046687877;0.01526924912823349;0.022689283647207882;0.018794252632494075;0.032804511208635256;0.07635505504557477;0.01899408419344578;0.20281631247577686;0.022025651066521608;0.03624462748437269;0.07722589933370816;0.08987703391007035;0.012279526331771902;0.011765364408608227;0.03732396151505762;0.05554316383506053;0.02301034814758522;0.02058433048709829;0.006113758734611358;0.04615005102931485;0.04648267235353273;0.05598247185925174;0.0902323028093841;0.06388175610100967;0.09658997760550116;0.00958988610334122;0.0809676879910966;0.01679332060426878;0.05793928052860203;0.029743390551569247;0.03784463037181678;0.023749698876501506;0.09649002764461156;0.009916445173551844;0.018383062423914145;0.01018966902581482;0.0077160148117330725;0.007362674761213004;0.057552981020096705;0.15921637821501966;0.2039351271179229;0.02454585156448298;0.06358203960822986;0.04742829838435591;0.09937971871878955;0.16637937589630084;0.06635239937474623;0.1046278782300652;0.13807050181107283;0.044295283182564406;0.02356815060958684;0.01862498617940318;0.14889718036937863;0.02543343068194612;0.03392648993798293;0.14326644005627748;0.036319330460463393;0.03677385153970928;0.03717234948725273;1.0;0.11304473824241278;0.1054516453088831;0.15468239778302798;0.20669789210482148;0.24973761619915325;0.13698925732565576;0.06519849783064265;0.02567240443534077;0.03759735757683946;0.08425416278533714;0.10246435552096024;0.008591124053005356;0.008698455028726085;0.013950413860809524;0.04251875272422886;0.010351517283785286;0.013250550289977498;0.09554379000891601;0.056011929640759565;0.07336799777183992;0.08499678028408593;0.030995697420928302;0.05800646672529661;0.07340109466219999;0.08630383869802889;0.05375469717905814;0.009173466547441032;0.00951422026424583;0.012055953657861178;0.039636832775986904;0.00897206598477964;0.014644430155988921;0.05030983756395073;0.06923874445124192;0.09124465468304759;0.09639369284518833;0.08625056373477161;0.2474395746850825;0.0050175910938354724;0.008065240702996048;0.03698197511082764;0.03239309369201096;0.13157336872897965;0.10026699320634212;0.025377012036092623;0.017716295810575648;0.2224423028629867;0.1951014105757896;0.08995712382196698;0.09854462852017379
+Ethiprole;0.020976651780898595;0.011178106619491283;0.02033477438858647;0.08706074600893271;0.08652595919085669;0.052432051449306384;0.04589231350209221;0.017583333110350735;0.01730699860440059;0.028292630151293366;0.030299449410134145;0.03649217828110656;0.012279167729063073;0.020816283844722457;0.026311766638938916;0.0302880137528609;0.010948631341961496;0.011243992287303588;0.012134939034277075;0.012479005965544196;0.017945495805182517;0.014450709983295321;0.036817142319677705;0.011843409278073501;0.040718426467353526;0.049133164732091644;0.10233276936564402;0.07263678070417753;0.0356576519798793;0.07085796780311103;0.05324157824337051;0.047928443549073885;0.07522730076875503;0.042127552531015966;0.09542293807801792;0.06542518428312546;0.1661119896827685;0.008397621571692241;0.005838676492684557;0.040539425025849674;0.04203482915478976;0.05449977418314429;0.09725959401256026;0.10212938103302742;0.03289599747661998;0.028590580249439026;0.03332138924423685;0.03136855973062752;0.030885916411768934;0.058420365907076846;0.020731986753645827;0.03832182971761526;0.037376773491894374;0.04001612545639106;0.05148058631608433;0.04943901239571181;0.049252874486726064;0.04070975488237292;0.054138587192003054;0.060473125728607025;0.04664748760759507;0.12645445181811632;0.08746170522959004;0.08182076136791955;0.0555091348721472;0.04325809912762347;0.04067497861884924;0.052416752499603904;0.05385033109688309;0.05336746132555836;0.04473684534014963;0.04219423017654045;0.08629653415577347;0.06551647566102453;0.09191745040543765;0.10875901961638387;0.04729580135572237;0.04609202699894709;0.04626126550085639;0.0860374169879397;0.08601370358546624;0.08216535338408543;0.07180994248705604;0.07391508514199913;0.10490529866567655;0.08986130306187791;0.08537236671956494;0.08084149719506123;0.09679587158846521;0.028211849731056608;0.06489930932856303;0.02883290890664458;0.04084141587548914;0.07618328324484398;0.08010173867790356;0.06746105068087876;0.060855980968880424;0.09669036954435105;0.08185296599346178;0.09010413404857114;0.13552850515187326;0.05339635240768641;0.06391790973922959;0.05667615535268355;0.07243517739724209;0.027371164726316583;0.03914751518920957;0.02460246925067984;0.02274003125800066;0.015938811876306552;0.019930705813936415;0.023874114518632934;0.028682077832270413;0.04975790134632776;0.08120375771196528;0.01481539540652368;0.019348339582920537;0.04188966045420168;0.056919633401058926;0.05547213932351929;0.03873709247271313;0.038364905317827304;0.040719140344282305;0.09800576672482658;0.03204678906808518;0.05405226750881525;0.03808604060587467;0.07908489820983604;0.0676517101922951;0.06464513634527747;0.11054970447135015;0.051928802498041174;0.029180573845363305;0.07162935980790755;0.015551557169662087;0.05377568669567068;0.06466806069607753;0.06618672753526045;0.08834282054458253;0.08263001384837283;0.08492639725489765;0.07260220369005119;0.06324288950927673;0.08051942090131813;0.06677120673445956;0.0780198052931851;0.047945079851370066;0.004640076669832821;0.0741174678820042;0.0739413960738938;0.017179707531463643;0.07698575725178536;0.05467678850517414;0.05500635158759406;0.06547703875901131;0.09955228561726408;0.04181149952822635;0.03110428799409529;0.030862382678949078;0.03646110360505443;0.05191541430975335;0.0881564167313135;0.05355233488685589;0.04585648516989541;0.05920279138073736;0.07878831503893285;0.17331354027324328;0.028247934704487;0.03412788767096983;0.10843935142770207;0.10864361875238973;0.031483075794455626;0.032144917897825365;0.06497442689660694;0.03784787508481191;0.012704364221174146;0.022517382089834365;0.06492418233173784;0.07136722225342763;0.033623105768696405;0.03738401778278066;0.017965231435842405;0.032905476132307244;0.03900220490326972;0.04523563593447621;0.04293997565970056;0.0638344549796884;0.015537918611835582;0.08400102418282013;0.05695134806798712;0.06538060215037873;0.016589566422108824;0.1068550514137591;0.040942890483019204;0.05152788286390219;0.04090086591308226;0.04172971116281056;0.08170768377230334;0.07867034977472684;0.062108646618826965;0.08542746141695884;0.06700101048350604;0.07925444337035886;0.02997135985793972;0.05953103780255555;0.027209493932355062;0.08838472887597185;0.09132371519942646;0.06851396906896257;0.05772221073301048;0.05596869495524407;0.04535528895203894;0.05548007242034285;0.06647304490896376;0.06674130000074893;0.054857914665233286;0.07032554479824116;0.07736671040091055;0.012263944708549305;0.02936960690042804;0.033677073746761974;0.02439919012911174;0.06271499594311261;0.04184026111393852;0.0440950938642902;0.06271130059412156;0.05232011210837421;0.14253576370186025;0.07367725058727286;0.04343185916982357;0.04264420257105348;0.04443456628488633;0.0540099455472353;0.040695750134863796;0.044750675036611;0.05284847757334995;0.054243713065697675;0.05839414777977418;0.05459895705707333;0.05205877219718194;0.09454308917797431;0.0595251815976667;0.04571729182512512;0.05720604026649108;0.11151569302188716;0.02427356801861537;0.05653241329072895;0.051326230835017334;0.08267493168897055;0.030781727217147017;0.05873429193319239;0.058134920190217154;0.03110852794876189;0.03429054114505626;0.0809913916344547;0.0485028067123614;0.0774355576123004;0.03652184995332413;0.02483757140354588;0.028044679123768484;0.0740566564793303;0.07032182736527491;0.0289264796329322;0.06237084535453547;0.045599480246955114;0.02617239411970364;0.05633159242141953;0.02192545554497436;0.05771085441554446;0.030303575226863735;0.04256301549677269;0.01984355399658711;0.10543530042495398;0.07424698067478475;0.03357837765060519;0.06573874607973516;0.03778003487982492;0.027280966411261588;0.036900790977624595;0.041208611144457875;0.06526785924413016;0.09854186510596119;0.07380053929076776;0.07180461938193806;0.013381298304372301;0.03813798022493525;0.033916386808259744;0.05041146172977949;0.02183529774709021;0.033114567116861636;0.03558685893566177;0.04950423572558973;0.031622280868229054;0.04838777932214744;0.05355204711677665;0.006355037818461413;0.022802191470011512;0.07927423482649713;0.08817395681801689;0.09525104444933927;0.03726754474674852;0.049406865456626585;0.05594529837686649;0.011281061290468837;0.022905638971871596;0.03186132120302437;0.013037229863158608;0.06637772685928463;0.05336327547625129;0.007408680230990671;0.04805565794705709;0.005857264262063014;0.023770290303695797;0.025303334290221538;0.0744844768519695;0.050413309877272834;0.04216348248378461;0.04259676932204504;0.06448151492168577;0.06531379389404511;0.05890167298807234;0.04327991440608555;0.09478720254443118;0.051706036718924576;0.06109852173440586;0.05212197770781894;0.8668151656551362;0.048846467004653366;0.06394767764755924;0.03129501734216165;0.03226295411630568;0.04041489906392857;0.04392787949948113;0.043019073758913035;0.10237557391244011;0.11304473824241278;1.0;0.04104931001881035;0.04858339219486139;0.026456153487192068;0.06426504474986892;0.1313279687596396;0.05674054334950467;0.033275635139202946;0.03891640675916502;0.012706421852015365;0.0169503018872762;0.03398481094557694;0.029570058807777133;0.024191271486202513;0.05009314505459423;0.06288956000635818;0.04234104081232138;0.10216795254147763;0.052895330066983236;0.066996295696371;0.019361162932929697;0.047807637885127666;0.041584802872917145;0.040407936305966244;0.07329936778260844;0.053156546904422425;0.02581168258165665;0.03307947098157592;0.016871848733949167;0.034265831357732104;0.023365009286339528;0.058959125891107925;0.07218391167940547;0.06619368774913827;0.057029226305543294;0.08776393328766659;0.06875405216848718;0.05580666291376556;0.047045284472863845;0.04982948441775338;0.07550186465651906;0.038642005758286614;0.06405674432639497;0.05880877048931869;0.015710620721412178;0.031038714325936818;0.07508382596641701;0.05660638306416509;0.12196984193979978;0.1117782001836314
+Pyridaben;0.033971790581134816;0.026502366403247053;0.02734110277464303;0.026848185089446076;0.027949867819851662;0.03812481741835866;0.014558184042072434;0.027185153609017767;0.027090177444566113;0.03004354624709299;0.015214506936048318;0.032950623418259564;0.019262011712302404;0.027139079149078125;0.02656026828430411;0.025432252110658405;0.02763413224918977;0.027187599435951466;0.026328302609156834;0.026983627160860245;0.027051344302688077;0.026873190072256085;0.03204192720604402;0.02755335409844425;0.035679441444677995;0.02019871480576207;0.11421258201628112;0.033335905724253344;0.06665607359704195;0.3017966634465038;0.19050537736759335;0.025056288193577147;0.03614323087676622;0.021551647133167075;0.05217000877708552;0.0393418368611108;0.11518147567124212;0.033757977494183536;0.013592820436899463;0.022147779364887356;0.023694079137221057;0.030443590648980202;0.006326942759170997;0.00031238546003445924;0.008800155002631637;0.0009699926341209785;0.0005155587811841932;0.002483364000434383;0.0041303168597105816;0.01986096526862398;0.015961315494623835;0.013061316411998224;0.0016330897436177185;0.0037205184530973816;0.021455776848108763;0.023534237018469687;0.03648619266364532;0.03618201362866228;0.028584609038116885;0.02964072174235381;0.028424794587553058;0.03221369685571888;0.030357307778090814;0.034110577864421635;0.03769549059625643;0.033366127792707846;0.03535857134480592;0.04576292193007214;0.04174901805350263;0.042616494653462046;0.04448501294893955;0.024423844792008258;0.05236663971665657;0.08018561990510413;0.065849321481108;0.055250745248725405;0.027815215695079908;0.02874357437614925;0.002721924870181585;0.008364616201826328;0.025435234978869164;0.015063094845457451;0.016621434410537192;0.01598431441390935;0.023208653284060812;0.016303544244024668;0.03451428273568715;0.036308795734212494;0.09589011956239954;0.01871788249667259;0.006077039117055449;0.003562133871859837;0.08912367447555754;0.028156723387352586;0.03586090607284007;0.03325389363796326;0.03687145216125803;0.04834030794030148;0.04743943119104139;0.052394295394505956;0.09952122712933158;0.07026647533063674;0.04135660286080721;0.05583414915973637;0.04275248931938409;0.02277717919038797;0.01857903978861135;0.020281694498439917;0.022292388450011115;0.024817138691803454;0.024505159019761705;0.02470531630248868;0.02381031735774103;0.026003328551546648;0.02449567133803565;0.0014759643746042616;0.001156149769807195;0.0026082329790942755;0.023900100193305355;0.018833331229477713;0.010394344999736144;0.007589102064989225;0.018684292768212978;0.007011419115073392;0.01581129885769484;0.007553178194648991;0.006873005319461827;0.10256219068862152;0.10235877204644185;0.11632412132400967;0.06654312403112922;0.1491496789137632;0.0890147245956397;0.05756764697255511;0.12949656771158713;0.1384942633561204;0.42499438289579045;0.16449213148604272;0.138823358956472;0.13416060682055359;0.040637530623709374;0.42418056832743;0.12724627546489709;0.0208355179708519;0.7133131429322493;0.149051699080394;0.10787679313894373;0.07324187587495155;0.010905595239018656;0.01249583945938881;0.08915755540876741;0.05758868119256456;0.061854131516566574;0.041011016559188075;0.0841941319385251;0.14824597782569368;0.026569677012052637;0.016718967182252437;0.02634897428793693;0.016042354575796492;0.01625737369220254;0.0033136357417726525;0.013082772626499395;0.003470555910597936;0.014385445650680359;0.004848598882663288;0.006001405246214268;0.0014447185393716504;0.002096566721315031;0.019075022039154888;0.0064888116966642624;0.015024610050354914;0.0036076450732202957;0.0014890998241022452;0.006281852721858079;0.015256107217363426;0.0;0.0;0.033619266125577696;0.032622716008139166;0.03163548329877186;0.0;0.13381464712713198;0.35087886534627516;0.0043747382696094125;0.009117335079903545;0.13023898594810948;0.0;0.023955559165319152;0.04716468899209265;0.06472103962661509;0.03219358174403337;0.07184806444084837;0.027982387135511436;0.09886118682056133;0.03813714004625227;0.03832413519178686;0.03334078946149835;0.03150725544534399;0.023711658669334116;0.03323721813437378;0.024828427178498293;0.028984996933598052;0.02454233132781197;0.01288359126855671;0.028770073016423776;0.15767069993512214;0.03674341437996532;0.06325267816629827;0.16077942209916488;0.005217957966725324;0.06174049190545581;0.051494713125028145;0.023780204933730054;0.07992733991542107;0.05150317643723202;0.015247755599273376;0.15222854289540216;0.007584886860688637;0.02193810343461856;0.06051113415271655;0.017490161314330743;0.0019224792058549418;0.025835809111707124;0.024447857214284763;0.017421252603342673;0.02410057071306336;0.03741669012282205;0.03846060396892942;0.012188021565634902;0.02161604308655249;0.019152588775831942;0.03608478418209566;0.03669777468926958;0.007675019917421735;0.041467605971301065;0.010351568455762794;0.012048447415631932;0.018198831690445245;0.030923602498205766;0.12083277772192645;0.0298949569100929;0.019677020156371176;0.007160036741059614;0.03229713998736998;0.03705553780993843;0.00022379151183798593;0.0026819173655677738;0.021392678930154445;0.005908399457961777;0.008320418256462922;0.008429579225420628;0.0290255548596578;0.04280737976346419;0.0904407435334138;0.016422649424019938;0.15585755186303443;0.03442318585196485;0.016246955019932563;0.005851415909847453;0.11042858939348889;0.018298641932740934;0.04096295089782987;0.07723377468493792;0.013527204724067186;0.018954825125438304;0.019482140951028935;0.06278128079875316;0.04104242924728526;0.00426103769456779;0.006412212395340721;0.0018028952739439807;0.021481604456675105;0.10217134356821368;0.002178858123289112;0.010692072721001443;0.00030710066149594253;0.15044606579735503;0.009672637419671577;0.029959992115107397;0.02578485462119026;0.01654988813963647;0.10860999136007089;0.031401216365506024;0.023724660076559684;0.1558044286929344;0.013838292639314602;0.019158005444048668;0.0;0.18441066104964526;0.02138705786616716;0.021140174030464694;0.008452001982739711;0.032975624107070035;0.09691680655692815;0.006630050125647744;0.19507320150793378;0.1357813289062873;0.007403734919903296;0.1711043805770796;0.10224805799266028;0.1452788004191405;0.011640411907700135;0.003512625364670824;0.00829486193850562;0.003987716640291294;0.048729404771701026;0.006253204885536116;0.14228233704795507;0.020462200713926827;0.01439638974182845;0.07689693186733307;0.0;0.0005860695990429558;0.5341277206176755;0.13543868330483652;0.026140769263081946;0.03273018059169048;0.18620432197589268;0.009385565762910091;0.04000806371270995;0.009713546256554632;0.14226049051880316;0.01719748766808042;0.07114906887452732;0.021666262686127244;0.08527628815972738;0.0018133651267486324;0.06613815677054627;0.0015466661021700523;0.002973273951592574;0.027235399333643048;0.05747095057330954;0.06452254415494124;0.1578160425833296;0.1054516453088831;0.04104931001881035;0.9999999999999998;0.03506169662596897;0.038906409605713455;0.027622285050922544;0.07870512160027825;0.03423584203319942;0.0034623128187818712;0.003830893927774156;0.0046313608631993195;0.002743305157475951;0.0020481811870710614;0.0032273360191053895;0.004024962324828286;0.0008600137662325614;0.003197194303381604;0.0004340433595102915;0.022011864910790706;0.11432534361076567;0.040736899683412583;0.0;0.0038745634621209545;0.0;0.0024348403684879122;0.023904244877673335;0.012232788421475736;0.002306096725620589;0.1297401864409243;0.001663333321715939;0.02547711289814019;0.0011576090940165127;0.013073810196087679;0.028547029612499285;0.06716424649176728;0.008878466768304406;0.03133835217906893;0.07258681739023609;0.045930285312669884;0.029731804515158552;0.026127783925286113;0.010320717826329753;0.024303839669816307;0.10081793454547444;0.08113085793932434;0.04092692965008356;0.017471159510836054;0.10744719742628611;0.10783191016715046;0.2686119391190106;0.32586231433297036
+Thiabendazole;0.6278430472477888;0.622997522739945;0.6585866469326244;0.6784213383967334;0.6790149116044907;0.6430089187234407;0.3441586068148842;0.6605546905772609;0.6536053171476524;0.6591993183054305;0.2609859084176821;0.6464976386519447;0.42449179030561085;0.6331745685876811;0.6388055243954803;0.6123475325656902;0.6632998357193223;0.6503031456918741;0.6308249055543126;0.6553408428949412;0.6401021911953094;0.6296336203485501;0.6197446604620954;0.648654363687294;0.6319591692779725;0.0056564740481757905;0.30357243207495943;0.21313359353002556;0.16368969727076368;0.1679525619974876;0.09665354488271666;0.16603366932759844;0.2757861751217336;0.5877640579683072;0.3961652474347383;0.6401987336252591;0.24538713700013787;0.10271889294102746;0.010029125130868904;0.3844526212520673;0.13020005739070345;0.4216752102793904;0.06128108772690677;0.0004188956621504901;0.018648141788648282;0.010045917030023244;0.010813914061118934;0.009797911058709408;0.011370389541535485;0.32406536113208956;0.24341402615190658;0.1487969518034161;0.075070203855259;0.06442477990719092;0.21010830724360874;0.43610667582763657;0.21780346421294622;0.30002700850620945;0.20164100172544921;0.006687395975298852;0.1581589100081432;0.2678855392571735;0.3509828914124772;0.34355107439667787;0.21180450790080596;0.28442228526533603;0.2972509816979428;0.21768438214722752;0.21563491597268858;0.21500083650185792;0.20533892400956744;0.1471664657608915;0.005450613567797108;0.022680207142750975;0.01734480470580304;0.015473833664599559;0.0013808169149717247;0.0007579130719141593;0.0005025216008070122;0.009955491611825237;0.0034965763871481347;0.003762736152533682;0.001369465043452342;0.0011611206625914872;0.0177399641788174;0.03187154996158548;0.01441301938568276;0.01642737864949772;0.007886542853283132;0.013971542249725744;0.0005063560647515814;0.001681252173100931;0.015721132732358464;0.007504580644506211;0.009235430602522316;0.021361078695986864;0.0037501790462874506;0.01852925305546818;0.015541550545789845;0.022113503656939495;0.02953779223053658;0.013964214024781664;0.015305209363844005;0.0198624427596305;0.028039523677425297;0.43510798463426487;0.3802119865598307;0.40429590669578075;0.412184826864756;0.49206666139534655;0.4667105954903835;0.42965790699659534;0.48898384141840046;0.47902574878366083;0.46960495216826653;0.06689132088609163;0.060114160465981725;0.05660511958767471;0.3663232774960777;0.034235814627542376;0.030859225387454954;0.07803452056682267;0.36200177494074787;0.025166506600148558;0.0003977701938075708;0.005940066893304234;0.006550203402959895;0.0009932478624226876;0.001113483972337242;0.0013033271069568004;0.02743991183219032;0.07098415450483439;0.14557971162818872;0.04627795877597175;0.6644609565467874;0.1614157128299805;0.055015636338377236;0.05562311890027398;0.5641022736443863;0.5671604912686314;0.2155858719348047;0.5297832732680248;0.09250530011514635;0.18118441833377327;0.526359120343845;0.04044709814926361;0.031324035888665766;0.029883596329847557;0.09299516792118011;0.06612307118314452;0.37693712383616035;0.020756116512530884;0.014220337061353854;0.010311658441684407;0.5828988828958878;0.2332042428456816;0.30051672061784973;0.08983300288472983;0.1063481670645704;0.017632280155989635;0.11671167274470906;0.035576136518857555;0.012709827216967269;0.02136712845043002;0.02127845634659582;0.013749479056170742;0.03863873408199242;0.013663569349009802;0.02279401895818986;0.038063959352432085;0.044436877318220526;0.1389647304238541;0.0017621269659614397;0.04800140410566719;0.05210625402034052;0.08411121477090598;0.0005313875811349737;0.0013394014873995951;0.22682954427956237;0.5022268413885267;0.49172663622495566;0.0;0.23500816499659288;0.5806911005080615;0.0052189880819346396;0.0022034647570113326;0.14952087005825188;0.0;0.3616434236591722;0.5153758087841721;0.5631168352275875;0.5031206987924155;0.2606764149784193;0.552537899693737;0.6407828393043254;0.6415555676611276;0.6405597732827077;0.4642000292083191;0.38565048033519156;0.2919614826558168;0.5034893450813454;0.28728358993397685;0.4272217527587974;0.4707209410796269;0.08348029100842083;0.6570544417878301;0.4545061860267224;0.09092699372157743;0.23362049331595638;0.08570553291238722;0.0070341835877564905;0.3641523316199559;0.2788285555165139;0.16221389927201427;0.005418181961251478;0.2931771724468587;0.3094048482135195;0.10365571015302223;0.004560370251484905;0.009716612233980465;0.17406788319410738;0.03838231317916387;0.018963835953260986;0.5377383423092095;0.4991580790443307;0.3212303128968128;0.4399769330866876;0.27853837085693267;0.3729468792464312;0.1633139071133092;0.16645124553373616;0.1528704696643998;0.24544367577483983;0.3059271955294653;0.1209230605190049;0.19125382121599083;0.157297998607015;0.17886517360266485;0.20782531542864557;0.19493318451318875;0.3143054422914077;0.07663739026803607;0.056000548574639625;0.022615410364608034;0.039901254068886095;0.0001433367732449455;0.0011237262736273758;0.022563296230833908;0.036345467477923825;0.013624536304798304;0.12134185515071788;0.12264750678088696;0.0054224191881085924;0.548328927108441;0.03591328270280816;0.018245909616200647;0.013270961458932083;0.42238723944669604;0.03766991756713736;0.13249287173166055;0.022866004280516897;0.1527790563228422;0.0010509208000462607;0.00025534552370374576;0.07203378526917022;0.03579576202521137;0.2339286544982699;0.27187034202603266;0.2923479802029387;0.16524394200731216;0.011155713758577159;0.07493998392187602;0.16024700830855695;0.043504385393564785;0.03259905397880105;0.24412496315825546;0.010670214533823033;0.03202698356880731;0.0007851908464781725;0.007182768042829058;0.00745606704079455;0.05737431004882751;0.02281355351022454;0.48149339503429944;0.03828150944013836;0.058124497877870815;0.18826530087377036;0.25500082840340577;0.0;0.028242958658272296;0.05536971511268142;0.08063500164798751;0.15265467626290127;0.024978642934203977;0.0189498912159453;0.15030082354149826;0.12813942854450086;0.14685242817721075;0.01772690276692389;0.0250235249189555;0.041940693757776724;0.043216946717865724;0.2074869846928909;0.043615672464944785;0.1788633517345256;0.014107916414120444;0.10386382481313136;0.027450808023508157;0.03275678540214074;0.0021447369516517005;0.03902055420227669;0.008673656197743225;0.00017588599978603524;0.0007381499524361339;0.09888823873653078;0.22420453711931232;0.5814360238007015;0.0415716743970453;0.1029716613914533;0.14714205319409723;0.011958189969097463;0.09580257060118695;0.07423013959783029;0.27030301802388856;0.12145161865692151;0.023376860768606664;0.024025154355898703;0.0011764236549362589;0.0043236901756149235;0.030115569818926657;0.002101015658782887;0.362131747101052;0.08295395098478373;0.0740944262912759;0.008956496250924076;0.15468239778302798;0.04858339219486139;0.03506169662596897;1.0;0.7893554318972764;0.6069013394784596;0.3003116274095178;0.09209431764932716;0.026156374514641638;0.000618989474254656;0.10304264678931484;0.10722368496454542;0.0022846737751775303;0.01628278935388308;0.11707927078692447;0.01601038249209642;0.014283210270929504;0.008422396149485879;0.007569975111558855;0.1134658109892506;0.06386175672074425;0.0005399241873448313;0.05592957204677154;0.020235820123425206;0.04252425423950416;0.12459916034816289;0.008920377270761094;0.020732160645082542;0.0955929811080902;0.09764433001765002;0.005810687452878172;0.01570980516415679;0.018000666100951107;0.029447460344734215;0.029303267119508623;0.048339425976900184;0.01280021298865464;0.041044393536789237;0.6457197820533506;0.013794529239255922;0.016336487790077646;0.004597752463821559;0.03410492896885615;0.1866867121835925;0.1379863851061185;0.057379468437949804;0.0010208860887612285;0.5413931168056738;0.540601350066011;0.15662855070507825;0.16492586594387235
+Tricyclazole;0.7889785544471803;0.7856315895357607;0.8684008342543337;0.827515986974704;0.8313061203018511;0.801624259335148;0.42612365133954283;0.8059880702725666;0.8000776604980478;0.836284815705617;0.3071510055014347;0.8067774956381861;0.49044409308465586;0.7956971209315377;0.799194936923134;0.7652067132990705;0.8311384917038839;0.8155010054908277;0.7880025634250502;0.8127736933469126;0.8100261663094623;0.7942809650092264;0.7926794754616386;0.8187466857100243;0.790860341403099;0.011232624373177251;0.38689898733636097;0.28251041069202165;0.23451142916228326;0.20525168605812752;0.12437870373524172;0.2049846533414091;0.4771799777352722;0.676604479614436;0.495033261507352;0.8073245716065628;0.32196688719261246;0.1253069750947795;0.012983790741172278;0.4786046314879662;0.2286399778164428;0.5265237768998055;0.08881692411387111;0.000730141209505411;0.05046310163343967;0.01052053010781382;0.012469359843272262;0.011918105408494709;0.01033544930919241;0.40573443279483284;0.3065514242595308;0.13535213600640944;0.006097989269150483;0.007934898272100636;0.2748354412554342;0.5434960013064649;0.2871674840758112;0.3823794160703598;0.269384288070987;0.014679592440878672;0.27377524011506926;0.34403407190854574;0.44357911558424634;0.43606893770846256;0.27946389082952;0.36406301481733205;0.3788864833189708;0.2880637607434275;0.2942540708876046;0.2891803547442661;0.27306907008222303;0.24793428113556942;0.012073724557913591;0.025147697666175108;0.006442799079438576;0.007256355864075259;0.04126278687291077;0.04013636178165922;0.0048544581844331535;0.02719964111163883;0.006852830939458964;0.0059864617319094334;0.016810273763269167;0.01657150063080638;0.02727806690254673;0.008124927829125267;0.026779838878461665;0.02906638728816993;0.023802462283202916;0.053104826162489294;0.06357882421711794;0.04076492981898732;0.05574325058656066;0.005623487270963106;0.007620161712893431;0.039208182019086914;0.013859447747919211;0.015343594946090906;0.023471831847903156;0.037758092534893255;0.048211124499366625;0.013162337746130407;0.01567130456466798;0.03900352211947251;0.032934224345615506;0.539313535936436;0.4734176003812854;0.5020028801555242;0.5116570443164916;0.6141405301330458;0.5790478152133302;0.5325029721895043;0.6095482645464259;0.6247481314441147;0.5834173117162275;0.07264139094651008;0.06315045816363253;0.06840671437151122;0.4605350956163791;0.05064876762584849;0.036882835593054164;0.07933578565677318;0.45044306021461294;0.01758102439916183;0.005424647970470895;0.004931812294894736;0.004598976405702431;0.029731058805529783;0.023824233636548363;0.010043350732458926;0.07564257303444731;0.045218601881624805;0.22708412057400273;0.09234865569022947;0.821872477841068;0.013704348355429895;0.5999007596443101;0.015091597743698282;0.6361057948414252;0.6909122850870596;0.3333943427771091;0.6405545618048726;0.13475704329518767;0.24441678240065418;0.526310971498889;0.05422937388806373;0.033124389639908096;0.025150548314500608;0.11861859871347831;0.08901982540024143;0.726187328629306;0.054965523242071795;0.15046793614500656;0.03521380426693122;0.6883415849707998;0.35551894911228066;0.31104148370457074;0.10652951207311596;0.1248860331934973;0.010636321518902416;0.13213410241708365;0.03780203407265691;0.008534769405113107;0.04444411067202316;0.028219992998702034;0.01052754904922928;0.04755113710737127;0.021188488950904964;0.03266397226863252;0.03981895606015988;0.037516742363295795;0.1002764239660571;0.003101731361024522;0.005945400597377483;0.00544210450356179;0.10853894784161486;0.0006311419598806836;0.03727512931604384;0.3042904134719459;0.6211021599156631;0.6064432624296316;0.000516555157812892;0.33346100631760067;0.7238453957586785;0.002139624274948935;0.14830690317621764;0.00636917038746091;0.00017864968182027075;0.43420713191211463;0.7026866026751825;0.7723262178650733;0.6904316369791935;0.37798215374980365;0.8400791201184253;0.7393416815446003;0.616815093225089;0.608985981855061;0.6004559606109787;0.47510289964410873;0.37190505666300194;0.6419825272521282;0.37589333210138454;0.5376156792296496;0.5846562584179497;0.18693975854009523;0.8373078980696314;0.5893651326178969;0.211221214867421;0.14191670654911687;0.13552266514577632;0.026637893847569323;0.4552214425277277;0.22981341164126073;0.22774752733837136;0.027607057256702774;0.3381659569111106;0.3999446428805248;0.17148935419762923;0.04279259440291312;0.00897824494447515;0.11065317741628984;0.04531860056991215;0.029417430990571113;0.6794717730660766;0.6085367807589667;0.40382819959784794;0.5480605915854944;0.356740696545585;0.4701637652503697;0.2840992531051052;0.2888004984283378;0.27058464240688823;0.32293054520273784;0.39256213902583253;0.18554372152114143;0.2538718051059303;0.19559062673475638;0.2361267886288996;0.2609987622082069;0.2616070434174629;0.1941548271700851;0.1090293093261065;0.08471718276195542;0.06845478577295135;0.07934531692756547;0.013336436060966647;0.03568424988228363;0.012542075447856528;0.05135651995323748;0.005435179030424646;0.16032642904761535;0.1613204789341115;0.007173864720988868;0.6756556302827261;0.029976640512597914;0.021900576526667333;0.1596529368402318;0.8269673999186544;0.025416914876894924;0.15620479908068832;0.03904042613895027;0.21738523622061878;0.003498962619093978;0.014761550989262498;0.0971988110656986;0.06807878274337188;0.44409175105447296;0.3293319109401511;0.36752838418952744;0.13611750840231923;0.017808052328323942;0.036781448138122425;0.2104104370591281;0.04259556036094355;0.043534369146483114;0.32950676360452535;0.008841243589982955;0.05993963250725225;0.03887804436453854;0.13935741263814724;0.004164203538345781;0.09353547667273168;0.03873913240957613;0.6092345219767249;0.026346648857221256;0.01478673424101024;0.00015388295747020386;0.3126888780646451;0.0280135576757866;0.026988003372639405;0.07896872727814876;0.10235615666904267;0.0926995320859578;0.030601597941951053;0.03147599557461864;0.17234535259955203;0.1558528530146846;0.07395618072503206;0.030640094484801147;0.06592352744254475;0.12720714203723854;0.08324540094617222;0.26978243093702686;0.05433761639533217;0.20774585661101508;0.045922247691161655;0.14818367025625553;0.02010867821433368;0.0705916776972988;0.4570826564434455;0.10361857495803699;0.0038489989048653282;0.000249747372184962;0.0009193194257049971;0.352930964422651;0.2612841622504507;0.7294925321338152;0.05276623061912198;0.16071805612152154;0.06333929263938762;0.0627308889536395;0.13053564632432002;0.04472768421919467;0.3224002515316211;0.44635446694970293;0.053976352515090004;0.04650875013947301;0.026315475469569822;0.027386375356529075;0.02951206176688585;0.0032904629116053017;0.45212991965896965;0.21890283122361226;0.2088567321137854;0.20678342023399868;0.20669789210482148;0.026456153487192068;0.038906409605713455;0.7893554318972764;1.0;0.8019641584166842;0.347273157583117;0.11931426749972812;0.005811879878473653;0.0001882098391789394;0.011514797259469998;0.020944811398920148;0.00901736385577534;0.01086974320527591;0.1633842953708724;0.010323358681101248;0.0009730740061676616;0.0422248983605467;0.027357598409221404;0.18440810019940135;0.06813641118623381;0.008267734668546184;0.035227149870007655;0.010755467634135112;0.09667860769310693;0.123223983625065;0.007701573822940931;0.17053071310816303;0.023866088279291826;0.020881200341227316;0.02287993050829629;0.0322700667092253;0.002463685570143779;0.010318016241456963;0.036070396109470985;0.03758108174330456;0.024969844928116942;0.03710161946098354;0.8791059699351326;0.011137349831056834;0.013847138103656453;0.04631770269981638;0.022916219991065526;0.19824297207491276;0.1874617229324169;0.07060157797722631;0.14856838239430142;0.6697875274168354;0.6727966643504392;0.18824414772064918;0.1863221551020623
+Simetryn;0.8424170215686815;0.8417141583448188;0.8781146989350581;0.871407595684017;0.8761521695660882;0.8766418965654905;0.5438032245301646;0.8724283590748743;0.8706615079011192;0.891131747887895;0.46806351377265354;0.8739470830619646;0.5708810773683661;0.8593016287662327;0.8488152151735066;0.8227684710429576;0.8752084295882343;0.8633532148220578;0.8384817565153674;0.857879055244937;0.8694213732796956;0.8604703604167517;0.8446701160884386;0.8789563051356584;0.8506703172837404;0.01460214927618794;0.4417125485810857;0.5621616808647826;0.43210737124252996;0.2847181102255278;0.20546371603503022;0.22190458777892477;0.4205527836403329;0.6993285798746934;0.5370178329620708;0.8940968522436634;0.507643781624145;0.2694097753158665;0.030131039017745335;0.5296763340138443;0.170480828589743;0.5715015760657952;0.12741580267241698;0.0014551905913121593;0.028075686315394307;0.02518885879326611;0.025677542457023608;0.02535193450124624;0.023650154210031794;0.4404011477580057;0.34280067251772384;0.13283100511018953;0.04490402738277986;0.04784232184430133;0.29933095084463657;0.5900636690333005;0.30509773324980816;0.40908414602991117;0.27820060001460406;0.07247787304421012;0.21371067121221507;0.3768122986917751;0.4793026385375819;0.4717090473774683;0.2991824278100302;0.38813225373227095;0.40532754676575644;0.2968855604084971;0.29339742519576534;0.29383736484738227;0.27866460496061357;0.20364833033813784;0.03193898741030172;0.045682152515022105;0.06341342965863783;0.05762410305294974;0.009674532924397189;0.007025827476985349;0.01648254593824168;0.05252891245470928;0.05273186648880205;0.05256462952665367;0.04411635843610174;0.041700493728056016;0.057426027273980565;0.03583647337002205;0.050564267319653376;0.043383377735018235;0.05141653702872367;0.03320994092944798;0.019436794204871696;0.02015119977949717;0.008869612598731452;0.0345277286939205;0.03605289362702449;0.05255328626251117;0.026166985240343107;0.020273680240242935;0.020605252683215076;0.03288450109273101;0.05367542869999482;0.026994368488294822;0.02934444883855499;0.03350467609464879;0.060945706977792564;0.6001746486087582;0.5210987209019938;0.5532947456510305;0.5591327885434848;0.6683461285567084;0.6337218753558052;0.5875426289074015;0.662902276670198;0.6548287109213581;0.6421116654260376;0.12549100324953927;0.10767085597457901;0.10084380217360653;0.4911210653233369;0.0727000922024504;0.04769977804555322;0.13545027036109616;0.48810613131765107;0.05457344599728369;0.0031872593137117805;0.009676042585719665;0.010601079962680083;0.041564188345871;0.06095183839783497;0.0324456853629226;0.030000632937972626;0.06557889821670286;0.24790436734783775;0.24855295142559755;0.8812768953131401;0.05604301205826559;0.1779121800433901;0.06715780376076426;0.746618214865117;0.8284987795480621;0.3624973273596282;0.6793631603893484;0.2662894439775441;0.2535081022289004;0.5893615041007756;0.05557217690487644;0.05406759345039641;0.023340119221046056;0.16949945928265914;0.29277296471213227;0.5192498971523051;0.23125018345822648;0.05458905429380898;0.015630742065270292;0.666727752622582;0.5295196306444322;0.4803309645172185;0.2846353422900564;0.3037203329860356;0.12363873273407915;0.49291918971519516;0.03902797507422754;0.05152496423323339;0.061559111197809525;0.043358246108594456;0.04190566218935077;0.03746146623418617;0.03257465145722255;0.04219883263558733;0.09888491999551098;0.03664882662093215;0.10990549392345335;0.027964569373357267;0.03800060862316968;0.04380175103879086;0.24130775309127317;0.039991405231313164;0.05760268137037675;0.3348246638834722;0.7200787610273134;0.7093763368097573;0.027818856579801005;0.34593806013520495;0.8104734880392563;0.07767655308435595;0.11494739255071305;0.033183012196141885;0.02018773696518576;0.5614645508015093;0.7308989648669952;0.800162345389124;0.6995842238388924;0.5090878378764784;0.7399228103868921;0.5919267775812757;0.6400190185451397;0.6252047254453;0.761481098093985;0.5805088977037276;0.49025840226029316;0.8079979742070976;0.5311531335967041;0.6952800957404395;0.7058447276314819;0.19887293294478495;0.9029720167321993;0.7671170708704756;0.18404595143469227;0.04979459225028284;0.027632024454193424;0.03293846668687979;0.4840686307589987;0.4005767837184921;0.25689714306443723;0.056154901911577744;0.3823720576430794;0.43931336636412166;0.05964909192186986;0.0009498342107673444;0.0489514611759843;0.25322096757886886;0.051141833207009886;0.03301952901170597;0.7543934436951267;0.6788846148935065;0.445554560308096;0.5963125442892382;0.39283538320995376;0.5123071088217784;0.217361779783433;0.22493719483306746;0.2022375672360774;0.3458059019404228;0.4181520437790196;0.13180467195168785;0.26020354914881505;0.2603124544133794;0.3156730986835574;0.34050677581064;0.2656856686918429;0.22941323467247957;0.1993082648404976;0.19633677106477918;0.0483076252658698;0.16406774403240906;0.04997763466996682;0.009330606153008592;0.05999978660814387;0.06554158639362956;0.02668311070415653;0.17802030946449005;0.17904230887510547;0.009347243550681422;0.7317133817205956;0.10436014057405003;0.0516211195177669;0.02552127866699836;0.5759823483546818;0.05827323644526089;0.302856690808129;0.00165778412695248;0.2378172962348425;0.04224795712241997;0.0017322513994454294;0.11509156359257912;0.02414518084557576;0.33316457449063086;0.5039829439886693;0.4285254344412911;0.16353775515927432;0.030905924634734672;0.03962332294416269;0.40167410173704515;0.0675163043218377;0.05901849951665761;0.3863157779148527;0.041202755036413075;0.010165267610008095;0.009980029965328754;0.0142994525815676;0.02319758097086133;0.06124706692842809;0.0015586101596468957;0.8700975711971584;0.1587689654923096;0.019476174341281623;0.04377279227793412;0.35502123586400264;0.0028593707584073677;0.11285813794160283;0.0405285491486323;0.12701581366977432;0.09598545722205509;0.05979390834113489;0.00555898868262214;0.2673177181303848;0.16951390800492094;0.04612381876102812;0.0970599082915533;0.025209524537718686;0.01955172695403098;0.011500390713966574;0.4141675406007692;0.06480903194009574;0.3580553756922648;0.05718564417624506;0.1307928807574887;0.05398092021420144;0.010181437765427924;0.022955531976906265;0.14744447574733135;0.009706321212988188;0.003996747808123927;0.0051208102938692995;0.12174457638938531;0.36584131445751666;0.7919250366516778;0.20848676750390982;0.14368392037408365;0.021839023971778924;0.04304985529089477;0.27408880603146457;0.05859379980478496;0.3505062456320797;0.17710555399077693;0.22351993641118786;0.032713796880045484;0.05378134446519284;0.0037600374425595887;0.3317449642438909;0.16297389520916722;0.6030331435524244;0.07641552376218437;0.06478344791003739;0.01791087121023297;0.24973761619915325;0.06426504474986892;0.027622285050922544;0.6069013394784596;0.8019641584166842;1.0;0.38375946116185444;0.4307753803080031;0.2593607760679175;0.25940379194180635;0.010421847844074008;0.014249630256759351;0.03412972973039206;0.052709945627823114;0.010203652436026452;0.01794758619275897;0.008156395831700991;0.04798136950203962;0.06513593221360285;0.16061343269306166;0.10046092139292187;0.003878844943846651;0.08028205496503805;0.04611965892791133;0.03986849161282253;0.17505007675045384;0.0844730630571267;0.04503496245149793;0.011710335622259085;0.028551149064156706;0.04786594561915402;0.014305243809341643;0.030792471189824415;0.028634834038049298;0.0604380787416465;0.09677996213318399;0.08441564757869803;0.06041354444402691;0.9205643666711133;0.04702180295767399;0.05009088770559247;0.12333731070774073;0.0945819639674434;0.30163806587687225;0.7884953034823676;0.875690501903602;0.016539137634939804;0.7958362365737168;0.7644893925961387;0.2596371054654303;0.23621550072877454
+Sulfentrazone;0.36956861838406047;0.37187685154463396;0.3773381584331158;0.37332094881575684;0.3775263465048867;0.3880866011446438;0.20924315890351805;0.3824526019892956;0.3808932627296719;0.40159838644313955;0.17164585215011394;0.41048730869530536;0.22987656721317148;0.38668036680887224;0.377853106144459;0.36688314478446177;0.3867593208486147;0.38158832955229605;0.370220776947259;0.3788424302198897;0.3938040601619056;0.4011567998950816;0.39713388414634815;0.39387950047285797;0.39178007946247306;0.03126499059076688;0.3970151273106977;0.23213229254040998;0.09820138736533117;0.15668161894760813;0.31314816538685364;0.3014349172242935;0.29148316056425627;0.3133402380419194;0.5322283299707453;0.3720054964745909;0.18381088665494855;0.07934588245506019;0.00639677050373648;0.47601489432179517;0.29259911848790265;0.4627808345266843;0.1921084257193316;0.013229131865314674;0.05475941830448865;0.05421653306684323;0.05805988284300598;0.053954019447283126;0.06081899190484007;0.44493164515607925;0.4145743822938083;0.15703531091283726;0.043860250441777035;0.035134807042514905;0.3944240722931626;0.44953839209469587;0.3945668922439945;0.37745030357564796;0.34627571871899865;0.10726668676147028;0.2987865603090643;0.46536215056531083;0.4168786604458617;0.4244853964829007;0.41421048461334525;0.3667446066160918;0.37326381635036787;0.3349488446548228;0.3189427666263518;0.32962463170600853;0.30631238342925865;0.2661096805904229;0.03361630395663136;0.04225007328351802;0.033142870898198624;0.08523525584278674;0.010749163154875974;0.012306532501214613;0.028673081392531663;0.038216874697350536;0.010218756600098518;0.00911802396721422;0.02220923714973113;0.014270645211605237;0.04138337582697856;0.03392115147477677;0.05973682811461915;0.053396777375372885;0.03476609571759227;0.11006488855185073;0.047160636422856;0.07125488666137977;0.060433498297339544;0.028199683615245115;0.033301676276640775;0.04957890762031536;0.055149335013591275;0.05686657352291517;0.05078270735141721;0.07001315092275308;0.06847855099213929;0.07127609206483236;0.07676986266052008;0.041919969803799854;0.04089816433744927;0.4360607384391413;0.32886876306359497;0.3533509440062682;0.3499411705326502;0.4185444928133719;0.43115563380756944;0.41548564184944925;0.43778973518715014;0.3926399097689414;0.44281263665783555;0.12033850381447748;0.12485121239827451;0.10627181406746149;0.5231971668350215;0.03331553768784081;0.0611752093473406;0.09773500388550141;0.3780123339024226;0.02754349556780488;0.006334131062520472;0.04297312005446124;0.038848973712646694;0.049862924433177;0.07622424999113864;0.046164242881632796;0.11484183895371779;0.018358140286457252;0.07149229785937265;0.05934416062017204;0.3864159872230284;0.12156962171306211;0.03173009582634387;0.04797229055038311;0.34267240665360577;0.37777849558814125;0.187834094308881;0.2793443289559803;0.06223164150207525;0.1086528833364278;0.25307908794463363;0.02774971193192261;0.043134908322597906;0.012459007135525153;0.03171107837305477;0.04754034416125598;0.17503563875354383;0.02019617169688596;0.04755568940096673;0.0014145984506040658;0.2508001630530111;0.18298947081469674;0.15218811209428815;0.06225582426294586;0.06335255912234132;0.01699043178737254;0.07571975616412974;0.1058539410239495;0.022272961586385687;0.10382419201530076;0.3135741782940363;0.04319948615838323;0.13916500519327335;0.3499231697403583;0.34989168882190963;0.10433885187748017;0.1295187473455581;0.07875242397024243;0.012396743314404378;0.0304841689792685;0.03379940438288914;0.05305392337728489;0.012764494716694427;0.0863976697394352;0.22661081992795268;0.3246406483253198;0.3088231234754605;0.0030995086431119404;0.15765826074334657;0.3772887319205239;0.023851531539379075;0.05150111822447618;0.03148178633120882;0.00998789538287504;0.24893954355951903;0.26655823169783316;0.32357433697461785;0.30365283684538474;0.15731662178449496;0.31014507349423326;0.3207310636488155;0.2573794272755648;0.2503399048897578;0.2847692710639614;0.22188527608230202;0.15676522938724602;0.3194875167489847;0.17415867471020174;0.2581477325540097;0.28222855208914055;0.11058732200061809;0.3868127879456758;0.31743321194270807;0.1940688779610002;0.01443004710254627;0.055498992281330914;0.0914910393644538;0.2816566568501883;0.18691185181199554;0.13947294913328404;0.010519048748182078;0.2209862146870877;0.21808506320843424;0.043026059469607074;0.04153472964256487;0.03410769383569706;0.1359067756028034;0.05222646680392491;0.03623333311727097;0.49298316032426853;0.4249108897817256;0.5164186103474369;0.457024023216139;0.5100727619562914;0.43326925942034883;0.30774688614063944;0.3056897319226276;0.31245873020308246;0.43425340651909156;0.3900608846093255;0.21489345098386814;0.40320883450235134;0.30269240228807537;0.3127792153151886;0.34806531109209876;0.37825682671784455;0.0883834213909716;0.02790891340260248;0.02067215510874951;0.08651008292145367;0.09089542686462682;0.005604650825645794;0.08741801440846851;0.015152555338536839;0.03795072994233487;0.04654654551842964;0.11171617610732323;0.1124257816731003;0.04039764901520892;0.3587142785882253;0.08526919535088669;0.013451691870845937;0.049332538108301176;0.21025626875007103;0.006495934270134921;0.08013281986270482;0.02893368688893583;0.13992687047273403;0.10673839079707373;0.0024219467797405255;0.08971586050618943;0.0021477438507593047;0.28413298228584477;0.27335516031119883;0.2648090880011348;0.07014779505161632;0.014007071056347995;0.029910808644509502;0.14889525146076463;0.03083144092659794;0.01900140758178122;0.16289864114071564;0.01754564496361674;0.007508823022690409;0.010769293678792227;0.014854628473563749;0.08158505513740213;0.07032921620372705;0.028982689505300724;0.30588382779961726;0.031273653078081116;0.00619004778263279;0.07773220334048078;0.30203553027864954;0.019018538541015494;0.021968403749428166;0.2390139882252229;0.2608470874579694;0.10421904579530926;0.030441312339015435;0.07163801839233735;0.08089253651067782;0.07048013391689655;0.06791960029440192;0.06563667835783565;0.06955844073879948;0.08075275995804977;0.009818602371351962;0.13452844170131403;0.02945804174884039;0.09683350983308567;0.018234112037114746;0.31937357873837763;0.049348449348137834;0.06711031284295091;0.13350454682597662;0.030838147607282155;0.016968207269545763;0.0;0.013710845191262016;0.06426381068124849;0.1914870522583233;0.3465096472088945;0.034156103924360096;0.075979064833858;0.204163153908359;0.036198957022507465;0.11226532622692655;0.07829263109798204;0.15808955458602353;0.39170047828871984;0.031214802576019298;0.08727755943169162;0.11999333976424222;0.10767021000535823;0.02169442341294733;0.011666677523692546;0.2232995177399117;0.030358338317175753;0.02695579590864773;0.06015273154939418;0.13698925732565576;0.1313279687596396;0.07870512160027825;0.3003116274095178;0.347273157583117;0.38375946116185444;1.0;0.06115678852877085;0.025646326177329218;0.006107437305448812;0.07039121754099076;0.07635598391868978;0.03258581143372111;0.054448104948648456;0.07264554267404143;0.1803024050400586;0.0053884577554744306;0.07830614092896934;0.05239008039957441;0.10415474336224195;0.3835862294181748;0.017679357790341396;0.030634297883219287;0.13753791186220593;0.13068342131492924;0.4840405197604236;0.046484261483846046;0.1474864312661966;0.0870300567021862;0.07089484836980023;0.02113192648688698;0.016082258373280884;0.11780642277828723;0.04734471817096082;0.0554341195323886;0.08387770663943027;0.0289017641840102;0.06846377326938424;0.36673925450596906;0.005211839900073088;0.006884577003558564;0.08142416185273162;0.04104903041293002;0.1473477312086779;0.09542658039785745;0.0415230195908198;0.0001812106233969561;0.3328872219531125;0.32808929525026514;0.10129213212454667;0.12483921692480258
+Terbutryn;0.13105192122145673;0.1369706592844764;0.1658469191015741;0.13433259350228186;0.1346534072666785;0.1319776022369957;0.09902500764554521;0.1315247004460567;0.1313341980577538;0.18333592422831474;0.5116040509578422;0.15753901718788704;0.07663690197730497;0.5320455432066542;0.2945274987582887;0.3292821806930229;0.14759872452951894;0.140165904122832;0.1401760556745512;0.14597544991154768;0.1341262356722401;0.13328141356065198;0.1443368872988337;0.1345770172749489;0.14348026588776447;0.011628659781386502;0.08815884678186608;0.41247799346507735;0.573056970377217;0.060307939900264854;0.2998414723780193;0.038600485122327;0.15248550684846165;0.09972737396354428;0.08230112876527237;0.3037289835427144;0.371853737883863;0.6100441095118352;0.4996100776304674;0.07928729126125886;0.027000231143962727;0.12145116098477982;0.10593050252350943;0.001134493769239828;0.039738609101061154;0.011276882041258271;0.013185488004836543;0.011996839051579555;0.011414580038514562;0.06217181862544659;0.0490379970339259;0.02609139836218325;0.011873802223263187;0.01018731555920437;0.04227469301638072;0.1193261041767471;0.07168053921636401;0.0833065248622396;0.04469759546649793;0.014359004034693286;0.03215405682562694;0.09121750447137865;0.09869788204815376;0.10291441038077868;0.07574809768001635;0.0796234135210334;0.08165559313074976;0.04936248987286929;0.049641673982954375;0.04942084553672851;0.039750852605441825;0.02935679356952614;0.003190942887063362;0.005781844050027599;0.043052485087139235;0.03396458956298497;0.012548135831492422;0.0014462117585973596;0.003394878143166008;0.056758257827807364;0.05373927794723131;0.0327431635674376;0.01832998881369013;0.01097975119659521;0.09908093102483642;0.09824900573875447;0.06038987097790701;0.058670518295280916;0.05584749637164145;0.0073733461759259164;0.010557038425310047;0.004716925695786749;0.012641918327923751;0.030191650428572588;0.038011256410390215;0.014307249966100992;0.009550657763242095;0.03217226003572939;0.025644175914479532;0.018190391347005723;0.09068286137646434;0.05416271430799587;0.10438483694287456;0.1007906811094859;0.13121474668019031;0.08782870037291797;0.07726673746522657;0.08157775916399254;0.08074019091315887;0.10104042134487433;0.09087064289295757;0.0842719123441162;0.09954068227964424;0.09625447159096749;0.09264108560360826;0.012934513169628719;0.010943826199108636;0.042071851137144615;0.07357420019200334;0.02471693541450448;0.006396687631591243;0.019224144257985055;0.07071120678714615;0.034852955572569067;0.010789728211714675;0.01647873304452942;0.019380664570316685;0.20347141241988542;0.19866816033724585;0.15459392429110677;0.03486488796159125;0.23065410520934815;0.055039487782468983;0.37381983707977573;0.14081821534725214;0.019428417967221653;0.5104912720405099;0.2149029172210897;0.2938312411560996;0.2684545373314134;0.06968254076109787;0.4156356444136307;0.1845084043588815;0.042027339853797474;0.24138940848814716;0.008959042359413109;0.008197383059250664;0.003972488896269274;0.3217691946175601;0.35323348407143673;0.25109342728922457;0.19203199405266447;0.5676053866733537;0.08383430029300792;0.154861863584794;0.5188429104888704;0.7246638202549558;0.6379836132185797;0.7094245693479256;0.1072449172896545;0.6067557902197215;0.05923445997783627;0.09085947861132802;0.021937648790034677;0.015330254939922024;0.048066980915596844;0.035362723225239735;0.011389939770288173;0.013576566327221547;0.11143823402461037;0.043853316772652425;0.018670716313482237;0.04195426444418381;0.004217441955796933;0.009721032314683756;0.5671914437009599;0.031551256073247;0.027846488998083552;0.09103159283663798;0.11777125024955905;0.10324719386819609;0.04733712772848019;0.07148668635064562;0.21895754837943857;0.04869103260075932;0.15011231833210043;0.020520565629084553;0.011524186373321355;0.13578557094260957;0.4226683747232389;0.41170139273188083;0.11832403196119941;0.12843069165909152;0.23392371189640604;0.411654950250947;0.09937697399399475;0.09531075959124717;0.47963641196694495;0.633236652676958;0.5722640711637884;0.4296171593219132;0.5479053760001843;0.49982249804451995;0.3870010347035321;0.47874108606304905;0.165072288025794;0.42940773685899003;0.1357614092235886;0.01635533883171434;0.04209485597844582;0.01023945197697748;0.20048705399485267;0.5412544384280643;0.14509816139469497;0.03973897750310151;0.057701480871039844;0.08962469092661329;0.027607885994775164;0.0004535506175717345;0.11139621302452878;0.7651432845564855;0.421231815149749;0.004537954496404408;0.12833229177149724;0.12366577691199335;0.11301399959161794;0.11992237625733965;0.098169061112268;0.10649614138741366;0.0335482088200476;0.033762118624173464;0.030864222591548106;0.08106069730930991;0.08116767870478057;0.01911433128093953;0.04425371213386708;0.0689947097757481;0.13558464046818053;0.06768600112979235;0.04503394159239413;0.22704752580048856;0.1362063610223259;0.140058025374147;0.04863802222094384;0.1739904735456625;0.12682461782749554;0.016810056013336117;0.02287469900558121;0.10335957404348967;0.015970763401091267;0.055512807219331634;0.055948177285877976;0.011176766570998616;0.11903415091701268;0.10609090163199485;0.011686762458086608;0.03071692075913945;0.19093242871565821;0.1422686945436443;0.5667984491470096;0.010880175148746698;0.04727439038305669;0.6307212127093025;0.0019278064029276815;0.03684766293266743;0.09805655752356796;0.08439981524859914;0.3096602042324296;0.09102109530930726;0.080126481405347;0.012370216610325151;0.09551136257759064;0.18313944969497203;0.14595635448381677;0.08729334804672467;0.24307855183117494;0.024125049537287644;0.06942678173366852;0.0035184897782432095;0.007701984599164683;0.06509321759486413;0.028192776774339724;0.010997423279753595;0.7229606516669069;0.16051831271613898;0.003055839920544171;0.07477754448806251;0.06774208269516245;0.0022027606144611063;0.02305346542764953;0.02052329091519786;0.02016750164928762;0.015889726408624905;0.031235190425834593;0.016889082180939107;0.04346019847599815;0.031231209819348727;0.030514367990781152;0.04190818518589516;0.02797345223698152;0.014763473671080458;0.003737083841823348;0.4696475685955761;0.010850564931188595;0.067089404761634;0.12189969537293233;0.020677988384469933;0.07365674294702028;0.030068855862309646;0.03759411741538816;0.391018228710941;0.010092086624054456;0.0006988636913817427;0.0019893401573930092;0.0434084104408259;0.400829124160349;0.12876665627461492;0.9660220950337177;0.024862147084170918;0.021803520650140875;0.02378936884839536;0.05689167168393026;0.1573129385835043;0.05755972704078877;0.03691659022988589;0.03807653432910587;0.16436736575136643;0.04642601785411388;0.01485126810716853;0.6012342378598027;0.12816617425474353;0.4094166194864901;0.04292950036317076;0.031326103889635026;0.034220482607153165;0.06519849783064265;0.05674054334950467;0.03423584203319942;0.09209431764932716;0.11931426749972812;0.4307753803080031;0.06115678852877085;0.9999999999999982;0.4996356689280471;0.4931725977928493;0.008625998564664715;0.009339814813429876;0.023617715553116616;0.05978633605720057;0.0112990744370787;0.003039771709058742;0.003361128564717697;0.03152602697565575;0.04269224434017822;0.12287803032874817;0.036247484382155686;0.006292054510238767;0.04479528157748254;0.059490779172993856;0.022670527776578728;0.07547495516740046;0.022033367159326148;0.021562214752096243;0.056844700922114536;0.014660645392699205;0.020220213743164926;0.027187235235800772;0.03592089828987753;0.04094918481053741;0.06013593181197687;0.12235022588116509;0.052869240416761616;0.06742045567726011;0.21735551263133018;0.027507568356635214;0.03065416899904679;0.054031191048741614;0.15108660228183532;0.13624075403704164;0.12056600879465251;0.5577337543695768;0.4784788713193473;0.4245341788396331;0.18788748033053823;0.23901319609278993;0.16889581762525904
+Bitertanol_isomer1;0.0;0.00878050660195619;0.012301549326688524;0.009786807076862655;0.007827014729691042;0.05552868106872812;0.038405565671711675;0.0015015709434103002;0.0003785219186246733;0.005891922111749588;0.0008884337903369603;0.0002458410102562553;0.0;0.005423966312931448;0.003089075713385855;0.0061401318311718545;0.0023747004769453127;0.006124369447792926;0.008393297302234126;0.006452165872710005;0.0;0.0;0.005661426289650447;0.003257933061955453;0.0004813684990739763;0.023568248842262943;0.006372916047160377;0.0035050676944853414;0.01330486625647843;0.015953870303432274;0.004988849807724909;0.0009759568677258531;0.02219329616240972;0.003662877305289616;0.01253639369565661;0.028096657315246278;0.24151882047580048;0.004208611121228295;0.0037301772452995917;0.018214850425885155;0.0;0.002272842917458223;0.06466317362942686;0.0;0.07196359670129404;0.6898094604694276;0.681290859994284;0.6842235248033776;0.6988642483691349;0.0;0.0;0.0008516760356274648;0.02243090055754485;0.0016217798756045646;0.0025752811959521347;0.002394511108966919;0.0;0.0;0.0006615315323846755;0.001193333710461421;0.0;0.0005287167299202517;0.00017690366131028576;0.0001248351284412608;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0071538456797667835;0.004173799677526639;0.060881849890553424;0.05018693534606985;0.019294694236581828;0.0;0.008568116425124096;0.03692525625061091;0.03237717506274458;0.030499648260053556;0.028077689266843172;0.021372137441779734;0.023883588475750294;0.019512025410883985;0.05563125125997;0.026679599466313556;0.01059774872660016;0.01990600438946969;0.04580404290015397;0.02174799652954405;0.002593813894292609;0.025983216913004193;0.031246869167231295;0.003266532070750569;0.003834834893666119;0.029662235634785785;0.023311038817349337;0.00868643167231424;0.041392894571072494;0.05583754039622455;0.06627199009547967;0.03789957880541189;0.0879499600883876;0.0;0.00024392913344255924;0.0;7.684558701869518e-05;0.010047220998665564;0.0013652971227365515;8.97182499389257e-05;0.011718421819346986;0.0008498658280444012;0.001390280950646616;0.0005645945488920922;0.0008019007116213144;0.0011231224885784124;0.0003968054073008611;0.004913999142676613;0.0007825128807375291;0.0008253825660520843;0.0006705673215174459;0.001968359246993745;0.010591068224035535;0.0016663033857098222;0.0012319410333722605;0.0;0.016835907565456724;0.00030183224722171573;0.005736216450156125;0.07839537103357634;0.0;0.0026833421105539788;0.0;0.04395191782189794;0.03151402265331334;0.06705970222551905;0.002305901518960496;0.0055962578886088;0.0004867559595816859;0.028301065824731984;0.019149442122296412;0.0;0.017001119563023255;0.00489285106334128;0.011370838801556817;0.0;0.0038781399026807514;0.009633048274875723;0.0;0.0007244909927509281;0.08028814855991628;0.042940016221589244;0.0019499987280235799;0.05866431206453811;0.022290637178318175;0.05623565899937298;0.041133175692849216;0.05295239234398086;0.0900598108835343;0.030232107032656722;0.1207809455341299;0.23436099690158663;0.007734498150535157;0.016774714779680643;0.012200840793786227;0.001400052615214107;0.001264835387768319;0.032500369654715665;0.07486985794034397;0.0022523763454032728;0.019891203156933785;0.0010478972428331161;0.000633192849592953;0.013831550458414993;0.001193173807202542;0.003634796673715097;0.02900339448435373;0.009992531766692268;0.014308972399875736;0.08388689417848955;0.02051989402047912;0.00017522595769812243;0.01165239967716981;0.011209195546878246;0.0022184881161789855;0.0021100614971593665;0.12361954966452185;0.0012827555928076092;0.04885257745634118;0.0004813946791770605;0.10275574951383835;0.08217347369239682;0.009369119978502318;0.08359501632851209;0.08500841564083446;0.07184187452894654;0.07571610393716449;0.08917517299099713;0.0649540180033882;0.08885699422391849;0.08096455694140398;0.0016623672573957678;0.06066613483076745;0.004672159579943302;0.004016953652095698;0.020141558476480664;0.0009098593191247249;0.03727949658643097;0.00446320186069286;0.09019343511775031;0.023145489652354665;0.0083272180616233;0.004741747429272887;0.0020533129229043543;0.0042351354910766725;0.004253061108291759;0.0;0.008110072131683122;0.015160646370314638;0.0059516789269156885;0.0003182452549882195;0.03145542978373045;0.029298922497921414;0.0037560634314203387;0.0027538028895607277;0.0007259558878522978;0.000505911967303953;0.0005046320866893382;0.0;0.0;0.0;0.0;0.0;0.00031023310801457453;0.004197978409949508;0.01906451042843007;0.018803026767237357;0.0;0.03303925540051923;0.010340249018812642;0.019652511160688568;0.050758019456987706;0.06247376879732652;0.02461620184330008;0.1203106141550007;0.003144040431603163;0.03469295785186193;0.001378614185502064;0.006177968017169925;0.006152511803360819;0.009537643988453503;0.013665368045509194;0.030312187447126528;0.03731771338437631;0.0027367216317623925;0.00026133379971045507;0.15940604939792058;0.04124572685938822;0.0034310393616653776;0.0;0.0058576407045558025;0.0013572908997746965;0.0021412360881448893;0.0010073935639140713;0.00997837931520128;0.0033900671595494805;0.012376550034439784;0.0077288931028156975;0.00345946641556845;0.06859707337433331;0.18966496678369674;0.1400789848647153;0.05140968290361447;0.25032364910051946;0.07792735129592639;0.005869529554859419;0.001011470624561266;0.005433716898989755;0.02018375198159843;0.014497134565118482;0.0033271817668023684;0.31146846155624897;0.0020454781249603002;0.0001686008773575174;0.04038336454509903;0.024074824691394426;0.0;0.022677984545013893;0.1101490418150773;0.010426995471461182;0.0008082888301085261;0.011315523074266283;0.007286159154711083;0.0;0.0;0.015254127117195287;0.04241792938085038;0.02258216715841806;0.011788165421406288;0.0010116675278952366;0.10592337788049733;0.0;0.0;0.04617015644969769;0.0020386023862559413;0.006471068557232189;0.008359118424348229;0.01801406017951655;0.06516223085256631;0.002799566985075751;0.029012163274972014;0.00271905888077138;0.0003545494071725737;0.09388070819350354;0.0023519405481693735;0.13492555633797282;0.003331420042672097;0.004206880990774926;0.007666463018629083;0.002667620928589709;0.041302324825752516;0.0011145661198296174;0.01404275763689663;0.0022892410527887556;0.009549454002732955;0.025503542402817686;0.00020600521519726286;0.1593478779238129;0.026013053881747693;0.023889045437043552;0.014067285532469833;0.0023718728859827704;0.04675492894194661;0.02567240443534077;0.033275635139202946;0.0034623128187818712;0.026156374514641638;0.005811879878473653;0.2593607760679175;0.025646326177329218;0.4996356689280471;1.0;0.9934618920171109;0.004057912079142699;0.004085860274712204;0.024794755466575537;0.031581771174165725;0.009545155438448388;0.0014945685395145118;0.0008729599436577244;0.006001853198992426;0.023268621800470162;0.053299648777936005;0.037848132194035405;0.011355503343789092;0.029569709430366478;0.04491101360727066;0.007365897929822858;0.09070912405119798;0.04890132154064795;0.0032454394064457682;0.026721241551821547;0.009008119136274317;0.014695720491679639;0.015934245439331873;0.12689680745717108;0.12110913029888372;0.05983454652272382;0.12998829108645113;0.07198802470268938;0.04329570974192673;0.0;0.0008395045382890101;0.00245155590076046;0.037918430147209935;0.6577610236931039;0.050195054192942984;0.04700505988470201;0.007632879566326431;0.042544454456221036;0.2162978595699003;0.08746813076032449;0.04223144923542265;0.03249926663036536
+Bitertanol_isomer2;0.0004764501252194636;0.0014731447277401824;0.00021109160906712614;0.010903374690916207;0.008711440804044552;0.06208396071230211;0.0488364082887563;0.0;0.0;0.00611296193376582;0.0008188272934468055;0.00026383180209016795;0.0005625168495883424;0.005216982569015838;0.0021539064908988573;0.0030048959912649807;0.002109665021529571;0.0016891236411322361;0.00176352758441027;0.001841428987292171;0.0;0.0;0.002070406512116105;0.0018093540867086557;0.0009499841733475574;0.027433724750378335;0.008516097736008208;0.004476100552246343;0.007910335103718273;0.019219035942168283;0.0034208642731867085;0.06307131293881091;0.02555500155561702;0.001661100635383856;0.018741723283373906;0.041754577361623156;0.24626562740195915;0.0019019313736976583;0.0;0.019150348886297627;0.0132189534589895;0.03057157582555831;0.07789996392165988;0.037192103256850066;0.0024331172080119656;0.0022246002944422525;0.0031422430049654086;0.0023775674796058127;0.0039586964668671875;0.009676063074458213;0.0057753593199517585;0.0041020509140454395;0.002099891190678067;0.11332835769797595;0.013049171333861355;0.02489148250444886;0.008516101975863936;0.004308746817448559;0.013954451213857343;0.009282405436860475;0.012673656778619372;0.0035012610982296678;0.0027579858605881755;0.0025232796438944987;0.008441331351146211;0.004883607223846061;0.0050591101747761305;0.01294558368506109;0.01181051020751157;0.013139610514068988;0.010385256206185845;0.01158424976012761;0.04165132024981109;0.06204779925183702;0.07962160000397409;0.06425605812041811;0.0034191857628303674;0.007547813478498029;0.024588198072579996;0.05514468547008324;0.07212589208309572;0.06853347240854825;0.05032677427228718;0.043213698608181736;0.027886526102031475;0.02287131302601418;0.06135632355983352;0.03379837915516312;0.013894571428353228;0.020059267082364583;0.0548686022745963;0.025401039871021498;0.015684758736514603;0.05335008620894672;0.05991189852373017;0.02874257376368538;0.023202141148429282;0.034581267853841725;0.029955402193691263;0.014913556100200153;0.059008544944502216;0.05671182081055385;0.067850411212544;0.04124798503111428;0.08938145365241237;0.0035038820587617557;0.005385900454302773;0.0027401336690640694;0.0013354819610094347;0.010106392099808105;0.006353108868949753;0.00042450704890299647;0.012933193350807113;0.007853696794471217;0.004580384589339087;0.06941388618719103;0.12371366089814563;0.0481968948848673;0.11112100364027264;0.09758443120774353;0.11625343707049388;0.02593709682399356;0.16641964253683872;0.036858095115894045;0.018986647373505985;0.0025111825455980618;0.0021550783121036337;0.01047707969203953;0.004398390570750204;0.0011396173679260513;0.010473325231909879;0.045047205054786904;0.0007828673742485037;0.01926475029197905;0.00038615611370031313;0.05322391040602916;0.013995131528348989;0.03939241654559666;0.00447256882682743;0.009605677660092972;0.0012732491825460243;0.010995187544061265;0.02061712584512755;0.004404173503623299;0.018355592992553436;0.008220167498291069;0.012827828042782229;0.0;0.01570497849448822;0.028484128758668008;0.0;0.004771857381328369;0.002060006642404735;0.0019346861989294345;0.007317628051456622;0.004431493275524167;0.01822138107044383;0.05013618431359071;0.0401138723878292;0.05527529981258275;0.09262765739265573;0.008493846201565928;0.008492512133366154;0.010459615549302073;0.022402576332123968;0.07532921091238563;0.026870364951455044;0.014600835659794415;0.014179971429674393;0.01273118672054141;0.11756295592414384;0.009184585847600525;0.01572417706878172;0.013684963532561675;0.08916243935624861;0.004648386474558186;0.0013968640347891985;0.004712333164629423;0.029474240572364595;0.002163485195817962;0.001949043745227484;0.08437615578375605;0.00868400727534697;0.0008245797690496816;0.03351240658363091;0.0013776754381647678;0.00300094320344152;0.004359284540285013;0.1223349969611437;0.001039186478716504;0.05855104048096376;0.0011713591091578374;0.04684243022874436;0.10765467153292707;0.014341631256219;0.09247188011142533;0.09381627131681274;0.08461269534874448;0.11334021167351369;0.1023392920296711;0.08065078176374738;0.10130243872779196;0.09441744482334687;0.0013526690286807714;0.006855058995966288;0.009312866171285471;0.004705481102481648;0.020120284375256453;0.001008388242736503;0.031206122933294955;0.0195555841645287;0.03267113430803214;0.007403312534857982;0.001975797749769969;0.012404301016065397;0.0029269503832178795;0.00632841028991939;0.010011131862048783;0.13071441676508475;0.009037891805692163;0.0035665618099700114;0.004950805915496103;0.13284699958666196;0.0351436299233469;0.03261059784538318;0.04726343960960941;0.034043250664616394;0.00473754188809203;0.0021572592166944995;0.012465482405318399;0.011696972160713331;0.012823488353937344;0.008797505403526881;0.006804497524435639;0.008312922383553136;0.016346955792797505;0.007802743328268253;0.020129268245442467;0.014528922732334065;0.01573442945852096;0.009836508449310095;0.0008576976800577066;0.01338392198212378;0.006045434967166634;0.06005241428507081;0.026262927751355136;0.004554810692658702;0.006497603601037674;0.031444004694761093;0.010255399063956264;0.006952034688748026;0.006938275193910119;0.014865376585680662;0.014033006961211162;0.034295438018174675;0.054274424341802095;0.005061161408603425;0.0008432438904625769;0.21189814432845414;0.028415317488936293;0.06137987844174227;0.0;0.009360933383984383;0.002192546485756984;0.09741330970723833;0.0010747841829813558;0.10030313063763487;0.0026016368370570617;0.009237349179815028;0.001900700464139377;0.006718046540653138;0.01632877115421922;0.2074791325462387;0.0021208385390829774;0.023470046570990433;0.11107631258771555;0.08742861539501787;0.0013422622813068696;0.0013428365809280507;0.0046620081379842885;0.014266802847385456;0.017593194695403144;0.06083122480551038;0.3155294841183453;0.00218988684007317;0.0;0.0482369749126296;0.0380020862767963;0.00012744555488907757;0.00027955579495141016;0.029725742624805155;0.033666802628575625;0.0;0.011719551607811832;0.0021667267910994406;0.0;0.00041190445354163946;0.01269236162259932;0.045523470104089976;0.006522419556705366;0.013288924962866806;0.002364975381914073;0.1536470017605341;0.006843862899479366;0.0005141665748245236;0.0035821436809178623;0.007595066176773948;0.009135194707699199;0.004652930487793991;0.0025548597975979096;0.07548350373456654;0.0032384868870986155;0.0;0.003782840948875596;0.002264306532138332;0.07805355266909306;0.005190970126425679;0.1507034054813775;0.00761655726948601;0.007838195424424215;0.012654509039838807;0.00423783907237808;0.046617148661953337;0.001186011865971998;0.01326402592606638;0.0034819146986312466;0.0024296071952500326;0.03656958163847556;0.0006605379116705496;0.15950691709406706;0.026270193836199492;0.014234088283479518;0.004288989199874809;0.0057701165425463104;0.004428193039551942;0.03759735757683946;0.03891640675916502;0.003830893927774156;0.000618989474254656;0.0001882098391789394;0.25940379194180635;0.006107437305448812;0.4931725977928493;0.9934618920171109;1.0;0.0020834536307052084;0.003263416558988968;0.030136630338528696;0.02437458598605419;0.012732566269303006;0.002375640080344765;0.003445777897842088;0.004878799467517385;0.025930162912364534;0.05068739607946071;0.044793150669444046;0.013168303155326773;0.02027332063936406;0.04655671715067059;0.01251157885504812;0.09530694361800185;0.025943928151503405;0.0024209674104197342;0.016485119951534635;0.003918668537633794;0.017782631023564446;0.016445895352569354;0.17257800161488288;0.17196431804683154;0.047170156492211485;0.09852445320437378;0.05348546716285549;0.0460254973813739;0.005001286966274665;0.0;0.0023140041286256853;0.018182486211467636;0.04847441504819604;0.053362988300567675;0.04786054880636962;0.00695885431306275;0.0007584460467148288;0.11446275087527182;0.06176815777667292;0.040127420744713004;0.015295084861858975
+Bromuconazole_isomer1;0.00046938133104400183;0.004797698320674058;0.0;0.020256968340437956;0.020434128605193072;0.0016616664665731833;0.0004905355671857262;0.002030031415107934;0.0015878689968167777;0.0031250898130953226;0.037389094189245804;0.0007217942872539485;0.020049768353497227;0.0006631677748597234;0.001088979156464675;0.001193837691983622;0.002295473615896525;0.003377341565764588;0.004145433366807071;0.003691235937764247;0.00838668510231588;0.0014147794441511303;0.06557750054650255;0.002747550648984838;0.005498133843282429;0.0027091963036044884;0.0;0.0381074446632227;0.01179024789422477;0.0511175000189626;0.003019086750293561;0.0008356916765479458;0.031844914486105914;0.0015191712662542026;0.020905673975573223;0.0012607107797899444;0.03517689894250619;0.001980248086023064;0.0;0.03347588015104741;0.005904936490258517;0.003027655107945167;0.0028033569042118667;0.0003446854779042093;0.08619186946270947;0.08158562202546775;0.08156844662349612;0.07387087563584097;0.09353854076504968;0.004495356529553592;0.005524203388124586;0.004464490959311899;0.008232745758327437;0.014126661924770854;0.006778597180516994;0.002300797758246982;0.02959754393093509;0.00278269135549401;0.014126601836119685;0.014007829269197558;0.006185409825839208;0.036932979980382925;0.050220569274643204;0.04259929086877084;0.0393915986409124;0.0031661827245835356;0.0031133541595471294;0.010939678910695706;0.013925890736174517;0.010868300248882742;0.007024682386106729;0.006723356409990387;0.005353218452099607;0.021705830222556025;0.09400087816036469;0.014191657849981769;0.002036978702380454;0.0022324972267590013;0.0026534110314771747;0.2171466954300675;0.006852783854904522;0.0064150542950377545;0.04466868448624392;0.0020396749163283804;0.033555612742241434;0.02206467841939657;0.004805419082614338;0.003924213988577713;0.006797948005372873;0.042656635200060515;0.004630313957744525;0.07867670705147319;0.01885774534996654;0.011161829700764011;0.012528513833160159;0.01168059325432035;0.01509730365254439;0.09254532826960901;0.009978495810633321;0.008113702038792601;0.011781491423480598;0.013925356401136093;0.014185225227376651;0.008021377942595241;0.011281292667476147;0.013736888863829663;0.021167931220942744;0.020947972544033137;0.02139459518078292;0.0;0.00038428371368659406;0.005681229315490699;0.02056839211178562;0.009005043251727183;0.12087308779685695;0.0005736495271970322;0.0007481583795723448;0.0022861012595599126;0.0002860657892983827;0.02314790745159217;0.0011274217200983937;6.547552409404436e-05;0.0;0.0025786259229116882;0.0007441030401012085;0.051659675444653524;0.03833587595447722;0.0008313182970994149;0.0008377573481403553;0.002198368732546813;0.03340428591393947;0.03010273127184276;0.0;0.03471157961631768;0.039634925627915985;0.023947330473220264;0.012384883346107229;0.028278324792906987;0.02284427287122271;0.023434608529189317;0.07808847418113381;0.04564837862772648;0.03435181291024564;0.0006523405709956264;0.03277369481813865;0.015771481164172232;0.05661675091308322;0.0;0.014015246939777489;0.04210629216078012;0.00043077006110018424;0.08843334875775602;0.007810422300638059;0.005406317151089964;0.025037409640596895;0.027701347796402917;0.01067023542002638;0.0106957269494117;0.06710296914539296;0.029325947679006013;0.07125995227248709;0.08842928570855198;0.015407670852278205;0.0033959864194564693;0.014753076277944137;0.017124096923241336;0.13672214711931652;0.002914744989199455;0.0037370632261569795;0.18761116658992066;0.11498583384840627;0.005940287871691193;0.002404678820896321;0.0050186678034447865;0.0121299923139212;0.002079273327378529;0.009017376412935901;0.040223302649038915;0.0064133384107196555;0.0032073997677936387;0.00884685696398057;0.0019554121426157796;0.03514843902324993;0.004067144682857853;0.004552161879876127;0.008618596447368345;0.07745352156652913;0.008898672316433017;0.005011836781348132;0.0035364011447652642;0.026299551988221894;0.020473236933564218;0.2562669945700594;0.0004529649197106551;0.0041670759973560425;0.00892131459806383;0.009251680805723127;0.006326404094266421;0.0070805910918030944;0.00782237467577903;0.006219611945962318;0.007938342592586746;0.00721167411190134;0.008081910829945709;0.26257807260907884;0.0011415774187836835;0.06855555909709561;0.40121758707557215;0.0007620849830824979;0.0332104868815348;0.02866742091623278;0.01158336738492416;0.20861320114315532;0.046018987417647504;0.0258982042173132;0.0019305775656111306;0.038736243749378244;0.0204503780708836;0.0016667186848041892;0.07315862115862051;0.35546249962236043;0.03688884745537054;0.0696428936066438;0.0007823228490493641;0.0037929815652881786;0.005010825495349359;0.0035595537837038622;0.04001867610748571;0.05129450847833249;0.007004388611863888;0.006767195539513942;0.008194459838968954;0.03673201674060409;0.006859249606808539;0.0068104119762871194;0.015358323506066088;0.00541483708655445;0.0134719409590664;0.006991623908717321;0.015289778587385977;0.15103798355037956;0.005606726666060599;0.004913118955426433;0.1835280648663783;0.04912293640712578;0.021676483613940648;0.009484866238609627;0.03421513891760713;0.010971231570058804;0.0014041102881577675;0.0022825481200275887;0.002386484300754108;0.015300728786878558;0.01919590511614474;0.039317397393157934;0.0005753057005495958;0.008480660003220227;0.013918011817122449;0.006626088815675208;0.00043714651917157115;0.0021221967553162555;0.0005823467914435414;0.01271799563930718;0.00014961443017277566;0.019776795835410955;0.006128975272925865;0.07420091264113848;0.0680896710283125;0.025985751858504352;0.023387005031481584;0.0013848870526173142;0.0008812144240736827;0.003906241477551947;0.013585987106790088;0.006130035308301144;0.0007988362629533622;0.006031016064992989;0.0017044063505554934;0.006697099861831715;0.07737174717498001;0.01764434681744334;0.03657850348528807;0.0020371044177545502;0.00823059749889518;0.020700933347136522;0.0029405368679277523;0.0044504317720528925;0.0007643436768865904;0.0;0.0014302341661764021;0.014724231502902266;0.05566408204138683;0.6863079604635236;0.0499126231110256;0.40416726965809807;0.0;0.007543193471963818;0.034353954285871374;0.01748438763459815;0.02978132764554512;0.01681852538671989;0.006667755032451212;0.008800921533777126;0.0;0.00025402836332818584;0.0017281139720888895;0.002443299984495367;0.054031033784844265;0.033828208179278306;0.014330270341393454;0.004267217803927438;0.0023718301490761643;0.0008648550236357617;0.018382041579285704;0.00033691136256030867;0.1494977306915056;0.000950947946854959;0.005743149106317208;0.01865385842103555;0.7988450449542019;0.003503689388970288;0.028115418709870138;0.02917292411004768;0.0031195665734714026;0.03689570571708153;0.019425943159072347;0.1068201594029031;0.03136241720503129;0.009551833127258538;0.07512675384051046;0.0059795638962839796;0.012034817355490517;0.00326114206827546;0.003642245757445156;0.0006811047328690046;0.08425416278533714;0.012706421852015365;0.0046313608631993195;0.10304264678931484;0.011514797259469998;0.010421847844074008;0.07039121754099076;0.008625998564664715;0.004057912079142699;0.0020834536307052084;1.0;0.9913502209986562;0.00578949174956991;0.0108452444391341;0.08002851645246178;0.025303070842496844;0.027367585102012277;0.03599564732974577;0.02026826924299303;0.023653576115520363;0.01281274163508512;0.010252237073414574;0.006378222442699718;0.02035883412893716;0.3034861452476473;0.009028315401498522;0.0440109232297266;0.02633147262942144;0.7011726217548652;0.9141946607077167;0.5588385001009419;0.0659805585976602;0.010941373530115874;0.032000204749767475;0.04134342030227965;0.037032490811094894;0.04212833956510016;0.09700624107931101;0.0014754220254260967;0.01213786744778488;0.012693053627266344;0.05613019695826953;0.006127781270170439;0.03013383441207512;0.06701239466076422;0.007286755772928136;0.0011969007824188152;0.03633092661939949;0.04918375270794708;0.19405138844354317;0.20368054392043403
+Bromuconazole_isomer2;0.0;0.010669494220312003;0.0;0.022219586484660353;0.022426859234586972;0.0019784307823811566;0.0006768050220484492;0.002411792788085263;0.0017235107482813938;0.0035672932566720005;0.03232457427097823;0.0335176147820416;0.038202860920728436;0.0018754363553100427;0.0027075251789283133;0.003331009017771928;0.005482149602841986;0.007680889703226473;0.00938296502295201;0.008585989531136635;0.007055969240674191;0.0010814026541437049;0.05889136783935629;0.0024955188356451754;0.004698269281682635;0.004971339033358489;0.0009315299150413032;0.03206943216412551;0.006822764065900444;0.04594599160183915;0.0027260820589433492;0.0010928038143981958;0.043109524077589056;0.0023581845287387144;0.023000383201165202;0.002051442681081576;0.01479776130682734;0.0005152871884375646;0.0;0.035376724635849614;0.012259055793272808;0.008984982615255066;0.004968917818801344;0.0045350334733353015;0.08776832660977502;0.08478553668157374;0.0851515488685568;0.07742764576246462;0.0976067900258855;0.006324284336362709;0.006920855831449584;0.00529977431420352;0.011119166470284403;0.018467652871454493;0.01425906701326048;0.009396991296720985;0.02581702635819575;0.0034175304891121473;0.015472737297636381;0.015630450396156965;0.013210322108032876;0.035293842929376845;0.045520998286019444;0.03835751386914011;0.034673095883239885;0.004722834553389234;0.0043899492003381365;0.012096926895399245;0.014698624107141135;0.0127955330997569;0.008768208154929935;0.01188411130657676;0.008089653152841419;0.022786272157741844;0.08365146085144239;0.0022703086789635793;0.00554902145351694;0.004077008786694477;0.0021577556981216004;0.22623533878287383;0.006062533017665395;0.005036803956843514;0.03705530310693949;0.0009093358606782019;0.03270367497489139;0.020049588371055426;0.00029827189447905687;0.001165884535616701;0.00911983804671074;0.04305397910834497;0.004116177307112025;0.07592802187705829;0.019291012273194446;0.009114409014498722;0.009615796945593428;0.023647205244052522;0.04344232718641166;0.09444595641147635;0.01066995647167192;0.006592711835599806;0.008676886505251027;0.008813524409652366;0.01112905970421379;0.01234088085023155;0.012965214985503399;0.02537651698595741;0.030502518663602266;0.03082401095908485;0.023144701958565717;0.027096843375499828;0.0007667486656758846;0.006920276189074125;0.02247538565706632;0.017891437029105176;0.11518645311646702;0.004076286355050705;0.004983843721183046;0.0053443259529886685;0.0018641251307387847;0.023907452985757728;0.001477584996101764;0.003553716416889802;0.0016992741880522575;0.013324923815068699;0.010133350394839742;0.04335172674783565;0.034089024662328604;0.0033802410704466615;0.0039010596052483125;0.002455002226155904;0.03624613279907979;0.007389313171600943;0.00011746272268058089;0.04297171528451844;0.037366162577867665;0.0013601970705165876;0.004534805739690006;0.0034596038540551607;0.020200089289591057;0.0219415864871392;0.06891903189005412;0.04049499155796877;0.020011696245355908;0.0009006258324519243;0.01988279694722461;0.03604425043962788;0.08636547612823164;0.0;0.012476625821818445;0.039750569068690164;0.0;0.07313638399460248;0.004231942155767714;0.003227431217674774;0.04242553937090159;0.01935013900784764;0.00031694281550099384;0.002228337393378427;0.0019504155222114011;0.019502086099911938;0.0450370933515439;0.07827665389749788;0.018578234621006755;0.013923627575065243;0.023588481672330387;0.027811807943946828;0.14977727011900333;0.0335121871034537;0.04709122748948293;0.21212073653929112;0.12119742342096203;0.008890877060242157;0.004660277172159605;0.01352585917222095;0.017732957048369333;0.0007909598257546833;0.0001359202620819297;0.047954989431528684;0.005417856554785187;0.004981000523332135;0.010156145743540974;0.0007085412415885145;0.03196707793343074;0.004994480676883754;0.023826534194027325;0.005923746431814512;0.07518187618174842;0.0024944235890133125;0.01218772627469684;0.004916432684826285;0.031606287384772815;0.04044248359933312;0.3672158910683293;0.0013752923975797983;0.004771084073032061;0.0002272886943539084;0.00011554329334108733;0.0014183062208505681;0.026351876013784296;0.0019518316221758757;0.005361799269358033;0.00240762815590812;0.0014888784353538677;0.008909757596284554;0.28336533007300596;0.0005958286826706595;0.06338348493847012;0.4238814879834869;0.00033511815101365446;0.02938854823719323;0.027724583938337835;0.015740849032950453;0.22466965379147452;0.03683721832678986;0.03318928413212166;0.0016235643170551368;0.05347112755309375;0.01646952918229566;0.00156969305595285;0.07041800780561278;0.4118007752072361;0.03571516429665771;0.06009271697826242;0.0011763984861541995;0.00696454565163684;0.019264462257118756;0.014846621562027266;0.04530059737848638;0.047305250120581274;0.014888267135936755;0.01377532753758788;0.015147307787145244;0.031981306267135017;0.006605484279432876;0.009032755181217659;0.016621254754760475;0.00796185777906026;0.036082352404681446;0.013863021619685684;0.01580258060368859;0.16206453064967594;0.007264098532264142;0.006181615449442969;0.19168248673569846;0.041357005411233626;0.007790757096425313;0.018386107454843596;0.044157188907670376;0.015113091617855722;0.002418703398797077;0.003373809684758519;0.0035466604408044364;0.03309806268390231;0.022954942555904096;0.03134514648803351;0.0005571568618377825;0.009832370426779254;0.027185012323040932;0.006754702298807515;0.005438162219497119;0.002047412926643293;0.0004451233501466146;0.012203971486394736;0.00027516492466599356;0.020686331463386227;0.00507253681722267;0.11228526640629555;0.25275749120252783;0.04750953336263642;0.025586021083230034;0.010259673474084133;0.001541896934143227;0.0009206082735899608;0.015666590672838945;0.006434064473027744;0.001315158709077525;0.005016557509399219;0.0011980530186095938;0.0076164459199990625;0.06250379103462557;0.013260332321664289;0.042585043563454515;0.001979390371504118;0.00962445389488308;0.019362753488628873;0.0017011452209055044;0.003968943833925548;0.0007540672426597996;0.0;0.001449298386623906;0.014194892706832532;0.05223401828567664;0.7181145638768675;0.05327265441020825;0.40925055014746947;0.0;0.016717280551097256;0.04119607650493418;0.017136106283788685;0.027376005012116945;0.010772796818649504;0.007094518700457433;0.009621037996555205;0.0008854479992638943;0.0002068450168394905;0.0;0.004321208889303718;0.05263023949583249;0.03524627370378867;0.01674368696200687;0.006203049558955815;0.000146541346522988;0.0004493171464238374;0.004125099249401971;0.0008051086128383878;0.1520178338164508;0.0006090053324206147;0.008521463922936477;0.01726032856338449;0.8317398894036582;0.003721481012233438;0.03119076911024046;0.01802382754275983;0.00352443465822941;0.040869927111668765;0.021290523759438795;0.11537029160704475;0.024252793577051127;0.01596381775217341;0.06618310312069375;0.005131720031115352;0.012944397064117983;0.0016464809464763238;0.0019265360979470085;0.0013494033682603232;0.10246435552096024;0.0169503018872762;0.002743305157475951;0.10722368496454542;0.020944811398920148;0.014249630256759351;0.07635598391868978;0.009339814813429876;0.004085860274712204;0.003263416558988968;0.9913502209986562;1.0;0.00855174402914377;0.014204859646802922;0.08737232323699645;0.02633879008666501;0.029431724093976052;0.037939927040828575;0.01998700619728468;0.037945379816501396;0.017478454245976226;0.010876848012964799;0.0066157970339687285;0.03674404197273645;0.3562746898362291;0.010826934318962981;0.14500439660312273;0.029726917936730567;0.7301435906109895;0.9056767881988287;0.5808590511689726;0.06803987965161758;0.00581991141738666;0.027467006087637927;0.05017447258838372;0.053182291362002844;0.042330465543484165;0.10139934161945235;7.623628883155829e-05;0.0;0.0001445078970207818;0.07774745976778458;0.003966903947932564;0.037515184577734985;0.060046388012966925;0.005454787970240129;0.0;0.029925536261676877;0.03267258848390243;0.19223034020148713;0.18965962379608556
+Cyproconazole_isomer1;0.026112444916994697;0.03537285253928434;0.0014638503347819192;0.002736278911865659;0.0036095613748969736;0.007180277854976494;0.03520907807693696;0.00038403227391476524;0.00016938431226660864;0.020075020536664254;0.0006855701294813237;9.013121236959941e-05;0.0005645752006107142;0.09858887373614938;0.023971758661664573;0.03142919302327593;0.019921584738138952;0.028659078254649976;0.03830031034185995;0.033818812486349416;0.01663766226245143;0.021459840383577428;0.03544105936671385;0.037108534988462054;0.005838109479973932;0.20562216952760526;0.01540505780009198;0.02360877551320711;0.009811939259221128;0.22217529074508938;0.007417298653983285;0.052794441940484396;0.024970682146584097;0.013176710634064396;0.012172673824445954;0.05342069832034385;0.11061125894222165;0.009781940525629656;0.013552375681198171;0.001652270990861323;0.008099952370877798;0.03269199798139791;0.01071149769272831;0.008786745790945467;0.06574526576522416;0.031745521594431274;0.041225217298062854;0.032666001333914126;0.03527445369192536;0.0046819336475421025;0.0064924487660122316;0.004988946858184207;0.010624946059493164;0.005809828900756334;0.005208865536572311;0.021063861965223727;0.012824635430860255;0.010735630824548755;0.015719076749764586;0.01701493804507897;0.007085442260026331;0.27750112381032577;0.2043673040724627;0.23260333939230154;0.01419209877205175;0.005333930450375276;0.011858365798541106;0.014835155045912408;0.019662071077754688;0.015072864229051224;0.015151999279615351;0.005868645248657211;0.02037540233238191;0.027590169706488216;0.07193899633220079;0.05822992994718694;0.011174723822783304;0.004648488125765323;0.01823910594232634;0.09923112317061998;0.04268988113903908;0.0391544743185925;0.04503151998113518;0.04023662169431341;0.032579679532945445;0.01864771626901353;0.23030848683885868;0.25034973070686356;0.04630554068804715;0.010359918408065712;0.08950850786002451;0.06313369367229701;0.04981980398132739;0.03551705594009713;0.047281334539986904;0.024223052285363245;0.019871322535843096;0.054097141454184525;0.08536658160507354;0.07781536314940339;0.10291056323744274;0.06744025347996552;0.07084226678599519;0.027056145961052585;0.05073813164992375;0.0011836780616190107;0.0012581312747562022;0.0015756073555763539;0.0015917571544889094;0.0;0.005689719945340252;0.0007577237633467387;0.0027927834482138233;0.002485069600424657;0.0015803084970120865;0.005518213065564286;0.01017915929614836;0.014608523039549319;0.00929100572012323;0.23398044723055766;0.022206428801936892;0.00173816956041958;0.012410715850163321;0.0014666834111185557;0.043445006851186685;0.008224093809756926;0.008430717532493753;0.00132751751044324;0.0017647214986297158;0.005453802773563041;0.03129463817147116;0.0935791919194316;0.01392003593410492;0.06300014968731117;0.016495478647397047;0.042783460832105116;0.008897428041805551;0.03510073616053268;0.014891225959081844;0.011140813839602146;0.025828421375218395;0.011787533256623328;0.05675557983556078;0.010783732662508398;0.018684400237761214;0.010911338893958395;0.02145747957150038;0.009453864523472291;0.01257784377151285;0.06846698149711236;0.018018841524638483;0.08297395121796122;0.009597449492155304;0.00281303680274604;0.007782057890376686;0.013874396310633233;0.025996890287949985;0.020895430780833422;0.021301997627093044;0.04347802113271752;0.037625844056170143;0.09058086822383847;0.11517182837581211;0.007982493308870062;0.02120777209999512;0.007276114510420508;0.08461517401721239;0.005314992477556535;0.007427806838057398;0.10061332765989538;0.06347589400299802;0.008440494794516825;0.023975478776262077;0.00838535730351558;0.001415828482984465;0.0019105936280545421;0.029366483919910442;0.018167658082347472;0.026327776050130768;0.019556167166435514;0.016571645898924174;0.006515931803179088;0.006236547691553604;0.015058816971726023;0.2071281702962461;0.12858610184150124;0.18963606391426852;0.015962580323473384;0.031501434225232126;0.003313107709968916;0.0384623912141082;0.011087466682526742;0.059529364763155165;0.23125831175241002;0.024259785979044587;0.17811247476665998;0.1794875190939926;0.26786296901551454;0.30312118244329717;0.31427802651172265;0.2875193402530996;0.3196088949184579;0.2944001330703928;0.03625503895367606;0.11737474348296842;0.01377985221095415;0.1319697568219404;0.050286344623497486;0.0012424163208510043;0.07739013624057822;0.007008527751095779;0.017680555260378143;0.10821935163668275;0.1645123285238271;0.011298588694145469;0.014700375248505019;0.1555290360936518;0.037458976983146236;0.003688540055908256;0.03701140941451695;0.03301466373195256;0.01694229855174356;0.02166277148533487;0.01572058383244414;0.6285912335633757;0.06776754111062304;0.018776935552195728;0.2505897350319494;0.1505648770592221;0.007617960561078051;0.007211704259805182;0.006941899237890701;0.015396109346971333;0.0078952843031421;0.008842789239128125;0.01642421517643095;0.31263985620069323;0.26447122968563613;0.33831053131626726;0.01527719645047206;0.10469254600021252;0.046242792034094524;0.0009001135668655119;0.03180623772235201;0.018835591723891702;0.008996100747104973;0.07515761620677529;0.09683053186640775;0.1136089815858098;0.13723549876860247;0.036221477481820724;0.035130859125510255;0.04804967578205961;0.06748472219227185;0.02185038657694287;0.017403348779129826;0.01407531290400609;0.008245381604086511;0.03159588349293082;0.01300945958673612;0.002477245830568158;0.032008592216473196;0.019237079596155556;0.01936471553546312;0.10045063401032794;0.6963352481316639;0.11422046833162294;0.0065622553677486635;0.0958275720820871;0.004888204214111709;0.013838034236643098;0.01207291485135829;0.16766670401526712;0.002416293040269286;0.0465455944114368;0.08289004360901209;0.16653563264506166;0.015599733288891167;0.007545734767903863;0.002349424682417158;0.022880280843753306;0.06322050102110757;0.002439321655560647;0.04147934172077648;0.005561551336769223;0.00717322995628016;0.01877645969655652;0.0840018624616174;0.021750570622881587;0.0016056166226834504;0.005309766228943915;0.32663133481714024;0.04768855831197005;0.014626661360689082;0.020018725854261447;0.7267166742223434;0.027881407526936585;0.03479703678619503;0.23955461344566048;0.013235655348848909;0.012703525469512396;0.00481982218185382;0.07768869625659816;0.21071700362151874;0.002784088377809479;0.0320592092487064;0.010079846964155722;0.11076545544648705;0.08261619576673591;0.02322165643133714;0.035849292172241275;0.01124725229442237;0.0011542400215827859;0.0003606219817739478;0.007690873571812826;0.008321190061743132;0.038936755027572295;0.051975903313897315;0.004710346147739207;0.1132020360831059;0.10589013194573707;0.06027139602835711;0.04488442743484448;0.003933710647958814;0.05816942883882889;0.03967923470175324;0.0022055461894438942;0.03845411457679536;0.011152488557366343;0.040489064648134655;0.02463994279743748;0.037491917848825995;0.0022916801968372413;0.0023465953749535044;0.029513829591408268;0.008591124053005356;0.03398481094557694;0.0020481811870710614;0.0022846737751775303;0.00901736385577534;0.03412972973039206;0.03258581143372111;0.023617715553116616;0.024794755466575537;0.030136630338528696;0.00578949174956991;0.00855174402914377;1.0;0.9884071026472021;0.04578940704739811;0.026500725529807426;0.021400041024192285;0.12882107275970045;0.14747695585322096;0.10383836927711412;0.43701881444249296;0.0002362789319115267;0.032119811818270366;0.04519573398487552;0.16721942209097268;0.3154882662606679;0.18576075506098325;0.11189457801969309;0.07502208389591375;0.01856818061993321;0.23384673639009354;0.016862282629630684;0.0455243993114145;0.21589617180516857;0.32568716088476174;0.08736402678014402;0.12260767605135141;0.34271387493070243;0.007372051214130683;0.0207923485617962;0.022995886629361775;0.163798142769539;0.017326260187234904;0.05342746161556796;0.17411595615325723;0.015224856050447455;0.0012333738952427595;0.1318265355808249;0.0313432597063356;0.14615919658027932;0.1016530064450796
+Cyproconazole_isomer2;0.015130103952307928;0.042954309633247305;0.00011716242050044386;0.0026681614908534807;0.003544850209865073;0.03936107049745636;0.03665443843215157;0.001983643746731804;0.0021896708432031647;0.009424552288766513;0.0061350545798996995;0.00019061853865649239;0.0;0.11001260410299957;0.023011731463087;0.03543019945515809;0.027208683857806476;0.03551754522847307;0.046620612892619345;0.04160570773052293;0.012404712168592876;0.01588625361626959;0.027053247773299795;0.04011108362480074;0.0019700938088198627;0.16065167672946837;0.0135701567037568;0.04271503166774252;0.06178265583246346;0.04430974381608843;0.009927379066303534;0.042753606823267044;0.03919361668526064;0.005183452220208729;0.13710790456564198;0.10519465243886596;0.10812121660436984;0.00524476695665408;0.01510171563015961;0.04999264072062122;0.007464248970381842;0.03544924250802631;0.009772372857812505;0.007065634849413593;0.023734303395820444;0.017810532326645274;0.023780047173841978;0.017031470847717847;0.018708068891078525;0.0047708412590390225;0.005101536708038086;0.006299916566354977;0.015821739945552745;0.007889778300627153;0.10736445508837043;0.022725769262944416;0.013495591873988329;0.01133765091004464;0.017656593589313294;0.01812416257733841;0.006676025654791593;0.3068092024878917;0.22628041007717326;0.25737664745216304;0.0149086188248231;0.005437297538003221;0.012519326401825655;0.017075469822671833;0.021600433009802945;0.01722368961750236;0.017220911455365348;0.005563329547392079;0.023378291429033072;0.026451108655608683;0.06776164227677171;0.05240799585209145;0.01638966324331481;0.011591052413962116;0.020599972816323853;0.10509957096946841;0.038164895455718176;0.03530129749034713;0.033456079268113885;0.033484544310258296;0.029293655636934812;0.01736218183693788;0.22664436252040746;0.2484412624021964;0.04335397312391333;0.067131651087981;0.07028728602320448;0.06682946673545598;0.04859336989571243;0.07599337331408526;0.08496434746621033;0.0452852090199615;0.022831642086457323;0.05038977127355612;0.077496911965613;0.07645074080503517;0.09908785123114328;0.06004456378622852;0.06514686661362915;0.023879194641254244;0.04750001259148772;0.044751974099745385;0.016812541107136744;0.02563238829383456;0.020442597864051497;0.013379834856625826;0.029206778227685005;0.04551736505913056;0.0068898391419466316;0.002702982453817234;0.02499275767823007;0.004359848638815669;0.007999829658053563;0.012384877398215317;0.007950968656904837;0.03135619507815683;0.017721858744835037;0.003743257346583017;0.010473354678627249;0.001868910657242885;0.0352046389324379;0.006768969677965812;0.006943799272744032;0.001140438630643698;0.07619864168975812;0.0015282670876584177;0.029678243841490266;0.08862590368656864;0.008864765057229718;0.14443738059058775;0.026065056331289423;0.040920853058538736;0.13759972519386493;0.06719130526391881;0.10867185308938558;0.0920234925292785;0.12195999471350671;0.05674124858419293;0.07380323363575714;0.011009265314422522;0.11967896501898864;0.012142298386887494;0.04854200694723973;0.014264238187765774;0.39621208602873836;0.15976926501115019;0.1057589604641311;0.2838654845888691;0.02655784830379972;0.006073197284557334;0.2964769164043128;0.09150282396020322;0.05956613708295234;0.11652309199276384;0.08433255565430481;0.040099191782667;0.06637553928342058;0.1301205302960906;0.044951868579858854;0.01054779444374074;0.03657836641079872;0.022693693661470216;0.09185676593711842;0.011907616120405091;0.014191838131632833;0.11087414241593385;0.07420866979400456;0.010401171644614956;0.02279555166655467;0.007326242095545915;0.007581238547710825;0.0021900318257227673;0.04581502353699104;0.028507143812082587;0.022893964639383965;0.009409406159229592;0.00926721948092029;0.005174157768444659;0.014490844903176177;0.017058580647853566;0.2454394322337896;0.09338716639535816;0.17958612134187216;0.015773110392184098;0.043326401999504;0.12957207175778532;0.12738929396006385;0.011669669478944066;0.15864170853597953;0.19545921003481592;0.03458294510259766;0.13980090972896764;0.14088418791830915;0.133373562386063;0.35040223493061995;0.1418131601466326;0.15055143158714007;0.1401234875451249;0.13650019357615686;0.0241890514627356;0.14577810704793703;0.0009274482980968491;0.04576324207830547;0.07023647535924633;0.0009417018060267589;0.04729982920870329;0.032844951429066314;0.023906830792876307;0.045724013309637;0.17060594232578233;0.018840801631692244;0.014878151130492892;0.16972343313564556;0.004597527309504819;0.02424002146876936;0.25750460937300534;0.07042495277034483;0.015910523813148027;0.018001566718778207;0.01478436504905784;0.6987708006215859;0.07290798634817065;0.01994753723969076;0.2792037819407231;0.16857918486477577;0.00752539837869757;0.007036049941597299;0.006940740344216889;0.01598648250349421;0.0079930861618192;0.008284088732420402;0.018892319483926927;0.007363939420810442;0.005358132453636583;0.012801192157291853;0.017637758684356394;0.022820285659630977;0.2724527920381691;0.24520691410306622;0.19960602580299847;0.013867148719656558;0.23440845749534908;0.08926426054883593;0.09347770138258385;0.11923836634655316;0.4282527772971791;0.02859142557276079;0.027748579883709826;0.15606337718002333;0.07453532397496704;0.12733704940749552;0.01388647895110522;0.04517423546161966;0.03419759100191584;0.2472797817092822;0.009108368038014063;0.003180364953381516;0.18446245172689316;0.04604192326012934;0.015257740632860983;0.10643794482410807;0.048521646794042125;0.22459796613135843;0.16460211271046032;0.1450763274121562;0.02095164150767563;0.013368190826763441;0.10716391850234842;0.11321002171036722;0.219810458805642;0.06721403839796444;0.09038824762139502;0.12844790713147422;0.005547904151176138;0.002066083927381577;0.06842705772085564;0.018802698124582174;0.06734493809303675;0.0031254146769009884;0.12032100164534153;0.753957900116192;0.0798400997545027;0.016281976813383968;0.06796058857359635;0.07859350368589557;0.009567813566411187;0.032360532348228395;0.017623558649297624;0.005640212247922484;0.3861865634234979;0.029056599797539162;0.7957244720277954;0.17642787895786052;0.1401505616754115;0.09646541357086451;0.02165460356995254;0.010194848463047884;0.003049374807379268;0.2315416249827363;0.2232088563476687;0.0005113447536735888;0.0036442864592138974;0.0029661116477572203;0.10205926632914421;0.0848746475967588;0.013773471222589005;0.08204643689078714;0.002467810879955035;0.0030625581613838208;0.003715501423557102;0.007008777542206171;0.09365755482062874;0.0365344483612461;0.1056416879975958;0.002267416041080555;0.01870451429006206;0.08023222912181172;0.028365845478937425;0.12126230953039517;0.011588126009737383;0.010942820315779327;0.011382663811187617;0.21328491315558748;0.030726073999913003;0.007748697747393601;0.23486740815171292;0.027397129316696113;0.20912378569520082;0.0021638503796896718;0.002789701615159292;0.016036993856937368;0.008698455028726085;0.029570058807777133;0.0032273360191053895;0.01628278935388308;0.01086974320527591;0.052709945627823114;0.054448104948648456;0.05978633605720057;0.031581771174165725;0.02437458598605419;0.0108452444391341;0.014204859646802922;0.9884071026472021;1.0;0.23726181500906302;0.026462917653402338;0.016762168778541517;0.008399821956920834;0.09402644914406871;0.4440555161076999;0.3470994638467201;0.0002099846143562856;0.026915188589017803;0.032223123248082054;0.12054925482474034;0.25077750719751624;0.18632022870814136;0.014637687586106252;0.0707605968478747;0.01603469019920382;0.2129104419711251;0.015664752117759785;0.05844633758971536;0.06005233250830646;0.3199744916128978;0.10496127546524436;0.10856976499538139;0.33254664634596487;0.007003092973506275;0.01995288900362624;0.021639657674447116;0.14485061869861604;0.01191033460744745;0.1889518951043257;0.033469183354739335;0.03348112221313693;0.005305226304470504;0.12787829185765098;0.3261707942763502;0.08312284349626689;0.12816683398762763
+Diclobutrazol;0.0003592563666351264;0.030148790881619224;0.0;0.008045292376930984;0.00755268821468957;0.02699873437123221;0.010696516797840085;0.03766248705271863;0.039623377638353725;0.00554168352358005;0.02246684722140372;0.005893958224396686;0.0010884037272905355;0.0055391275875949515;0.0036452783512815165;0.004228080877401302;0.026346127867410845;0.029051265089223316;0.02823101618714282;0.029265084576296438;0.04260406852670366;0.060843330531414996;0.035212109461998875;0.01307928619384578;0.007509318524012164;0.014973155025511846;0.007106403757833631;0.06126191558398839;0.004756898561606863;0.2033297063705877;0.008988038136805246;0.022193255667997708;0.02899762268998229;0.006802895501787964;0.02691463091672882;0.14463844737082807;0.03151296070814583;0.0015492045476572143;0.020571090926029743;0.022583941822235724;0.030269453816216735;0.008229270371808458;0.019860275160452457;0.0014950912241187741;0.0190408552192372;0.009995367588878248;0.01650776410246;0.014258153358572646;0.01583834367949951;0.007514860967542515;0.0017449186533010203;0.010960073415451589;0.031079704388604475;0.03379110138318922;0.0541440518921169;0.006647387942780911;0.009108035895618366;0.007171933449129223;0.005493463238179519;0.009548385570868241;0.03139220028237776;0.017894114893673912;0.01634898404637927;0.011077161892075851;0.012151301447544503;0.007010833757706259;0.007408378422316001;0.005991135804837462;0.009912229670374799;0.00836186968016919;0.004423323265065196;0.02643028195491585;0.01761382589309971;0.051227169376345194;0.01144976630683079;0.01323584835612975;0.006878780119563334;0.011870993352618188;0.062434032796846985;0.030403784089419624;0.04360455300677481;0.04125806601344125;0.015681861786602795;0.016536683552675856;0.01742526392522996;0.01305156574161034;0.04917232788037051;0.04990679206869784;0.0552759958531715;0.3937247256975932;0.06015283382714724;0.04169349974414018;0.05656367065666081;0.02115301776976156;0.025118231936805534;0.0711686613685796;0.032720073240292344;0.03064680390029746;0.0372094080245807;0.04053662725909313;0.0626502780849979;0.04545252083451315;0.06379363440377046;0.06642033111617597;0.030931996052612175;0.03462342777001048;0.019145829911532276;0.020020266016223455;0.00834294744910027;0.029242806232265838;0.004541102741175211;0.01996628396249017;0.0095021271362604;0.03630825899061805;0.018156102228308595;0.032215145962274795;0.012702669544570642;0.007861435143384214;0.008406756812124673;0.01716249277488785;0.02135965041559068;0.007632275242910947;0.012031040507841184;0.018222377031193046;0.019493090752682123;0.012594122830469302;0.012897947410679959;0.026139934287286462;0.04120894807855696;0.028201704687629517;0.09455943994930699;0.030853940996114205;0.0989128155587077;0.025197028797705575;0.00421079577763193;0.025949085288675074;0.19898724691909395;0.01734606126123868;0.04933682614480476;0.047947982241575475;0.022979891754899957;0.0318130117089715;0.20522720428051838;0.0018587819458472797;0.21672745570362892;0.010819258594093188;0.015634552044690355;0.0005649105189387774;0.5303863402562948;0.017569544362219268;0.27910459934588017;0.0005374775906565543;0.008241651489329023;0.004809528929163668;0.13177695557214375;0.004773101565783071;0.0325802779220494;0.1180396989720112;0.0034120855502555204;0.006373286009123575;0.007864167106633442;0.021612657141864194;0.01921881289180967;0.02175940579710184;0.06516377610423482;0.06874775577340929;0.07575904809646829;0.01674031761448913;0.018488987577953107;0.10528116297773255;0.10908054764425155;0.01049661793128099;0.010010205213286473;0.024989808624589816;0.027830697095917078;0.002088462289801405;0.01488957858770124;0.1244257110901428;0.04321449068476616;0.016799234848256413;0.011376751765091423;0.003923723484293246;0.01846907643466025;0.016894742893807792;0.12726875754590564;0.06851499584479394;0.33417508263413265;0.013096581954076113;0.004735886662448942;0.217681949930537;0.21410659547036712;0.062376596892624765;0.12013495501930192;0.31617459658681374;0.1900207857386249;0.01750163139043967;0.01688668292748534;0.02233461973782932;0.03661485430444603;0.0184423220964754;0.0357363150524531;0.017545145888030005;0.017996515670354638;0.00901086098407181;0.12234325991291871;0.0011964535302495642;0.07888191152279199;0.08833798345687768;0.003263289230002041;0.0421080573188548;0.048034611715656185;0.04088190807294027;0.05743209276734772;0.0554240712792444;0.012529181706285366;0.008111040430176457;0.0648223532798953;0.06234819343367394;0.06097170357280659;0.03558205333545658;0.03589177792594469;0.03619112109016089;0.001085740627802792;0.014356467253785334;0.020548367006355393;0.013974146109573295;0.008398320551251906;0.01959933108023596;0.013596129283667846;0.03598594482339809;0.03409500178774668;0.036580304984013115;0.011529994972769344;0.008567218757250571;0.041433630100436374;0.009419425188168398;0.0057959009511583375;0.13572395639901613;0.006332938328167815;0.008694758317609992;0.06616401688548534;0.4604917980578772;0.5016305483774096;0.24759607921214002;0.047682006348431394;0.5786610576870043;0.01784391762517182;0.04451269892490103;0.02246506155593724;0.047816022696285286;0.022932066258345114;0.022866187872337216;0.05331936666492774;0.04937294735976557;0.14908586530098963;0.005937246995222047;0.11868861402874609;0.06498008820008425;0.5721880594581787;0.005200646286592086;0.023293670408832564;0.0319040986892134;0.11513539324888707;0.0011527827847353828;0.07241318970832553;0.02145072475252399;0.14992120551352253;0.12813683617337365;0.03497855799481873;0.05831736845595088;0.0010826763545671169;0.26280814170461525;0.025162525520333073;0.5507384188491505;0.016046510655379324;0.02560658545891861;0.014217521541385775;0.43559202803279923;0.026044633412941786;0.0034205704647652826;0.01331984353014309;0.07249648090549543;0.0229077515157922;0.010549942246328005;0.040261263963869365;0.009577893676069359;0.08204774310898902;0.0626629894999926;0.004000787900550162;0.002732728639802464;0.019632177049923268;0.03934716641622487;0.03376366896017076;0.024139438932545238;0.10518601183808751;0.0029052297129493385;0.0005053581075218941;0.029829009676910268;0.05553882377964631;0.008409245091082746;0.0470695807459947;0.04445350827033627;0.02395278064427215;0.03725600462775782;0.0002257210936236068;0.017945306218190828;0.20189687751278734;0.035157411803575685;0.01982749672398184;0.059483293584420976;0.007861616576605114;0.004755000750547414;0.0;0.00027998546607381676;0.01451816013822226;0.020375322991990484;0.0048590808537377905;0.010195154248729405;0.019521387561425563;0.15871677617902677;0.01810269015339331;0.12093782189971759;0.03825749867789142;0.0008916504846974891;0.21749719067089907;0.02991671138461292;0.7834896980827496;0.052234856274620885;0.012231476194801711;0.0038879351833677476;0.011676815368627249;0.006717890729606612;0.006970066203772412;0.00576478026922392;0.18071836287188275;0.013950413860809524;0.024191271486202513;0.004024962324828286;0.11707927078692447;0.1633842953708724;0.010203652436026452;0.07264554267404143;0.0112990744370787;0.009545155438448388;0.012732566269303006;0.08002851645246178;0.08737232323699645;0.04578940704739811;0.23726181500906302;1.0;0.014835332310456325;0.005589152793370462;0.39824599320536597;0.04049466575463517;0.16184871261526132;0.03416116208659317;0.034654091995035476;0.02012360400843083;0.0556228809949441;0.15374874868704175;0.0647842035005453;0.06283238666329527;0.3787423079355533;0.06584754677463986;0.05684188458593322;0.07517880376424342;0.07838932259151286;0.0861948516677313;0.052713081250703196;0.10848505915151106;0.08376622337476304;0.036898952331890736;0.13614184018513084;0.0585229806457593;0.0011222942631594068;0.0027093925654702094;0.14347138032932466;0.007941381917377451;0.03182780293966111;0.025712894055910252;0.0034600563309858355;0.0011229200498402228;0.10016049515130644;0.007836984228048465;0.04851430636197995;0.06555661306024704
+Difenoconazole_isomer1;0.014499867922097735;0.02963443420360692;0.0;0.0006061444400379187;0.0007914196784232176;0.0031454297967845415;0.010960750254699265;0.07122537300752559;0.07078024585206023;0.029228460323804675;0.026925384348412303;0.007239774545943428;0.0003181118095132363;0.00023568513026430297;0.0023404648591386777;0.002446116246963734;0.029273893884310755;0.03362887940711349;0.04108411004446455;0.0500021212223966;0.06183822820330722;0.07632447073026193;0.11675459562962916;0.040460482394519416;0.0475361374482617;0.05103289273089391;0.03846540390086397;0.016331532085394576;0.0012440628841256288;0.016623686389761305;0.050231189618511904;0.02080865334238788;0.05036338881294901;0.001917262242381836;0.027712252300780085;0.0010368337680501307;0.02875418832144075;0.0003501120094905382;0.00018472092556463403;0.002711638411416543;0.006891313767097357;0.0023632633768115277;0.005353906947730972;0.007820435457060484;0.011926094842189516;0.010730265816508745;0.012680533241257338;0.010261079939557955;0.013616167218308156;0.011290827049326194;0.023007737457374024;0.002158159350952382;0.059703596303317466;0.011120843107620059;0.0007998196310349542;0.0021478272517379293;0.004203107041842701;0.00360817657712879;0.0019613969451388537;0.0802907667048619;0.006744271306464039;0.003147525463105251;0.0033491226912636288;0.001753446103942428;0.004469832613518978;0.0035109458493446954;0.003156264918363229;0.0021109763409373323;0.0031348289876841997;0.002363293236867465;0.0016038578258961754;0.005737637294264865;0.03579429166655962;0.02664468912851346;0.016299631020384293;0.015802157529546147;0.017629051037645276;0.007741211548779328;0.015956686871241268;0.15087948442224514;0.025348630188914322;0.022009195717445303;0.02566375811054282;0.025281319526238497;0.0042939136124108;0.006354378961573679;0.007420076244146672;0.02198788205227464;0.10538875383049282;0.16358213174866795;0.004075756679328915;0.0012953897954706857;0.008296287615757226;0.0030068639638731946;0.004127461462293642;0.02870730256469917;0.02649472553018529;0.01975722215495255;0.02229530829688703;0.01821523666773451;0.04154755609520841;0.04227730388737697;0.04799689292265747;0.014427892413393243;0.042404170362171985;0.015612812377235212;0.0015224396926990793;0.007255719133029559;0.003988464991514043;0.0020425352787694392;0.001992431753680605;0.003451216609347987;0.006520708939860266;0.000592183158232245;0.020788386108303945;0.10919410229248044;0.12707218396436493;0.06306583394116343;0.3380109836173163;0.06710138244671134;0.06500703154364967;0.04418574557955958;0.10745356136302009;0.018498848509197485;0.007807232436898038;0.01840174703430597;0.016561740829531567;0.3230322869323863;0.30921633379925867;0.13965622212295398;0.07730465332689099;0.0027366945669248456;0.0006896864241158323;0.020487559478623057;0.002247966098596401;0.07704324250125143;0.0003837438820810377;0.0017769038750631073;0.009597313442049843;0.011745647722522602;0.020469597495454357;0.0049868699411533424;0.0017838324293814026;0.007721251615261428;0.001075671930208082;0.015587622249484337;0.024138904612701743;0.42852536077791514;0.026190436967639414;0.04107966567798737;0.0;0.006373951018176368;0.0025209986352273087;0.0022284995059440086;0.0012934413962249675;0.009377020083602928;0.01064819019416236;0.0020234288451516052;0.0004949594004774577;0.0006971432787637613;0.0013224113645255804;0.06996968721484843;0.010027637711183932;0.24287832582625496;0.14750525716982024;0.01782975206040062;0.27373055984389966;0.0458885980342894;0.047765643209149576;0.030216621275316564;0.06493125169393098;0.003078139433459463;0.0008333496052134868;0.051441786311828365;0.010156160584395986;0.0005226411068688131;0.011649656192043377;0.030901455452028673;0.010598603552638195;0.0041731094217255515;0.003225514433215109;0.0113311038434717;0.0064818871311442;0.0544965581375346;0.009452556865999214;0.05478271557703983;0.02228926292001257;0.010631066766802462;0.3003241152723985;0.04426401046176843;0.07712234843208712;0.02261783363679207;0.01695270071806106;0.021716589373245623;0.039946642184688234;0.004499182968193493;0.0042232114404799044;0.016656542024884983;0.015339757565721352;0.006649957122616957;0.02312752812837685;0.009515920674598456;0.016830743920306906;0.012268435297231844;0.024151911498344593;0.0;0.007733495935234787;0.04701967372865992;0.004061862101013534;0.4730495789691276;0.009463123165170477;0.003541790297945121;0.04399714585708135;0.047135142887355874;0.015841079501103042;0.03299345775133038;0.1177599544127337;0.06446804340986853;0.00010321118205485729;0.009547174114323827;0.024860341838219974;0.06359069299987133;0.016217091116544347;0.0012108407105258167;0.009285352724586898;0.0035925684106651277;0.002356910242942026;0.003516215450123718;0.0025834446307818485;0.008228568563231575;0.007551448215970852;0.007738877242429922;0.0044036952672856875;0.0032653134907324175;0.0041906807303688275;0.002906139419110338;0.03340232160601202;0.04669279120682183;0.028235480657360427;0.0027545757537540986;0.06746549708029294;0.006372096702529448;0.0011773886461383925;0.02447398305096295;0.007135533421764374;0.0001646111049280874;0.009029543942420134;0.01110451160978037;0.012518952796743091;0.03445028601246133;0.0030699993708300883;0.00299679701070153;0.05700412265721987;0.03403531059469251;0.0108056965077194;0.0032628443780815253;0.009507922689875239;0.003117477460841362;0.00483406696946151;0.00033815773046146606;0.02661318303586184;0.007364205809177254;0.01124516554437172;0.007822435135802412;0.033126924320095195;0.0010375475532614987;0.07857268323074391;0.04052401395554558;0.08105633016707571;0.0025545839074024223;0.6597740489809818;0.002075122820613994;0.013625578373890328;0.007211891941058936;0.003971756994512878;0.002088565213229308;0.0;0.0008671920325034364;0.00361266086222994;0.0063058930969924105;0.0024064014290652905;0.052493180274121844;0.026050879826167297;0.006030412662176811;0.00247671562265352;0.007968008272557411;0.0036639414596916255;0.10487364307316983;0.00017035588929622348;0.0002754695739602578;0.22735713840579555;0.0016353888047605392;0.07444307893002523;0.013979706509268292;0.04888793644491112;0.0;0.0003456432935900841;0.027018531732623585;0.06378046187900908;0.004052252705294469;0.01253669084930026;0.0027158109478192752;0.002920793964214842;0.004917520321722116;0.005058815387382179;0.0032658826344546706;0.010930799271223908;0.03627121221232414;0.0016146376224588416;0.006226474246439734;0.002851952515921278;0.0;0.0007624968674865718;0.0011979158971844935;0.001769858022979295;0.006337681208238461;0.003939269076162689;0.003793898656907107;0.06960656334510223;0.33562035329914;0.014933621502296004;0.010985391205365548;0.011356942580561987;0.00025129454607879;0.21281811077169044;0.0006881053440119194;0.010103817881941377;0.009343358286315776;0.0019270492872644953;0.00046156861825392867;0.0010060955280889558;0.0015320308880689966;0.01443666357108208;0.012414199673610593;0.58096238676662;0.04251875272422886;0.05009314505459423;0.0008600137662325614;0.01601038249209642;0.010323358681101248;0.01794758619275897;0.1803024050400586;0.003039771709058742;0.0014945685395145118;0.002375640080344765;0.025303070842496844;0.02633879008666501;0.026500725529807426;0.026462917653402338;0.014835332310456325;1.0;0.9927478677756345;0.1017195376619068;0.06114032008249243;0.012461420694185982;0.23677681556898422;0.0007139350935391593;0.06344155248542271;0.0023804685322554053;0.018225175810574985;0.3011002591343942;0.008230462482902039;0.003333211326388274;0.048878824087804244;0.023818880971228047;0.026357467509345853;0.01846985143146116;0.006266562990086151;0.005861096667935079;0.019140407877580434;0.4696483380245357;0.008968389718108679;0.019821787520976516;0.01961678191368936;0.00012968674182130683;0.0;0.032180061570611;0.00242025718388748;0.019135709473743004;0.0782159077498627;0.04912989695930527;0.0007925189393125499;0.037013482693436725;0.00290549821793176;0.016749368453205894;0.022930759762077174
+Difenoconazole_isomer2;0.012635668149910467;0.0012954140694281724;0.0;0.0007483360924414438;0.000889242972278638;0.0010689824554552915;0.001496994598074861;0.07740571625082185;0.07711588303272272;0.006654953614043858;0.01928626007552519;0.017935906718501555;0.0004425667812244554;0.0003635509039148726;0.003726247032053794;0.004238617099338736;0.00035804890390536985;0.0009371179071527771;0.0011125574061936268;0.000961081216484237;0.01748347816435425;0.013166433939958887;0.03496140088779055;0.003820530039961014;0.04070078976471006;0.03634137371915107;0.01130134351148563;0.0059205377718477585;0.003778497465979862;0.014459311357731678;0.0038066967419591526;0.002840666414287607;0.017524154986650983;0.0008374882902915519;0.015185341071963893;0.0019856507389292384;0.013318172225279371;0.0013322384552465765;0.0014901040782057365;0.002796187198064484;0.0025442690991826027;0.0017620233824758142;0.004488108347730188;7.809830095761568e-05;0.005730110435002269;0.005088754655302422;0.005969761247179741;0.004889323027938728;0.0060989102078641815;8.292369515851078e-05;0.0008627611403975859;0.0027030782201319385;0.006539602427197618;0.006330423918882663;0.001699158077934627;0.0014923669141864316;0.0017855896993059237;0.0011089973770675968;0.0012460615768077688;0.0010684117393888683;0.0022835712743741756;0.0023726796421628255;0.0029077433800020385;0.0018472924298481312;0.002022023059830851;0.0014814481986943162;0.0012278409434683926;0.0012905542328378635;0.0013444997129134573;0.0013890554596480878;0.0006283221236236492;0.0018194890687157697;0.027657068031692475;0.023581739620211897;0.017729922351196414;0.014743776317858039;0.021589381049580976;0.006985017926906508;0.0013435983624430377;0.14950436254117772;0.021015716166792483;0.017986287828542426;0.022161265570044608;0.023080893831049002;0.005873357309436421;0.007917914986699874;0.008295088121563243;0.02090466382820556;0.1076515705470696;0.00880832911761799;0.003862933819083184;0.001523114190161089;0.005598499070416257;0.003952360408996962;0.005100479047804198;0.02145503961037262;0.019531138314105894;0.02048377590062838;0.022430212842274505;0.01862388754927993;0.04118123045130778;0.00821376888980577;0.012615068954597486;0.01626836184414945;0.03533169439475122;0.014078657244548322;0.0009554398467078048;0.005187394568424711;0.004068370735422354;0.005890117671921526;0.001757725122043733;0.0024598702648807444;0.0022684766803193544;0.000727928097399797;0.018246634499520548;0.0005514960291386918;0.0009034037641986057;0.002115597088576804;0.008053957516112861;0.010009045212071091;0.007675463020462753;0.0041632119176676875;0.0005467419276434734;0.01243759266656259;0.01499620553109506;0.012484546252490637;0.014945196424160583;0.30826731305545557;0.31603065478531983;0.14258927548036332;0.0688551038556281;0.010398351145252822;0.0017239939748883582;0.032256859592829604;0.0034748786552872197;0.010054638684791794;0.004492619232634549;0.010819379144798707;0.010977174707551529;0.008363437132536131;0.025060347973736463;0.0061928005478439985;0.006234402509704179;0.0053333564604840875;0.00816958828134252;0.011528679159229196;0.002849621488671589;7.023492339100486e-05;0.018322219035799923;0.028860196499430724;0.0;0.004798745883936175;0.012613821016476167;0.0042494598341747385;0.005208448665534149;0.010263087430637263;0.012391640107089456;0.0029477848281556983;0.0012592950609906326;0.0011546018973556818;0.0024883575385608505;0.018499785086420337;0.006347192777849671;0.045916932194313725;0.004922882291653238;0.002778241838604551;0.018632783090013764;0.03925712511535315;0.04275194256470006;0.027490350403703755;0.024042497421942987;0.003613634863913402;0.00105666336761274;0.005351132012550153;0.005285218771085379;0.0010258328663917662;0.0013610062871136526;0.0207859820583748;0.001070139935660208;0.0006363378038834461;0.0009279239952217958;0.0003748672940032572;0.0066428145194938155;0.0012621365639418102;0.007043490144206953;0.001057052323081698;0.0093673948421885;0.0009605378778107583;0.2893149744211717;0.04349716102968103;0.05824782073563892;0.04013712757967179;0.025016171528761243;0.014294768596068505;0.002922145126357735;0.004568204858014244;0.004508205060868561;0.007143384876297231;0.015228704096609036;0.0035776534270925545;0.013433691189971314;0.00461228507844546;0.006481786670984785;0.002707083555533228;0.011250940788588223;0.00041892126683741696;0.011278331036485867;0.006097365097808769;0.0031833213713542818;0.0041625628183897595;0.004691541643556054;0.0024871618167570104;0.0354765872229215;0.01159437765244852;0.015443078146465393;0.0031466312143817047;0.02943940014896213;0.013186619534038452;0.0014864082389894953;0.002872989126481405;0.01949144487332879;0.05044913929204614;0.0033003366488355526;0.001449534238957652;0.0018688445147737073;0.00253756246959696;0.00155291082201214;0.0025919463326485085;0.001958606085994431;0.0025754484761481566;0.002808280554032632;0.00286181237638394;0.0024323664077602575;0.0016832673042180542;0.0011333254520920623;0.0018295375883429562;0.0032850524638470507;0.004236401114476135;0.002495272444041106;0.001850082747280614;0.01269359570763678;0.003573015060668623;0.0016756257383618476;0.006509884684875538;0.0077626055895333125;0.0031086518391320516;0.01291519867506425;0.014013323642564541;0.014535398827425678;0.0016646933148118982;0.001993895553960758;0.0018854421537889878;0.003307291194805792;0.032466038700206076;0.017062674262049157;0.0020361238317056474;0.01242074722302418;0.003076559347669514;0.0063407744704787865;0.0019061426197065506;0.004165551193774535;0.0010921060453089775;0.009537720648376734;0.0204308493868956;0.016217533173124722;0.0006052562564796102;0.020263908658179286;0.0037750823741014984;0.01178283888004107;0.003997950379885046;0.0015831620361048114;0.003143170349839002;0.01068040965142672;0.009210735784900823;0.0018959008190148861;0.0022993604244538023;0.0;0.0005923207486435449;0.0036302818752483148;0.00955177012970266;0.0025538181320523407;0.052172990955146596;0.0041561924302553396;0.005381795603673103;0.00295317652695916;0.00615202681691716;0.0035050151934671227;0.022141589369280745;0.0024136291536659927;0.00044335156688202914;0.0014074153187475812;0.012174735176699767;0.07872517714739988;0.010001240398591505;0.0023442693668366157;7.067938190957652e-05;0.0005526432506020938;0.01741696665181965;0.00546027918978594;0.007412666088650351;0.009502336489170876;0.004543112436737495;0.006206905973713988;0.013260103321346046;0.00010085469885566828;0.000565124321313798;0.0020364919171715497;0.010274768736403575;0.0033292756045411685;0.000987691286312537;0.004415069308034643;0.0019359253524354914;0.018427182338526776;0.018910417915109418;0.002782584084373475;0.007194576313831614;0.004903301122460179;0.006862433344036373;0.011747245219222088;0.030034215783263787;0.00929205196372119;0.005453728958313573;0.028156917801081028;0.0003530447582587309;0.00739757819341145;0.0016874301820826757;0.007050495977053434;0.016261374779251277;0.002706352937899736;0.0015977268618154333;0.0023930264263965777;0.002870421832452766;0.01907367572780906;0.018407804446659223;0.009641425578644582;0.010351517283785286;0.06288956000635818;0.003197194303381604;0.014283210270929504;0.0009730740061676616;0.008156395831700991;0.0053884577554744306;0.003361128564717697;0.0008729599436577244;0.003445777897842088;0.027367585102012277;0.029431724093976052;0.021400041024192285;0.016762168778541517;0.005589152793370462;0.9927478677756345;1.0;0.048622784204049335;0.016315243000248763;0.005501979789252727;0.02212181097985738;0.0008339663801550975;0.0022954641102545443;0.017719177875222005;0.022646967798044912;0.02638380191056382;0.010839972821173507;0.0014439356017174909;0.033389607987260976;0.027119689987047176;0.010618753202850242;0.019389604483363486;0.0033609002432288078;0.005898622042430355;0.020833289429087003;0.006903209382171209;0.015401411722097342;0.02483780446232019;0.0034479797800737633;0.0004145314063196316;0.001640943850249421;0.016295613759881578;0.0029461390373114313;0.0061857468948006335;0.005626531633894489;0.0010787277866911632;0.009600542960689228;0.006153778192704612;0.0063993963171340975;0.017037449409968198;0.019231613914197573
+Diniconazole;0.0261189214800269;0.007216548652822523;0.00014013331771058153;0.013751071775550846;0.013249431354575195;0.03777332082433284;0.03149840593528443;0.003426591792692673;0.003569265864975865;0.0205215265502208;0.11854157429622325;0.28849753665160766;0.0007574105539816271;0.000918542092428881;0.005248105230386683;0.0019605548694590887;0.0037386355331673117;0.005636840517288213;0.007485433322373587;0.0064762422028867075;0.0092357818931274;0.01902171249925758;0.02451508701048712;0.003723326723692753;0.01942385772766125;0.00538748032689563;0.05428862645497711;0.1191709583951095;0.04559629728455281;0.1201209190985336;0.06767048559681096;0.05275469494851617;0.014387533933286494;0.03102493219460344;0.018480403955650936;0.006250025384778374;0.09898341148163071;0.0024333612375360765;0.0018396694795369214;0.0217372164064971;0.005741887901663253;0.016264408956262535;0.009574940225230649;0.00036050894369080416;0.01838540623550158;0.019409368673895342;0.021095768349781926;0.0205392387385063;0.02068026080543099;0.0010221043196591358;5.377074149366122e-05;0.006935309177688784;0.0779745412361649;0.11549605018864412;0.006134230740040231;0.014199046399074815;0.004654557671012329;0.003714858298180849;0.001842399490265869;0.24995795360290785;0.005703613459755303;0.009257691363822916;0.008175865387008915;0.007200585186152699;0.005525091865448117;0.0039991196623447405;0.0037708827372816283;0.0017905509734105725;0.002297952290960781;0.0020522008277072496;0.0006055667298460385;0.004823842039784034;0.0055017349577669685;0.013277331241306015;0.005654913912414706;0.006142155373797217;0.022315978554124115;0.022414301196517585;0.09310165643581468;0.016934694534199976;0.015056773769090037;0.011960345065210574;0.005761727035821452;0.004621290848971744;0.01670420765450927;0.014194287177881884;0.01956927598962563;0.02982134606228802;0.045894844611584225;0.23255263352828529;0.014106647866411767;0.019338010330305792;0.04399716113821322;0.014843631125983907;0.016468923034368994;0.010633683768462307;0.013773685683143471;0.01688998207242815;0.031382010747918646;0.02887391803347672;0.04769520538208664;0.03945459857663399;0.048499707537316125;0.024047524918002324;0.04362523088779274;0.006498923313973936;0.011296417465094166;0.007175428321773938;0.010708305267212701;0.039829867008290706;0.0053507509911858925;0.00427988663671835;0.014854331138310977;0.0103541312672459;0.008645396908806502;0.08426105897705563;0.1018355754289416;0.015958451451546854;0.006477097561206529;0.3033854568197331;0.009518999719340806;0.006519602243349543;0.017563045455100176;0.017382104073673323;0.021343751700219144;0.026691791403836665;0.014901502141012136;0.05343606863151215;0.2111527485057168;0.025814078899702175;0.20539728095723028;0.0384925444583842;0.0020411457197066305;0.05885972854024838;0.0036628157005161592;0.23659370759516457;0.022046613953336545;0.07201015497376632;0.08140112307150815;0.03489027364152387;0.016693743541712516;0.04271959322636287;0.4992104103430208;0.0005666968145623816;0.015337726297799309;0.014781091939728758;0.028538881475895124;0.033985041363549934;0.0249900019558578;0.031613219228735626;0.0031817959280711875;0.24701048821950736;0.02401859395422466;0.02735829145695227;0.016515808358601603;0.08235206935854303;0.0037780414422710056;0.0034334879480787126;0.005688884459188521;0.04661955689215793;0.015883697373267926;0.32465762182579566;0.028682437783550715;0.04469279711104959;0.03349016597836506;0.059541528739896835;0.04558035257275405;0.04054945935111277;0.043760433522849085;0.0538311036005439;0.09168622313027369;0.01719357789304206;0.013407619603917823;0.06774076268271667;0.11413182309973544;0.03257797164738675;0.035950550767816704;0.09056516004782053;0.07322116526931215;0.026527451361922964;0.0199141266975721;0.019198364495728554;0.03319451676074713;0.009197416155550366;0.02491807372845007;0.07769136616682501;0.05499086682833904;0.03385417415914068;0.04782815710941672;0.008634130799443408;0.017846963959887836;0.004621312002740127;0.030971445282962858;0.002837965620440177;0.021195763399535546;0.0002757867900659036;0.00044683950516703655;0.024177958713877443;0.03916216996018443;0.024465434201395624;0.028019889714302804;0.03398270557950171;0.02658507124959961;0.007969293985535069;0.0356256119905896;0.02182328193683553;0.17202934431967626;0.05809747531314077;0.05516059542015732;0.030574138795610308;0.0887435681413794;0.04105070241931652;0.22422455769822777;0.07086863246851254;0.07225037732183459;0.22598573266530073;0.027124103347090495;0.03283927584859936;0.007959656363185684;0.036750654443605354;0.03963634633978167;0.027598983072834683;0.0032218323786084176;0.01559265559533162;0.016736683521618636;0.02361687203275188;0.016307467782275195;0.010984648012077642;0.008132600341343839;0.00650735513323323;0.005986446266737047;0.00614221781464091;0.004910477055184355;0.003778273081200294;0.006280266198957656;0.001884847085075437;0.08188492647938658;0.15324383872635663;0.096436062519873;0.0020368283360799096;0.009556974808449152;0.02736916385407904;0.053636199793923346;0.08472041688821051;0.09190057568601187;0.001509705049611785;0.008331116162116906;0.013300566624070557;0.05205068628407342;0.014805343079227942;0.0406896397502262;0.040224763391791575;0.013609669889462652;0.016435056597857527;0.07330012121778524;0.006815493626049252;0.02977300060901191;0.08888195745672146;0.002704521013239612;0.04218074838822843;0.0010500713781060847;0.3707255942318241;0.0017457240510449768;0.004046740682677834;0.013811599074395832;0.12552397995189368;0.03939865057077412;0.019730185486145586;0.02369221354704915;0.018339731171627727;0.023180850068634;0.02627149549084186;0.33966118424079567;0.04928189285116527;0.027063041346354386;0.4103507290215692;0.002462374525102296;0.004955179230813994;0.06259716634701576;0.04700185750238576;0.020153828350959895;0.1238691581234625;0.0010168902355284638;0.2033156446417285;0.032296962974263516;0.0334646563990219;0.03330892872123543;0.016423730773075147;0.02284927537579789;0.02837484116118722;0.016032163333602738;0.07963758455782895;0.23138015950481086;0.034608229240881354;0.03058563139940413;0.009969866304681711;0.08081943390095324;0.08141956027974924;0.06773351727210783;0.06550591691043581;0.016046589083667434;0.013962244391315411;0.3002940924666814;0.01575717057280749;0.009865254232207216;0.08622237829512516;0.040569853695566906;0.01417950744324095;0.007689237200621277;0.13526395453187018;0.0025449276373564777;0.03415447529704342;0.0;0.0015542258313828473;0.04959867269833297;0.025761716832963216;0.006936035396886297;0.009357235196443738;0.011351250367004753;0.05700566521192793;0.04478892491914006;0.06305307503257762;0.024902639955008844;0.015120286916402978;0.05527217996314599;0.5644992198221996;0.015437686758600447;0.09077880945225232;0.041513070615393485;0.013542749009540517;0.0170362828636566;0.16812919312934127;0.020508066596358537;0.019835166952858;0.01851802186604289;0.013250550289977498;0.04234104081232138;0.0004340433595102915;0.008422396149485879;0.0422248983605467;0.04798136950203962;0.07830614092896934;0.03152602697565575;0.006001853198992426;0.004878799467517385;0.03599564732974577;0.037939927040828575;0.12882107275970045;0.008399821956920834;0.39824599320536597;0.1017195376619068;0.048622784204049335;1.0;0.05504979739447479;0.10610468782931642;0.04603283526103133;0.005871746946466807;0.09268624421119;0.07192637787676665;0.0483899365165602;0.08967121825680761;0.07179936946082298;0.042856771548128586;0.044379660714273184;0.04146638425838496;0.2035803135460216;0.021578325533053135;0.020365159246870265;0.03202747444980401;0.0811999270781558;0.06324112340179594;0.04631125952491036;0.04742732704323709;0.011783011849006179;0.011994906501191333;0.014321802779160453;0.1897316682416906;0.02708894737120677;0.03912940659513157;0.02618994552974885;0.01630095590064186;0.01656133540533975;0.02071882541361958;0.011251111250409031;0.23979614742850838;0.15747279820504434
+Epoxiconazole;0.05409258928159272;0.010354498064699411;0.0384625538028728;0.02997887235394252;0.029923458990628638;0.04786530229331397;0.036842491463066535;0.002531470756791071;0.0023332688395679983;0.007324564605184412;0.04023896315101476;0.002713542536236594;0.052370949268929975;0.00589081667145298;0.0024688314836950817;0.0033107222168287168;0.002479065101863842;0.007029360361608841;0.010266870748754781;0.00781871775621183;0.020412909410832774;0.040752719252600884;0.05021883657109283;0.05472656979020238;0.014838928541916057;0.04977232118683203;0.03640725502416912;0.21946618392565154;0.024594523624826326;0.07027704166313352;0.04856106574409342;0.019800659620828824;0.08141211618953678;0.570447149813366;0.053158986979952694;0.04682439337297299;0.18584824589486812;0.005250578977664623;0.03438078533711642;0.011128954116333977;0.010552788658872748;0.03239173913157406;0.07847053039914342;0.01641797749186055;0.05742950814188333;0.047978610962650395;0.06284567472991838;0.04858478935397065;0.06084527741760976;0.011505472425428803;0.006908396600741889;0.01098233060864034;0.31648509906762645;0.15751741886637008;0.06680473685554712;0.03206591592210221;0.019232258523620552;0.013267530641296946;0.012398961028388302;0.019439244538927952;0.021914817650910152;0.020902782843045073;0.019645146722204566;0.015659061135090382;0.022053962651926474;0.017014419296314167;0.013944826049212296;0.01209955296082499;0.015053425254975982;0.013953290428967082;0.01040526700108;0.016217653019258878;0.12144101021782203;0.13735582889006262;0.0831694309414954;0.06818144596833485;0.37633030709969134;0.3723320550285671;0.2307932618963421;0.08274988463692622;0.20966056940552016;0.21052358185031522;0.12982417473819938;0.1156173394126997;0.21740724819810475;0.21359773093283016;0.14822597910652696;0.18217674706475134;0.09640684791166813;0.04276735288379723;0.05119301014666111;0.053006960701091226;0.10054291250185339;0.21118993843593525;0.22237918556070066;0.10952047464328286;0.1359645730697704;0.09575990062300889;0.19586524199007496;0.170046941826985;0.26491506261826875;0.16651495557056223;0.176193241274549;0.14161429581238394;0.20311329217298288;0.0266939274119509;0.003769026243809719;0.007800435748405069;0.013369074991870126;0.01568061973643356;0.013710187631485082;0.007484529661154688;0.008759616647830768;0.03772324859245343;0.010322307292397135;0.028197155397009115;0.04205368819674272;0.030240258650628803;0.020356738866216445;0.036457146701061524;0.07427555612120583;0.0030343351187819573;0.002262107755974287;0.07753060874288784;0.011126714611061284;0.016753429375944668;0.01924847650682102;0.015007003142633094;0.026756498718099445;0.0234816766763187;0.07792752649299645;0.06829680333511466;0.007104844823540644;0.07064735072231838;0.013287807577489057;0.06348377397139063;0.02721651800632622;0.07097103076694206;0.05604382861800862;0.05071276106516523;0.16899782784428158;0.057434354776162475;0.024630434270671932;0.04553602418935851;0.030456605635377502;0.15563482714794402;0.46717686414077886;0.07860281097566155;0.05365553581453713;0.07187546569070548;0.03337073352326709;0.03175984069523599;0.07709814427939454;0.01616389634672587;0.0310637647901036;0.0691028861886825;0.0275830417687398;0.023725067950677674;0.03877321112288185;0.06118799586678841;0.06891205067185951;0.044894575194386;0.09833159098115613;0.11659315352666544;0.03648528025819393;0.14171283944080548;0.11651466019530188;0.13561636390506476;0.1416285366626216;0.12231751748266786;0.11296945620905884;0.014476970872733079;0.03401924726151895;0.12555723325479246;0.11755509324458653;0.009080708230701952;0.00710001399148237;0.060800599896810165;0.4007085987328357;0.14020599240397835;0.10231489433529342;0.012708508829343603;0.04136526239846269;0.1305060454722607;0.0871386039582247;0.12782297839240098;0.19752987675584419;0.0004860205007626368;0.021207165498413682;0.022112634133201775;0.03619850141927665;0.07373888901994675;0.04960655801566734;0.09254983642919468;0.04651651521786176;0.03400568301109524;0.03424326407052613;0.05632482394799831;0.04970024650603002;0.04953023279149856;0.0571347537571567;0.04947643566293539;0.05777373583766069;0.06381709490979282;0.09499859104193102;0.026592301853493382;0.07767036518502672;0.12016942538330413;0.05518116158217723;0.09183330829280831;0.054435796298135185;0.046171040255626024;0.07446270870338913;0.07591091273579956;0.1459271555578137;0.041996479561242556;0.4079491088233525;0.20757421997166245;0.01598294740663868;0.06701942270688577;0.11480676194570598;0.07881833761925053;0.01597415349571982;0.054074102650246106;0.04615269438053484;0.07200546552662217;0.050376598399816334;0.0319450512716284;0.024291845633113734;0.017832385950388233;0.01825897846812245;0.016426055536572167;0.02103344228218446;0.014436902713441358;0.014507146761561751;0.01980680098144876;0.03720731925908229;0.05292263571308954;0.03897561128499665;0.013091763505258562;0.04199213983203977;0.27559696802541095;0.04523371316520898;0.09692349647723007;0.034717863684654175;0.008793420887135873;0.1606012355567689;0.08193000769119693;0.14983923930141424;0.2735545881713984;0.17037231634093725;0.1679140551917203;0.06392076556908977;0.035986632824548385;0.13361492195185917;0.07196516968048772;0.17443827059518613;0.05108902254056743;0.054696520496593966;0.02466316042994874;0.03306541717478006;0.03620549985196527;0.006397747651442217;0.018625642980812127;0.07129318289323124;0.06502965414020093;0.11562307420235539;0.018182383008277986;0.06784309842985005;0.07288498044025682;0.01488227705625489;0.036704835990073695;0.1369137752236443;0.061395029772174106;0.043759835124211;0.05502824852928032;0.057940468367849794;0.06883674158763538;0.28798189926530077;0.0458374356975707;0.03568491951087709;0.12667648026437106;0.032641072252806914;0.06039604783591006;0.012963393489659397;0.05703606774741461;0.0903220738298792;0.1410794230454203;0.005201681892453293;0.04257208162488871;0.029418756901129915;0.062335966452424;0.018032384185894562;0.05660165159495228;0.06655241315267067;0.004613238772864494;0.023626915689462017;0.14357449266824135;0.40060159501764175;0.11143350199815155;0.098965099348679;0.11707365821869005;0.07761697272067532;0.11809519176696863;0.010121799093880135;0.01945653752454594;0.023859369561139245;0.13314991561135475;0.0625300089397632;0.047855726904543316;0.04371470996995287;0.0542323446608009;0.009497276834523574;0.010130107557965668;0.18841462141923346;0.07428571187936726;0.03216902869361164;0.0323630973269861;0.6525430681220846;0.08063100268457356;0.09872264956984425;0.1630764854331541;0.2390440438732127;0.0026081767204471184;0.10179879450242252;0.056345214254162515;0.027868182321879903;0.1568454871487244;0.7158591157006106;0.0330475587885743;0.013580953819156881;0.04898271679124678;0.06374248829601227;0.0627367047352422;0.033413224943271244;0.09554379000891601;0.10216795254147763;0.022011864910790706;0.007569975111558855;0.027357598409221404;0.06513593221360285;0.05239008039957441;0.04269224434017822;0.023268621800470162;0.025930162912364534;0.02026826924299303;0.01998700619728468;0.14747695585322096;0.09402644914406871;0.04049466575463517;0.06114032008249243;0.016315243000248763;0.05504979739447479;1.0;0.06059497594863652;0.1493763092516275;0.007800385099800355;0.07915452495267955;0.1279294711040133;0.09873867139911367;0.1485426058525162;0.1592253433266701;0.1292811913709778;0.06489014817916504;0.048880751157035364;0.1495862997449128;0.023941309029772772;0.17176368480301338;0.03805179921751857;0.27274838748956914;0.166757309111774;0.13908583499416577;0.24149814573654843;0.07164843727458196;0.005032587011165274;0.005548826887093741;0.04772283857490647;0.09686713782923079;0.09900241437844244;0.31273246994845744;0.033615161051894715;0.05807855335678836;0.09530851474920266;0.06912700866187377;0.2132501766182426;0.088105124422038
+Etoxazole;0.11361653756278936;0.10095796582587149;0.12097188513665286;0.17138331746047952;0.17542619409100507;0.12800958331822324;0.06403585811634387;0.12271967273345506;0.1192976991920516;0.1254349652559454;0.2934343221002891;0.147583836074173;0.08671838959822974;0.10863746100367372;0.11580345544860467;0.11549167898627657;0.10801037783378885;0.10419648855902956;0.10430807095316773;0.10670765067328163;0.12068391061499181;0.12191952626003642;0.12253276640605013;0.11104599004445169;0.3692114890515841;0.12805413875065358;0.10691263696974052;0.12553308322413373;0.19174428923126913;0.2098710868672489;0.12303637324763161;0.13688042871776657;0.09482269521764297;0.1239610882416383;0.09817839678799918;0.2011733221710625;0.32238432169440356;0.11944217454104934;0.053581870622261225;0.09018522833881282;0.03979661022524805;0.0999374539501115;0.04581744962822647;0.0008115782078360717;0.06559059864549001;0.07640750674049233;0.09102109384020998;0.08936470251254186;0.07720373312325637;0.05077387818889236;0.05067502188611185;0.08389232205774359;0.07132522428223144;0.03874363821493457;0.09253511436889025;0.09710893050168175;0.045180135282552956;0.04930707127799342;0.04262461268040838;0.014924483747240971;0.044299212757489166;0.05224022276773761;0.05939736039166085;0.05922229762524699;0.048507943203324;0.04700029370379834;0.048948489875539056;0.04110956849494979;0.040163510983150935;0.03993686654229414;0.0335980030386891;0.03094221697402698;0.052889448593622705;0.04694877294012051;0.1694250345849218;0.13629506724451715;0.019198750498991963;0.022814940350050012;0.030944311960829307;0.12528584092223824;0.05214490501556944;0.047814926761293834;0.0788027980706199;0.050374808936665655;0.07970138305995086;0.0675986553701719;0.08529243678616799;0.09128419645573772;0.08784901305899859;0.035664682433161454;0.3079576905271009;0.2066478127819532;0.10793258445373416;0.04547828287425619;0.0625454028920743;0.045242458971584076;0.050871868085121154;0.0910114511876715;0.10484194212895755;0.08026556910572841;0.18520717383529267;0.0755623658822537;0.0849113358116447;0.0883715601837948;0.09468311818610252;0.10516757866492195;0.08348068566183528;0.08931919541938632;0.08463729073144692;0.0923060378711777;0.09254015630327529;0.0964961940614327;0.09068737103456928;0.09748307434657849;0.10283030519069411;0.03342948928937364;0.028744234276516383;0.04196105395195723;0.0692121043947871;0.12659029360563312;0.06335735673566634;0.02894518910679382;0.06352966334272128;0.02614107001678373;0.01189449521131076;0.014111873433434325;0.014063494623853562;0.041979046913916;0.1016173674413499;0.07451654016201022;0.10825708555210273;0.22284017858969601;0.17774350309505915;0.22080633395259408;0.12263627381501496;0.20383855075830523;0.2916673632178498;0.2604012544574952;0.23653274153946777;0.23033389690355624;0.33128134868656733;0.24711338329709243;0.2023595838133546;0.31219562144913016;0.24150983695475464;0.10215706578256822;0.15898637417348563;0.09454585821968028;0.2550969277466366;0.2135786088420221;0.18589555276710612;0.2582108640071316;0.10849066142516309;0.08764432062411653;0.31575735401905086;0.27068936258951704;0.20780980914949493;0.262565190476965;0.31884964346515365;0.15182888677347026;0.2597340662347365;0.03435448599130607;0.05313115382631133;0.0302247579769257;0.06226225618428377;0.05385492731910507;0.08278567199939546;0.019814470206770716;0.021769941413109836;0.13244017043376;0.08877967155478951;0.08099185991253516;0.0241455036632249;0.02581077409336158;0.028554902778765174;0.11387496488835759;0.02533182038527008;0.023575001763535913;0.0959361394419285;0.12828499507124905;0.12585114932102787;0.031752088387702;0.1371524823624965;0.18436854848357198;0.1165303014051001;0.07299672117699177;0.032953972985924965;0.0029868215045790337;0.13199108641853646;0.2536084605874807;0.26653007844309695;0.29713238284736276;0.20454514177554706;0.22289151129882173;0.1968959935640126;0.42858530010394;0.43308818156678724;0.41641008015181646;0.5211432560347646;0.4924863511350811;0.38091815931085377;0.4845178020945226;0.43555028756731995;0.1483126359771022;0.10050634482607579;0.11630995813745253;0.21695769909675136;0.08980075440954761;0.051198419091697665;0.16088851887751973;0.04071409364102142;0.11834811757541547;0.18330237953598108;0.13639919583857432;0.17017008193785346;0.08675920433721705;0.14376954047630092;0.3652657537446208;0.1281740313422093;0.1806755910591556;0.15450914591633938;0.221451219912329;0.047744347517743285;0.09889831805761204;0.09227696613475102;0.09764849205806235;0.09620963854055127;0.051222966254883893;0.05807143975736896;0.04810685474077575;0.04530497429648082;0.0487718517076059;0.05445433359559647;0.05205518172928267;0.05378496455328976;0.052296537801187155;0.03507646961863517;0.06302963187936275;0.04924542978984183;0.04756831162197069;0.1386376668587725;0.21492185595848523;0.20369376808610945;0.11728031714957744;0.13808827468304177;0.21270908878613248;0.09654986490416628;0.05285433616666951;0.13370279667826906;0.026777543437964235;0.14028098812666545;0.14116493543705658;0.07092897665273787;0.10101413865421952;0.20798517881192755;0.056293654579830155;0.16337700541162148;0.22960778985068236;0.17194083605776322;0.11040139714498373;0.066852540721167;0.1456013652156472;0.03755935482470266;0.026171495151395274;0.1055286680732798;0.05984565477116102;0.19118013951792762;0.23121850786780507;0.1890678061858665;0.03784767367119835;0.0158491622743202;0.08101699481743263;0.23050910384217352;0.19883868983810313;0.09955369728004866;0.08595958682287833;0.4751015400050563;0.03985972912033817;0.025017738443394395;0.12146943328679119;0.1312171594726787;0.06299866144893325;0.06632947005829053;0.21389305417037252;0.40602841383802196;0.22487545135202835;0.0459272542051749;0.1308114247668385;0.03153916430219217;0.05766561276857981;0.08254236583459977;0.02924669737758819;0.02873706915145574;0.22203029979424393;0.08069386217065212;0.03860030230216477;0.1609579553228752;0.23367838063739885;0.062067421464343964;0.14883306171328198;0.14080163732690712;0.3062895965602313;0.2744186162479558;0.012731595409568459;0.0421087856843067;0.02216252818071077;0.06241934939199271;0.15916777620159153;0.0985525934314828;0.07563464881043454;0.3560438170253813;0.05917579182257942;0.03584898654214982;0.2813028512041699;0.27782968099732125;0.20120907223212955;0.11939989005185601;0.17881430926812797;0.052794164094889295;0.027170358935515268;0.04306052988347367;0.04810667535054055;0.18296914239474765;0.05465316547390643;0.1939722069317887;0.10255582445892678;0.16055265731641058;0.04843581723786558;0.03213464610301325;0.23527206908444256;0.029330543428486327;0.2613870198078511;0.11009976004266943;0.1055700758717661;0.11660429197339627;0.056011929640759565;0.052895330066983236;0.11432534361076567;0.1134658109892506;0.18440810019940135;0.16061343269306166;0.10415474336224195;0.12287803032874817;0.053299648777936005;0.05068739607946071;0.023653576115520363;0.037945379816501396;0.10383836927711412;0.4440555161076999;0.16184871261526132;0.012461420694185982;0.005501979789252727;0.10610468782931642;0.06059497594863652;1.0;0.20359457595926791;0.012488878976111822;0.03705196842720891;0.04121089157399844;0.11033503822326242;0.18374166562802327;0.13972491269888326;0.0199894047703979;0.056888113829793426;0.07632226938271632;0.09220693316423058;0.004030890084720792;0.2486808223394042;0.09716721745755182;0.19292125044943229;0.08154818895112709;0.1997139165202945;0.15685623311748842;0.19650985244689398;0.04142295840999717;0.047320146581089934;0.1520385040409922;0.1224635481031785;0.31573910858245285;0.16556647209079492;0.13078953102545138;0.0603683742922224;0.3365671136814698;0.36681169578726575;0.3815645714914564;0.34732800952940357
+Fenarimol;0.07074736065017342;0.12971312371987828;0.07434191792811863;0.0829610454538098;0.08159781259192161;0.079352181542889;0.07340644853408826;0.07570940991663108;0.07438539853782704;0.0825349318432595;0.27717941835209026;0.0802233474283922;0.06167592679032117;0.07727687800732992;0.07170772226796104;0.0709093256511993;0.11535894257428729;0.12887572456965768;0.13657309619618946;0.13270493307798006;0.0786506222289133;0.08112492876820547;0.09803242445722868;0.11498750666039252;0.07535195229373612;0.6356376089172432;0.1891531546881829;0.05554090361653474;0.04113831425175946;0.09785759909010192;0.17743449636471453;0.1431033643565894;0.08705506007194107;0.14949283751006587;0.16058602203805541;0.07300407388424653;0.1903757685576445;0.013962477161935792;0.0028003573618829813;0.07045259915717236;0.06998203632872457;0.09883802447972413;0.060933183745504535;0.013850465712105712;0.03787391683384619;0.032517732220658756;0.043271655226127866;0.03048742792689873;0.0341444611364705;0.08464339266481954;0.09489515958889387;0.041852455398389395;0.022344660704371005;0.026491787354529377;0.08566365355007641;0.09090391285786348;0.09952048191661668;0.08252908668232768;0.08377754476063608;0.033817297985879916;0.07726110259199816;0.12567879378048344;0.10859151019791806;0.10720479831225044;0.10894266758038074;0.08544173590408981;0.0854594259937147;0.07977476769576451;0.08096290010060303;0.07905578348817321;0.06099771742316502;0.06523257821106568;0.04780803464249544;0.0913521084726814;0.0813934625269378;0.06933256900869193;0.04204044517104744;0.0920967794993783;0.17107958681230173;0.07500039096102494;0.075808941521814;0.07187827761683432;0.06283950255753117;0.05796693202740155;0.10424940735876632;0.08792312184286663;0.08585773652565819;0.09837523304400395;0.12218761063384377;0.1659880834619101;0.11849497160074411;0.08038098074543255;0.03287224331599962;0.16488970819160226;0.16872667338667052;0.07945947432946866;0.09528055917177443;0.06175401175782019;0.05939680593267572;0.05619611333819085;0.15727975671977468;0.04384447856869642;0.04381015037769391;0.04547718004121025;0.2755251023048294;0.08431449545249105;0.05997713152088613;0.06297328683950981;0.0621012304028201;0.07211493261962025;0.08054914164100171;0.07056647078268212;0.06798956281304222;0.07630560300809949;0.0878079779688946;0.02696992149487043;0.030656755067797702;0.02292964876385665;0.06051356886439149;0.06435224631714943;0.05084036820505784;0.021375416044794565;0.06970700805002455;0.020772577354872045;0.03270958976359576;0.04056477295317388;0.041942436171638356;0.084585064123909;0.10642685246254469;0.07452945937435031;0.23003577023147856;0.05889572957621364;0.016065587039012973;0.06200679942762527;0.06894338141451825;0.11443712372876137;0.05086084948133479;0.03882065752321308;0.08195286729511038;0.0987919322509552;0.09891660170932871;0.17286369985590122;0.027346769427179292;0.15907463894733967;0.05496574592571464;0.040449079621169816;0.0793042569778363;0.03976291909204989;0.03309015144757163;0.08269481925528448;0.030914333088840774;0.08786173674783974;0.14260093192485093;0.019277926886688522;0.04636365913264966;0.1376510187684681;0.0637378326948067;0.04724790346655739;0.05745729381925733;0.05869798330043537;0.07226193578208284;0.11427298385050132;0.029912972994178933;0.06711163153579669;0.14072048678334378;0.04419080923201992;0.19380123158188406;0.11709851560623172;0.12821090146539457;0.13923565403042273;0.16243369270079538;0.03731899805358161;0.03474703048537573;0.020184251624815117;0.019646179021527536;0.02051759528094119;0.002774677673841911;0.08258927757186921;0.1829542409561207;0.09691519743248506;0.1093172406887498;0.31246562278897916;0.17393587682378894;0.1069995873164007;0.06313211438924113;0.14368230197556778;0.05904130206224752;0.0043952435561319825;0.1330774608028583;0.05879182356713238;0.09530509763413143;0.08181001429674954;0.03400202450332736;0.3834117534612841;0.09256130324244698;0.28042030073200647;0.2813088133168502;0.27644568092807875;0.26173360166950155;0.27390140941835195;0.2660072737486855;0.2738000885069069;0.28196838685290876;0.06923936675144911;0.13319070207196634;0.0693426414114602;0.08557147195590996;0.09314948750775279;0.018666415941058567;0.16729601749579137;0.1742162649140131;0.08220549378053364;0.1113210503230732;0.05988853367150185;0.039911769401882735;0.07797778523839664;0.1149735036598573;0.11957717891053549;0.003848331332323059;0.3291762811231814;0.04527274321321685;0.02515251151250009;0.03498874187480373;0.13054777386768648;0.11736932093588608;0.11805612153292092;0.09192889957568928;0.13320484685614228;0.09525691248127979;0.07805399256438744;0.07371853043724512;0.07768984201539397;0.10431925350289324;0.08389163183336616;0.05728079534349667;0.09401475244857009;0.17893771062164315;0.16323147594639495;0.17174578706905028;0.08613820920410327;0.1493257040346708;0.027477079867706516;0.04662891563365026;0.04854830973872926;0.056216286414005716;0.0012700296238953531;0.023531443842890177;0.049252523891384806;0.04920149537367035;0.047234542747131084;0.08675919240722915;0.08561246735339173;0.05224465952138815;0.09862296373872657;0.04811889306516571;0.33152276791439006;0.14033054395291727;0.042634835469514513;0.03542038941205276;0.017330207482985947;0.09169280711035777;0.029345575274533502;0.009373219541391292;0.031085925324796045;0.017894901605614626;0.009395962663917689;0.10943625215594024;0.07429979709316273;0.10089754642337181;0.01393334783228267;0.017756293996019964;0.023637395321036626;0.20014965717138403;0.0355617265075779;0.0588076149791381;0.04405473099623175;0.24083434621520677;0.024724198192970406;0.019021543333838403;0.06074141257569894;0.05590412354687002;0.09394854134422642;0.09270142379630182;0.09127077797183623;0.022354233634737465;0.01918630755765733;0.04790608344512744;0.19353909071020878;0.04428788815729664;0.014789176019150868;0.10336369121245888;0.07063531824593657;0.007678905755307513;0.030645605675642854;0.08604613720460776;0.04177512787964716;0.012452523585853694;0.06948527240079917;0.1579304695739347;0.033430307487372767;0.049496993124965936;0.1117944738757525;0.07518795754515006;0.042279736803435504;0.019231717244814924;0.009560692139183317;0.06688216573716557;0.12955436962147004;0.03557969772078926;0.07087607169960873;0.046455935656254194;0.002905112110129967;0.0;0.0010299428332611875;0.029950568009932555;0.05018894827991119;0.0643448426399158;0.057440979183299955;0.09526255073831846;0.12338951350598916;0.2063334221529293;0.06222676672968798;0.07326089120562816;0.038386688904274026;0.2252454037235497;0.017030362859660017;0.018058201501274636;0.03542468748085853;0.07340133569716598;0.015207171129578102;0.013509633508671097;0.05285585213537094;0.08172432685530998;0.08240796991705854;0.11674418618705916;0.07336799777183992;0.066996295696371;0.040736899683412583;0.06386175672074425;0.06813641118623381;0.10046092139292187;0.3835862294181748;0.036247484382155686;0.037848132194035405;0.044793150669444046;0.01281274163508512;0.017478454245976226;0.43701881444249296;0.3470994638467201;0.03416116208659317;0.23677681556898422;0.02212181097985738;0.04603283526103133;0.1493763092516275;0.20359457595926791;1.0;0.004433224598902036;0.09031653357015874;0.11317063447744538;0.06276783094059836;0.9149263203830584;0.06611753691454018;0.06058883203227317;0.06527260900304958;0.05530371163944201;0.11836980267202753;0.018941094811643;0.08878095417883863;0.15694512303349298;0.17589195023279994;0.14828780639835262;0.11551783990077623;0.17482959561938677;0.07233270908196078;0.014212223360934988;0.014344075520006602;0.06281608866908255;0.029358709221381386;0.07609501002874199;0.11003310345897296;0.055295231023442026;0.10564927309890038;0.15243629163283762;0.09656054813358023;0.09400770852976463;0.12915213761674713
+Fluquinconazole;0.0007852806312240661;0.002331199620053387;0.00046562359712277876;0.0;0.0001298163216020669;0.0003023845642990724;0.0002696459982828687;0.0006311914600865249;0.0008640258478316032;0.0;0.0010953869075629751;0.0006371623781566007;0.002148439200165763;0.0001913098312369542;0.0003556997917620069;0.0003124557744484766;0.0016740103654079904;0.0016519177263081793;0.001991632552618253;0.0019046285605418694;0.007780091583387528;0.009715544571044708;0.00644623923927464;0.016949628266787455;0.06525171576402772;0.0027813159675589105;0.0003866306369493822;0.004687943989282591;0.00027487448045489824;0.03283941597400843;0.0013330709571977074;0.005889254348920218;0.0519546972437521;0.0015634572729353957;0.0178467325216395;0.00012572154404032093;0.0067616405715030005;0.2846795550301464;0.0;0.006414427799450712;0.006670061158714108;0.008224005000568888;0.0060490377631633955;0.013505655236040134;0.006483295873109274;0.003916810897568957;0.004742473632484303;0.00449322012252576;0.004185870984768461;0.00889509292340128;0.002385795546842712;0.000867618639875581;0.0010552879961825727;0.002219562182220284;0.001741689801599054;0.008498257964715573;0.005039947555565854;0.003581345639489655;0.005990320346949926;0.0077593271703952985;0.007245405664237775;0.0015798038155106788;0.0010026695942059003;0.0006891512004025914;0.005468501062461056;0.004112444031846133;0.0038308855412516308;0.0066715352677582645;0.006196507453754841;0.006978211515048734;0.006366005199696507;0.006773469706106726;0.007350100807705047;0.01154675421642161;0.003824949461287;0.0075975444865893;0.0052039466186838464;0.006330987592478015;0.0;0.001543645698825102;0.014478539442200712;0.01468927932063545;0.005924994752727844;0.0055574319615976815;0.004181118955112312;0.0038627694955303275;0.0024426542864344632;0.003942441268479573;0.016944825109526128;0.07312462531726721;0.00044494478190199623;0.00020773800926641287;0.014815073979918644;0.0016412816143889914;0.002503100859128665;0.012548853713807213;0.012634298977310192;0.0053104139831341175;0.005820808577295464;0.008474572013647893;0.007699504684181505;0.008540006567189116;0.007162687460250403;0.012264421602512612;0.010207914740678297;0.0018323687100358754;0.0054051981142901875;0.0002456884573495949;0.00484561878934383;0.0026730723015720606;0.0014148444562004385;0.0031351778597564907;0.004547565998620488;0.0032394864257152003;0.0032649833848031238;0.012205027199947451;0.01850414455909881;0.006954619237321517;0.008199909964707392;0.010692840918334282;0.004342760747411572;0.007025974663177661;0.003961384745749645;0.02322772353334545;0.0045194994947666605;0.004762131502936048;0.0036903774704955994;0.002339894787012218;0.0019570937086528166;0.00139285620602945;0.011154140398511281;0.00012394696256801463;0.00013883782947192937;0.010032112584273218;0.002058759264577457;0.0003513303520309819;0.00015741211027861152;0.0009137627105320861;0.0018316677161008198;0.0013297443659449407;0.020971240396325478;0.00749676580627324;0.001602058711871349;0.022427923272743518;0.00016602369180804722;0.0;0.0;0.0;0.03518820569463961;0.02058862104184092;0.0;0.006540968127538987;0.004052763993402796;0.0009483587191026111;0.011063492636534474;0.009847517303302742;0.0;0.00030612978708888884;0.00024822119244478604;0.0;0.00048655527870575764;0.007810808110245755;0.005874354517326002;0.012191628159881488;0.004781473010182558;0.004415535906541274;0.011210160331320546;0.00497137555132389;0.005681831622730891;0.009365035061015796;0.011511507313491216;0.0015650494863776458;0.0010630431374366337;0.002097662538540474;0.0021298058758610432;0.0;0.00010987102076901947;0.001211227206819812;0.004392690637805308;0.0029814162342448724;0.006040279394363228;0.002226289653119533;0.0003487386599250027;0.0008428090909672031;0.002281116479481824;0.001824543511497333;0.0009007259616498356;0.0;0.0023307070221924857;0.010564283236422901;0.013610360990944462;0.019431847038294047;0.008319234390222063;0.0;0.0002154865293024622;0.000175547567186627;0.00012538635031535995;0.0001506605377094456;0.00012623306433453416;0.0002352646234449075;0.0003062641359468861;0.0002386211287471175;0.00022507060448590739;0.0012702409792986146;0.013374591976503708;0.0;0.0035958531312589004;0.010243020965939842;0.01672496461455804;0.0010984605972987828;0.02593224192443721;0.022203039639872777;0.003633290068841381;0.0019742375785141144;0.013539510453192178;0.003161403536699697;0.015516064795080432;0.009111769508254016;0.0014197207718442003;0.002006161179127501;0.00491320357500369;0.0022353766644664552;0.0064904666437182275;0.0018064813479091747;0.0007207430491695219;0.006853685947231638;0.009083542699525365;0.002600000300982993;0.0011407692596307065;0.006668825515784279;0.006599573258358229;0.00705528015066305;0.00574617315574706;0.004450147544562675;0.003824817239006782;0.00912092492020498;0.002345908100432225;0.012315426904351374;0.0037599322324430567;0.008604790068629044;0.0003792778333684366;0.007933476502039776;0.007182807383596507;0.0073228120397470465;0.011979076280547504;0.00014394017803214364;0.0035364364972027985;0.0012198822447364106;0.0073026587525178545;0.0023880727207691806;0.0025735155984423115;0.002628991350710755;0.0023243792861779235;0.03385525416308928;0.001206715811008169;0.011942216018855027;0.011963309818855862;0.01895786319943798;0.006665430755611944;0.0;0.013232457030841254;0.0006698102405343766;0.0009785426937121144;0.0011971559400362247;0.011763827455459848;0.00011221875071017217;0.024896082131403343;0.013543647711671051;0.008384319790529393;0.0010992043649146624;0.000788904196491614;0.007317087635002294;0.006809298683529022;0.0010573659426709368;0.00020792539460351983;0.015292864471338324;0.00011579201372784494;0.0001250119968576531;0.0010107764631051145;0.0015304486133132726;0.0004709635869650768;0.003974935627448065;0.01319869073677285;0.004090513669960518;0.014016643609700952;0.0;0.000614686380475867;0.11199653529564825;0.0025638214241399692;0.00021670937468805545;0.3136388110262282;0.00024510872742515045;0.011600376520177647;0.0001288234945533686;0.0003520138049752065;0.0;0.0;0.0010891683254727177;0.0022204435400602776;0.004992741694492991;0.0024161162702376576;0.0012909594926941146;0.0018697972835255087;0.0008503493913277723;0.0;0.001764498814955778;0.03042841343495089;0.0010445712647601496;0.0021627692176490253;0.0040971247255248144;0.0016263078587404952;0.0;0.013985933988152089;0.014157677343110882;0.006309110632580326;0.012173091636880002;0.0009538238155543841;0.0027579055912157254;0.0032250036632366615;0.010397515989093825;0.011379376551239379;0.009057721853791958;0.002802589579342296;0.0;0.016516976806273485;0.000600379366230671;0.0007787766188643853;0.0056155941603656225;0.0016586079522781583;0.004033755841229788;0.001328103053489336;0.0005333413940462407;0.002174753775215262;0.002564838267327501;0.0008493805182712848;0.08499678028408593;0.019361162932929697;0.0;0.0005399241873448313;0.008267734668546184;0.003878844943846651;0.017679357790341396;0.006292054510238767;0.011355503343789092;0.013168303155326773;0.010252237073414574;0.010876848012964799;0.0002362789319115267;0.0002099846143562856;0.034654091995035476;0.0007139350935391593;0.0008339663801550975;0.005871746946466807;0.007800385099800355;0.012488878976111822;0.004433224598902036;0.9999999999999991;0.005498960094232739;0.0028997878369716426;0.004877552875243727;0.008785992778564438;0.0008010338354428417;0.0019488753245963436;0.010172345522713405;0.009869728484400195;0.003431922885734824;0.003892283671735172;0.0008724856681004506;0.0015604472602226032;0.001763962701464809;0.016017359052452343;0.0038609839159146246;0.005186677047432121;0.0;0.00019390801817150988;0.0;0.017578334484467432;0.00037710382306214486;0.0010631022041724006;0.0031561622863145616;0.0;0.0023569015949635444;0.0013253308036320214;0.00042177201707408737;0.020163377014208478;0.026497694389320044
+Flusilazole;0.043490266499886396;0.04060948702807518;0.03795467076247739;0.0615473262561958;0.05770127670862415;0.08462915288867286;0.11263713021568365;0.048377633853368594;0.049558059982755885;0.05579812353777394;0.11374084293086416;0.19178228414081497;0.08812608148621084;0.0585980829099527;0.044420675981412014;0.051518199293956755;0.03677807987210353;0.039881546553356205;0.04147240099997973;0.04110042974272464;0.04061190744067793;0.04202650180885457;0.04463215748933416;0.03999515967208099;0.04942530576494804;0.07552953556611236;0.05898783100827908;0.06892107271348524;0.05580251795213487;0.019113976233822074;0.0507237705600363;0.010448280639180189;0.4669043262718653;0.08365264551188281;0.051047668459283095;0.049844576422513366;0.19740139531198053;0.05080373421684735;0.016278713395620276;0.038485918667016644;0.018235226333189348;0.040232288489605667;0.030880129134161025;0.0;0.028165222321509555;0.03363804123452834;0.03492811611805645;0.03522659771011546;0.03571664267367538;0.01866677356343165;0.013346875444375739;0.038883620660842444;0.11633572652303155;0.08326082639163143;0.015092139418496795;0.03703485202802708;0.01949897652371229;0.02118385740831657;0.0191899492087403;0.0044119524035350945;0.02015855776810544;0.07291286897834497;0.06516354869195816;0.0668228173883616;0.020099542000685568;0.02130278960877131;0.021809396527119832;0.019308003246346406;0.02018285349529809;0.019288045720355335;0.016295638532981122;0.018034649287466554;0.008850675858835528;0.01143308151393301;0.03633225923672107;0.03460918386617769;0.0795065477798885;0.07322627733389389;0.05015594465148007;0.04604582243824845;0.047575142052225385;0.04331958838717526;0.029164380185229797;0.0271704439791214;0.0245752823318133;0.017179228318294167;0.031086565137680416;0.025160560864914014;0.040032776414783214;0.13298166983456075;0.01909669170110458;0.01580211952444518;0.03710205923399235;0.05948413606288406;0.06123750532951036;0.014125391151776323;0.016131218582447468;0.03681210409298341;0.05598766411821617;0.03965846366439315;0.06564508572315979;0.20647843277853803;0.18405948704803754;0.2425461114963613;0.22742720049313062;0.03224555358319634;0.033540775585723964;0.032869434817234214;0.031357228591101155;0.03635262426151907;0.03085270799634017;0.027606816865612407;0.04156999852829088;0.037678145313498286;0.03364018560900047;0.047316518550622175;0.03583913919431852;0.04200545824041858;0.02616101104542216;0.02183862417620935;0.006970935438810545;0.04583738739663843;0.021777162770201055;0.011115014967924748;0.002813819012177972;0.007346346076244231;0.00779522684237347;0.0012368104805118448;0.0015879094108085647;0.007878020888250098;0.027708673286334546;0.03933019589470431;0.07546661549272021;0.05676798839170499;0.0379389382158671;0.027681446437422656;0.04097451463169309;0.028699364307436557;0.05569389448643668;0.0624959321214167;0.05179016549116981;0.053829740005260925;0.024851887330897778;0.034770004362962285;0.07644698788197186;0.027925990810783605;0.030033019626300988;0.02754823104740353;0.01239873624338988;0.02819252564738283;0.023561139428944028;0.0196516638938324;0.02438568073200207;0.04822033728456278;0.04744032046228551;0.062127833127779995;0.06344486504590968;0.05921788854588329;0.05931983276234039;0.01794864912965381;0.06654634770526452;0.07374071886727178;0.05234670468772226;0.01494987396667786;0.01272124370024503;0.02697469279392036;0.024066854512946417;0.00506525625004004;0.006328581111291395;0.08421758044816305;0.040376494903226395;0.07817401389845337;0.009795565879542183;0.07309579191047759;0.07598636030376983;0.047190037778296196;0.007418633454005172;0.022908679841114152;0.11244361041117085;0.10641628485607704;0.10260758697271675;0.11566615596550227;0.07052811656811007;0.06135916746058984;0.017279233135825692;0.04637620764527237;0.020437614950324458;0.0;0.2191707273029308;0.07924117289284374;0.0815771685686648;0.034618345685698264;0.06216837646720987;0.06443057412366138;0.1663641189598958;0.07841003125198771;0.07830483135031266;0.09408810533722903;0.07122241305938762;0.07316869147030239;0.09517980465320336;0.0776740725584387;0.09227235436102849;0.058940371859094905;0.042498598182847555;0.04147399644879869;0.06434488340419549;0.09942531140822489;0.013785107900589977;0.2637679534396995;0.02251822507699736;0.04336770479749512;0.10329046775417253;0.035527548745094416;0.030857994584352833;0.02200359411891255;0.11832470627299126;0.06447954846773128;0.0026323486619903953;0.13891119087680032;0.07640337250859044;0.0384637061793243;0.009721393236652099;0.07278948132374201;0.09446720493390712;0.042377842968264405;0.04118329879509671;0.07117249818272259;0.05363285003194383;0.020181304920757936;0.020565291580109557;0.020404809144533756;0.022958069216908714;0.022655843389616737;0.022526009558215005;0.01865637280109455;0.0696332811180148;0.07950453698841933;0.04856476542046731;0.018684854307684087;0.02124493770171861;0.08001195253171793;0.0578747086996464;0.017445919139373878;0.04327146242772781;0.0012958438905934368;0.009138073032526952;0.010920208663950439;0.053834068780530396;0.021998374230890762;0.0588744992395553;0.05862975399160168;0.020451245614444544;0.04840075162061405;0.05345032601727544;0.023620502464714737;0.015761542709021983;0.06607628600313852;0.018107287011736427;0.1238349553777725;0.0036238039092027887;0.015030294908495025;0.009198556616336511;0.006389113595916963;0.019982920225529794;0.00906824698506727;0.03298527938001233;0.03562514734724113;0.05592077495492762;0.028427722100727665;0.0026400548614466585;0.0559704504084629;0.0828069666312336;0.028344206161344136;0.1083630084277999;0.034728208060827034;0.011966699380163879;0.021493452861675186;0.058993729954994016;0.02206974993052193;0.010623717728314748;0.1114144336880378;0.003569057963952968;0.07350807103554063;0.019320159332983117;0.08033709113925028;0.02344108516531948;0.02649638241219934;0.006550843990455796;0.008045193709896736;0.06454331962321976;0.011388113450034253;0.08110814011943425;0.035363146820652634;0.08109153909565632;0.09227459761050254;0.08709967696567666;0.15212522837330467;0.32291552885184327;0.18230407586623143;0.045651104331444335;0.029683297423267953;0.06268174306647738;0.006095951962575535;0.08489994607218879;0.06506616453347266;0.014406705618946;0.0684255388389815;0.012896358410040238;0.010515010957461653;0.01938071059698492;0.009141725988647317;0.001132015797742583;0.0006192817101618792;0.03719937817995919;0.09975364583802718;0.04840588257830329;0.04354739034285101;0.0076464151494716965;0.054623336735443326;0.2483058163642932;0.06359893201600214;0.009340783400809675;0.021440016227037378;0.04104676282786209;0.05152655315173419;0.0057050348516344196;0.06068952175837029;0.02412561239258647;0.05394175909813899;0.014454763261154404;0.04804957353751018;0.028717009846144847;0.02877445860496977;0.013981730233691583;0.030995697420928302;0.047807637885127666;0.0038745634621209545;0.05592957204677154;0.035227149870007655;0.08028205496503805;0.030634297883219287;0.04479528157748254;0.029569709430366478;0.02027332063936406;0.006378222442699718;0.0066157970339687285;0.032119811818270366;0.026915188589017803;0.02012360400843083;0.06344155248542271;0.0022954641102545443;0.09268624421119;0.07915452495267955;0.03705196842720891;0.09031653357015874;0.005498960094232739;0.9999999999999984;0.06515338634457654;0.12168785473135846;0.0987685217643151;0.03547434482609098;0.02381887299025821;0.0098434038034262;0.010169539056796736;0.0329175652924314;0.009322460803975332;0.023617267650156;0.03962539067636968;0.07091138522085652;0.19240489178429604;0.1050372315357084;0.10514612321809964;0.09692228326068664;0.039814395972823324;0.039836021506738616;0.0733040446482283;0.036400857192430414;0.06292256684316155;0.18374991366979687;0.09601382011195299;0.004097343514164338;0.06494510330703618;0.05585860920266196;0.050781991802384206;0.07320003712462311
+Flutriafol;0.029635632568266977;0.006706011908196676;0.011287867206232509;0.02590532016639875;0.02603776777227322;0.010702518586155198;0.0017491393092576282;0.012285807549214961;0.012386420013150604;0.008258925989418152;0.2769760722557465;0.006752444415176021;0.0014774340942481168;0.001868876321172184;0.00122832129354015;0.00202023237982824;0.004251366428551546;0.005273136729598952;0.0058932880184621025;0.006005469452333565;0.003476839493997405;0.0030256187938692927;0.013451324586330441;0.0023237156868563926;0.0006434617826272816;0.040103363732092744;0.24750015429602865;0.05175463843711758;0.010581256756674108;0.033799065705792414;0.2924670496028703;0.00923963386392574;0.04355282925927959;0.02366846507465842;0.04157673207458018;0.039998502230434926;0.04927838473938724;0.0;0.0;0.00047993083091763764;0.0015926551059528922;0.022511434488137565;0.013680019582837835;0.001701992510898361;0.04707530923813696;0.045285278349112175;0.05785811837272145;0.05397035906879574;0.05451428941264936;0.0010162826503823965;0.0034509321413020194;0.026187483575623106;0.05026328393711118;0.058154815897667786;0.002645545369413359;0.017691722702505373;0.028727785639781088;0.021496479046810017;0.023742899129852498;0.026137180207408038;0.000589198047064896;0.05022699254851766;0.043031696965267416;0.04217236470356327;0.03601852341866816;0.027428320816232758;0.02644995395139024;0.023255535031575975;0.019325342472653054;0.022989647334836702;0.006903451502152972;0.0007180007048055835;0.5642336396975179;0.5616594988990737;0.271373531462958;0.31352131772168346;0.4412865984661562;0.5210685612978484;0.03249001100161959;0.05561306799320756;0.4483012693071572;0.5048103778494202;0.5068498092589455;0.5185342265734891;0.014231336348475728;0.0057481490527092885;0.009995645326960696;0.008099570150613319;0.01795998664768106;0.006865343158035891;0.0030447132487010174;0.011795320660583588;0.12853580719772306;0.020976659779682178;0.021679993270935054;0.49604993135700637;0.4992839051303073;0.0325815031715454;0.02225759383166109;0.028260734287024376;0.028115321847500353;0.018002608505417152;0.03877794800876838;0.035449964349829104;0.03973354686709505;0.0013199309517122279;0.0015838659446976025;0.0022406495638515357;0.0;0.0005540003320871829;0.0002618662168173664;0.0;0.00016846075743143286;0.001403512231605368;0.0005714580285368644;0.01990494959955313;0.0013239570248162926;0.0012584296545474492;0.0021206547985569103;0.00826064996827278;0.008829961533449062;0.00022690029080370115;0.00017965209255000301;0.006539672294163561;0.05931571125772204;0.003606542019402092;0.0036521855282848135;0.0015746115820845117;0.03103073014854451;0.001576054752100242;0.019614951538494373;0.013656731778401082;0.0028944571639217655;0.28382494213954673;0.00337188478784537;0.01099879395313568;0.00692692751759577;0.024257888753001916;0.29155837949141594;0.3246304834804551;0.05807936972325167;0.030887179997587853;0.0025294331352031184;0.004890285533358342;0.0;0.0026688914116584713;0.018710170746427817;0.0;0.07489411929133342;0.04621208325898715;0.0;0.01041970051042304;0.10533993389550711;0.04182252588965309;0.0018606797029507348;0.0725810995411387;0.002859459722788849;0.0024989773790957803;0.01663469233845537;0.008346904683530462;0.019797742616389672;0.02228430557106751;0.038878376865140694;0.01612991703597388;0.04748853326221038;0.01765354216692437;0.10840182926634503;0.013295767297884065;0.015626897056779915;0.06177087667184924;0.025688128204892666;0.04419220870861773;0.0021750429093247013;0.04640720434679567;0.05703517277681252;0.003456389675616049;0.01404157693112155;0.03663336371951969;0.0791149165089329;0.051439491602478134;0.04207818535487656;0.009337369343833357;0.03910358080457425;0.009363636684841652;0.038284869377709016;0.015162091436261375;0.008836452093281866;0.0037093499653217616;0.020044714747261917;0.0295044660850059;0.04860681968692189;0.006155328200602948;0.003032255260472528;0.003641104166763406;0.0027982376868765407;0.00020422041411665318;0.00018905159122874955;0.0013092727603915652;0.03218556971934483;0.0003681012559378318;0.03175321238148066;0.0005664513894966754;0.0008243026843314173;0.002693342447203954;0.029589245029652465;0.0012574179572071833;0.41229450733737877;0.0969789142902322;0.00868645399460312;0.009236076071923954;0.007759689761396252;0.06273983125059852;0.04773634915358781;0.007312471169077308;0.02046760997003417;0.0021606929651737925;0.04569818873355448;0.03357928577558154;0.0;0.07759023404287099;0.02628191706084186;0.015131092767868245;0.01605536812029081;0.011632732911510837;0.01057164338515104;0.027716926684604543;0.019863239929370974;0.054199921015916676;0.0326352472201322;0.0015245994185724872;0.0008139620940599746;0.0012139132611419863;0.026971268465266554;0.021460604402208146;0.0015911448330970406;0.01637790618179111;0.014121523628250959;0.022079011548704713;0.021952734713574684;0.015082674642351922;0.027727851553690726;0.22638226437416506;0.002782023453064142;0.038631721808470215;0.04323423472081569;0.0002724925763705395;0.11182559243760044;0.03016629544422017;0.08423584142896938;0.004884447892651141;0.030840370093746527;0.03164508923623699;0.10425177591736377;0.002878267981779453;0.04135966899061309;0.0031030523129033367;0.06308287304458654;0.2154118141435267;0.02656158553360305;0.006510505607410368;0.0;0.003811884257256473;0.0051221094964569915;0.0954554503546557;0.13788312033124414;7.95841352014477e-05;0.07539908039883385;0.025010770470229426;0.02393447775691856;0.037221414756378336;0.0025940319557159475;0.03214485358314898;0.10293349935359729;0.4214985480430842;0.042287505300820614;0.04768434266230721;0.0005409382233783824;9.941023062832602e-05;0.10541007612661803;0.0011091228279521718;0.13535178710112633;0.15006667110922797;0.0;0.03851563546486767;0.005117124825244359;0.0044506646714566845;0.011681683288731728;0.01941299937248311;0.005447981475006845;0.009929602546026291;0.0055251079518968795;0.017018597351386906;0.0009105207307489941;0.09260649888581327;0.07892827005361956;0.006319056208541548;0.0;0.0998778659685527;0.11866772003888926;0.24371296443992813;0.0072703384057744925;0.017798668966493913;0.015015966518351102;0.0053116332807400905;0.009446424962689878;0.008371767001413032;0.004862226247615519;0.012149653402453102;0.0019398758888278399;0.0758863669918192;0.011541457652635388;0.030220795556688666;0.0002637682929371759;0.014690353009204798;0.26408872037854186;0.009580763162942266;0.0041892734265405055;0.018575361616221215;0.04745350038692723;0.025667856874779144;0.01348710947154698;0.08607782364170394;0.10208882851434664;0.005509728874803028;0.03529805035539529;0.0018233407645007636;0.002874497656610674;0.36879147942550183;0.030362020583966875;0.021386634201062498;0.04215006769494735;0.0404465541283923;0.016918865214392488;0.015567432278776591;0.035000322755028346;0.05800646672529661;0.041584802872917145;0.0;0.020235820123425206;0.010755467634135112;0.04611965892791133;0.13753791186220593;0.059490779172993856;0.04491101360727066;0.04655671715067059;0.02035883412893716;0.03674404197273645;0.04519573398487552;0.032223123248082054;0.0556228809949441;0.0023804685322554053;0.017719177875222005;0.07192637787676665;0.1279294711040133;0.04121089157399844;0.11317063447744538;0.0028997878369716426;0.06515338634457654;1.0;0.10350790895649081;0.2900038777963174;0.0519148043185253;0.05336921652666927;0.042587898748673574;0.06036821114533243;0.045774749380663775;0.021505141489132146;0.027752534935566026;0.016772434593839532;0.08170982606059592;0.10769784364953919;0.11609901038195336;0.10228400804715837;0.0024082979504333234;0.000870005297741339;0.0016818439735830487;0.06730070064332369;0.04233727676180254;0.08188433453909559;0.007927603632517549;0.005668180620109698;0.004446995270923359;0.02679128336521999;0.019896552566381256;0.09880950883552878;0.15992895420273134
+Hexaconazole;0.00830986059460258;0.005925310236352404;0.021258120309373105;0.04595508779514255;0.046233117162604004;0.011708898532704452;0.01777244843059151;0.003216701040583281;0.0030744969715378605;0.04574381761665309;0.013411398491428214;0.03238446345970113;0.1016017206599022;0.006305100943783771;0.002187028909079529;0.002077513742683792;0.0016777756105578016;0.00393141709398368;0.005853093155055043;0.005820270873606449;0.004190783887048136;0.005386930136631362;0.015861042924283832;0.022566377594965013;0.007300578344704598;0.021708623006519948;0.021309415978325193;0.02907392610842226;0.021595151655701438;0.09604455771256352;0.014899807628160308;0.026653530844464833;0.043401207478627926;0.012166334649775443;0.07650317155671346;0.012058774077345;0.049515875700921745;0.0038446368950733616;0.0001917907242016812;0.02643750729734672;0.05826777338502177;0.10915483619807527;0.0331426087491379;0.0012011477783878887;0.07366483763326946;0.04832900667932884;0.05875569923161686;0.05461298074940724;0.06016942148142482;0.013901663487472349;0.01842700211702265;0.03913804469816767;0.14625972960160935;0.059627061962214116;0.025108204835095477;0.11168946186213262;0.06464188310554081;0.043768384557225565;0.03757053621694364;0.024699230191431675;0.05939186670252052;0.04740204325718522;0.03608510148115402;0.03581332485521907;0.06864875285206838;0.050234909894330645;0.04552343775133655;0.03759516726652331;0.03996045477459391;0.039200296600172074;0.03515912576796644;0.05394426834936087;0.020958852065745954;0.032162516133454826;0.05293650829830187;0.03423412766420183;0.02050195268434618;0.009176760824638216;0.005965879776815057;0.0564939788125274;0.025463564769894174;0.019643461307225243;0.02554459373438928;0.026901366053077802;0.01350447564748941;0.008459364030825407;0.04687432030856417;0.05235511637134849;0.027571479409996984;0.18255877454891203;0.02444364290071936;0.12654609476441586;0.03701360142982178;0.03379665891589643;0.035175995224752746;0.04161941465168046;0.029956891131246374;0.051334238945448925;0.0307064510520759;0.028380032108485553;0.03011649448778861;0.030227285306040987;0.04115801819679384;0.04674542275449533;0.0417652732253669;0.00721925993899421;0.008705565805112121;0.006668201588520989;0.00794975001690949;0.002263851021798911;0.004393988657061179;0.03539251758577076;0.008596788976477572;0.018290653332871477;0.00958875234069293;0.010571710139700883;0.01036227677437934;0.010947115410146811;0.0038299488786307755;0.028442037046693847;0.0035421918607036716;0.00833942193898682;0.002888692960426729;0.013476281840669313;0.10686602936977345;0.009927983202758811;0.010868911175970485;0.0139918530322372;0.027254683141718188;0.016778023678235204;0.037029737280298305;0.06657865814245718;0.009643191701585235;0.20347487314117776;0.02184861750197571;0.03474405075235688;0.008705296562347387;0.013855529685953652;0.0174927314679789;0.03125952276884513;0.02778912726563786;0.036885187913848566;0.008635173276504355;0.0067645548122950185;0.006479421070342802;0.040656569642542224;0.0457512824865692;0.0016638167781430255;0.03390680712777982;0.06561832062059596;0.010482077531992836;0.004831833992552622;0.004162706995744988;0.0033811109252231946;0.04679840539850155;0.012537610860758785;0.00569524229030731;0.005085852767886242;0.014464994178547469;0.009840895349657298;0.024983067166215425;0.11678900133584848;0.11086743487843098;0.05697620160225138;0.037993269275479975;0.02998946085503575;0.10368562021930337;0.013777946860246333;0.013666603237114628;0.13408020790398698;0.1000568800237448;0.027606603029119763;0.004091728429199248;0.045610165467918344;0.06054184777420612;0.00424101496664229;0.021523378767549298;0.047113587076900505;0.03051450572191352;0.021276337957256267;0.022384125393518084;0.008051056480504942;0.026881765958816334;0.02108743708625691;0.08327069067034616;0.042313699079475506;0.0816062129626582;0.022264476725880295;0.05022293115007616;0.07421652023767318;0.11831628775108391;0.1693138797006377;0.08213260505588073;0.02600589140773523;0.031580484140921426;0.023565884783175596;0.023641046288611352;0.028756611445719324;0.09302900412758401;0.03023322360968059;0.10206384966672766;0.028221809418407077;0.02989231788361405;0.013073461501382664;0.17186892147919783;0.0038771466722973273;0.028027243404357315;0.09091261617807948;0.04936038934470538;0.1250999505315354;0.052532141948744435;0.03442244511488769;0.14233670497878656;0.09169304309786507;0.10747214305389553;0.04993985910567079;0.08793242106536;0.046321778992942535;0.02748152668593082;0.20549189880938995;0.737160287828631;0.03602612823002095;0.025783191224737365;0.024834978090559345;0.006221121982325401;0.08960115218049614;0.11325400726583287;0.05932676007677248;0.03619959805426509;0.05397027048451038;0.05146051967643386;0.053596737208031674;0.05983101376853959;0.0436754061933478;0.05266600205801331;0.039153980951840354;0.019400987117001355;0.03481102994936268;0.03296174790914874;0.03707239011446755;0.03175938012755325;0.005625351705842094;0.008282474706280539;0.09502226788816791;0.15841595708520068;0.008709680676567143;0.0173763471401371;0.04449619026624609;0.05862287721803496;0.1089740538589041;0.0099412452950939;0.009898695976425793;0.30085222379988297;0.05862655218957875;0.02701241976847266;0.008646152433051462;0.011307987812534722;0.03006846610858033;0.01902223529766767;0.018222262289102478;0.001591441234516392;0.003915609991838344;0.024508911043912607;0.0025137967366989995;0.03740099850161964;0.0069244783518960275;0.16550526731196857;0.053656473251336406;0.3571959625966858;0.008271320487019326;0.004967024008814591;0.0015470313615115435;0.12639550208421133;0.03715696968885225;0.021489749770116445;0.023632883034516924;0.019063202062463487;0.0019079466052122507;0.049284000624474175;0.016604723645906566;0.017249818943846723;0.07792945558144479;0.001560860575628766;0.03148680869708916;0.022014781559010252;0.009121867733125906;0.005975056955464185;0.0183796153282898;0.023141945252036788;0.006217623566305314;0.041325599139664985;0.12790047919746902;0.15375502860220494;0.050640686569644246;0.02033177904584355;0.0011032377268769722;0.009096019767867529;0.042793068290358345;0.10552304598409598;0.08799807293898271;0.034577619877533154;0.02265170207206489;0.025791157500622826;0.07518758546322764;0.004596453502492964;0.018413573468249577;0.017215510635168345;0.03759594919912847;0.029910401347864813;0.07239761107102002;0.018605949379179844;0.004194719759813531;0.0034999669776501654;0.007185572962913204;0.016976810097532713;0.05414366359739322;0.05370536495810325;0.025081319769572126;0.03460687481498382;0.33203717824283074;0.056272367637919034;0.13063015666686748;0.20992219954704044;0.048086026889951665;0.0757751044392163;0.01280111823535984;0.044430490112159854;0.027957886229933206;0.24158001273991087;0.06190595261022591;0.046063053178044835;0.014373852802377822;0.005837386287993366;0.005938151831062842;0.004344303440905898;0.07340109466219999;0.040407936305966244;0.0024348403684879122;0.04252425423950416;0.09667860769310693;0.03986849161282253;0.13068342131492924;0.022670527776578728;0.007365897929822858;0.01251157885504812;0.3034861452476473;0.3562746898362291;0.16721942209097268;0.12054925482474034;0.15374874868704175;0.018225175810574985;0.022646967798044912;0.0483899365165602;0.09873867139911367;0.11033503822326242;0.06276783094059836;0.004877552875243727;0.12168785473135846;0.10350790895649081;1.0;0.07836871594012837;0.08022901984734797;0.14560194166268856;0.28312107270399733;0.25084446792728043;0.11058763748689417;0.05628448817564927;0.036811061013231505;0.04174266201567894;0.19544912384185548;0.3851047708482981;0.1603671436802679;0.23652355289463106;0.007474967798416452;0.00016614203398777544;0.0011143323523489597;0.12449890398207857;0.032582174001964885;0.28369808031215;0.012665877445056362;0.03751088257521804;0.0018839771911337952;0.012600408843312278;0.016396549768404836;0.044477499868078856;0.04418658553634053
+Nuarimol;0.13995802391957585;0.13867060106221496;0.1347839573696102;0.1410042077620924;0.1415771856924043;0.14088787298400263;0.09423194875429977;0.18062205202374018;0.1784933927750591;0.15646634520655472;0.2023966100280043;0.22417369376872348;0.09109138963959719;0.13989192913920007;0.13561271991266458;0.131865385171639;0.14271454091252503;0.1421274818594545;0.1405662015408275;0.14442335414332594;0.1458125751142458;0.14763946846218065;0.16161797110398046;0.188089179984766;0.14386038833275264;0.22925261939153815;0.20098982085648343;0.07673367721991375;0.05835885825736336;0.08410694988026356;0.16930412698559524;0.15452155612685353;0.09569813147387445;0.1277660254232246;0.15960727897306984;0.1415798119865694;0.22174241231998848;0.025332950624940346;0.011989802964734442;0.11458207757217995;0.06081027735555261;0.1355743857155845;0.056574214445820725;0.012407920281406627;0.04253503176205977;0.044865102627099834;0.05620512113521772;0.04584914318975488;0.0508898842954777;0.1165893135208561;0.11253398509828567;0.05689939006534411;0.4692532190396911;0.4739150275909619;0.09107610076021809;0.1294718582859057;0.09439906520300372;0.09911120480594014;0.07927595036757394;0.021453091128148586;0.06469972487177766;0.13141027360745297;0.12566513762463044;0.12506396441359682;0.10009732074901759;0.09665592035114574;0.09893094029904902;0.07914432074943287;0.0768500356291831;0.07803423468895737;0.06855509163217141;0.05564236410666644;0.2951164400079927;0.23671352911357577;0.14620453794131838;0.1584943116682152;0.04230075779374078;0.11820723921647108;0.0796923800648134;0.08051759199808653;0.21466510659785418;0.22459469369402912;0.2212883510163494;0.22057964593772966;0.1155349707345314;0.10172417380135018;0.06906293848936179;0.08064685285243668;0.09249567781253713;0.17061690862796391;0.10235803161183547;0.08061145286248717;0.47023792716980156;0.14074605315788954;0.152543086079531;0.2215358968946631;0.23053351372940242;0.09559804138794414;0.08661591056853372;0.08589915341860842;0.14881344475510325;0.08801353462121543;0.12743035737031358;0.07598350250692826;0.07634201501074579;0.1237882450865754;0.10376650060323639;0.10726505164258451;0.10586026649224814;0.12574944777755306;0.12757558922516346;0.11729498397789612;0.12165189997551967;0.12062680904101494;0.12650197864604174;0.053427596505369;0.04773791074527134;0.04617448606525579;0.0989793380449619;0.061208588147653474;0.05613611170822883;0.03879021305362977;0.104695664444693;0.027506414737089493;0.04341700465409738;0.040513950894755915;0.046991097534559705;0.09602421085149329;0.10950031847291501;0.08092896578329413;0.26224689610240043;0.05239996628155521;0.036191721974520356;0.13159044758715444;0.1364587107909353;0.1404900314143178;0.02686870697048278;0.03530449550741923;0.12840733565521964;0.15774464293210994;0.12910304410392687;0.22009236566363705;0.036656670731577023;0.18783468568377237;0.08574380283304778;0.11213603892308399;0.07066896402539122;0.009422302721539362;0.0681170545517189;0.0851802041172982;0.06113069235766088;0.09895963351057636;0.1929322315088956;0.035043415615829014;0.09668645712670626;0.16808181384547474;0.0824853880502181;0.0476211107219266;0.04584056815257958;0.049264103914067305;0.06554907138663642;0.11036695291826044;0.04106970111785793;0.061423189122792904;0.1380106447399247;0.04084386248929719;0.16797258343866125;0.1123509968139348;0.12234435434902254;0.13807606401813824;0.14441912403702667;0.05779202592074331;0.02045302247005815;0.5001269608300988;0.4936538176999744;0.0331007662104233;0.0014278376554506325;0.05198520792430141;0.14459989924142805;0.15488696853349998;0.17421827723044375;0.012353483889825946;0.10107454618346971;0.16868694627014794;0.06062069312555338;0.04523711141374574;0.10076774913706649;0.003873771882614746;0.17563406201909396;0.13291560673338948;0.21420839563932384;0.11667820845647583;0.05371080459983538;0.34927041225616245;0.12483254399766797;0.2602805660730032;0.2584733016671655;0.26474670213992596;0.23762112518180378;0.23081655634103168;0.2642790283423155;0.2359565311039144;0.26112484150381043;0.1221873094159126;0.15535040373801828;0.1389346422217479;0.17500981090696285;0.0758615702425736;0.03230815188056476;0.16171022041675134;0.08310981115108634;0.12713542506510325;0.1505152738138619;0.09985795974861589;0.07782587150458721;0.10968867577973404;0.14932677369958489;0.11905775000943787;0.004247004311295577;0.1593713584414719;0.053025019681873696;0.0497093934782897;0.03628863397529109;0.15772542120746538;0.14119835298836866;0.1413355238965211;0.131476697420044;0.13959110672820416;0.12466956273897528;0.0680587949779856;0.06621555075298335;0.06630545002075086;0.10331854922711989;0.10039561963638569;0.05174497089003316;0.08527462788072696;0.18921930382746716;0.1822196551593404;0.18986088158134182;0.08103366274868729;0.1989414315000658;0.033933387363711334;0.03609009572798518;0.04640642715656154;0.08649662669966784;0.0010616245192560918;0.025965900444411757;0.04803353576381002;0.034697235252151556;0.028152847363316143;0.07578224088739816;0.07151523525843592;0.057821362356618014;0.24701642589421224;0.03858886319265637;0.3681632953217503;0.14758137063692991;0.07737971591469982;0.03786182534374349;0.029812594057608586;0.004895054948976477;0.04179478866568887;0.0024723669030171326;0.03104941726940184;0.03363481482834184;0.009616894083239054;0.14800421870617536;0.11802671552568193;0.11263727650396194;0.03376661630843483;0.01646441550429092;0.018487497586256212;0.1739871072596414;0.06363969872141442;0.030368657087289044;0.0864789776181734;0.1782631837257007;0.025810167801089953;0.028248225063750635;0.06591890608832104;0.04101030683462467;0.3040864576150287;0.005286422014415516;0.15388683729777533;0.012208560166674797;0.06832704106975013;0.07466785090826125;0.19869365124538294;0.019972542779331578;0.024403575870097866;0.10991591082847615;0.06596416790432806;0.015694006277143718;0.05892248143342782;0.07400111610957498;0.050190458696724165;0.02553251610566494;0.14762598035246405;0.10927700308356245;0.13400119780238068;0.02674874565141285;0.07246726284594347;0.0977306275846465;0.058834871264105706;0.04570949473790996;0.0193729807775363;0.23213961819983264;0.13187868157058935;0.025487359835933258;0.07304223894071134;0.06024123454122597;0.03955387117612475;0.00016921397126925614;0.0009926562627985789;0.17858830884839824;0.08681189517604672;0.1399558735918669;0.059099259558749916;0.12206626279443596;0.1997407075752617;0.20832960858458957;0.13248245568772501;0.13587410144122458;0.22001697094218337;0.3852284907732587;0.11130844748454757;0.015900222480492762;0.13882471740893795;0.10127018142207747;0.025608441064668436;0.014617527931433635;0.09527546554648954;0.10288335524219347;0.10007603672696636;0.16222345960195447;0.08630383869802889;0.07329936778260844;0.023904244877673335;0.12459916034816289;0.123223983625065;0.17505007675045384;0.4840405197604236;0.07547495516740046;0.09070912405119798;0.09530694361800185;0.009028315401498522;0.010826934318962981;0.3154882662606679;0.25077750719751624;0.0647842035005453;0.3011002591343942;0.02638380191056382;0.08967121825680761;0.1485426058525162;0.18374166562802327;0.9149263203830584;0.008785992778564438;0.0987685217643151;0.2900038777963174;0.07836871594012837;1.0;0.11694654579012513;0.039397757317995365;0.07245642022741314;0.04452472991719474;0.07536922499390743;0.0204795794076182;0.08185799656262623;0.09755154574723675;0.19623097507181939;0.21380858102556802;0.39819316919464026;0.1418696755058182;0.13799964655427105;0.5348376033403626;0.5320955872453055;0.10251854886950716;0.0651552542535014;0.16667416694594195;0.1319187590751813;0.03769877383642043;0.12124975910494759;0.20046164848443798;0.15070289714300125;0.14103955527060022;0.22031587132600947
+Paclobutrazol;0.024356922322313155;0.05182780430989667;0.0010562824869742623;0.009977507100574302;0.011958939281101968;0.027039895848840274;0.022029654678330957;0.011845393700799471;0.010580637663665992;0.0030226169251229133;0.14709026837429423;0.07142830913887387;0.0007462095232536334;0.020304531528816665;0.0029683625067829012;0.009646983389279067;0.004220080310887205;0.03193506099986637;0.048694517445011964;0.03360105452758318;0.014906470364428357;0.027751153242479083;0.02370897959791572;0.03118504054825006;0.015219848734758703;0.02215066239341267;0.01239539436647768;0.21518926788274745;0.08499478912838568;0.09633429822230419;0.02247034361198522;0.010464427641013277;0.060112432272157644;0.01672439833026007;0.0736509031941608;0.05449619017778661;0.1416343663998625;0.012230329361103347;0.007884585371174117;0.027449988721537963;0.018998598145592075;0.013343010913048516;0.03833241675858402;0.00038928699863448676;0.03142579212727584;0.007499476585721644;0.010020813114641952;0.010236066339659176;0.008676097256945771;0.010002531866205233;0.000666375233474006;0.00865995350376788;0.11841450339727061;0.1336792624632658;0.031786766979973215;0.012133344778440063;0.022361585718835533;0.019644488036892914;0.026727102544681365;0.14075086211108429;0.02034113240781397;0.02506365183695419;0.026021314695138586;0.020522846989721674;0.025421070211006033;0.021884329678491785;0.020595094973422358;0.025696609671350956;0.03246014197294467;0.026974660387602246;0.021528023340433144;0.01720274528448337;0.03817893875249154;0.043650759545586226;0.031055923024212864;0.031378866933286266;0.044745097131448364;0.034067952897579745;0.03400047261845776;0.13629963607302117;0.02590510317212303;0.026348715092973804;0.028210799126939412;0.030377409823460006;0.023513405977801674;0.008077462960615798;0.48707797950521947;0.530171867947335;0.03178391623374407;0.049571487695407375;0.019566468406914273;0.04274983392928318;0.11779666910178545;0.12352978110682122;0.13080154090770588;0.070148097883917;0.0772532497428681;0.0759501229121383;0.13612933746031766;0.11414104218990559;0.13146111782065584;0.11100788491188238;0.13442028662014543;0.03828300934810797;0.1209287220476153;0.029232490848330225;0.02527435778732171;0.02007259725192115;0.02268372863453325;0.019892995284500913;0.022479220075624133;0.020675552538005893;0.03313379487130808;0.03053479425397123;0.0346884182406233;0.010447552570022799;0.022706911518457253;0.015718807555397667;0.009262694856383343;0.047910855141850395;0.02119939134598829;0.0015438861945108124;0.002010942671084281;0.03472453305149274;0.015447713653147295;0.01164245402482127;0.01454966302426457;0.0041017253714486675;0.19052519972380177;0.005370997028749464;0.06878019675523839;0.06966975580909113;0.06554941539646537;0.1094089287112909;0.039923599727485166;0.04849020413416294;0.060094933810546966;0.06254370742673553;0.1456234703033125;0.1420982226088786;0.09327645908196903;0.09021353419580572;0.19340567785198495;0.015406245468203251;0.14328814128131595;0.13685554655369114;0.29131451306493666;0.018804798648947116;0.08346159141905844;0.2389097285120173;0.03203049635437164;0.45087335983718385;0.019647006146308144;0.034552524362258336;0.07395304368366055;0.15452599056935876;0.021399989499013297;0.0207308073870406;0.023693409343530994;0.0757795118294843;0.25703358295616935;0.050008876077829785;0.02922555805669752;0.02304299334012832;0.04903556081813373;0.08070470661488402;0.09225669040018412;0.012565797132962539;0.020458093322820343;0.14915588245210298;0.13241186085403697;0.018885082156884732;0.021070839394592512;0.14018232068330794;0.14154818425729299;0.0051225123414931845;0.0566169915528928;0.031000776857334347;0.035809402327080436;0.014222030166951366;0.010190153487468758;0.07288965843850409;0.04896586296859715;0.022813911127276647;0.42169330954433665;0.13399174739410183;0.40525468953588334;0.02025905805967645;0.06861036897096175;0.010672285450274635;0.043927163508612206;0.002101544509787331;0.1740676797105921;0.04987915287406828;0.0544231062398244;0.02201971909940913;0.021669672406479348;0.029610408788636376;0.04387713113337718;0.027989264680263044;0.04080853765102922;0.03887542059845082;0.031242132708827818;0.057656299613482315;0.05726983635613904;0.010437805844427819;0.1616976216617783;0.08970760959199202;0.043164482852837194;0.1409397346219531;0.04377687182829175;0.04107760814753485;0.062218561205421095;0.4394156641863529;0.10154312770480912;0.12514006489407042;0.388676281566305;0.06940340130579126;0.06005810543922893;0.08929710801941357;0.0387580138850495;0.09526969734769815;0.00218916427326791;0.03470970162443431;0.02770203288481359;0.019016552436362456;0.01250429871343317;0.02856010674100836;0.020290725115861562;0.022307372764975828;0.02026228714206797;0.02113385840516047;0.03213651493893994;0.022847725809480406;0.01909860389801087;0.029930348587695613;0.04836659181069472;0.08416590464868871;0.06538280798579052;0.02909614196428105;0.08603536404339537;0.02741311002263973;0.027372298545685562;0.04619989787675547;0.018766078632180487;0.014884653519746573;0.18523808389109647;0.2374002443916282;0.2331035284860618;0.40250528524923135;0.03204884931143765;0.032537006165231065;0.1528569854847521;0.16176700507021122;0.026165712699518454;0.025956716063186284;0.03653622419048089;0.018470856342068426;0.0402489496968891;0.009220661287977126;0.013443123308179374;0.024148911023111917;0.005529795425393195;0.07872855213106629;0.2224560724366861;0.01100362455551234;0.25144498511832825;0.03343463887130038;0.1783279548593094;0.09615993540322652;0.0004613295696415458;0.062486697772739366;0.08370469064512545;0.08592151336735511;0.08532008540049976;0.17325138628639122;0.04055503675515042;0.008182807919694888;0.02410812422395782;0.32812854809997594;0.06545583212677082;0.11134699000911114;0.013458713096615445;0.0804392210268715;0.036962288033384694;0.03971093543920637;0.016806354365716935;0.0795353432467271;0.11848302417353264;0.06888985029744775;0.026246685548056915;0.024952625406180175;0.07353688669701502;0.03133748504180714;0.06279650399041313;0.0030370392469196116;0.06092028369500374;0.15107063831670348;0.1972148276175564;0.2078025327491313;0.03925211660776723;0.025924932783810858;0.1181081127788594;0.5490517435561825;0.0032940718547769484;0.012603427150979483;0.12604481209029375;0.14204663135268542;0.1033867534952794;0.09627256457540916;0.06958204466872236;0.008628208057603705;0.0004874940916765378;0.007013456605950785;0.07660441319145173;0.016114701474656296;0.07108243335312837;0.10627281827787684;0.020650835677703955;0.015654639828658532;0.05144578783696129;0.1466892343331493;0.09955049768862499;0.05788843463269493;0.07434114122067152;0.20722233684151026;0.01339653044378501;0.0441962869063392;0.03374437953473046;0.14212064368555616;0.03364093512904124;0.039545764389826356;0.011929510427197035;0.013058048174330334;0.02504201591479086;0.05375469717905814;0.053156546904422425;0.012232788421475736;0.008920377270761094;0.007701573822940931;0.0844730630571267;0.046484261483846046;0.022033367159326148;0.04890132154064795;0.025943928151503405;0.0440109232297266;0.14500439660312273;0.18576075506098325;0.18632022870814136;0.06283238666329527;0.008230462482902039;0.010839972821173507;0.07179936946082298;0.1592253433266701;0.13972491269888326;0.06611753691454018;0.0008010338354428417;0.03547434482609098;0.0519148043185253;0.08022901984734797;0.11694654579012513;1.0;0.01955469777520335;0.03643039463223853;0.20188446075103123;0.49717399231133325;0.029460048633321682;0.12206823009484477;0.09840837287293021;0.5688276053206902;0.10144935085743605;0.20864104897962876;0.5476632611223332;0.004981555882187694;0.021237229656683423;0.022875269470899698;0.08493668285133228;0.08628614969590163;0.06911247607537606;0.04971546924288553;0.025916085846894754;0.003116649959014597;0.0625545410231875;0.08606593036516537;0.10460243409726344;0.10334439566995825
+Penconazole;0.0016515408775686134;0.1173380556582776;0.0019995878731470526;0.004366837587118987;0.005071082625668559;0.005773616348234745;0.0026988334925838824;0.002840144684859664;0.003101182535039251;0.0038229309952007577;0.07070678816764839;0.02882442390942448;0.012343637876300446;0.00017312344691309856;0.0004813875626038491;0.0007316990604860467;0.036586214225646584;0.0898310909841823;0.11890548881864241;0.09668875144993364;0.01847769771707937;0.015526898587562229;0.02558752668513966;0.020775591138502903;0.006089644580480282;0.035866381128269016;0.019502942059236018;0.04374919692067169;0.01994774682553332;0.01864004219916464;0.033675445130627;0.017370041339546262;0.05694282602057389;0.038544044193743285;0.08149029801093312;0.008678162483450661;0.08343580598479668;0.001687620391055649;0.0008148601917859065;0.010989201669328813;0.23722060826487867;0.07233384505528262;0.04558681732701083;0.0008202519518018126;0.03169877618310619;0.0070585979450928996;0.011637509723436483;0.0073507280917942735;0.007975416374738947;0.07487217858640026;0.15324015527037207;0.37408423603252544;0.04817108571373537;0.06788629564714817;0.08424137139564998;0.04631745228381144;0.15187340526374066;0.01172357125863544;0.10053666279403052;0.006513342059251482;0.14832992085447713;0.18310850937294754;0.03878957501938115;0.058030462754852276;0.2037568420267796;0.01726151181759576;0.006605216192413035;0.03857154962075626;0.03333179136737271;0.035436232766911185;0.008577477123887397;0.05759322915394766;0.006496099348686901;0.005434689810174186;0.01881277557023831;0.021388041840325563;0.014448076960246789;0.011787703518075556;0.0015890278784034151;0.019816438289265628;0.006081301426176949;0.005798322513312542;0.005013545608053507;0.004804870432743428;0.017952411622826504;0.01572007149906305;0.021332976738249406;0.022596658129006224;0.02056136795551466;0.041692530379584376;0.05578472681023803;0.05435790765174224;0.06568684562695268;0.0364992992131997;0.03777978099318218;0.013805270054739414;0.006410365991086539;0.018308804982746556;0.02725901010303875;0.026848342126406858;0.03719631233123341;0.048857451792969374;0.06319843714723013;0.08664065178693747;0.050377141345128364;0.05074799539208962;0.02033414134275584;0.016827411937255215;0.007080235216720943;0.009185765347752898;0.012349628411812285;0.010287431136819448;0.00792110444566809;0.04267912513307702;0.027675353212335947;0.003083315963785094;0.0021418606924305736;0.0026633812336943705;0.00696268054772591;0.021249799777239658;0.0027638012141249103;0.0006824709857685739;0.0013331623676002312;0.0038884311509664077;0.002265994577727146;0.007781878350609479;0.008167365933026133;0.01602897890763601;0.03150257748892497;0.03645813182295439;0.026764267251724715;0.06738566168076021;0.0019238886363432146;0.13005755757694346;0.0027397824815361565;0.046427972301252035;0.026961050031737124;0.04608774488105148;0.2693957493393761;0.2406608986376087;0.13653944535924256;0.11870258135208983;0.04573462829544783;0.08155333489694719;0.2731302775568894;0.06809090747729198;0.0662592817085133;0.0008468722575425507;0.004541824882388644;0.06476058980650573;0.007227471035082266;0.016622445349359402;0.010729436171486707;0.007056816078230129;0.20611588502710276;0.105902219330921;0.009016207841297282;0.010738125559369743;0.010412986274552675;0.026552031990424347;0.034408167670291076;0.04901860694481203;0.0474523369237266;0.052155772599093014;0.17589054251122074;0.03723221189683821;0.0568961847869653;0.2351070345945292;0.22991377898357487;0.11010558294158591;0.06567045439128788;0.3430639953571034;0.004812133904473325;0.025010004501221747;0.07106716746551203;0.0029644415903203516;0.016177548295523064;0.10472254781460205;0.011479381571193695;0.004691063227329647;0.004140491100162726;0.07570011017103476;0.025353345540043423;0.019099659157517886;0.024460574876178;0.0804451909198882;0.0680789999104431;0.013784815619069007;0.023734240518200157;0.011124582379404243;0.030662301916977604;0.07895002494762066;0.058628788081671844;0.012710122083659488;0.09744348144532394;0.010422911479396483;0.010905436311812945;0.010805637696091068;0.01768557538570574;0.011620050701300523;0.014546442440188987;0.011067905121178468;0.0118251202937567;0.023395036472589302;0.06534717305162756;0.014455333545926652;0.20008822334588508;0.09630766936769754;0.013116878008065656;0.13053541989075815;0.10769826305261256;0.01771453291238792;0.04742403203936891;0.038968179296717205;0.051636552841611665;0.03261632980544747;0.054091704250562735;0.08707662337621241;0.07835122224060574;0.028052642256970368;0.029495837053846754;0.12889061790632067;0.001626313049246679;0.04459931417230165;0.018748615732632617;0.18881381594822735;0.0411517472203466;0.204081678126959;0.01467643332113054;0.2086212030518799;0.15980976024588023;0.21336912925886747;0.17595414953271016;0.01933124978279244;0.18983235060666348;0.22948197820868074;0.012169047221710975;0.004247417112215675;0.03750097543488674;0.1704811701715307;0.028196160420934518;0.012063660559677869;0.0233641141618731;0.03341162248057983;0.028901816055321498;0.01690082866478165;0.02488443697310046;0.008759768018223039;0.04187751011484295;0.036068329069651975;0.007114345298029021;0.0073926653085336635;0.013602346767041064;0.038254260546387885;0.1589255327130282;0.001770190568141079;0.025325851689236175;0.0348338773236784;0.0037754762544107887;0.0042004593102485666;0.007387702328823264;0.019222477532154492;0.0010993134116670756;0.003125848447355775;0.07163307601816879;0.005207491588346622;0.43670015793955136;0.024734032672984636;0.04933761321222473;0.00494828042446974;0.00197964969085295;0.015134345699287066;0.03216843399280144;0.02446966960671553;0.015812018067005072;0.012503650782361958;0.0021917255551663377;0.002757637306565547;0.0350873611133753;0.011211225787989235;0.04081299405604009;0.045652059734646935;0.0074184832583683614;0.026493910212020844;0.03385210717933476;0.027258453132089685;0.019847632652086028;0.02546788069333353;0.01046136951500617;0.016700861808784412;0.05253450428193855;0.2752788999923403;0.008170338663852023;0.022623003372051614;0.033508624005447005;0.0008668020607921381;0.0007797128501792097;0.06240247965940552;0.07996062835494282;0.023179986370496813;0.09170176210837795;0.050696142304417276;0.006998906450201318;0.07523696931707968;0.008590718300788003;0.025126831620234474;0.10515179550687888;0.025850578642827287;0.02891428811502384;0.08448358741206491;0.006986781737772963;0.006989075950921293;0.00040737429199460114;0.002133785022044216;0.01114072959424367;0.009667186574834404;0.6664625856124987;0.00757709395238927;0.0485260608674674;0.17310850662200267;0.02012548108262616;0.058840352997014296;0.10770739426679862;0.007874383829701593;0.25559750321866337;0.01861268223535407;0.02513549135763213;0.03998427088563658;0.05166607680045971;0.05968188490792473;0.01668303449135995;0.017723200064112314;0.03883988352499567;0.040185310162847675;0.013766684073570424;0.009173466547441032;0.02581168258165665;0.002306096725620589;0.020732160645082542;0.17053071310816303;0.04503496245149793;0.1474864312661966;0.021562214752096243;0.0032454394064457682;0.0024209674104197342;0.02633147262942144;0.029726917936730567;0.11189457801969309;0.014637687586106252;0.3787423079355533;0.003333211326388274;0.0014439356017174909;0.042856771548128586;0.1292811913709778;0.0199894047703979;0.06058883203227317;0.0019488753245963436;0.02381887299025821;0.05336921652666927;0.14560194166268856;0.039397757317995365;0.01955469777520335;1.0;0.03712406411534594;0.034173081053126234;0.18082097216548174;0.0895935965218088;0.01395987853775739;0.029617867584587863;0.11291989965986;0.11847566199720908;0.03370342754180988;0.09687697342965178;0.006169085180333669;0.016300689492483898;0.01680830467217808;0.19359936130434904;0.023008616662022724;0.07305985927768756;0.044472986174255456;0.047069779281439225;0.0021218682899506566;0.03990856047832848;0.03966113123199409;0.06448113944505872;0.054857312240601364
+Propiconazole_isomer1;0.005685323229783939;0.005480883096285533;0.001091947517473075;0.0017052385555457517;0.002632397467132728;0.006196402209597978;0.006652944851754926;0.0019276463276125032;0.0015984214578405374;0.0015657400234336497;0.01800424728753471;0.005180335517459731;0.00010973327154376531;0.004539701150803884;0.007225294961624234;0.005979192374897319;0.006470697989997441;0.005843756586668926;0.0065936601150329965;0.006882094044904499;0.008670252139183031;0.012243864134792106;0.02283151438293702;0.014956185782260925;0.02147375668377317;0.028996366727777438;0.0024311971801952033;0.029723434172221713;0.02471089421024543;0.060155724347814535;0.008309640862646435;0.010691443306170207;0.03497965176408364;0.002559193304429887;0.031709007697407234;0.012286288184137564;0.12788269367160215;0.018529343972450648;0.076387200110571;0.03223202495674449;0.008715748467416011;0.0446653383781372;0.006395091111647414;0.002110294662113278;0.10075320686926502;0.09295188118143909;0.10000228987597509;0.08913160183849554;0.10691873651412269;0.004536456868282724;0.0069163203109824465;0.006168772861402264;0.02630166404287138;0.030308266637985984;0.10027329627383963;0.04230978091142501;0.023454227246133965;0.01768009285824384;0.009471164671270044;0.013141676676284646;0.008013319064928567;0.04173052811110968;0.02090038867508171;0.017868883591076443;0.02714191927186385;0.021034987649459255;0.019877051730476387;0.01111003907311779;0.009974201910158098;0.011205266953977009;0.010931283542548922;0.0075721674361432095;0.02067523498277243;0.0481068648160006;0.11319911332215692;0.08176416295780436;0.015426456493673022;0.049315009184269544;0.02543693765594498;0.05638535132387085;0.0331381834418686;0.029211476233035792;0.030160155470995764;0.08137821231833638;0.037721402540710484;0.021400791212901116;0.023959332937320308;0.03159659337983208;0.06416509079146573;0.045728467010055826;0.012188124298494661;0.07557108212748617;0.0777985443948659;0.04504854468766077;0.05675608911998813;0.02866776706693764;0.037455750731091905;0.13978967547154592;0.08375053466806755;0.1109531435886369;0.12697618470123473;0.11199684743041609;0.1369621216968992;0.053331934514317315;0.10611119331491994;0.00615489507515025;0.008241406659529825;0.00375501635309445;0.021348753584466442;0.0027512312270539475;0.0025311485152214484;0.007866608461764235;0.021439044009750895;0.009345463754729444;0.011737969922494219;0.012982124361517255;0.015392617001227366;0.016357142239836614;0.013091388470870172;0.15227166023161418;0.009997933718564134;0.010870220929324877;0.00607052830978557;0.038740920870166486;0.044360576196155396;0.011824863156081878;0.018398751913286177;0.005929045417386417;0.016403542106614773;0.009664627853427787;0.06518570389501345;0.2810335539364959;0.021886624815156824;0.08759860094659928;0.06391351058719505;0.16937000250926357;0.10265167111538555;0.13421193776398144;0.05801111625997596;0.05043611419605048;0.043157217436537255;0.07029405837835755;0.01258528712904904;0.006463004146317811;0.10316384815530123;0.00895496920085477;0.02452970909144509;0.017717939412039328;0.048816481717285594;0.0778290883234735;0.027570945052642612;0.01885893002622048;0.04767079957862547;0.029254250015459365;0.020341725133645065;0.04391174910176681;0.04867276307533703;0.02569415288364673;0.03858402605692306;0.06210262094979918;0.048236691860686326;0.35148736516226925;0.1322678312616877;0.01925317636337856;0.03937771944224375;0.07354555169750272;0.17355012545037413;0.020388396477727375;0.01750811902210017;0.23445857893613725;0.1738432628020224;0.01969016083057326;0.010521452867754034;0.03767674716358447;0.03503871918132065;0.006655307099454748;0.04027852162957433;0.17416558759007827;0.10241537967568728;0.06491277215778209;0.060332324683954865;0.0026110759644025075;0.06986247872766446;0.046615821199149414;0.1161867089725521;0.09383312334385636;0.08339639350351244;0.04574166723083681;0.034522296962041704;0.05419893871772342;0.06841647199038071;0.0011589140187484848;0.27001575229324737;0.021334586245856272;0.03369855807394354;0.013674384281664762;0.01358272423594378;0.02593452675473347;0.14733298003970177;0.034893298694982755;0.05071757047167868;0.019995474140643784;0.03332411328275303;0.015267319403750333;0.26107636455601846;0.0005467698750744475;0.085070414528175;0.0373101476570205;0.005852314325854098;0.03616133700112484;0.03385848774683355;0.11516052192072464;0.21378552161121078;0.0537060406822262;0.030042297791268744;0.009984593794502275;0.08791070701474463;0.09103007358871114;0.015664730361821907;0.084131013402035;0.28785282089010916;0.06037849864125937;0.0021925987077531573;0.01398628991701911;0.011875249554812733;0.04387794112341542;0.050227555568691594;0.05108263328909751;0.014854978050683443;0.008054635825824736;0.008044257023948414;0.007852587902684654;0.030802912579422585;0.02210041373876292;0.0062668407022750845;0.013687773455466262;0.0045978670423568345;0.016455507018683174;0.01009546103340028;0.012591514710395163;0.06024749993701748;0.153646328638535;0.1164356624118815;0.019416478469326315;0.03450123786186915;0.0025061897568684284;0.03619614371554911;0.05925448304024482;0.0767297201195119;0.0369384382048182;0.034221939343786756;0.034348545438128666;0.0399538294722082;0.030868651854497206;0.08670310754187112;0.002200481763279079;0.06495923231574367;0.022801948883162265;0.19639104593640777;0.031041475251915446;0.009974045519831129;0.012215316037080272;0.024528867386286218;0.003978618032557628;0.056033907124224125;0.017564565192203875;0.16006092653308365;0.09164051372259087;0.048741591408048596;0.3543011699983504;0.05331829692274328;0.3215099734490138;0.05118405097916138;0.20131740023356118;0.06124871152262659;0.07980419779693543;0.011645222782441591;0.005073065361909886;0.02365908896045595;0.0038435977294441026;0.05359399563576643;0.07272036943629685;0.009822228782086963;0.07258996850837175;0.02911524423702822;0.02647926906580399;0.01711929163045561;0.22286442828307151;0.007140351281291021;0.00653045199990519;0.007970053909607294;0.06622386012965524;0.5749217792143291;0.016644568468320544;0.02438329442259694;0.0017753740837953085;0.008572628359080493;0.09093291549750407;0.09014296251535202;0.19234599723953805;0.08341686741365655;0.04557731924603767;0.07523419511128104;0.019943269966845624;0.0006253887462978926;0.02934892557903275;0.03656643498133585;0.07523807234272462;0.18513760608719282;0.04113194517452021;0.04473716223345407;0.018559005078072795;0.00473288601349973;0.02376908011538094;0.0776007123023338;0.17651845427176774;0.014594050131199328;0.06261154279409381;0.2602817806348779;0.7068431079474209;0.022869452455854356;0.024335119849052587;0.05706205989826966;0.005057422508808632;0.017831911728067158;0.06960748229316657;0.01580988148703602;0.0327617784389661;0.04983554793031068;0.03310721231509576;0.038224720852448976;0.06607972010611214;0.012354391745548678;0.014695100858837472;0.018778422057139643;0.00951422026424583;0.03307947098157592;0.1297401864409243;0.0955929811080902;0.023866088279291826;0.011710335622259085;0.0870300567021862;0.056844700922114536;0.026721241551821547;0.016485119951534635;0.7011726217548652;0.7301435906109895;0.07502208389591375;0.0707605968478747;0.06584754677463986;0.048878824087804244;0.033389607987260976;0.044379660714273184;0.06489014817916504;0.056888113829793426;0.06527260900304958;0.010172345522713405;0.0098434038034262;0.042587898748673574;0.28312107270399733;0.07245642022741314;0.03643039463223853;0.03712406411534594;1.0;0.9321379770812164;0.06427915684082869;0.07297661774987976;0.08599188177211943;0.09247438142839623;0.1516431016800711;0.07504322406173561;0.2072879537766951;0.2225875259472531;0.033459597943210496;0.08489364118498603;0.09777653968965436;0.30173309946945964;0.07695735485505667;0.12465170717008472;0.06453240070722509;0.004341498941560785;0.05046812290349211;0.05655700844014239;0.06570097757401347;0.13570839453582081;0.14588090116315752
+Propiconazole_isomer2;0.00448551716614713;0.0;0.0001290097666565608;0.0015717492273815367;0.0015582705784833151;0.0010362174028906964;0.0005073432256118452;0.007820816068184638;0.006388104789726339;0.010548548514471663;0.09112541994410871;0.05231021193576452;0.00011702679568006963;0.01592421685605742;0.01383115340380338;0.022550041083290628;0.0;0.0;0.0;0.0;0.0011846222189427374;0.0022517443792333123;0.011178822068647482;0.002591719773846963;0.00307306477145708;0.011511148154836252;0.0002688992503573489;0.0513844854985396;0.03715541539353336;0.046262276189327795;0.0044855968803804705;0.0034630481223116385;0.03895239048444927;0.0006109959315003099;0.01727629009690136;0.010357684496892625;0.09074788082069042;0.00302044795908653;0.00029207018594948483;0.03247162734249579;0.004257286693100839;0.05310608353398169;0.0026716864554008537;0.0030943763707099803;0.08977840866019797;0.08916591184167608;0.09037977282724054;0.08499263945370067;0.10022270380650355;0.004642724820224955;0.005483739211862761;0.0050637975889169795;0.003917544469871997;0.011141032618887525;0.10883947941437183;0.05255963984722755;0.013925438539719066;0.011457623659045808;0.00526133035396048;0.006722226216550908;0.004421190627639909;0.0364200443661246;0.00984470288533766;0.01268465134969908;0.017345759605952724;0.013354988284874698;0.012111870140892237;0.005617214187463505;0.0050742307201253984;0.005847248448008677;0.005323070543213012;0.0041141188493553724;0.0035969095557888413;0.011030339753964774;0.04226589338945265;0.013347345124582707;0.006960675327444094;0.004857162516201723;0.0005058559396225453;0.03405685120744805;0.005650894041659041;0.002186939336014672;0.00555788231821184;0.0020696252432993484;0.029894367927664176;0.01902671710397918;0.015821799969844574;0.019063183576867558;0.03372223157739903;0.03776446536251617;0.00828214127710592;0.07317666552314309;0.020991026681534818;0.006982143737893835;0.008332631359670765;0.0041081012185908835;0.027134250877587408;0.0873274800687036;0.036683762779118015;0.016843334207647706;0.01224942454155371;0.021733154303110378;0.029810027816667525;0.029999797564701253;0.02868007493760848;0.004234664191151468;0.004279477194917376;0.0034899108270247813;0.022425270450809668;0.0005012523454739721;0.0009637474896022614;0.005486366266517218;0.020008569970107873;0.004614554272017048;0.007052223046561124;0.0035845033765840866;0.003973419118406865;0.003927376190753616;0.0017873587983116552;0.008400122777870304;0.004216207953487697;0.0010344494050787186;0.0009160663189320552;0.010173243505084063;0.008635237085624407;0.009490355351466518;0.016386051555848845;0.0014675185840156894;0.002443940237579836;0.00286587200177021;0.05084996975956836;0.01424815621612433;0.000339302136800337;0.044999720869699084;0.041317550280057694;0.0029535725422034516;0.05143787779341772;0.10247915379202506;0.018127303655470824;0.023948999628986396;0.0943734505134234;0.0362984577366524;0.04147040098937021;0.001264278136467035;0.03787464354932309;0.06278871635501512;0.18125274616891862;0.0;0.02484229978515655;0.052806667514375634;0.0014294139151603217;0.14580994693427413;0.08092314779189906;0.006685447992154674;0.02002315149565766;0.1253021127555931;0.04223386940578314;0.02829222354522999;0.04452132365752035;0.0405195205916779;0.1273708136825208;0.06313574763540157;0.2665468168631532;0.012730724561406477;0.022666637614801293;0.03320914803199679;0.1352350090215216;0.012156980901523584;0.012598154151481139;0.18998268489057998;0.14320261542045143;0.0054309981120376745;0.0059186728340619235;0.003835459229526803;0.010117360729539141;0.0;0.16224234922097308;0.18094706992636658;0.025368601914802242;0.037885591498091266;0.037310915268791885;0.05408471979388179;0.0509998450938838;0.0015246196409804172;0.043163309738265807;0.011637810556546084;0.051318675925946376;0.011151980258924159;0.007156972354856214;0.057884009429170394;0.06642054246556993;0.0006901553484974342;0.3984153057650181;0.011842829080316274;0.00962929009251707;0.007844401691848918;0.0076041392482147085;0.009189144622521241;0.018329112919685316;0.009905854063039085;0.009163740864370502;0.01301242283046855;0.008795313883931915;0.022224873519722754;0.3435109925199456;0.0013972151247667866;0.06923433096756183;0.03370644053714071;0.0026066117062337694;0.02901185193395903;0.024433590643645225;0.07479790572200691;0.1947086605136533;0.043403027664005805;0.014481471225704883;0.010233869630388491;0.05271157860351927;0.0408627755729583;0.0031984601826148553;0.07105825978969557;0.29506485417879313;0.07035858692688482;0.0012162773070307712;0.009097062241211649;0.002409685721331024;0.04275424314011575;0.056978937515089104;0.04173743084817923;0.005998109290072138;0.004751254705379208;0.004861387789806109;0.004934029149397709;0.01663967772917468;0.012906248005195116;0.006911631809626544;0.007760970031040212;0.009545209669655443;0.046125193164656776;0.017618430980633936;0.0072986295474864946;0.02939745413076119;0.04238746341584446;0.02685806868439231;0.02826241004189425;0.0788864361137172;0.0033859358638549785;0.05750837643823952;0.022437134171263064;0.039998602647268094;0.016949907599827795;0.017264860572482155;0.017340734343363896;0.008425338935358816;0.017689579794132333;0.04636496829954066;0.0012938166160691626;0.01591590949909903;0.015119973651459617;0.010611472762133886;0.0025396747539980285;0.00018091004630811349;0.0006861942487049844;0.018168177675752132;0.003499248997208152;0.03961321090066391;0.009966330788688898;0.1751221176157647;0.1384005738741535;0.12288691038121642;0.023880911441924304;0.008593596712532443;0.013335139613547637;0.13604767001287152;0.013433670041778308;0.010693060433568668;0.040774930716942666;0.01703072126331547;0.0;0.0025643191433099427;0.1220500362252268;0.11038058587354674;0.04546013438787678;0.00017265625201581683;0.07139143328191203;0.025929508024512084;0.004389642985655443;0.0018531015315605061;0.003095421770181687;0.0070807042729627125;0.012911113416439218;0.006112611240901184;0.04479704789613313;0.6343001201040462;0.006930422700429859;0.024702970074187654;0.000784380838162121;0.006082393372335191;0.26791098878162567;0.03193301468742397;0.09486774388955023;0.038746192652823884;0.011279777832478995;0.05909149613469592;0.0;0.0004850504757766479;0.09025920788953752;0.0026987279139027414;0.04429534239996064;0.03319549490577892;0.3148576752252025;0.03788415877234227;0.0038238652451104286;0.0177047077391857;0.019692426330311905;0.20651748602712805;0.1401748766469298;0.0016508731777541523;0.024632564238919002;0.0060698223903939965;0.7335590467773758;0.009987923474056604;0.033645104958895194;0.228337828432651;0.003812805018405993;0.02738180853951445;0.03967579325445352;0.009021577239178583;0.023210048203766452;0.05052323223713572;0.12531203408280572;0.009593607255777589;0.02928028813384005;0.0013956713960511396;0.0017292784994029234;0.0091566211278527;0.012055953657861178;0.016871848733949167;0.001663333321715939;0.09764433001765002;0.020881200341227316;0.028551149064156706;0.07089484836980023;0.014660645392699205;0.009008119136274317;0.003918668537633794;0.9141946607077167;0.9056767881988287;0.01856818061993321;0.01603469019920382;0.05684188458593322;0.023818880971228047;0.027119689987047176;0.04146638425838496;0.048880751157035364;0.07632226938271632;0.05530371163944201;0.009869728484400195;0.010169539056796736;0.06036821114533243;0.25084446792728043;0.04452472991719474;0.20188446075103123;0.034173081053126234;0.9321379770812164;1.0;0.10032335616136523;0.07678335739691482;0.016771263252287234;0.027188393998715216;0.05299590346217855;0.036168923400590074;0.05345513311839033;0.04729851975898393;0.0009190566431752014;0.01782210181651527;0.019054842967524233;0.2658365558230555;0.07250324288784761;0.08812804115470106;0.04551014179776361;0.012567024111922332;0.020667505829356694;0.062083658663410354;0.09298766014044517;0.07390044398485632;0.0720775597079632
+Tebuconazole;0.010229704342486183;0.46393097252561233;0.0002925318452431011;0.005541367060683041;0.0074785004198768806;0.015349924415305052;0.04377844760965455;0.001521091954055132;0.001552563102985551;0.004497130980251788;0.06713491629829174;0.01675564362061431;0.0018897427951634475;0.0014628055354875015;0.0026419364092748494;0.002133592426662032;0.318635092588142;0.39341035110075606;0.469209205637296;0.4118326535958527;0.024252027492834703;0.03557714025442222;0.027664625826863493;0.05001261419124588;0.00962801398251038;0.11973221317848828;0.02268684609648036;0.1492828139974663;0.0695876019688739;0.12615134408697184;0.049303877927966505;0.01486627034872345;0.09156048400856658;0.031340905157693374;0.040423898469650325;0.017120202650802656;0.12072613508788527;0.015109773260987731;0.21462411926868089;0.001770675580711574;0.018484360847852908;0.008877882958906201;0.020255160592084275;0.0002690566902922048;0.016023586945074133;0.020717646390282757;0.026419163052323145;0.023797456317435503;0.022014134825282677;0.01055744007302748;0.000489997153565542;0.06687050225725968;0.050499546220680105;0.05188340974941623;0.01343676042150983;0.009955299343020379;0.017119672908932508;0.014169513191536216;0.006433057558676912;0.043305932206340346;0.015917383331179476;0.009314531218895743;0.008609103787557445;0.008268202307144706;0.01826047453401619;0.013486903053663997;0.014312152646045417;0.007306663511054827;0.007944135556679041;0.007749464515335028;0.00558026936939658;0.013063620655434267;0.04013315507704824;0.04857633996482537;0.11029111888043495;0.061701099295581055;0.05072971589043875;0.046495193465015267;0.05695241832905277;0.17823812055009067;0.05758588709041099;0.05386708424874265;0.07024153791767516;0.03646284416169554;0.028056977649397585;0.016488754365297013;0.4842692086068548;0.5278824769098275;0.05516125388064289;0.013285119890925179;0.03686633024905109;0.05829746151281191;0.22893485461553612;0.10438099524806752;0.12181285055575942;0.03932557982969133;0.05187112275210043;0.11153204028660367;0.20249321744904383;0.1944846275047518;0.18811525394143797;0.15589339512021302;0.18297871826555323;0.10420650329220858;0.15578893157608342;0.006252115876181165;0.006360570265136289;0.0047146577939483365;0.0020690835324971278;0.00035807042467320545;0.0025341087117821126;0.0023838721435801204;0.005851971391163647;0.008921216439170015;0.007691569437668537;0.009778883447259341;0.014666934020634414;0.01699426844248011;0.010363702359919805;0.12357134654719024;0.008369793990168182;0.0061615990118958795;0.004685688767148245;0.024539754245864253;0.06616521154557069;0.013614256136733068;0.008881771624242238;0.007700119334099013;0.027294980489251133;0.010609203074623123;0.03549728930702215;0.08723285339456088;0.023846740960163305;0.12147942726779934;0.04310891080152519;0.06275516794375012;0.03387282119152489;0.06497911566221876;0.0976534359357799;0.08831953550513597;0.25732308906613216;0.09080809810909066;0.21660226528154075;0.023928088027371335;0.058043392641555405;0.05207444066252194;0.07826455136393887;0.018454073406711003;0.27544530902650216;0.19294176122097198;0.0315362147481223;0.2996385147207538;0.01971218929428324;0.04197128706532584;0.05174663957312925;0.10184939413461723;0.025894923829223156;0.023366585158281286;0.04372775963246096;0.17896530038658948;0.09538145914714602;0.057395961132517236;0.03759296105467555;0.026380624274469137;0.030990820808313557;0.030631279891027735;0.056011547765849636;0.006179592283353908;0.008977887794607724;0.10623278963931253;0.06068496652597031;0.0660287960060807;0.01201454464512084;0.03983415427591916;0.04530890811211998;0.008480351958242373;0.070497752610438;0.03088890339338421;0.07147686353414053;0.027306131267277472;0.027015132852687355;0.2001381045738855;0.07105042996520658;0.02560849573903641;0.4897297538592081;0.20210205716760768;0.41420957414196213;0.027460022861791188;0.019374986452278697;0.010807551500543428;0.052798206595791534;0.003038070048540415;0.23789677070329446;0.0441485471284042;0.03419343503990658;0.035178178898231764;0.03037460669556496;0.053365728623513915;0.091653099931985;0.05235758491305147;0.07852590469813475;0.048429914969016954;0.055371519092079595;0.09176542752890639;0.05714454759776301;0.010094176632778382;0.11447573696681214;0.2410089928261752;0.006694052444512421;0.03259454838991482;0.06176660378379354;0.02701468840244425;0.08123886709336883;0.46328521353953345;0.048273614014957854;0.05425164491501949;0.41110545602655696;0.1939402136024453;0.018845408159714416;0.12410907794197452;0.02408834334384391;0.045877877784337606;0.005907430998290815;0.02622421593223391;0.020637596218557708;0.018391064914227928;0.013645225814916439;0.013988756679079343;0.010356731358274543;0.02148082918793413;0.018200842669021448;0.019496723605440854;0.03079423619350711;0.021791485912021322;0.015440153814780228;0.01092876011474691;0.03754417251423568;0.1254874882404465;0.048688886436722666;0.010817946133740267;0.09586162298583656;0.09571778594565013;0.03279150784547328;0.17853088713660356;0.019427798808791755;0.017736114349503868;0.19782649885413936;0.2588713681877046;0.26264059935084183;0.38660150045872016;0.06428912739445515;0.06444847801883458;0.12964602624554636;0.1733836704079914;0.0719346880209549;0.012273952543314016;0.09943847109478703;0.054068644136922646;0.057772657162161636;0.02626346559085814;0.005567719934907527;0.11987982482897662;0.00548936547203863;0.011418888200802172;0.23421385647501844;0.033214556986126575;0.42564153995262993;0.030854707135598437;0.18607781163106393;0.033834828538378305;0.033837683292820254;0.037807621842323474;0.16587092735880923;0.04522388890644182;0.17866282689876778;0.20895991780030837;0.04314333662100516;0.010775131939522042;0.054332474326716666;0.04677669464780167;0.03557335251954411;0.07096254067151456;0.005552938185600839;0.08829511008557205;0.04079333444372885;0.0210390552744258;0.016918602222463847;0.029814090379176865;0.024233875239150424;0.0107784213343217;0.0162132820929543;0.005903490938833705;0.07479063899916553;0.05978646999197114;0.19247706440972104;0.008109798703121158;0.030717627036834987;0.07445750236303422;0.2032150484553929;0.058118740866764496;0.04036648096880777;0.01886148015357587;0.14538975983508887;0.5848632899308668;0.0046068603815980205;0.03507633693614126;0.010987292649889154;0.10765553439967804;0.048924395981716766;0.2119021136164626;0.02352478526011296;0.041387363600472286;0.001441320623317588;0.029127985353576497;0.06901140204412368;0.011927913089683965;0.07879766571592695;0.042946400496953765;0.035751677828244864;0.017255394522370047;0.03872364267160908;0.09772438955709088;0.11482844249000368;0.0022399984333424357;0.07721135054650526;0.10288379138939313;0.02802070825848968;0.09720307577436475;0.024993767503944747;0.03806798661636104;0.03634146796436373;0.07253128253383022;0.01859187074960739;0.018258909604036023;0.034013214009602055;0.039636832775986904;0.034265831357732104;0.02547711289814019;0.005810687452878172;0.02287993050829629;0.04786594561915402;0.02113192648688698;0.020220213743164926;0.014695720491679639;0.017782631023564446;0.5588385001009419;0.5808590511689726;0.23384673639009354;0.2129104419711251;0.07517880376424342;0.026357467509345853;0.010618753202850242;0.2035803135460216;0.1495862997449128;0.09220693316423058;0.11836980267202753;0.003431922885734824;0.0329175652924314;0.045774749380663775;0.11058763748689417;0.07536922499390743;0.49717399231133325;0.18082097216548174;0.06427915684082869;0.10032335616136523;1.0;0.02342696346297432;0.08155496475711324;0.08913262598838731;0.7025856676695925;0.13347516261364714;0.1412937467820953;0.6339490529533837;0.01858321750128442;0.04813350168305999;0.05254408943675979;0.07717704438018021;0.039384216955064826;0.09003388153634748;0.10798510384356078;0.010178875573709896;0.006781184307970328;0.08764586737466713;0.058961436443426135;0.24809254548539617;0.2322377084263006
+Tetraconazole;0.00106612133469115;0.0026526210182739565;0.0;0.005076967724573336;0.0049756945921257175;0.01808815278211775;0.007872752377094854;0.002139313140934293;0.0024120294289225793;0.002030227937842685;0.017747788854342895;0.002065239945684383;0.0034680602925869415;0.0002098710226017933;0.0005565428164268655;0.000670240124819901;0.0006318339859475258;0.0019579174742529563;0.002612529933162984;0.0019352297821058164;0.007891098801638173;0.011223900867989727;0.013959041903749799;0.004364251223949741;0.004887557813671873;0.01192443388979551;0.0015818298569585428;0.035366313711029614;0.003709758261916405;0.006507746031596676;0.0014802960000983943;0.009315374704991693;0.010094201541633825;0.009673986932568416;0.02997681410990143;0.0010334427288709507;0.019676879955990347;0.0020931215677977098;0.00046451805965052966;0.01985572780912706;0.016190277059649313;0.02970815661798993;0.013442466863609878;0.0003493022389005493;0.015842742499828488;0.013747347871683819;0.015169222391740287;0.013280489114381365;0.015358755155315285;0.0014368539714919666;0.0007679625616314233;0.004878762469685729;0.0048877794229771915;0.009257230150021818;0.003734933167768671;0.028487092249430798;0.03356921369089491;0.023757411952760946;0.011123244318203608;0.013306346107623582;0.015112714938609158;0.015286833065186248;0.014060522546465714;0.012505474683347553;0.0356623840464037;0.026427990371301228;0.023601506186121602;0.010558474409790313;0.013300111691490417;0.011092766601581212;0.008548881319619438;0.012907521115673067;0.002540028548687129;0.0024948587129994056;0.007175034746091954;0.00690653733866216;0.0018831691737812653;0.0019358473456564046;0.0009527195636698301;0.009495536504879918;0.012774515864681146;0.011244597634597637;0.005208268838772511;0.00543195553751607;0.014373908861529129;0.010754439305219651;0.024180961390889728;0.024876609249723212;0.025977669502106296;0.024295773274260492;0.012472745307812675;0.009889684449290906;0.03228405885344665;0.01557209909632089;0.016617351798295828;0.012430912319901649;0.011975233337860474;0.014349294567350093;0.012788598223728777;0.010490002025423275;0.01642914970096256;0.018262186375152444;0.02004748929739423;0.022848314495707664;0.020587525919990763;0.001968098296207249;0.0019321705895263869;0.00043801614594627747;0.01060395307618328;0.004544875696443892;0.003842345432154759;0.001975169286843361;0.013419286771124275;0.0054983167551370515;0.0012009154260863907;0.0011020729413488098;0.0010443122203297485;0.004478151710315626;0.0042015588641338706;0.006385360956649166;0.002416694116100867;0.0032320348012703742;0.0016402301318358388;0.009758893591337806;0.01224692880246087;0.005286430503472587;0.0069069165588780505;0.01806491422129319;0.016015510358763446;0.015885818330977262;0.016992657817127225;0.018102781684280204;0.0014462692659521937;0.016896265100201684;0.0043667847316602336;0.017454638368027825;0.004049707573287244;0.014967656884644394;0.01396663315708865;0.014268456212886341;0.0232034786739917;0.01220957187525403;0.00788716690408023;0.0014226292417816372;0.007693507134398361;0.001837449226299252;0.006970039268422573;0.000432357450548626;0.002015814696355243;0.010476994648379326;0.007565997449109989;0.00036017674477615414;0.011847314692710977;0.006704296820912249;0.018151665340730296;0.00579553876741959;0.003157113050391189;0.002529373347556411;0.002520414710103222;0.003469482328358772;0.005144833697287314;0.016570945549514937;0.01548561541333397;0.011215645243577063;0.009057023078287244;0.012751999259348152;0.031745382750644466;0.0042293287426099085;0.006723560173654076;0.039076868798079714;0.03101768132339317;0.004478565747206555;0.002736060061630544;0.0061563530237985714;0.00807892190670192;0.0033317069363265383;0.02005215863067257;0.054532871358601666;0.005338156651103651;0.0021903974974410924;0.001403160824895135;0.0018979590646020757;0.02772638691342463;0.0010520529626206019;0.028689474297238882;0.027526940989545678;0.0362780321102098;0.016697848146273737;0.004436985891639782;0.005083997472023162;0.008871903660152952;0.003095629448803037;0.04449895910044039;0.007694748944701266;0.024910778415295605;0.006735416686548271;0.006985511190016375;0.008835019752833356;0.00871134770269146;0.007087990752815169;0.011437952408431713;0.007110372975820909;0.009374706579549431;0.0020367294073553657;0.04515903419728958;0.00043267353049754125;0.020215569314207003;0.0317674602910208;0.0009232080752287186;0.00400857914676782;0.017172280067377546;0.0027639822244243805;0.0292895620420242;0.024203646629452347;0.002339330623733996;0.0025745698402324328;0.02170043190956067;0.018268282009295436;0.006604419248091959;0.011774163992862078;0.04341489337239544;0.012947520085652203;0.0027144894032737872;0.01920843599791918;0.013369621878420416;0.03136433837267987;0.0280878410691572;0.01522107094260571;0.009723090712883287;0.015733945512916223;0.013798561127144159;0.015375709240255058;0.029378617887001565;0.021560114603161203;0.008135973734239639;0.010178907429431724;0.004280960947359954;0.009756283969604302;0.0054172952768994104;0.010035851454313377;0.010974351283807464;0.011886826986323425;0.04628479102268796;0.06762540379213801;0.05808988217312967;0.008438455192601689;0.000612953258152012;0.0020117192572443724;0.008851396887481365;0.018516570150246704;0.003835960221122719;0.003806515616640805;0.004928320719827749;0.02536056240012722;0.009266989167093944;0.0015474065895174653;0.020702691976922236;0.06774097902467295;0.002283900358579125;0.0024154481185182813;0.0014897664701786371;0.019888264243022428;0.0027237537721608546;0.0006262247950310437;0.01174015343083531;0.02061432122724142;0.03890468538662495;0.03619821792533224;0.014154949826219735;0.005121248704842005;0.0018138560807524416;0.013726384468069432;0.016231452767427625;0.017551509189509963;0.0123498836304604;0.009790538211362896;0.0;0.003538411434418785;0.004913237575419759;0.01754584960869646;0.012707509983361672;0.04855769431469667;0.0014435669048830215;0.0198447406963966;0.007530492065929773;0.0049533374782192675;0.0034481213290233946;0.004293786264016145;0.0004217176716967222;0.0004897668198861141;0.003575535774018429;0.0025164576653384186;0.06741593182929274;0.0028129118262777914;0.006091752842497535;0.0006449196869461697;0.0003867786767233559;0.009293346494995665;0.031249161031728624;0.00627036678632905;0.08677978100663147;0.015967761681139076;0.009373554372881423;0.022093275441252083;0.00037034676159859904;0.08279068528256185;0.007050463031496843;0.010157867953995708;0.014109829106799561;0.03360672299981625;0.005094875744927665;0.0012020497889486926;0.0;0.00018878693217002732;0.0004350064685539358;0.08516663046205063;0.0018577671379209724;0.010854368369529892;0.02340204026744924;0.09224899652322491;0.017211279816700318;0.010048600118445248;0.008008075286906344;0.00607719824170982;0.05661963934434245;0.0027382279950062386;0.0039875171253770485;0.05747363141231929;0.028928261150493472;0.014903929848795011;0.012225032546329614;0.007357499195294744;0.019837309527850865;0.009470235476337682;0.0035415412127694722;0.00897206598477964;0.023365009286339528;0.0011576090940165127;0.01570980516415679;0.0322700667092253;0.014305243809341643;0.016082258373280884;0.027187235235800772;0.015934245439331873;0.016445895352569354;0.0659805585976602;0.06803987965161758;0.016862282629630684;0.015664752117759785;0.07838932259151286;0.01846985143146116;0.019389604483363486;0.021578325533053135;0.023941309029772772;0.004030890084720792;0.018941094811643;0.003892283671735172;0.009322460803975332;0.021505141489132146;0.05628448817564927;0.0204795794076182;0.029460048633321682;0.0895935965218088;0.07297661774987976;0.07678335739691482;0.02342696346297432;1.0;0.005374958969350223;0.008410315512247269;0.036623504262192616;0.034391930600138565;0.021704553751490847;0.03745179673077491;0.008436169608721126;0.0008528197743035868;0.0012373427424165202;0.03927410064920669;0.005834393982333148;0.01279681407153618;0.0059207536161693655;0.0016285838350148841;0.006164193060522573;0.004910617644258945;0.003819019051848381;0.01121831532202856;0.009182131128330325
+Triadimenol_isomer1;0.03354088539068975;0.02122565683716042;0.001066055763426339;0.00821050156060997;0.008144487386990305;0.015226709606074942;0.026093536076057116;0.007608890166011939;0.008016852750604677;0.011756582198465131;0.0028270607167509166;0.003415855512190926;0.0008655373821274842;0.060150311392631176;0.03128435087515313;0.042194521289658296;0.026077730078090666;0.022834397674865656;0.025329176376843746;0.02604614842891692;0.002974303994964086;0.0036257043980721837;0.010773985348553424;0.017283912292002532;0.006879336075355998;0.03535069233135711;0.018154745301204568;0.010991849718904424;0.03549652499850082;0.054459883781897034;0.009983338332579667;0.022927247098591806;0.041423058053435574;0.0030278126889854073;0.09582012789806627;0.1158164566373844;0.283648713877848;0.011704044091916223;0.0012037294078029407;0.010195961303658772;0.012701625634916947;0.017707239952550143;0.03284506254094488;0.005022901771551034;0.04385906855019399;0.042153517189378015;0.048417824867747955;0.04490202585856511;0.04298242127666933;0.0020808692745106347;0.006880550744611702;0.0066965018983168355;0.018018542218896483;0.005545390971788346;0.008604778019139073;0.016196402943336033;0.037603103793482674;0.025956455780492615;0.006769902947011774;0.030981438125027985;0.010790202064930803;0.02769871161759739;0.020417182412958878;0.02084625467207687;0.037536327419034274;0.028047391897663;0.028707880927070793;0.007505167777391194;0.007411425375245634;0.008188582932765238;0.0063295856977565014;0.01022251786518448;0.06490582024146146;0.040645651657141776;0.34211264152311305;0.3343332878432501;0.013435668590839217;0.005858811201670336;0.019696582558849245;0.04701963756135319;0.12328957542230172;0.1238705437681563;0.04304843809139766;0.04048178313411957;0.031097299517809037;0.02499264855344259;0.06234411103018462;0.063177478514399;0.04176289934320469;0.029543709966407757;0.053663927339777116;0.038233968265499;0.06633636058848284;0.13257483033923165;0.1472827114109861;0.038799814768384906;0.03604479886563077;0.0643203118965946;0.0880314417361545;0.10069886837729819;0.11461896779931642;0.02760703215801607;0.062212195530890656;0.013733609481512688;0.06596351560975836;0.011168074306498453;0.013540339556413579;0.01387738721894323;0.014449971182523516;0.035376608794231566;0.011983547008775233;0.013271476379147133;0.021588796948936152;0.01376387154428638;0.010932469617097523;0.01820889620521123;0.009143435233362796;0.03708290369924128;0.02241961496801799;0.03235699578816412;0.020726156649920852;0.012165206165778975;0.011874101228066198;0.025712227809380046;0.0951677881640016;0.007008436983023965;0.005629253834098452;0.007014001298981848;0.040176165907433746;0.010366597393911029;0.013744283289903328;0.10271629202962855;0.013444844510790357;0.03164714666819154;0.0055852026636538;0.11123645120805407;0.06832330546720726;0.1641655575368312;0.013333801022749987;0.014190191481117862;0.006938510073655581;0.017696680714875318;0.006340651013667481;0.01738359820296617;0.008682907262407676;0.02571033348664794;0.011101324562323218;0.0012007580661483332;0.011131853538431675;0.03691002465939717;0.0004607712195049109;0.013327144457923488;0.013431162707530137;0.009280834496627545;0.0088040213384354;0.022402220127040032;0.06233489804167851;0.04980011552243004;0.051123188072266866;0.10268499690560184;0.0899298563946467;0.05350432434146435;0.037508802728380704;0.05558215555830621;0.11007143239754916;0.10398075011230191;0.07904078498501182;0.09107032928410136;0.09423387069846163;0.07029662044181868;0.07314234008017877;0.02224169867702829;0.04331882615102289;0.018032905582330644;0.010070393684315148;0.0013357554618221592;0.0766863564833112;0.06694300736612416;0.04421339037899539;0.04090216607615384;0.04337293926852553;0.027288361773737124;0.004571204035677661;0.007389296359748989;0.07079183171737786;0.03979023628055624;0.05270812725761099;0.10380372156170438;0.06737625996090497;0.033807967857529125;0.038516821453083175;0.007047865039508487;0.058711350507481795;0.26962202880298314;0.07567587663756725;0.0332610536436508;0.033525561638162754;0.08615471888805029;0.11773772469171671;0.09657131158663249;0.08015480740490032;0.08062521644110701;0.08018124028109042;0.028247979729782508;0.05568636901782251;0.017498798184490575;0.010678253083587051;0.062005214245746475;0.008107965808281182;0.0554918446292942;0.031070749505031078;0.04337282152302681;0.025028960765538524;0.0602605863716534;0.035995141755683746;0.025306165143312458;0.08474770715100535;0.030832868814751484;0.024840186379144896;0.018423060484297447;0.006531954790592034;0.009102512390195818;0.011348761639995883;0.012521815445468988;0.014403264727688601;0.036297889359141;0.02484998987135023;0.042127666633396434;0.03199788649245679;0.02217318499896685;0.012481308379637098;0.012583592247627956;0.05713766189732738;0.04126733452432233;0.00355910659107852;0.009161189685059704;0.011875879520661067;0.037813343391615566;0.014402922867071387;0.008862598945732379;0.07437259604927461;0.02576245548093911;0.03627193007185195;0.17460782022838148;0.029408147888374148;0.00196263042434365;0.09501688962698208;0.04938796902694168;0.04896358220360912;0.040190962511601744;0.005657277962090526;0.0055543255946198565;0.1015134407166112;0.007289642973376691;0.0645156892406152;0.1275454747280473;0.002402405743617876;0.0026722389262889153;0.4278393726113546;0.010635426309793408;0.008489246809939888;0.0007919932343480698;0.011795543143566385;0.0023485916143672443;0.037241142137348617;0.0007842274201297338;0.12428376402027125;0.022435493672701593;0.16156138232070735;0.022531131017541544;0.0075916569117588486;0.012589392367058362;0.1534984995237666;0.02104749766311891;0.03470978906907701;0.2262627480084021;0.04286469890949117;0.009236802189979047;0.003347396033004123;0.025483896160421585;0.1843131679900611;0.05472518040148073;0.008404061028453237;0.0452067566753949;0.019926467616284083;0.002070175097783755;0.01876091552700561;0.19219968049661612;0.010523239106399834;0.0038184602923613613;0.028690680818356316;0.026004818867860355;0.004169277602311403;0.07999833450268652;0.024253028451032548;0.0030323801147547676;0.0026673686739728765;0.07129349537467286;0.10549351667072038;0.14104205498243164;0.02908855233762166;0.0041262198863304825;0.42915737354408817;0.0014443664402724319;0.0011416178917428626;0.016013052483364057;0.03170191312875029;0.21823293851697684;0.036385044924326274;0.018973092458817772;0.13148089539551142;0.02070453989912852;0.0022412723738351294;0.037768658373371795;0.04558856670817642;0.0423307608984839;0.05761441108687032;0.15681121930767716;0.02812706732768;0.021514590537200447;0.025304601252753637;0.010481445660519612;0.04710225149634461;0.011862490127286558;0.10622724103914608;0.020417309625765403;0.004772821649451363;0.033959945964417024;0.002560565605765428;0.021845227337639623;0.028360318078378046;0.01635192457753901;0.009420538326959764;0.009601002140999588;0.01408361138106976;0.014644430155988921;0.058959125891107925;0.013073810196087679;0.018000666100951107;0.002463685570143779;0.030792471189824415;0.11780642277828723;0.03592089828987753;0.12689680745717108;0.17257800161488288;0.010941373530115874;0.00581991141738666;0.0455243993114145;0.05844633758971536;0.0861948516677313;0.006266562990086151;0.0033609002432288078;0.020365159246870265;0.17176368480301338;0.2486808223394042;0.08878095417883863;0.0008724856681004506;0.023617267650156;0.027752534935566026;0.036811061013231505;0.08185799656262623;0.12206823009484477;0.01395987853775739;0.08599188177211943;0.016771263252287234;0.08155496475711324;0.005374958969350223;1.0;0.9822373575589145;0.11320904699082504;0.04061392219700087;0.0776974053209907;0.1291821265592702;0.03791993211159854;0.004760476577843216;0.0085543277860691;0.01861564567618086;0.0656269526471877;0.06943772098151524;0.04732304982722986;0.010512452143869403;0.0017444176773318899;0.08825730246532489;0.05067718250168001;0.08573729719399652;0.08725499132616112
+Triadimenol_isomer2;0.0355558715499405;0.018831996979758424;0.0030919048385061204;0.015221738663351837;0.015742042416809775;0.02374818951993956;0.024790000282632625;0.005100453322289029;0.0054330924400195855;0.010729627080177695;0.005877670337066505;0.00392406080669136;0.0007052582745120325;0.05868782027546543;0.02894037669993531;0.03913367623388389;0.02461809635135338;0.021448437355905455;0.022764560509525994;0.02488685418422852;0.005564533409835277;0.003855893342180125;0.01817417902772494;0.013600185325948606;0.01100102500272148;0.06818176420017194;0.03401842593078099;0.022147272184555828;0.05145530696453031;0.0645103301351164;0.03299480325310355;0.027322814009239426;0.03783605283229243;0.010703370162524244;0.022224617973805608;0.13674137439774622;0.3502562149899412;0.01583629698322992;0.004984904321428599;0.009093680268876306;0.013344821635641097;0.017357355777175343;0.037231238512622715;0.005410890352961526;0.10843449725879506;0.052065514428442525;0.05986312531151595;0.05503358624221364;0.055039588977879424;0.0022224513749553127;0.003948610976209879;0.01296126369088201;0.06301348549248602;0.011571159145790271;0.015014834047185103;0.015804604097298666;0.03788663665608275;0.026156532944981267;0.008045221225792923;0.009948899112537657;0.012297711351687892;0.029235060741306666;0.020978193712196638;0.020983285821114903;0.03802679094419478;0.028392184029764837;0.028601945576623575;0.009054329808896516;0.008591469681328082;0.009452110348487558;0.006850234203780414;0.01151496930048001;0.05414397860649502;0.0534919960073073;0.39580614596462577;0.3396735002353816;0.023498053428778573;0.017040309748477596;0.023381114481933387;0.0743214401313205;0.1351158135777903;0.13522794368437352;0.11439559894317464;0.05694530388908726;0.04489674286001297;0.03836452957215259;0.1051472715499775;0.11109587837859124;0.07248854919424647;0.03146289133329756;0.0741011628578652;0.04877563176447507;0.06952983626380338;0.13659854887012954;0.15389586921321624;0.052662516175056746;0.05195042026641827;0.07191412892799275;0.1041159507485861;0.1080068032931814;0.145473655326928;0.04382535291309645;0.07798120063242175;0.03380191189690129;0.19555456271571217;0.00724265533611209;0.006837004427956897;0.007869954244002636;0.0034891573822290727;0.004404575438931683;0.006316831791001724;0.0030741374167814806;0.007160222462843697;0.0061790814637479935;0.006981435581373277;0.00843375136221237;0.010718558840041094;0.03589026405025865;0.018788673857346963;0.0447211677209042;0.018935230932231994;0.012753273393672224;0.00695096819197195;0.032359238216128225;0.09086601045499017;0.013055975086311223;0.01226915716737409;0.018493649747325452;0.027629266739098508;0.025404191389359544;0.044536540263260406;0.1429010959628603;0.03962201743569386;0.04647244051397832;0.015350886808940662;0.12614101365674898;0.10731433642177987;0.20396170789257104;0.05130375638666765;0.048817962009695;0.026723455471280914;0.03706949742501875;0.03862482907849191;0.025473753754559344;0.038040426002930866;0.056355741003573594;0.048850446095416986;0.037213464342553945;0.03943229821560932;0.058609371532539166;0.01018402685980832;0.03364942458406782;0.03725961874027757;0.028679245153113923;0.03958978948159888;0.06343376939844335;0.06949544113703637;0.05461562499396905;0.06657005721401443;0.09782877345110076;0.1038230342903634;0.03562842258042998;0.11146844857294688;0.036794617082597444;0.026071050013962607;0.03632039481067527;0.05659861871085438;0.013248950609040295;0.016705563561423938;0.08641775119874576;0.05713578169882106;0.01765699731796806;0.010895824516117383;0.017698647902860347;0.015118111247147844;0.005992132135131467;0.07861739083882198;0.0734846273506637;0.048736394170205935;0.07578634526123074;0.06522319361995386;0.03902849400805215;0.028937523004369674;0.0336016808514982;0.07979830634989933;0.055192967702340764;0.05537838112697067;0.10668853643856241;0.06721765017198696;0.012284905633418728;0.037667453170535395;0.008542142352440874;0.07694942205904699;0.28980375509341355;0.0992913737220358;0.06462928258992787;0.06522231667195458;0.11472042479849817;0.14619454001654741;0.1314821202361015;0.10579839891232697;0.1172520993803374;0.11066919418044453;0.029756547467725995;0.056296598326667106;0.028548661305501613;0.04226618746682063;0.35593612120925106;0.024092213870726884;0.12191041144608841;0.026282453246470504;0.026728399642425658;0.047632210790520595;0.06555871627904046;0.04490513848956187;0.03176396678041253;0.044004885517436296;0.07668939863746058;0.02822703355032752;0.02563339184712916;0.0841865273332053;0.01408825273052193;0.014348030322381185;0.019227192792797342;0.02247234836473907;0.03545552173231064;0.022769633087448192;0.04227761408874206;0.029153308863421223;0.02401804787766001;0.013730900935678816;0.014281092188264314;0.056693278996036926;0.04043363152935341;0.005065677101093867;0.010384487117267024;0.008246396268189434;0.010945460050904535;0.009039308044853622;0.009926138048181534;0.21761012859902437;0.037959404576210484;0.044858806767974435;0.06987273486666165;0.04713488026484752;0.015150144782032943;0.047520303900361084;0.04374386329784019;0.052981704623729094;0.027960277122858843;0.02902858037726065;0.029541214660611177;0.08505545789592045;0.03685700204752482;0.06515682386797862;0.12884937963076767;0.01968907886739042;0.00985843845586328;0.4551619940757029;0.014143829833348423;0.023727423174947287;0.019774472368416895;0.016467918412048813;0.00774811347499165;0.07969018498971803;0.023177699095565527;0.09714660360093343;0.04169010062326592;0.1849834145991073;0.006193300895942831;0.015785708466357413;0.014449696052398129;0.16230925108477826;0.03036257739138968;0.056440108232387494;0.26344580660686673;0.08734655124134963;0.03198393131904402;0.020505359474687266;0.03506696152963246;0.05837286621439659;0.06671498404397364;0.023680591752307693;0.04222620022911459;0.01970965573727419;0.022472844489029142;0.024812776502639407;0.2030905081607584;0.052877363247839086;0.0336281651881002;0.01718665989046595;0.07313131986868497;0.01338615473932125;0.05952833758737892;0.09107855872709644;0.0022614110290849177;0.026235827924571683;0.15075742909082193;0.18142122249914602;0.06236100458276679;0.06485240926698879;0.06822561386840051;0.44699556634942544;0.0036824695111549095;0.0034066069335996116;0.018848704007697618;0.03328636082204352;0.1861361916744395;0.057826490877503155;0.014194791127357156;0.13464904409789152;0.03782389951740556;0.009568665004082738;0.025933092594505394;0.03256228548348846;0.05029985563402041;0.05078088624435906;0.16742465535166165;0.0589820167493297;0.035619806292299154;0.03480328852576719;0.04368034356725468;0.06620246196561805;0.013705900921814384;0.3543481750858961;0.03839751727377973;0.005392207747712236;0.06597511620639801;0.025776202927608936;0.013785219680854631;0.0503865778868264;0.03286244623008555;0.0267604805286926;0.0299887502294776;0.04178302242955585;0.05030983756395073;0.07218391167940547;0.028547029612499285;0.029447460344734215;0.010318016241456963;0.028634834038049298;0.04734471817096082;0.04094918481053741;0.12110913029888372;0.17196431804683154;0.032000204749767475;0.027467006087637927;0.21589617180516857;0.06005233250830646;0.052713081250703196;0.005861096667935079;0.005898622042430355;0.03202747444980401;0.03805179921751857;0.09716721745755182;0.15694512303349298;0.0015604472602226032;0.03962539067636968;0.016772434593839532;0.04174266201567894;0.09755154574723675;0.09840837287293021;0.029617867584587863;0.09247438142839623;0.027188393998715216;0.08913262598838731;0.008410315512247269;0.9822373575589145;1.0;0.31255806584603013;0.16004331714072437;0.12783934909339595;0.23282488080520036;0.037126500047605114;0.02164069582665055;0.03096052361267893;0.07056431766093484;0.06628637129242561;0.09405495278313013;0.23699455245809914;0.016684791655153543;0.008936707470623051;0.17468110686966132;0.12427724998402681;0.24497590920257784;0.23335439715459685
+Metconazole;0.028799837172818955;0.13790552124018116;0.022654635110473307;0.058019116463181745;0.05908584149455567;0.05720348819240739;0.10076224497871893;0.023676055634774925;0.023647470077613936;0.0333529060758563;0.06399726746833495;0.046985300544733245;0.047850005283096776;0.02140405978473374;0.022177122854722047;0.021084459023746623;0.054731890721800305;0.10251116454400096;0.13575323001117287;0.10839503316885361;0.046020743614081885;0.06439758007565685;0.058546074164445495;0.0639235329635894;0.038824691947218506;0.0837749413289843;0.0666920264802413;0.10524278531467757;0.07538455467902923;0.1973570586313077;0.07487710074241004;0.04343144915559905;0.1201260808889955;0.05023767102359571;0.08330083651302812;0.04902319493311153;0.24057598842885647;0.03212140042968325;0.06355723647808004;0.01699403380150716;0.03453579627249736;0.036074360614089224;0.05532663568310258;0.0007045815926721583;0.04709831822316231;0.10702953020346026;0.11440784340865293;0.11160963721199721;0.11079529865357388;0.02925152162340841;0.010833347117970826;0.0642756385833232;0.11272544575769346;0.09459889159745209;0.030270145513976388;0.03524991058068079;0.04055504144694338;0.03633238675105078;0.030164906927932042;0.014222071098250397;0.03947182571740469;0.033055962230381694;0.03272241610338315;0.031454621122407864;0.044617877654732685;0.036836380122916394;0.03640329999178795;0.030341605642451103;0.030918580734242508;0.030561697713491598;0.0199809157457139;0.03131126635714467;0.05891985652821996;0.09830019870192094;0.21995082096895163;0.14205665125347172;0.059040261659030015;0.06271084393025048;0.15467153792131516;0.30723900149088207;0.10646586569429638;0.09759254018250126;0.3858032127436661;0.10999304589570698;0.10034443956292576;0.0731355872895422;0.7523621088080131;0.807177911442592;0.14514292329489348;0.023027633217452985;0.1819640641849331;0.1452108737279285;0.22578828334915418;0.13788340931863066;0.16343829675315427;0.08595708230590063;0.0913030326529135;0.2184113852150999;0.3146165382992642;0.26338661075166153;0.30836272715576446;0.24869722143214448;0.2789637036676491;0.10051147239027054;0.22786935180843335;0.015757348748807975;0.018796611426426028;0.015511705138336464;0.0167681911970134;0.01579894985752858;0.016319623661575845;0.014913886324892562;0.0225336820476835;0.035364004935166345;0.0224160181334347;0.01699526715408972;0.022117626734417254;0.041515225140797765;0.03693321299563871;0.042871002680115226;0.018336587822755202;0.010484410975626812;0.017103277731875966;0.04954726996061951;0.10406100585908058;0.017465454371224987;0.018543204148496837;0.025382089244428672;0.034262092833194334;0.06427001496662;0.11335557462553233;0.2894505634107706;0.037439249048527176;0.1433841000507052;0.08164178854359702;0.26645401031368515;0.12598621327076795;0.22382161133940884;0.0840014808980622;0.08903256913023938;0.09188297715873853;0.14656790245542117;0.09910859959396691;0.0777279053512433;0.12928528063927558;0.0642950727855183;0.11965375894460414;0.052402238150029784;0.07103714153053611;0.2484787002790096;0.06346414946220155;0.06521035917495077;0.1052449314605204;0.045322852627335625;0.06239062075417916;0.13939436074129657;0.08575395832742945;0.07741300496089314;0.09771171144761447;0.11171054243648358;0.10187513615548273;0.06435858888775664;0.15598862124782362;0.09805691833384259;0.05846493707391818;0.03198944672615508;0.09136945732195044;0.01697431110413821;0.022578963046978102;0.16964596765754733;0.08178846469546669;0.05718921653683803;0.030625573032113492;0.09802419142007861;0.09298052671698853;0.03447569448170205;0.07689707348458116;0.02937228618261225;0.18891595310371717;0.07922608903465325;0.06978781718434632;0.09299179088104272;0.11611101309907755;0.07378789916667942;0.6373906018977374;0.23296929681516496;0.629551049569713;0.02738592106798512;0.06071055562262348;0.03340407938406117;0.10370829759329007;0.047188347076447076;0.29332693105748225;0.0775360914885999;0.07956989365892214;0.18762668502855745;0.190702573761522;0.19707514637147264;0.2725245202736372;0.2271639687538604;0.222855374598741;0.21814920748554692;0.21617059571089556;0.07501701329780833;0.1141612062729658;0.030974948295460818;0.09803947273069943;0.18120325357353043;0.028513488259519278;0.09893624724320249;0.04750246660406574;0.08428807577950605;0.07496394043453314;0.5971983555854977;0.05302376208667432;0.08484419608750349;0.5513385646478942;0.12076647435782129;0.021672896684202646;0.1909228850561288;0.09360219454385049;0.09880906248647381;0.010720548848485263;0.07599350926949695;0.05773910320620435;0.05676445516184065;0.04271681744309089;0.039474892728882056;0.032217676914992104;0.04084348840004616;0.03977161274347681;0.04028653371860021;0.05465182557309389;0.042201460274173;0.03497729139647239;0.03356838627035377;0.013500382070283954;0.019655080220379734;0.01844074745725224;0.033555633294577655;0.21738673060615207;0.07499520974832072;0.05925220974093347;0.06419316375558064;0.07330379859461547;0.12038331508922342;0.22171844039137564;0.2521991560246723;0.2797881134788976;0.5186459833926761;0.11110526649455135;0.11089890513184832;0.20329631273964974;0.2520550115981774;0.1067522721057115;0.08855205393965276;0.15017146217542376;0.04228142891045982;0.1006717058599686;0.03516504904909137;0.06353846051519044;0.04363553363348727;0.030552601114053033;0.014727776340696634;0.3089655435291424;0.026093780689228883;0.4220075831666283;0.0526615134426225;0.2597376399664288;0.05275980140259242;0.057031320963347586;0.09585396122441835;0.16295201324582678;0.08474868310697498;0.13560063307336062;0.17684755497803462;0.17478951152507338;0.030245656896302403;0.052162831330670255;0.03316219261174675;0.08322534270763675;0.1287349759434634;0.06368895528164874;0.06361045200954017;0.031357463540358343;0.0760288621354772;0.0371097686057901;0.14532863416792802;0.06548043947523557;0.022960512244310758;0.01784336636107649;0.10635359394707844;0.07784723964829095;0.05077366253632918;0.2414951308585677;0.010810906779931828;0.0743201412188776;0.21452370135291635;0.34970125600149166;0.09144133216356973;0.3756214611978802;0.12270209381660122;0.11020043978913928;0.790391208861039;0.007737460101241615;0.01671317219898229;0.058391903527990265;0.2619111959521654;0.19618605845637713;0.0510348603971938;0.06201393439080056;0.18873963713628944;0.0035706779731733695;0.012032347888951014;0.0665756481009436;0.09345122576107277;0.1415556844293015;0.09876453900492774;0.1323481974566969;0.08118051122881545;0.12389474315601816;0.10918651274925407;0.16329018464226056;0.04710863098472122;0.14235616489713007;0.04772983642831125;0.056033643195507035;0.13685820157805997;0.09435940807348646;0.05643302382307962;0.04792563434669389;0.07196866008805956;0.04958793029008612;0.052500779121345376;0.05625269750192248;0.06923874445124192;0.06619368774913827;0.06716424649176728;0.029303267119508623;0.036070396109470985;0.0604380787416465;0.0554341195323886;0.06013593181197687;0.05983454652272382;0.047170156492211485;0.04134342030227965;0.05017447258838372;0.32568716088476174;0.3199744916128978;0.10848505915151106;0.019140407877580434;0.020833289429087003;0.0811999270781558;0.27274838748956914;0.19292125044943229;0.17589195023279994;0.001763962701464809;0.07091138522085652;0.08170982606059592;0.19544912384185548;0.19623097507181939;0.5688276053206902;0.11291989965986;0.1516431016800711;0.05299590346217855;0.7025856676695925;0.036623504262192616;0.11320904699082504;0.31255806584603013;1.0;0.2016720347291128;0.4236651589847466;0.9295301481184837;0.048611854703875315;0.06655309879407798;0.08695988096152961;0.11259147604190693;0.08649583066554194;0.17889482748980542;0.15869050797189582;0.027887004052415083;0.08097678737705756;0.1648594275035101;0.15591917909208253;0.32551020923646284;0.26456927574996886
+Triflumizole;0.01835450287142101;0.12339289551635035;0.018179566976869368;0.054328392402734696;0.05369832531854282;0.03381396884670232;0.021604783206733726;0.061030645794247815;0.05780501665932459;0.00744766110051788;0.060239592337556346;0.03129307036996778;0.016089628127488768;0.02226948746562897;0.010373453136039896;0.017366801960859223;0.08521344279156166;0.11177197102560213;0.1304061229719539;0.1282895953083825;0.056627794613121056;0.08430069921251739;0.12702343685039663;0.4691314803545472;0.015860619078417855;0.035646515804328066;0.05368633052921402;0.03380589219861143;0.022509087833514033;0.055098175699700554;0.060844475601837485;0.024622411481766394;0.29407117963103896;0.02823768193663205;0.23540191083619896;0.059922145625781895;0.35545715553420576;0.014527869340402896;0.05251344290709924;0.045234106830203645;0.07926765924541936;0.12038538645109147;0.09836070660915677;0.0033841300692500857;0.1531035097580914;0.12008489484004042;0.1237291098081042;0.12513389849887863;0.11596127986510034;0.034085663694397285;0.04244049794996594;0.0755490150000919;0.14715109959929537;0.05182191728581829;0.026165484432258773;0.10176368749279231;0.08983426750050003;0.07809539333772227;0.13404359232140986;0.10942007375130852;0.0904110921427823;0.12816576310742117;0.1013935854530524;0.10768005486492443;0.0994712759177624;0.0745973539560649;0.07398505062791269;0.12858367496617149;0.15029375413446433;0.12990903387079117;0.0877863978487873;0.06028658349588189;0.03215632471339881;0.05212368268867865;0.09382483937925665;0.057711310121144097;0.054836761120041606;0.06247892739574568;0.06617575404047343;0.20234032121781448;0.05753126145454769;0.056609185695333325;0.12202307793752232;0.10344320661702014;0.15151414182290654;0.1398199492898822;0.11708491604366948;0.11050980143968296;0.16274840037583052;0.2233110119093224;0.13783083980094682;0.018004617489834684;0.10762556145014435;0.05242340025608017;0.05105379321024835;0.03075123325056043;0.04403383852471563;0.1595802710254782;0.13364145763107188;0.1194084255768651;0.17541156373630118;0.46797079053949786;0.43609023918260725;0.5207584302798821;0.5204316957907394;0.039910210776042336;0.1031204490921744;0.0864398867782393;0.059309675173633045;0.040452810754667126;0.02841505294549116;0.021806422376315405;0.041934790100017806;0.03915327068284407;0.04107406547335018;0.010029379602188198;0.004073836803115681;0.027354889438086734;0.01456039714371689;0.034954515296951795;0.026310843622270094;0.0028303945597840433;0.004258735564176695;0.019759662887274647;0.008736654314540574;0.03336994887740158;0.03474880422929;0.019154233644390294;0.029467021084581952;0.02741638198132696;0.07250065732869292;0.03656344898909193;0.00953919207974672;0.09392642205637826;0.010270300890716354;0.026571926403676505;0.06157616201639503;0.0521804921855485;0.06397490022321116;0.0777142347052071;0.02655496722273924;0.026757275932480225;0.025602658002024062;0.0014287871908969473;0.023458840202290627;0.0175750457853721;0.07471739603971232;0.2078294265948532;0.06335185137336201;0.05621114133559416;0.026494370149912;0.04761110093162566;0.07037546044930745;0.019689439232457744;0.08658879654001725;0.08392969446358207;0.03184383851786119;0.04283519946296593;0.0536227309354909;0.0169142986233124;0.04628587409697749;0.089018295304282;0.3048428820063051;0.021161920367782815;0.14735308914838366;0.10056837917839148;0.2831182371997589;0.024972471163437697;0.02991061022346034;0.21017758000989448;0.09208247009573105;0.04203988322992319;0.012698347091718524;0.04359883667148954;0.045467823984572865;0.017429522530987455;0.03496962641118316;0.05851557665823144;0.18977654512579392;0.0754673348635104;0.05458551130679224;0.03315355218721144;0.12422619185174172;0.07120718754744476;0.10658806115711374;0.17430033432183983;0.07014988772282517;0.008851464117287305;0.04601862607307543;0.1084932770207487;0.1395104262320963;0.018410651863002527;0.15045965573536313;0.050806120474492726;0.03909362181450741;0.00980131053307881;0.008925238680552991;0.030426569838116004;0.057266786525389836;0.02121429380178524;0.039187894057578006;0.023826510541749134;0.03129990349710532;0.027419298552735765;0.1954969846195446;0.0028802889600793168;0.054908064742453876;0.19751508744545684;0.03543217621840865;0.2510448749228248;0.12072749870119824;0.0703697817244159;0.11245950522178684;0.06578715369574885;0.14685609832985091;0.04259574108446187;0.08636898160562247;0.1808897180929919;0.01727564622887626;0.09279943350863032;0.08497092987646515;0.11828667716827902;0.008290132151204476;0.07504141086573354;0.06774852034017391;0.16646466006641492;0.09803645248636951;0.12098021253060585;0.0739247385306054;0.08248860446608282;0.08004312634687658;0.08506540210815343;0.08284585149070998;0.06254733674130189;0.06608625663703119;0.13471458000817876;0.028740346581138283;0.058195097664666275;0.04541475043148945;0.1311831683525574;0.28018794523447155;0.12158399438303347;0.11316825900537321;0.05610175233043573;0.12648737838144442;0.11264600993178937;0.06921578932909069;0.029756881222335805;0.08085605398746247;0.07373632314802663;0.0326813330394253;0.029287643833833917;0.032117049567434795;0.07871028472553683;0.06539550417084031;0.009972860975357836;0.054755492296843344;0.03872899813676207;0.044312971821609676;0.018157506737214623;0.010271803484535288;0.021923120753167095;0.052947888699910454;0.038557070270037144;0.06573099031755424;0.006349924890102189;0.1817489332306678;0.13801892539574498;0.11340029242931106;0.0393987377211411;0.5689028814095763;0.03794221540857479;0.1443302422515474;0.06660562708781541;0.12196488104636216;0.0698226755553325;0.012620900406541485;0.014863174937163562;0.02222389217860108;0.01701982457705899;0.09524619141815122;0.25771123542229507;0.010204841770123917;0.08491825087158279;0.09774166641340876;0.04553596440772041;0.1990092585155885;0.08702021244446516;0.0441368155165831;0.03719188252591875;0.05787386281773637;0.16300272952699843;0.010873778070270759;0.04755853543290102;0.20203602359342016;0.05178580231491592;0.025262166031729778;0.12303301247354088;0.39963400077167;0.19178576938926126;0.05137951956455612;0.05247586777183728;0.06959010359426326;0.06412848034778569;0.01357705482138167;0.019886285765532998;0.04796698763141557;0.29553639272016474;0.058730447774769955;0.04901237468103022;0.04673766908418548;0.14252211224575317;0.0016962752162068986;0.030432264765628426;0.14111974681372882;0.10658346082098277;0.08692992130347857;0.08313465847856309;0.07408491990686356;0.10760196103290097;0.08686291968810107;0.08980695167135484;0.1042268742070934;0.11486867256351725;0.2307402187050796;0.13620113311968987;0.060078874256177084;0.018374207980093024;0.029368077155442488;0.1042895337310119;0.07258486048281704;0.12168128114582938;0.02088297963953634;0.01970310243460596;0.4993847770438495;0.09124465468304759;0.057029226305543294;0.008878466768304406;0.048339425976900184;0.03758108174330456;0.09677996213318399;0.08387770663943027;0.12235022588116509;0.12998829108645113;0.09852445320437378;0.037032490811094894;0.053182291362002844;0.08736402678014402;0.10496127546524436;0.08376622337476304;0.4696483380245357;0.006903209382171209;0.06324112340179594;0.166757309111774;0.08154818895112709;0.14828780639835262;0.016017359052452343;0.19240489178429604;0.10769784364953919;0.3851047708482981;0.21380858102556802;0.10144935085743605;0.11847566199720908;0.07504322406173561;0.036168923400590074;0.13347516261364714;0.034391930600138565;0.04061392219700087;0.16004331714072437;0.2016720347291128;1.0;0.14455992800697873;0.13449253649459253;0.09239333782945262;0.09554276745210098;0.09786920554216665;0.11799533935242236;0.1306565616457659;0.17410803969877367;0.20522148920722885;0.03514978617205468;0.021171756942126866;0.18754761984197588;0.2468068554668102;0.1711473191996843;0.20593724958472245
+Triticonazole;0.016592083848225605;0.042372361758374555;0.006568630464210582;0.06158765180346786;0.05972471955346783;0.07012601820720481;0.08312679440151158;0.04532247314678242;0.03901809263891968;0.04922661429189572;0.22862521721988985;0.10373489483660372;0.11655642933766937;0.020857726655434925;0.005341292727963708;0.017429874859513396;0.0071616441037132645;0.026504736044259073;0.03935479695170414;0.028891191269396578;0.002625915840982511;0.004535302042371229;0.036713292389079194;0.00592481424079873;0.05037222793171002;0.03791343344250181;0.23910843123991293;0.07813350074989404;0.10186727510299519;0.10121761158030029;0.11035328763102212;0.014943222423419573;0.0336846969011981;0.04609190172942053;0.12375240339281317;0.03978443504643239;0.2426413603375401;0.01935910088847395;0.031726109486469256;0.0038905578327075156;0.006922786867314283;0.019027578100576734;0.06379231413178597;0.0005186850027233644;0.12930129260377377;0.03442495870196735;0.036492514316334594;0.03438356351867834;0.036821886990131406;0.0018420398202339695;0.0003449326280280687;0.01734137137271008;0.5343511446926602;0.5358631794484483;0.0121486188349884;0.016231246932911298;0.022320963178077014;0.018396211753349632;0.011542582994855015;0.012657420014049675;0.005411852529640477;0.06535162452758718;0.05643417279061241;0.05444033904786784;0.0242537591344392;0.019488133242658856;0.01963430472838832;0.010277733631901468;0.01256149266017797;0.011372844166388514;0.01101511117833887;0.004234950393210481;0.05415304472729827;0.055271629651004905;0.17028451906712397;0.1544831554004109;0.03471295621394112;0.038242183158770614;0.21261492390517792;0.2538090331807483;0.15811806138198686;0.13903968085026;0.18056698367208723;0.14968623343430223;0.19911156148026213;0.16978344449778499;0.203619337784633;0.19500045576611563;0.15618883029503725;0.006276367992510022;0.1991196023989557;0.10067912086840355;0.08797148465885787;0.15071777464182323;0.16551402272344265;0.051678339254136424;0.05202383743206132;0.22091017334759186;0.226939374221114;0.1917784698076764;0.23624934648028711;0.0756623987824993;0.09613283458615815;0.04255998759896267;0.10530999174632502;0.0006407176789939335;0.0038444691442496956;0.0002629548348654562;0.001128991594408624;0.0059733168359559306;0.0006707273259625359;0.0004952125527372286;0.0024235081395029803;0.004945887343517077;0.005077826473009016;0.0013247757006466898;0.0020615590877913364;0.00803618879071681;0.007558725215613808;0.016691815467024244;0.0030729341959017677;0.0033613701644952397;0.001202162551348789;0.018585044506523807;0.06401922913766317;0.024009336904282984;0.025387441121848292;0.014102140267364897;0.12112591391712522;0.014782698418308026;0.08635052057949127;0.23799424190297455;0.007518119528527693;0.17656100606489888;0.011334326055753149;0.21179347360908443;0.1552997695452499;0.3517242676539745;0.04864641401392876;0.04938384056944682;0.018546078160208174;0.09127980074613946;0.10355790441267737;0.02608003591466754;0.09544186916091038;0.052885154073331116;0.09334695822828087;0.023075982302274374;0.06103162182527294;0.09336460704947992;0.013369482415721133;0.031014600924190974;0.09791331593788642;0.05708098872817541;0.023724251079001012;0.12270123314523528;0.08567162245978159;0.08615955728980344;0.0861519710381181;0.1306794030515664;0.1400700799647226;0.03211407328471734;0.16325831627783283;0.013659910307183344;0.028419447416677974;0.0056452426356643935;0.03649359392022823;0.004876094011411686;0.006696343580598702;0.24729683352212464;0.049993882379003485;0.011426220732054466;0.039335103238756115;0.5603155820051257;0.5514889168882802;0.07098683125786542;0.03486244257522974;0.025082089585681;0.18867768662531398;0.06554524729958183;0.06058271203977203;0.045882292220453036;0.06347869113657002;0.026474298604230614;0.14393185899963137;0.10905815868095176;0.09532113394580892;0.008005375738669447;0.038674317044833754;0.03470496101027135;0.08171027337299334;0.06608394612123991;0.2225378978898608;0.04911989073593026;0.04461878997415273;0.13822358291979814;0.14179887600847885;0.124533979926042;0.1494090379760935;0.13665456120223066;0.1533681333920433;0.13574875317723892;0.13731498934473596;0.02879282493325573;0.08866043417513657;0.03419921862212385;0.06322486831477069;0.12533682209612404;0.007139854881639208;0.06179837539484929;0.01933363714637384;0.07179685575663378;0.10589569675910984;0.3156902514016366;0.02399499391038753;0.031567762548936076;0.09718362551131561;0.07090107039301106;0.0036617802846663516;0.050393122634169375;0.04412086285654728;0.04707268415317217;0.007223130877661214;0.0506257301440348;0.056705957608450194;0.03168679464678693;0.0178931951369382;0.062099733812832444;0.03827404205804935;0.006235111681369359;0.005310279996143841;0.004975725422597887;0.022490276008999405;0.016473142830234096;0.003518773014506696;0.0031885852994620934;0.0021166318431468717;0.007408203402509504;0.00850571706133496;0.0028635733618025006;0.23983269925931056;0.08518728559510802;0.08155031507009117;0.021812880275725574;0.09391003981958895;0.1293373490265091;0.05889197424031189;0.08322313311135027;0.14657585315433763;0.07223523283254253;0.09627842088562533;0.09522579338526523;0.03704825921436411;0.04907030047732714;0.5368680344684466;0.015493750318593872;0.057270835482666975;0.022847656693973983;0.05460941731791317;0.023625864109279675;0.07329725102328591;0.030262425529860575;0.010357265905343008;0.008303192983414798;0.04470625032425428;0.011145681960710157;0.11035961471324782;0.01426073626370398;0.09879044766000167;0.07767907580524924;0.019195833051298333;0.10740200518207205;0.16699538276426232;0.07036009267590929;0.09190999776883471;0.07879463286711548;0.07388142660861922;0.013846379858448159;0.1072317584599817;0.03454018057694999;0.09408635685807752;0.2447346152266297;0.07340609601470427;0.06383762385205514;0.018065515174061412;0.02068978916160638;0.022962517549109083;0.0468869760655884;0.009692682553127965;0.008544634691863827;0.006522491551051596;0.09671377206223909;0.0030846619856943302;0.03602716764165716;0.08781863548535121;0.030688724125952513;0.00923133248289255;0.07025684328129723;0.2403604812582995;0.05622224146533169;0.07481208924884059;0.06025003737479446;0.11828180411102515;0.13227428535652955;0.008073950112071559;0.02196059726641955;0.17392464213742637;0.141644731779606;0.08833434679174625;0.04002386704292094;0.06835490767870671;0.021961163906253686;0.013735301644854606;0.02795844834658062;0.02149124457031963;0.03500825465662209;0.11907200021123793;0.08009955575320621;0.054159309674301825;0.17309852271797094;0.0640862414020133;0.04716260253679685;0.1316850746797174;0.2553898607145618;0.061495946083491675;0.0930893335753309;0.00927443817027456;0.0705316997620797;0.02127673005711133;0.03871278367049928;0.0658289274272825;0.05596524593622847;0.0228535976277585;0.023399426235803;0.029757454893870088;0.09639369284518833;0.08776393328766659;0.03133835217906893;0.01280021298865464;0.024969844928116942;0.08441564757869803;0.0289017641840102;0.052869240416761616;0.07198802470268938;0.05348546716285549;0.04212833956510016;0.042330465543484165;0.12260767605135141;0.10856976499538139;0.036898952331890736;0.008968389718108679;0.015401411722097342;0.04631125952491036;0.13908583499416577;0.1997139165202945;0.11551783990077623;0.0038609839159146246;0.1050372315357084;0.11609901038195336;0.1603671436802679;0.39819316919464026;0.20864104897962876;0.03370342754180988;0.2072879537766951;0.05345513311839033;0.1412937467820953;0.021704553751490847;0.0776974053209907;0.12783934909339595;0.4236651589847466;0.14455992800697873;1.0;0.2967575658708426;0.0435149466866086;0.09066366829708687;0.10543929122810362;0.055168949557293026;0.11440667833270911;0.18594561812160335;0.13877232198536865;0.06319760999258567;0.04691224918386811;0.12107088718019321;0.21096311921457336;0.20045703464078965;0.16953436023943352
+Ipconazole;0.06226334382043616;0.10055343327516222;0.02059421963170935;0.06208396491718502;0.060147150900279535;0.10773219678564666;0.10097095828480447;0.028804408310775045;0.02888028124495984;0.03887470477624398;0.0655899939909859;0.02957590499218161;0.012894759493497958;0.019550392316874162;0.02351392176948034;0.022294763579392758;0.028205825448397344;0.07042961282700057;0.09728539539572591;0.0742159696015112;0.040476815902219715;0.053697865447365885;0.04799961419169721;0.05663221127885246;0.03034076834699321;0.13274631209277798;0.0563855356715743;0.09966299807327234;0.11764680662638964;0.1580079335794305;0.055991098545979855;0.050023736372992525;0.11424068268384782;0.05597591849788425;0.06590805311632526;0.05282646437780511;0.2719469374035102;0.0453624217290548;0.04502525130678313;0.026257706189731014;0.03285325869283956;0.034975585203422956;0.05884292645720337;0.00016338494905435958;0.055658123135876425;0.07871720387132382;0.08535255101414498;0.079279396049014;0.0826425041508583;0.02455681075481707;0.00833867823703488;0.0425688479174175;0.05966060100282499;0.049024430515127046;0.03647887572430332;0.03297615083205234;0.03674439646921643;0.03230941483482189;0.024413950369887784;0.013159561402057634;0.03290365886861277;0.029481768851872488;0.030436054921538024;0.02767111416198015;0.039475583862477674;0.032796449376570135;0.03282768619805908;0.024945903599034563;0.02589138681828509;0.0254311009358242;0.017019521613707463;0.027443235045673434;0.09704433771322732;0.11952738621418983;0.2586501213906509;0.17343567686998482;0.11246188522960598;0.11164861516227785;0.10015939117928764;0.30364539896895526;0.12277096942276047;0.11528927679213932;0.2081551842309873;0.15541393264237102;0.09387428112970853;0.07036550012791536;0.740364546675906;0.7816064518427578;0.12655885935379102;0.02139755515925527;0.13517556819650595;0.2674425483386916;0.24996375206293056;0.13901830986545388;0.17363878974954924;0.11736710618795057;0.11378051620629594;0.198593304804611;0.31102509502412234;0.30304184860173833;0.3334893032289565;0.2839509048321198;0.3165396073028182;0.13151460809088023;0.24897965428226845;0.02265477255490447;0.020159037848120797;0.01779485424738906;0.01853337999933482;0.019956416787584644;0.01945312548229492;0.019967942769197656;0.024732953010854018;0.028808819618381325;0.026350483149165;0.010253920373410884;0.014086894755005408;0.03762637511843197;0.03240303259057553;0.03740517674674272;0.018914022360878774;0.009866356283612557;0.014893731827734662;0.03812414659474944;0.1333813035510396;0.016018787388495298;0.016388621661297714;0.028089163562260586;0.0340461513672351;0.039591885534511526;0.07669259434765331;0.37720187643476005;0.03058808579968324;0.20732762509001332;0.07676396673111327;0.32731056497652894;0.11541718192594048;0.26877787061527686;0.13023326351219824;0.1358116419099249;0.08984307209985593;0.11604513177411695;0.09627325246974722;0.06920483293707383;0.12190302538145126;0.07986428660352833;0.09340409700889672;0.05577915173379558;0.10657248439317941;0.3102647936266681;0.05145158452135571;0.10403398918231915;0.06787900132709479;0.051881214258896365;0.06798689348327462;0.13719650574549533;0.10144488274402522;0.0851476978921417;0.09626168070923526;0.08215871243287934;0.10950747013117408;0.06639912472569959;0.1513608734942791;0.062156675206223706;0.06444944848638473;0.03854330342650872;0.09879714637816431;0.011871150420674676;0.016324301730509215;0.18568496510304214;0.09144397545014202;0.041113437410703564;0.028497341219351022;0.05103979181798456;0.04358397113483876;0.03969239111610902;0.07674310685364213;0.02757777511087226;0.15555727395385424;0.0618640914519096;0.051135769039971184;0.10761735561437703;0.11338325413705425;0.08147945988655092;0.6056275549029778;0.20954156200261095;0.5627109385098048;0.027590295515088924;0.0515176811149666;0.04424620241836101;0.1142488887777736;0.018995249336394935;0.30241112288440747;0.09794382329827415;0.08646592892008122;0.11249602712113463;0.11415778543361282;0.13940366095184553;0.21623417847081272;0.1496924286562519;0.1931842417855124;0.13695088619411488;0.1541640541960003;0.0701242811382848;0.10522005418461511;0.03142365018125203;0.14172156154974563;0.17334794902906212;0.018902287922160716;0.08070220645406259;0.04705189106668163;0.0708477609643059;0.08405504178278349;0.5916040556264655;0.060006809112780266;0.07692864514962539;0.53098597149333;0.09639667632599148;0.023908045025619978;0.14605004297479252;0.08494404360500327;0.07835013078048855;0.012980419407905413;0.09454945617253756;0.08374105766464673;0.06524656278557113;0.04233955759182327;0.035473503878968374;0.029629762321183868;0.035351590988885594;0.03386868650385145;0.03462143782557788;0.051391603501814466;0.039597953077010375;0.029899701861442588;0.02831691643404737;0.014057590910484523;0.022723546118193924;0.020183342768119037;0.02861598326920563;0.20219268442615698;0.09442310570835993;0.056979888258800085;0.1292550822060029;0.07074026746703109;0.08817905160955776;0.244615722794097;0.27800711354991403;0.3146562643683896;0.49723211711820337;0.1119755216409739;0.1124110752027973;0.18705929858728193;0.2705845642858409;0.13367399126053067;0.039679597812726564;0.13069475284719667;0.05974657876674787;0.08410945233185453;0.0693650255888408;0.05610951251107452;0.08221397023710252;0.031056079112972815;0.024541028911027798;0.29028882496856423;0.09091388122984047;0.40677664783932244;0.052463870383453376;0.2557971173305087;0.07380553077718897;0.06630817245533567;0.09968274449754633;0.16934815483430604;0.10652075504373232;0.11031535993499735;0.17390666424589565;0.0814077959086954;0.09627022845577007;0.10699292029625809;0.03261707180766694;0.08526714808397352;0.1816081252802562;0.05616580838003426;0.06237909544225709;0.06023794381912551;0.07916794722304929;0.04299196296036851;0.07138201576714928;0.05811756922994231;0.0308316121756207;0.0203109247733405;0.12846783681838603;0.048771938557684816;0.2451537120793714;0.13115773824301197;0.024105262924565284;0.02683770898670389;0.20735242121682057;0.35332669873219646;0.09343377883523091;0.23153807601806822;0.08669582860984115;0.1122147827923238;0.7344758310729241;0.0065589972359699055;0.02426000305552399;0.045407854743663635;0.2289393690659359;0.1653564510725433;0.04764335154626345;0.05421754678501275;0.1332093206492656;0.011479164757754018;0.01235444522141949;0.07053763756093799;0.06391374783021388;0.14172421694521922;0.11350454607280873;0.08629406995447492;0.05947247639694155;0.09835634819177173;0.14441538755907182;0.2136935251101981;0.025424115525592726;0.10971428225506603;0.10260009394725338;0.015916520204967408;0.14893999742737943;0.04780524191537745;0.06378703441857186;0.05338029088915349;0.06566296217956677;0.03849709720487581;0.04369130785097294;0.046817271258333085;0.08625056373477161;0.06875405216848718;0.07258681739023609;0.041044393536789237;0.03710161946098354;0.06041354444402691;0.06846377326938424;0.06742045567726011;0.04329570974192673;0.0460254973813739;0.09700624107931101;0.10139934161945235;0.34271387493070243;0.33254664634596487;0.13614184018513084;0.019821787520976516;0.02483780446232019;0.04742732704323709;0.24149814573654843;0.15685623311748842;0.17482959561938677;0.005186677047432121;0.10514612321809964;0.10228400804715837;0.23652355289463106;0.1418696755058182;0.5476632611223332;0.09687697342965178;0.2225875259472531;0.04729851975898393;0.6339490529533837;0.03745179673077491;0.1291821265592702;0.23282488080520036;0.9295301481184837;0.13449253649459253;0.2967575658708426;1.0;0.06545763910427761;0.08886492468849057;0.10280319994948638;0.08924527193001384;0.1137192654988013;0.16065580617929257;0.14198340903114023;0.044522784360473786;0.04143977132832007;0.14937818218103582;0.1590111957979284;0.2944579821611271;0.2915911520785385
+Fuberidazole;0.8773984832667132;0.8730176729067687;0.9204918342318529;0.9003272601265347;0.9074849346884077;0.9048622413390708;0.592050572849774;0.9043968705564063;0.90236101884216;0.9212177164128015;0.35405075060481467;0.8968952501132745;0.6535688754566257;0.8926273318602721;0.8861309365659111;0.8603406247250357;0.9081810931654605;0.8961763097760549;0.8736339157765288;0.8930695428931208;0.8980854097604811;0.8834422652205806;0.8702188857781931;0.9035433009345275;0.8719630579739073;0.009980485267182196;0.4934927607638115;0.2873636381519697;0.2298185605739164;0.23194211141269996;0.14050570428882916;0.18806604738639368;0.4124148685680141;0.7663391698316178;0.5175382654261921;0.9166698452370307;0.45881613371023683;0.1398292242210853;0.013937650655720371;0.4946902737281869;0.1568864809722668;0.5497037721335417;0.10655163301470914;0.0;0.014083929522604835;0.004483213854943033;0.005362354554531283;0.004677085003694156;0.0052512972595666;0.41305536326820425;0.3148965047553317;0.11704538269108819;0.001672673539978137;0.0005342477917059382;0.25284323586533275;0.5695549255053928;0.2834918018745931;0.3863452086786582;0.2604339542432226;0.02558604177107126;0.2018883050889369;0.34499537420663484;0.4536517971889399;0.4429841709849881;0.27960224996077937;0.36683859563594534;0.38378552768514074;0.27683126087270715;0.2784777844900893;0.2749011959645269;0.25887769381571474;0.18380549665790621;0.01304530688073265;0.02606360631889929;0.06532534760904739;0.05564920315913743;0.013948513532442018;0.0016083208160141507;0.0014847650296536431;0.02058435552309767;0.27808153496319055;0.2577761447262327;0.00530668827121895;0.0070035485811958155;0.16126526394689078;0.1562134766812826;0.0238113994793514;0.03032447922096746;0.024368027778599994;0.022560323699487267;0.005684051009967559;0.001647035931465674;0.02717102102031265;0.31257401401529256;0.3100831475085543;0.030409896810615587;0.005892784326799025;0.011814075691454684;0.03829516210876411;0.04900610756879531;0.08601973299637582;0.05326933569281704;0.025977132131662663;0.027995164857539532;0.04549556733297141;0.5811914132590497;0.5203746639965483;0.5473655713375397;0.5575692381318578;0.6631679885313512;0.6229797696440232;0.568761874874098;0.6661770875934726;0.6555806712907203;0.6346586203651535;0.1767310264349111;0.1574144514006682;0.1360649470157329;0.5017834515077944;0.0695020287050327;0.03929590704240868;0.19106891344744403;0.48768646885660055;0.016987850813989767;0.009809882811217927;0.016601397257518725;0.017567180646056644;0.0479092322171629;0.037185357196073354;0.029800128626909908;0.039819348323391957;0.10948023081047968;0.40943006129546355;0.08918944671637254;0.9073412463937433;0.10546254199040322;0.050535729898379234;0.07546321815307495;0.6570881235175392;0.7557241733381401;0.5215991137063115;0.6175821270212188;0.20349941541971403;0.4954834790534462;0.5806710494725035;0.06504634420510226;0.03918825768797283;0.03681835634499125;0.07163029313454791;0.12359066223716154;0.6112938762779853;0.07946226739300963;0.026009848892048455;0.03722947417952484;0.6318498851587183;0.3323749703049452;0.3734423851836732;0.15485887158704761;0.17089636138785178;0.06653023110978146;0.21123866858916712;0.021457194105449343;0.005052764303067782;0.020048504147548378;0.03153593901064785;0.016108539751392686;0.035374127774681914;0.016899443502904638;0.0245469100253344;0.05559674414003836;0.03931488979588018;0.1154495153199381;0.029312273695573026;0.00576640828353074;0.00047471356006533345;0.11970965672265177;0.018519056184549954;0.04047609906783574;0.31749355125459794;0.7740076007083327;0.7642831105970173;0.0004351891775255213;0.3201988343792238;0.8192466776677402;0.033443346536552315;0.03653327083801682;0.01378440872249487;0.0;0.5997830251322294;0.7453688633689016;0.7972577140736474;0.8692065282621274;0.42902787613654036;0.8050666638937333;0.6591325964238465;0.7130231375720214;0.6995547775537455;0.688740345151651;0.4838854982088495;0.38726180154971745;0.7444206286591355;0.42024211020338637;0.6100934987760621;0.65683602224282;0.16514213110566833;0.9243797231621946;0.628987750827794;0.14422628845750707;0.016647653783762966;0.053475283383490044;0.007752832064754568;0.4556129066509401;0.24553398318247996;0.22698079097679996;0.0030232948038756992;0.3541325852053492;0.43316574314350764;0.2369962706615452;0.00359836599916655;0.019912826514428144;0.12952136146849383;0.14432690877751217;0.04148061157741554;0.7378998332260074;0.6436774801849894;0.4175235536075681;0.576036585529106;0.3602055720253917;0.48272985115358985;0.20556235752358856;0.21055534732386827;0.19173268303319874;0.32436003545572273;0.39569250940995637;0.13416177035388496;0.24653855617084497;0.18895500701550066;0.21828921393838036;0.2591561984906943;0.2491171577741381;0.24391614651742777;0.06126253601445819;0.03877005825335898;0.026057354349665336;0.051742734190031434;0.003604135495515952;0.0009779324094272045;0.012908407090996783;0.04696849957630876;0.006012495896855901;0.1634848738980538;0.16522126533509335;0.0008099326811172041;0.7442292859808529;0.09729959067767237;0.057081966414801004;0.018901569635503282;0.7660469511006914;0.01607658809309869;0.4086486089938007;0.0028305170632198255;0.20670800263761938;0.05651414592371494;0.001777149801954519;0.10303280881061481;0.007574895094782459;0.2921386357558683;0.3473953719949849;0.42351333215409354;0.13740566714732758;0.014190202206064107;0.022163561510307943;0.34182648895115947;0.00886251408896591;0.07038168965524164;0.33978523605785665;0.031889297924976;0.11876300471593795;0.002685758265762499;0.002688471242451881;0.024299764492766256;0.05060948766678858;0.002769348892249876;0.7167623782139965;0.029501798729026724;0.01297113921635163;0.29107872576746224;0.33463760728226216;0.001500611055989008;0.02411359381420416;0.04343461128282097;0.10737711787383027;0.09187711487000898;0.021473784943171457;0.015354505887834578;0.3374127245630847;0.16979803499362608;0.030149157755468118;0.05569775197537466;0.025000997912162717;0.023516747223960088;0.003702158095681691;0.3519443993971312;0.08122524037147372;0.38059309908781297;0.03685452158155393;0.1253665112768343;0.05624922972009808;0.012392565944787711;0.0;0.31344672981103455;0.008005051624774148;0.0;0.0;0.12087381105205625;0.2891710312334714;0.8224259232426876;0.09627271771829592;0.14076938092245295;0.015786417284479468;0.0739913123533401;0.13283310742179835;0.04830876364208395;0.37543992430918666;0.16896394504241766;0.02765209769615963;0.06982610366188453;0.02807982040792416;0.020508423059123447;0.17753295036258454;0.019553112032969954;0.663745999669833;0.06757396305838408;0.06073033821903157;0.06251945763194795;0.2474395746850825;0.05580666291376556;0.045930285312669884;0.6457197820533506;0.8791059699351326;0.9205643666711133;0.36673925450596906;0.21735551263133018;0.0;0.005001286966274665;0.0014754220254260967;7.623628883155829e-05;0.007372051214130683;0.007003092973506275;0.0585229806457593;0.01961678191368936;0.0034479797800737633;0.011783011849006179;0.07164843727458196;0.19650985244689398;0.07233270908196078;0.0;0.09692228326068664;0.0024082979504333234;0.007474967798416452;0.13799964655427105;0.004981555882187694;0.006169085180333669;0.033459597943210496;0.0009190566431752014;0.01858321750128442;0.008436169608721126;0.03791993211159854;0.037126500047605114;0.048611854703875315;0.09239333782945262;0.0435149466866086;0.06545763910427761;1.0;0.0676379253942058;0.07065649018533178;0.008107179218295195;0.04507240725200188;0.23364623841928236;0.21863032175394334;0.07927178223631985;0.0012832849125235077;0.7646606126510852;0.7593999403782158;0.1934877855264416;0.1972305838560561
+Fenpropimorph_isomer1;0.05196483512444626;0.01237601848579239;0.0117586298232022;0.011546426865354379;0.012049901509193658;0.014784412542675327;0.006654893854376486;0.01168315885812073;0.01162963510006338;0.027238619606236584;0.004567841453362949;0.011971392698434771;0.006864836538409072;0.011549266618804064;0.0113785874794486;0.010910848247434553;0.012592818663931877;0.01261187595003366;0.012003847572754639;0.012530423924899677;0.01167435539865749;0.011464112831164254;0.02134142706407129;0.012053447765893049;0.011473841339778326;0.004011943631207417;0.005620779405221411;0.0069514884044405145;0.057242732254265086;0.01597369854966562;0.006465864544313972;0.013235587125544518;0.0092447283504038;0.00877342035182254;0.009173370963340938;0.027176050144699516;0.40955658050782573;0.02049322756494709;0.0008783731810953385;0.00773991442247127;0.002250504715376555;0.007653714746095431;0.0009148412961158695;0.0;0.024190558030925558;0.003343662129273039;0.004212481464689901;0.0038758829322789344;0.003630539231201759;0.005514105725275651;0.0041171512958845975;0.0016939207960513097;0.0;0.0;0.003617962817016416;0.007760356645846035;0.004122388163829048;0.005529507314394485;0.0038546184571828846;0.00077318569754829;0.0036636198401744082;0.005034367784154937;0.00632877089085348;0.00630013092673754;0.004092717181823538;0.005196446439658861;0.005440625988902643;0.004399478325749198;0.004026400035541379;0.0042860611578788566;0.004050732108509866;0.0028362819262018313;0.018085534686943978;0.014233078739996975;0.6426162179029696;0.6470967143498239;0.013996771831454249;0.0010054522277465365;0.00025003403930436044;0.000880808435857882;0.04830415354735266;0.05554830106011864;0.0038555639868543073;0.0024221346154063455;0.010156364140336013;0.009571281770207087;0.030597689071075157;0.03883526267983857;0.031082402118764025;0.0004092670549587741;0.0007807104706506512;0.01242931463729022;0.058630804701335214;0.06455488942705503;0.07311166603981462;0.017997233770962996;0.004910571645968039;0.05342688044685274;0.07723234014594971;0.08131208160361969;0.07669363761793677;0.018777711892423245;0.07829710495298076;0.0060422823929400255;0.08906353783759555;0.007688720378680455;0.006771817887959778;0.007188040072383451;0.007320203333822712;0.008882679901952996;0.008247033463252002;0.0075384198118574;0.009302009278729408;0.008869219963027652;0.008370808024745333;0.0016847901108566648;0.0016190662717947865;0.002301376744334781;0.00958222233823945;0.021269304758318824;0.006175557247559384;0.0004553121347076556;0.006496178808532488;0.0008307549770282687;0.0003108713943676807;0.0008852374593925286;0.000915242513263442;0.0;0.0;0.0;0.010067666794426845;0.16725175884944368;0.01779379359663266;0.006181154081549298;0.015473743592143046;0.15809991923202282;0.08283960419626556;0.24222808000608936;0.019142950011599102;0.019413827083754397;0.00812413439406251;0.021730943729670448;0.01186000699831929;0.004633900455462378;0.022103266670514196;0.008058497887594529;0.016802538032965966;0.018794350720261886;0.003479293548095601;0.003546682335662912;0.006809567877137704;0.008056002307317263;0.005180618710727059;0.01185868413755768;0.016384303271258407;0.028911708887553324;0.1117943716203368;0.08313361483697858;0.08342824501212927;0.16633121446867288;0.11149769911273891;0.0005617586296536333;0.017552911483461088;0.00035596749948958224;0.0013089389559245695;0.00031589787984945256;0.006979198472158731;0.00024960510892755287;0.0004497532718620341;0.0055887659728148355;0.0024263916226212124;0.0006301914152256946;0.0;0.0010397411854775605;0.0;0.0023512489439834043;0.0;0.0;0.007631035588325218;0.011014872065863086;0.010483427884697872;0.0030237140646909295;0.04665366329641554;0.01232368152984815;0.01621994416876237;0.00019903670507518857;0.0026213250952756032;0.0;0.006320815208005667;0.009976552540173756;0.011538301747356344;0.00877985519510363;0.08194075656921819;0.009500472619009841;0.03245864722688054;0.008279176404489318;0.008041508040225048;0.1132538248364607;0.09785954036220292;0.11535167183807925;0.09761151915894771;0.08797086982277703;0.09283183527884206;0.02515851798746042;0.0024065218832003328;0.01205586105750677;0.01809178141798774;0.002754376248399721;0.0006186906570048048;0.04487865979892197;0.00017006586268005102;0.007465476445401905;0.007011970716491305;0.03409267560701246;0.0005262398325622071;0.015057739302134785;0.016041266692541144;0.051231105984174075;0.0;0.02465258158535805;0.004254485214226594;0.055061640555906545;0.0006568402383771876;0.010889924156277778;0.009456194387120458;0.006906359780592778;0.009017807168256342;0.0052934566893258995;0.006895183008206271;0.003394619862146314;0.0037068910635299564;0.0032648749275614192;0.005104470051500439;0.00591111729151894;0.0015363606989051927;0.0038468676724209274;0.0027200753005072143;0.00392820749219524;0.004209376867968892;0.0036941797724176647;0.04014604230347856;0.002165573624849844;0.0011225241548735347;0.0005825686289617582;0.00032862866427558113;0.0002009363514696637;0.02091017645716179;0.02494819262572296;0.0074152145075084604;0.0021364258194810004;0.0026695037589336045;0.0027201945340108676;0.001314434882288529;0.009839941220748863;0.08707037682715853;0.00047567334852803735;0.002400431890910321;0.007201735945355698;0.00268574131422154;0.0068943718499613746;0.0025746275659194987;0.003475047432027298;0.03916137017100985;0.0;0.010008000090163432;0.0028780188298376205;0.019346952163643558;0.011684077584533338;0.2342911512474754;0.0034866840102756942;0.00018393559606023793;0.004151507089122629;0.07481447784625081;0.005902720334498889;0.0021065272993167263;0.004639125194086739;0.00013253323847237355;0.0022271232611463165;0.00025883752626595767;0.002071373382710711;0.050476012108010386;0.03433736715266666;0.0025238170984123224;0.03508486433689486;0.014584047537631479;0.006487310782505898;0.0006211521504441315;0.004431546421716511;0.0003555771273058831;0.0024399983214904684;0.0003648022537481811;0.001666945521680063;0.001679474572410928;0.011086414838802574;0.009861447269914114;0.002722147960862011;0.009072557491801053;0.024673459099795396;0.12166060771841683;0.10803257163416367;0.03838899743908261;0.03916283854481155;0.00751611106865153;0.001975934741178134;0.003324343091871272;0.030267811456009888;0.0020553982458296548;0.01166454556573329;0.007885328104915787;0.0;0.02103545798906049;0.030152228540054983;0.001975758298069233;0.0025974097014964184;0.16240079962920578;0.03259386113515312;0.06488130326318367;0.026554436370589272;0.005341431631438972;0.0014408730642527807;0.0008298542034870448;0.011805895583190907;0.010351870655493886;0.004923953510071197;0.004259775250440733;0.0031805960023529234;0.0;0.002074634616250222;0.014774184572155872;0.0009858150863192882;0.049650162365417416;0.009419170852023075;0.004023597209244438;0.004427643455215022;0.0005906382561765329;0.0050175910938354724;0.047045284472863845;0.029731804515158552;0.013794529239255922;0.011137349831056834;0.04702180295767399;0.005211839900073088;0.027507568356635214;0.0008395045382890101;0.0;0.01213786744778488;0.0;0.0207923485617962;0.01995288900362624;0.0011222942631594068;0.00012968674182130683;0.0004145314063196316;0.011994906501191333;0.005032587011165274;0.04142295840999717;0.014212223360934988;0.00019390801817150988;0.039814395972823324;0.000870005297741339;0.00016614203398777544;0.5348376033403626;0.021237229656683423;0.016300689492483898;0.08489364118498603;0.01782210181651527;0.04813350168305999;0.0008528197743035868;0.004760476577843216;0.02164069582665055;0.06655309879407798;0.09554276745210098;0.09066366829708687;0.08886492468849057;0.0676379253942058;1.0;0.9930879416022685;0.000764963489033778;0.059366736285394815;0.09064978668248083;0.0724229531646968;0.016336872717865457;0.0012108483767504033;0.08783256074378515;0.07453140976102705;0.06872514927740564;0.061557676013784396
+Fenpropimorph_isomer2;0.05491277492093753;0.014727171380847818;0.0152479511648885;0.01497277791877407;0.015455752566602025;0.019440196970940918;0.008184122149247155;0.015150084525047642;0.01508067782874963;0.03132998694377152;0.006209791661127627;0.017300825755159274;0.008901946388860629;0.014976460356487663;0.014755132938167029;0.014148594159849546;0.015376152915277436;0.015095928897295935;0.014621539904214371;0.014993385324841511;0.015138668677963768;0.014866037559362522;0.02478615554488097;0.015302537175278262;0.01531299599925917;0.003684960283639712;0.014160220739682764;0.013925605777402053;0.06449905258838942;0.02712811973124584;0.011417163036136976;0.016554021879239825;0.012175230457233498;0.011555939384573463;0.01746119208186784;0.031922911236115924;0.41683640939472394;0.023119116449710053;0.0016894373692241782;0.011667629802594554;0.0026022997523113822;0.009800120976699106;0.0018197968782407575;0.0;0.025153605726838047;0.005248637600163645;0.006279517120081831;0.006021655334505098;0.005680671283116137;0.007150392186947699;0.0053388977152960095;0.0027796953575925836;0.0;0.00019381007738023174;0.005953318223042929;0.010113804621151763;0.004927211330584985;0.006859824699673634;0.00477368486500139;0.0004564514227562449;0.005486357555839318;0.00622718008494304;0.008036686899735884;0.007915288772404449;0.004847775929310739;0.006449178364688492;0.006748783383193544;0.005100458469593331;0.004631165579038183;0.005021836697616067;0.004607936540313645;0.0036992047169384455;0.021442736022191003;0.01756213019034317;0.6468816103416141;0.6494920407469945;0.015332692580054909;0.0018321333986215363;0.0007425089928560808;0.005019878043294347;0.05106789438311097;0.0576896641557656;0.011049565652886718;0.004923191684051353;0.014102969133688385;0.012424218602435663;0.037060779169942736;0.04667163497410605;0.03376758965939041;0.0009270047288088485;0.0024354789872993166;0.01306361536731653;0.0628247365444435;0.06647912522073739;0.07573773848804699;0.0207381007242484;0.008849808219225902;0.05769140815116479;0.0820493249862767;0.08388409167297477;0.08551926309123861;0.023244577035644632;0.08208276324058818;0.012168893056716583;0.08934262892321429;0.010098094787932794;0.009191497978353978;0.009321059140640296;0.00949244126479236;0.011757345383503266;0.011160583912366519;0.010230487896399973;0.012681101801173877;0.012225436669650407;0.011697314510498883;0.0037758932292238255;0.004037350925399299;0.004503649311913723;0.013227521393459354;0.023299508272692157;0.007221926771996174;0.0022426480120295283;0.009525689901417557;0.0022016864500317384;0.012472154955892906;0.0018805394521614065;0.0016154045431762932;0.0070928359586228664;0.008099056331492323;0.008373217861824234;0.01721405324538125;0.20466782778532253;0.023050234025933616;0.020346851508581728;0.017249750891025532;0.19657985257657165;0.0998415041604177;0.2706697231619977;0.027546455970373095;0.027168031097383253;0.016573301977090844;0.028604930823101227;0.028242312706732203;0.006763368600770728;0.04072592717213615;0.021007030528817756;0.027803765495059498;0.030136817350877417;0.007130161162600695;0.008833772412865029;0.008026969062136218;0.01390121196425468;0.011331248919644479;0.015398443408047972;0.023123239090570603;0.04203695666044176;0.12506991993136268;0.0894375804810095;0.09088118212676959;0.1749531764212895;0.11519513682082202;0.0016964598937023734;0.024763958668661188;0.0025146650347535877;0.005348578555884929;0.0035537006763753888;0.00999380090359973;0.00171923981424993;0.0015235872091261167;0.01584203659160516;0.0034812381401259315;0.002661557354835922;0.0009300513023984343;0.0024795869831353732;0.0012243990035342301;0.0052498083005618704;0.000342587705918804;0.0;0.011407684899009741;0.014997490986096797;0.014203102341105655;0.009971574365232971;0.07619195159626072;0.017600145931431315;0.016710833728262976;0.0003303913369767699;0.006338784563533622;0.0;0.008823621251437857;0.01206611951757241;0.021425881279968712;0.011385238353670269;0.10201171467168588;0.013117765333922045;0.03797571229921672;0.016302047556048208;0.016227564373378467;0.1179795926284034;0.10899093814446834;0.11933172970748344;0.10383506706184596;0.09246830735399457;0.09815597298559846;0.02804590754923733;0.004681562358347121;0.01589820246839393;0.03238016356260269;0.005715752876065831;0.0063497689211999145;0.054245854658052185;0.001703448344009373;0.011828348481391348;0.02505580331041408;0.04011078928218829;0.010673681160772223;0.02103453652681024;0.01813466349897411;0.05989637165059388;0.0004090691959260539;0.028645629640476074;0.019653650918646817;0.05585417907280078;0.0016814350464901529;0.013260674918745245;0.011631996800567665;0.007668015790209141;0.010314869335336829;0.006464792308325797;0.008641017592807726;0.005533457737449946;0.005774140468928786;0.005097000429434403;0.006945612505838761;0.007859644990362518;0.00252338035637438;0.004462501818138539;0.004375889190120901;0.00717626409328103;0.006717610752352677;0.00450216206149626;0.05711774017379023;0.004343480185983885;0.002611390006361197;0.0010414845107730544;0.007628342236123541;0.012047957881364688;0.020699074894425427;0.027982530550596057;0.010415042942823662;0.003423733960187719;0.004534891797793064;0.004531777203142339;0.006584479978737351;0.013090862085228305;0.09244996204691908;0.0006906947492587376;0.027530327212266358;0.010911738265764841;0.00557042655066663;0.008070075508315873;0.012114568801275623;0.004738797146166141;0.12147548914654224;0.0;0.01360046856854774;0.005073604271700248;0.024189814720983752;0.017285873371739813;0.2251207932820759;0.0074958716883741835;0.0002385176698629487;0.00036144020964717986;0.08066999434674137;0.011678113741147291;0.0012125349698837605;0.00626519461752289;0.00017186189023177676;0.003948514173433073;0.000771397476067388;0.006896693943553209;0.053953115766013984;0.03532756031548773;0.011900146579252488;0.04200817786917157;0.018198909097328075;0.016019267148279455;0.00019351859451762;0.005949327481196735;0.0;0.004560604094009975;0.00047305570747856987;0.0024338721594299906;0.009527519760288587;0.01376737106974903;0.024175491753313464;0.0035925330780408747;0.013217209155700238;0.04017005940866994;0.1217502425199842;0.12704776738088305;0.07383451813005591;0.04840951211789132;0.012483029139309678;0.0010229655359330601;0.004396233270789047;0.03113683616276687;0.0023411049055989948;0.015548379061251035;0.02193532218403531;0.0;0.019794893324412456;0.07206393134546879;0.00086625087349983;0.0029858355884629824;0.16447652389960596;0.04431393013358835;0.06725821896662319;0.025252329775342825;0.008959437665027487;0.0021508772961478986;0.001470498598911518;0.014663718908409932;0.04842078876339651;0.00794872113359994;0.009530348974334224;0.004822106554371245;0.0;0.004965843252123451;0.016635025130672984;0.0027993586648159077;0.05473684002803188;0.01769593966470938;0.015020721631713441;0.015442643290947529;0.0;0.008065240702996048;0.04982948441775338;0.026127783925286113;0.016336487790077646;0.013847138103656453;0.05009088770559247;0.006884577003558564;0.03065416899904679;0.00245155590076046;0.0023140041286256853;0.012693053627266344;0.0001445078970207818;0.022995886629361775;0.021639657674447116;0.0027093925654702094;0.0;0.001640943850249421;0.014321802779160453;0.005548826887093741;0.047320146581089934;0.014344075520006602;0.0;0.039836021506738616;0.0016818439735830487;0.0011143323523489597;0.5320955872453055;0.022875269470899698;0.01680830467217808;0.09777653968965436;0.019054842967524233;0.05254408943675979;0.0012373427424165202;0.0085543277860691;0.03096052361267893;0.08695988096152961;0.09786920554216665;0.10543929122810362;0.10280319994948638;0.07065649018533178;0.9930879416022685;1.0000000000000002;0.0068947032340154705;0.06440096641260706;0.11112476919156254;0.08904282599217384;0.018098389616255532;0.00219120039171092;0.10487204778704248;0.09279644951390661;0.09695634296539514;0.08503438513801481
+Spirodiclofen;0.04428480617985254;0.015608606395675293;0.019953743749013618;0.01025598871439971;0.009963673872626793;0.051041053067592455;0.03416602389290195;0.004285802968356834;0.003990701513983101;0.02467774043772225;0.03481293105524779;0.00914291537505542;0.00572812348743985;0.0040620198228976815;0.006448290596306439;0.0038775345314726655;0.011201874469119466;0.013459172759410783;0.016130386622325247;0.014225938395014497;0.05489393530459709;0.05690755685316435;0.07018808263472334;0.06658956788281215;0.0209155590225198;0.026094958713334435;0.05499542703644615;0.24511104573774145;0.1046950797568319;0.38976711331032293;0.059412263306553276;0.04574536614153093;0.03665739336294003;0.011627959927808195;0.02266265064551195;0.0237804698829626;0.12849416386042156;0.012580822642514942;0.010321793382708118;0.05882257206448577;0.01291288226465503;0.09257954056103077;0.013915879326317833;8.670158674460686e-05;0.11229290261463717;0.12236844517991075;0.13280014812113064;0.13060975789679313;0.12139420920810047;0.0242269003997798;0.012516459371656177;0.01785620136218286;0.012239865577267993;0.023714914875076536;0.059495247510094225;0.08296396503029181;0.024477483707750734;0.019566119208455916;0.01589703681431655;0.21356955485234627;0.017058348810966174;0.03353990443692036;0.025303741289394922;0.020860288106484805;0.02779207400812184;0.019958936997653724;0.02020249249477484;0.01481508862017422;0.01732244123661381;0.018028719517690705;0.01411992492448612;0.01528681884420495;0.04261035625469642;0.0529226159107176;0.10806110075737324;0.02373936712060497;0.006091631210126555;0.026881831789082683;0.010512060355353868;0.15414851553313524;0.04074316313412611;0.03472099659693113;0.07465639336454664;0.041744851134309736;0.2859054759943857;0.3080481393655175;0.039631000656514724;0.0533625029919181;0.029091564213842597;0.056330393900252754;0.044029660353827944;0.03158863097147433;0.017792549381286896;0.09057173191947221;0.11273628481368675;0.04764233267237951;0.04346722731774164;0.04642762931824197;0.0254796936338228;0.0454723475039456;0.1357986340200008;0.03911993068035046;0.05548270451223885;0.03640384533663545;0.0193264037306447;0.0447985847297917;0.026863362613246112;0.03635799821181255;0.022421538254837448;0.017537164251636837;0.0325194059898439;0.036462388608259635;0.01548532283324097;0.03836983555686205;0.03688634340219236;0.055538790898777377;0.07406815540259733;0.07569651355915939;0.023616602481702515;0.14559778287266956;0.011871781420865249;0.04429931080543677;0.044344543482892095;0.04421602403696829;0.04274168006232341;0.03734487702854018;0.029574380865920395;0.10317268178657214;0.18217983448288236;0.09811405597587383;0.06977722547578023;0.05875847958327575;0.004861817604007132;0.15358734400562998;0.0038057453837750752;0.1709750245183438;0.03890254543500234;0.05271987027332829;0.12788341062511976;0.11435328700794328;0.16060366584398073;0.05955561159194322;0.2001212126718804;0.0233740636787926;0.06322783722527374;0.017885761288549996;0.030837081336848645;0.00045273513341227586;0.12231195909687247;0.2421271739080777;0.012867240935137875;0.23023350351913868;0.033176595207379665;0.020070392625085778;0.06418872668189922;0.15355926313063792;0.017533805768064775;0.01793297237972538;0.015221421327059772;0.037701787178226094;0.017071421660965043;0.1439027424192748;0.1925818966169267;0.06836304239995307;0.06668165372868436;0.05567048139497674;0.09552683268646865;0.03441770114995288;0.03481380743988762;0.18417822707204679;0.13643741240399845;0.030508701165621877;0.012943363187463574;0.021079931650693117;0.031000722977779466;0.002904996067384674;0.026632435901755486;0.10406491940642283;0.11900808734274375;0.05050281628852746;0.04943662094050543;0.053617422700307865;0.06365618363200928;0.0173289407045815;0.03179252063844715;0.1402769383445247;0.17371582876728986;0.059005177715319365;0.03442605184891164;0.12597510609407572;0.14444030358883472;0.009724203067979388;0.10222964126022287;0.023527167753227808;0.08917039549856066;0.004176600462437389;0.002893413550541257;0.034542693171406354;0.14274941894653037;0.03687406058795292;0.042740136218296976;0.0465934962182549;0.04481957074185243;0.018779543370916352;0.19258412512867307;0.014223064648889092;0.15140961350496376;0.08670771125043292;0.037696916999939926;0.05465251038516334;0.13559832144996126;0.06520800078912162;0.11729440105289647;0.07278544451517065;0.12645873212565042;0.08867033973964183;0.07051633395219402;0.04070291712025796;0.032545390758662536;0.08862101478648896;0.052703090782733095;0.03739413612869029;0.01131122085875973;0.04668039184301423;0.044904695642807455;0.09469263445862251;0.08618482112639946;0.03898556135153083;0.021527862392718283;0.014444952210375913;0.01633237646741846;0.014576351260738028;0.024963079260004347;0.019324690916728404;0.02457113946601572;0.01839082337868817;0.1266335674468777;0.12796816216224188;0.14996229922820437;0.0178658045071732;0.05278299885339922;0.04850986587683068;0.04897341418086363;0.09091211102682226;0.04413733275743064;0.020344979099026144;0.054436338675482185;0.05638623356998619;0.4546739969130314;0.05909936593075939;0.014737276958723277;0.01446192767753854;0.058010880754688555;0.054301822800068004;0.019042854754345542;0.027690284153865503;0.029438149270503627;0.01833801517821169;0.06045552458574393;0.026455755544039502;0.005773017420213924;0.06028464655431946;0.030094018053558415;0.0009217599965318342;0.05644852052078953;0.17540513732755816;0.20507057763436165;0.13244847466829063;0.08167680622296208;0.01447820599659302;0.05754760271785045;0.025468392015099373;0.10376426993166045;0.03923852678988694;0.04856767324760593;0.07981826346547127;0.053347340226846285;0.015080597065835886;0.02501728333872073;0.05935914405023264;0.020496437562196584;0.05357360067884421;0.005887885819282121;0.10404789195162131;0.1520067741469332;0.02201676445238755;0.028453884904227632;0.023286227944404807;0.016266336574784504;0.009417731689436716;0.2169056397096469;0.04452432584017117;0.05111942009688849;0.0916525372589557;0.04725417795728448;0.004084450762454201;0.03744314458799783;0.11972681596425279;0.09998824224847733;0.053737628257407646;0.03310225050226916;0.01146085556890592;0.06616460716436594;0.019537612020448517;0.004082933331193818;0.009969407140315406;0.014676358360540546;0.028396488991698294;0.04524665259850116;0.15335688151661758;0.030385392500721135;0.014318533805116912;0.27870887634845815;0.04885348576162653;0.02493592060296549;0.07369485724918994;0.05095749085217767;0.049107252951566864;0.04395760936975627;0.12578445405378894;0.03828919941099255;0.16296170494119291;0.05311882782804805;0.007589604500466671;0.0780156512666848;0.22555830540295294;0.06878116272048988;0.050494146917366874;0.0825241526592894;0.050731287128797625;0.03477619174003301;0.0717722235085489;0.014121898948911167;0.014788981310678085;0.024822288961711386;0.03698197511082764;0.07550186465651906;0.010320717826329753;0.004597752463821559;0.04631770269981638;0.12333731070774073;0.08142416185273162;0.054031191048741614;0.037918430147209935;0.018182486211467636;0.05613019695826953;0.07774745976778458;0.163798142769539;0.14485061869861604;0.14347138032932466;0.032180061570611;0.016295613759881578;0.1897316682416906;0.04772283857490647;0.1520385040409922;0.06281608866908255;0.017578334484467432;0.0733040446482283;0.06730070064332369;0.12449890398207857;0.10251854886950716;0.08493668285133228;0.19359936130434904;0.30173309946945964;0.2658365558230555;0.07717704438018021;0.03927410064920669;0.01861564567618086;0.07056431766093484;0.11259147604190693;0.11799533935242236;0.055168949557293026;0.08924527193001384;0.008107179218295195;0.000764963489033778;0.0068947032340154705;0.9999999999999956;0.06562806749476596;0.06601918818556156;0.05171231959866655;0.014441927310234776;0.010468252285413543;0.06384587871128945;0.07143044766896733;0.15121656982998094;0.16053915107475406
+Spiromesifen;0.029309198349541137;0.03897000770257693;0.04127189676062344;0.02040169152296245;0.02099236503776316;0.030792199744781368;0.027436881198352876;0.020686351134175412;0.0202495686734978;0.05716462373097099;0.012724844856733447;0.031199267576879623;0.019879304712049697;0.1585723303162814;0.09522273926589701;0.12219607404746094;0.03938342731095186;0.04228588934521902;0.04286878094575151;0.045154291545605824;0.06511766869098588;0.07139789191272296;0.05422465260909155;0.023370656327184634;0.020618771483493538;0.013407489857011396;0.0287396956262691;0.030513287472472533;0.03973291766530236;0.25273370787746446;0.04566439816672455;0.015280885335375848;0.019556030947987982;0.02382517633054696;0.043803672703010395;0.06452392131830631;0.45134085569293825;0.01615592548503854;0.014147305936494502;0.011144032276666736;0.0037749951745190157;0.05518655466155741;0.06536613914215285;0.0006062294069321122;0.08544070257752126;0.4050149755784193;0.40389947821483974;0.4061194732285532;0.41292053642443727;0.007857478278467687;0.007299414862422368;0.006944890864481595;0.024518991492987245;0.017623556645741452;0.013538963691575088;0.05001636062976924;0.01612769454720984;0.015504988647966348;0.006107798813005707;0.0019515369563266284;0.004567356698087139;0.014033951391223655;0.015147635095267772;0.0148959092122541;0.016776654275206776;0.01575639453475377;0.015464225311243108;0.006598854152921551;0.005903923348797047;0.006460699652624177;0.0048218705611468935;0.0044006405935097075;0.024898286212222447;0.024584140941729272;0.10630001517746555;0.08667644777710412;0.035875422487554307;0.009289526262928465;0.029801965964047127;0.07775525604453176;0.06272302894493052;0.05397236757478386;0.050724449974717964;0.0765019571980422;0.08627699646983136;0.06943418037780356;0.07158055941992134;0.06516018218220136;0.06795109995127056;0.01836171907330836;0.06395937401409153;0.024129313506773175;0.08311097090575251;0.0740737507356621;0.08219378626614039;0.02237234885082278;0.02963184021590895;0.07438615986168629;0.11080330588432803;0.07774048758770659;0.14018828394009983;0.060215349582010344;0.08342200009056029;0.06307300422880074;0.0658646742809198;0.01127146882649031;0.010022089944811833;0.011339931651083893;0.010554006662981326;0.01241225970872739;0.011451513237574354;0.01079805736762146;0.013419066756204636;0.016180590726298676;0.013921785542965668;0.0016534372781118946;0.0017856296668502627;0.008804540114862393;0.01645973087745905;0.017802812655080196;0.003526485282877213;0.002627900607393009;0.009737839354768086;0.012258453092918661;0.008669474869894793;0.00598607811938707;0.006443112169553429;0.02282633590651489;0.02826122152499365;0.01912844760479111;0.05030107659292893;0.17494556669303996;0.060740884377840136;0.03209431600902167;0.0193854323322703;0.14700013977776144;0.09458000814012091;0.15067349283355325;0.061826882089529744;0.06395875397809032;0.01913003231704678;0.07048357197791796;0.08463985658642668;0.015847177098609926;0.0752703465855877;0.056360202774269265;0.13236294730162143;0.08125119093009978;0.0319908091793342;0.018331749254464673;0.009903766387773445;0.03914279891486658;0.06359697937282853;0.036494974085195746;0.05462747932348195;0.07670697456758273;0.1101477865468474;0.10336531810569499;0.10103365753252638;0.046015805919012796;0.13786357124736173;0.03370252593555329;0.15816963675225468;0.12391492218371815;0.04249193425896309;0.0039774640057875805;0.022891451937434748;0.0038736048264907913;0.004517203395034543;0.07349369763212854;0.07747847154760494;0.006283779229455981;0.06055743649265059;0.016028933252539877;0.014479140162349387;0.016233929698092182;0.04094733962133024;0.032422113846586144;0.06228415129626941;0.051601085494375164;0.04561044742079684;0.012526863174850739;0.11667047077047703;0.0724997790623921;0.06266269483413556;0.044184782555827945;0.06716387174012885;0.041216955835270234;0.09301758048541635;0.036474801288808964;0.058942075717585654;0.027554936003144005;0.14447089831489607;0.030827482871919814;0.0623718048881993;0.05494898383214688;0.05641572416801575;0.06175688826255815;0.06575991523230111;0.060472786774639534;0.06637090553023783;0.06061513752758269;0.0640546938753263;0.06743702814032257;0.15260907320934258;0.07228789078596343;0.05371750744511689;0.03741363328637531;0.025747863776347486;0.1074757442791858;0.009211760491409616;0.08121418484146078;0.03554511352167166;0.038661105381798976;0.17704950567607752;0.03615413830238969;0.025980288521919567;0.09279888677458017;0.02605124347475178;0.03578113835864604;0.036003034390315505;0.0325157833106827;0.002604673425208572;0.027928447731599474;0.028850184757492934;0.06588280368202026;0.047209270934448676;0.015810810204199346;0.015741053131294768;0.005777501933346587;0.005171377131464916;0.004933587795766506;0.01872407496459514;0.01651868585348355;0.003975941932510941;0.005742836195455003;0.005604532395984931;0.008347891563582774;0.008166687361147035;0.005801705681389108;0.07775454603397042;0.04416954998069489;0.0221093865954751;0.013631563845273765;0.0660846926801177;0.07029834694047131;0.1548366416850737;0.018211970247069668;0.07406706272482186;0.009788767438723233;0.04238746060702693;0.04103035332932859;0.06420277903824413;0.019721844995641013;0.07358571492025291;0.005076734824600473;0.038167143664094454;0.013111099664334373;0.2067504357143461;0.03967098004472589;0.0577598787316434;0.00757797456376719;0.0012387316384291894;0.014986842631715232;0.03240324558806651;0.014581786505366352;0.06793809679352945;0.05649846860136809;0.09616704922156746;0.01894711463155952;0.12117697463353222;0.0599667625720167;0.2592150316455895;0.11274096927534248;0.060027288607120505;0.25491690612758583;0.026822594817714145;0.013636549235523324;0.017784876822030515;0.03164403747302559;0.15166526552784698;0.03421696565975879;0.0577609751799688;0.1503848677181573;0.022924615911365562;0.051680844746081075;0.06138575486376097;0.028554950178672524;0.035476900636191015;0.19779691552244094;0.07808572036684143;0.013079460762123718;0.008262875968753388;0.05645467553213055;0.08589213841063086;0.01018000411009935;0.06214671805208972;0.13497500618969113;0.07458556158894812;0.16390051227782873;0.06172559842389956;0.14334791115636;0.1014364385801376;0.005164714270299338;0.032602522376425136;0.059545481757632725;0.04138602572385949;0.117236545947438;0.10381559681017813;0.10937139314296518;0.04556876544228919;0.053050965302633306;0.0185237155695199;0.06172489265890648;0.15290999268073754;0.11872497242452412;0.031955856838756215;0.0901545033560827;0.041563127635073235;0.012636851080388058;0.006845123389568088;0.15537069952311286;0.11828066692223002;0.028727139992836687;0.05042517986521205;0.04874855698171537;0.008034709473747825;0.017240468022263943;0.05584580539943467;0.08463535707746615;0.040286509873049686;0.11922888451028715;0.0729412354872;0.06953215106150455;0.14700598053427005;0.03239309369201096;0.038642005758286614;0.024303839669816307;0.03410492896885615;0.022916219991065526;0.0945819639674434;0.04104903041293002;0.15108660228183532;0.6577610236931039;0.04847441504819604;0.006127781270170439;0.003966903947932564;0.017326260187234904;0.01191033460744745;0.007941381917377451;0.00242025718388748;0.0029461390373114313;0.02708894737120677;0.09686713782923079;0.1224635481031785;0.029358709221381386;0.00037710382306214486;0.036400857192430414;0.04233727676180254;0.032582174001964885;0.0651552542535014;0.08628614969590163;0.023008616662022724;0.07695735485505667;0.07250324288784761;0.039384216955064826;0.005834393982333148;0.0656269526471877;0.06628637129242561;0.08649583066554194;0.1306565616457659;0.11440667833270911;0.1137192654988013;0.04507240725200188;0.059366736285394815;0.06440096641260706;0.06562806749476596;0.9999999999999987;0.17715766653316953;0.16033526770166442;0.05810551302596067;0.025425684823397132;0.25269235486962405;0.6406153151112499;0.33332603273765643;0.14738299237590127
+Spirotetramat;0.22234674914164224;0.21918971362796805;0.22216064576469396;0.2317031501682753;0.24007325158081147;0.23589783065998407;0.13094691782532758;0.2371348620922145;0.23807902309116505;0.24980396508424288;0.10215695697951352;0.2285662798895788;0.20152526565250106;0.22351704252804208;0.23007957834592477;0.2253349849920361;0.2251206256383142;0.2234665181729253;0.21954109936675992;0.2229989780331203;0.22300589040219995;0.21924597504452817;0.22326408652263455;0.22033140877730323;0.24568356738863317;0.015914372759353437;0.3257250348742245;0.15320827563597672;0.16860077243311006;0.22636635205126068;0.20548649654333798;0.07003676086697659;0.12500501873049166;0.1718536116675851;0.1934553212674397;0.25302897810990116;0.4404783842852986;0.12092007781124911;0.06608527785141896;0.14793294060654147;0.04152266161677256;0.14833568241880166;0.06759823306691573;0.00011462265576339012;0.16701217949298022;0.026550070822269643;0.0306314927537952;0.029044450941466318;0.03156550763611346;0.10354891597704363;0.07830605562562068;0.04200009601224115;0.06568420978712422;0.05640247836884981;0.10925318502657641;0.15090353561568456;0.08059010329280335;0.10509228405776416;0.06913039889978875;0.016174589914289786;0.0540664582438978;0.09241303867376635;0.11959782625987285;0.1168076893924366;0.07983293477758936;0.10028575642256815;0.10441410653040369;0.07431556972877763;0.07223258295561891;0.07349611366589699;0.06834358752850751;0.05258389633670184;0.035035417420401206;0.03922053294880387;0.20447573917076337;0.1619164030473762;0.020980075965500552;0.013409168468491663;0.03950449076622676;0.07300147559982859;0.07101641642866698;0.06239245335178578;0.06307971342718403;0.04207829418677539;0.09742757465085133;0.08316255754187013;0.09370041415701051;0.08819535925522924;0.1134762149814568;0.0196803043181602;0.06355211650189134;0.08312203014592279;0.1363912775693867;0.07013764374917028;0.07859994288438618;0.03765321418365349;0.04152947338812259;0.07837023175998901;0.10177949921322796;0.08581261492645892;0.15279095997273398;0.0776232311564015;0.08664218065707754;0.08389090521315445;0.10637091204164999;0.1570839840231804;0.13290636233817715;0.14272823245325567;0.1425724926270268;0.1657834319415988;0.15977920442238047;0.1518410363461089;0.16932890325678907;0.16681031112581166;0.16694870032294357;0.031380479537063605;0.03192301308793015;0.0326252823811146;0.12696075400546578;0.04374174676687671;0.012447702651889948;0.04069187651140883;0.11951684165836067;0.018446196411325173;0.016264404771284727;0.01026539379676667;0.01209108119195668;0.012992882586855162;0.06888969569010533;0.07840092159155392;0.05991281354321107;0.35731040340210296;0.0976184583993702;0.15303034047327502;0.22689230709929703;0.3404212915911324;0.3007156111644892;0.368998808009914;0.3444923356387344;0.3572594415440165;0.11234752513593138;0.4157400212708574;0.17026836687797173;0.0866361102383713;0.3041579844164441;0.07599693864429052;0.1744213498082034;0.08487329455340697;0.103799669635482;0.1635929020155083;0.1543794862193369;0.09522848957879848;0.06095443020699659;0.030549589976144972;0.26180682755148477;0.24514207306341917;0.22725438402468684;0.19554690251493678;0.17828386867256096;0.18485812871227625;0.3165442083595535;0.08736564583012384;0.13040343644216817;0.0981923448715467;0.06819860683968101;0.033866295873597345;0.0655360524847733;0.031130796048288712;0.04335340857077034;0.1303879757091687;0.13733160907838562;0.177722487351829;0.05872724853009152;0.039539309875515814;0.0492384664159504;0.07138487175016033;0.0374426047153747;0.008047768124204279;0.16441309204757915;0.20738546836039226;0.20239161068448022;0.04704900781378618;0.3827254322694693;0.2694269242323149;0.1578491426045312;0.08589736901365831;0.04446234896921834;0.0;0.18248669954556127;0.21795132733920355;0.28037369961439274;0.2678480915646554;0.33870631621453084;0.17698787962095627;0.18328843528285904;0.22779522321628945;0.22756913712312155;0.2246828528133341;0.2769195054822249;0.16715297127701215;0.27343409259978607;0.17724096025158081;0.21585262194826962;0.20090590025327063;0.11270455655385563;0.24383663275343315;0.2894099168072831;0.20424749824917543;0.18114883060015977;0.1470370924806653;0.11045419484111214;0.30160982725805924;0.20223711851284407;0.12132374365291586;0.13032913771052512;0.20144921986346517;0.1616063462116284;0.28155549915032924;0.01009007899064571;0.11405214886910671;0.4048745089577065;0.11727659994359518;0.011207978485680883;0.19800518622538196;0.185649406731661;0.11964793563372424;0.1540648733301357;0.09745062503304186;0.1268360607902536;0.052224645825970875;0.055928485233851334;0.04995953082609922;0.09252584185556656;0.10919402140123495;0.03135030007043052;0.06341907120236735;0.06562358677915477;0.08388773158652375;0.08602391206909565;0.06457688968639055;0.1869360359192429;0.1761136763169578;0.12807294497933908;0.12495455466345329;0.11778615238726658;0.16897627567626447;0.0227464157159345;0.029741229845956733;0.0943529077765489;0.10789315279753064;0.12859635463259456;0.12875877967206964;0.051592661845124455;0.21445090462013264;0.12807921522693705;0.024198388334065124;0.06892330171833663;0.1305149948660921;0.055094228516947424;0.08578538004601152;0.1082847108686111;0.1920697513658379;0.0026304393083245456;0.018121503636241813;0.20219294737959445;0.028566641577510092;0.24211710339378792;0.3009646603686163;0.325414527566571;0.08998634958698482;0.023578746075399337;0.05029964495895583;0.33754421934232953;0.11176689052163652;0.03370382481549788;0.1703939947575562;0.030360724376374514;0.025924909726332514;0.042902893888803806;0.08567056755815516;0.0942962849631777;0.07918597784932965;0.1079742605743216;0.31592292069793476;0.26663798185214715;0.10464863772503351;0.06188889153935929;0.18053408478976074;0.013954462517074762;0.06531403983276464;0.05326721712706398;0.08527279907590687;0.09435546737402355;0.1797745571690635;0.1500733598872999;0.059986166524442205;0.14663024179251824;0.4634442052436767;0.1250486230901334;0.16132166138636342;0.22243611642114158;0.22272625462877338;0.1292883499787701;0.022194544359571213;0.13779831464449055;0.07942962868294015;0.03796521298938428;0.068783040004772;0.16610766889457715;0.0036958505224737787;0.07774785821371391;0.1833334213497158;0.005276051951457851;0.02642775613985594;0.2126231815892687;0.2612527565412788;0.23011501989067484;0.08187311695442147;0.11469103500801862;0.11412527238543126;0.009350588925018725;0.08872512083947653;0.18463308002532225;0.16159859945785385;0.14263560004827824;0.4334413788243185;0.022438148158761224;0.02367148645823548;0.12344340529580672;0.2439171461574324;0.12092151347411528;0.19325504248033873;0.11409823025481385;0.105654807086463;0.0418349133678678;0.13157336872897965;0.06405674432639497;0.10081793454547444;0.1866867121835925;0.19824297207491276;0.30163806587687225;0.1473477312086779;0.13624075403704164;0.050195054192942984;0.053362988300567675;0.03013383441207512;0.037515184577734985;0.05342746161556796;0.1889518951043257;0.03182780293966111;0.019135709473743004;0.0061857468948006335;0.03912940659513157;0.09900241437844244;0.31573910858245285;0.07609501002874199;0.0010631022041724006;0.06292256684316155;0.08188433453909559;0.28369808031215;0.16667416694594195;0.06911247607537606;0.07305985927768756;0.12465170717008472;0.08812804115470106;0.09003388153634748;0.01279681407153618;0.06943772098151524;0.09405495278313013;0.17889482748980542;0.17410803969877367;0.18594561812160335;0.16065580617929257;0.23364623841928236;0.09064978668248083;0.11112476919156254;0.06601918818556156;0.17715766653316953;1.0;0.29237329562320424;0.12666307030415788;0.030696038908562987;0.49655310370836414;0.4430098449392238;0.37575157779584495;0.3485715331892874
+17-alpha-Ethynylestradiol;0.19685603511035724;0.21168925722585183;0.23316058916122076;0.1869465516385316;0.1889567848822188;0.19713424781409072;0.12269951071980126;0.19366827713254292;0.19251820428826452;0.21511809278908472;0.10118302286341452;0.1943926685455671;0.2718514355074366;0.19412366722597194;0.19356729039378623;0.18949560829596074;0.20762812629585203;0.2110691364380821;0.21429241556890494;0.21554847103423694;0.20628463500756974;0.2110423585046049;0.24317682514526287;0.20252978180880374;0.2262892314027472;0.024759784496618226;0.15436028469234897;0.12961229795311774;0.14489228464501888;0.18798450678958975;0.09234819364907014;0.061635729547374736;0.1568922577884624;0.14396844073829645;0.15207358463831394;0.2082741388665025;0.42538653558373185;0.06564934089414466;0.04483628800256405;0.12188626714980612;0.06470259538900856;0.13858656679531578;0.08976040588326405;0.00025353838224879656;0.06580640993564968;0.056891755794068445;0.06037343392500458;0.06002785722038538;0.06275576827425045;0.08904068464871343;0.072128335163175;0.06042817165840534;0.05191648186336089;0.04754632479433746;0.0770528503612092;0.13963798709078573;0.09256214658477743;0.10269423893764164;0.0837565252030091;0.017579079318546905;0.07338603234428015;0.0995187047811049;0.1142031711087577;0.11305832995587531;0.0970833673419493;0.10186157442008081;0.10220411467507026;0.08292211063256423;0.08160928512366138;0.08291074841137647;0.07488376184907061;0.06667792232648252;0.08268090783343153;0.0895174248871708;0.142820596608872;0.14302438097922876;0.025680533069189534;0.03374383140565049;0.046975488520387576;0.15406230964649742;0.09854044749084877;0.09220883295630013;0.08049425447176269;0.0734709156614664;0.19634131274652672;0.18890835742036596;0.06607234192663318;0.07228775014936493;0.09343385347443164;0.05497500846042675;0.07910364701460634;0.043143090471970756;0.08635713646969889;0.08464314227490574;0.09282887632371886;0.08100228176594633;0.08288799434221879;0.08954609373035209;0.10875312350925075;0.09682653079031873;0.1915000959815711;0.07794333343669366;0.10100825860909363;0.07571155181067096;0.09993999049349897;0.12470433103937582;0.10808813314967929;0.11387359806868924;0.11760750181366304;0.13992142302546126;0.13360134688868502;0.12392964250916798;0.14604624870059757;0.14200083574739789;0.1370279802195453;0.024488156963903517;0.022360885030875407;0.02465641029312716;0.10712666026254301;0.058601984847076856;0.011145329884518471;0.032283465145927843;0.09940596637509412;0.03862068547146982;0.024452755018122233;0.01614308570482687;0.016364866936707724;0.05798489428141682;0.05993121392685307;0.0728100401703246;0.09260328208979908;0.2848501240711831;0.15594033980861535;0.09162039449424589;0.19820647654603316;0.23434880714588713;0.1823535336390023;0.24004605588381697;0.27976850147853843;0.30916275445563374;0.11223017579132152;0.2653928209775937;0.16011571117015538;0.11824701864698119;0.24472682410845098;0.10774928511280472;0.19465973768581285;0.15948262329892107;0.07195946305163527;0.13865293319697403;0.12345551030977718;0.09664616097953403;0.18706113813781486;0.040331627802906334;0.2300502938981678;0.23211823596689846;0.15211750163820295;0.11902798120231746;0.13448779775443948;0.11325129223131516;0.41362342610815744;0.12589229901214427;0.09162643790225115;0.03819090859079684;0.023021741093158243;0.024436576110905613;0.02650078176152557;0.014489513716004538;0.01945400772067691;0.13805250533153324;0.1007563170495228;0.026595802302284706;0.03389801508645868;0.04323280028734496;0.03904815741755014;0.05621043187905796;0.046721792864251536;0.016067410266612427;0.14759110378871257;0.18508150827485226;0.18153922959718496;0.04872491034059727;0.1675137717497276;0.22405282555259812;0.049517151747247454;0.07935715099375851;0.08025526424368547;0.0;0.13410442728834135;0.17272158884296854;0.21900638931232863;0.31516576332338936;0.304709168384748;0.21086016724400286;0.3325212988185797;0.18180337201344296;0.18053272787632776;0.20242852779569218;0.18484504567794244;0.1483059366090195;0.22122305337864068;0.15813155104037252;0.19576752387401236;0.1992396669188322;0.12141237312444482;0.1988422764827167;0.2433144294856176;0.12075342944721512;0.06567891288715408;0.3810439315205357;0.0649783092669913;0.14399310038462673;0.2547351910162606;0.11725994640119808;0.20939192139443955;0.1477330662030962;0.1689023457861047;0.18152274633696688;0.2740072049636721;0.1255403538368902;0.2115484546282179;0.0859951162228443;0.011752838486563676;0.17285468806809462;0.15167287824254638;0.12183198120900086;0.1407906747837972;0.10424690887290947;0.11398889763380302;0.07029925068216328;0.0724903261664599;0.06877076577466489;0.10231208737210859;0.10543194313695983;0.04946304181966402;0.0805686896450098;0.08618749393170443;0.12780550580373584;0.09366892507162632;0.07967083747343238;0.22722425056239437;0.0826078693451025;0.059135070625818104;0.10151257925520085;0.20650713258987308;0.14724925650546677;0.058542579607427044;0.03912638601130085;0.0896929070789441;0.09331177647522258;0.12232162176053274;0.1206063976804276;0.04604191509716919;0.18601967772318176;0.13175495838169926;0.056378532920605746;0.09005005018354174;0.14185027287037577;0.04936548960370116;0.12436634470813908;0.0831532510290105;0.07593763441669821;0.006870779750806765;0.04708180019011739;0.052404006600527984;0.05755860227206048;0.2024964228644392;0.16149438280254313;0.21047903073691734;0.054210409734010936;0.15447607064044558;0.04331062096703341;0.20302346630106352;0.10527468127032989;0.07496073526298272;0.1344204305079539;0.05955803622440686;0.1367097184729624;0.054087189071413126;0.05396910387572978;0.08430957078379997;0.05390164792555759;0.08301797776204532;0.24882106539926638;0.04964316339301879;0.07072754189339152;0.05093250735306399;0.08720732125969506;0.036809522410460135;0.0456107321058842;0.04203494280943301;0.07868962735671951;0.1369462561200111;0.06503711749800756;0.16338640295606632;0.05391697537113284;0.13748897573871618;0.2792950909609;0.2510674693106644;0.1634331786449591;0.2535581703204285;0.09856335506761571;0.13539312323877986;0.020509605367507282;0.07586556017963483;0.049283250597007756;0.05727335284604899;0.343977479043065;0.16343398963312067;0.05962262267708162;0.057055484401932616;0.25595308812977124;0.0031821243402203204;0.009551208708182731;0.15180691630199128;0.2093298709682237;0.18796666836149656;0.08431197952862395;0.06757307790463554;0.07092967541668146;0.08580203997125235;0.15536791643023606;0.16758176539431696;0.1020123703409035;0.19514265588317287;0.070846341749342;0.03008234289810483;0.06268686068199117;0.03569997984786118;0.1874837319381346;0.052871834158606454;0.17133474982653005;0.09269375222884806;0.09383035858062508;0.16593210793380211;0.10026699320634212;0.05880877048931869;0.08113085793932434;0.1379863851061185;0.1874617229324169;0.7884953034823676;0.09542658039785745;0.12056600879465251;0.04700505988470201;0.04786054880636962;0.06701239466076422;0.060046388012966925;0.17411595615325723;0.033469183354739335;0.025712894055910252;0.0782159077498627;0.005626531633894489;0.02618994552974885;0.31273246994845744;0.16556647209079492;0.11003310345897296;0.0031561622863145616;0.18374991366979687;0.007927603632517549;0.012665877445056362;0.1319187590751813;0.04971546924288553;0.044472986174255456;0.06453240070722509;0.04551014179776361;0.10798510384356078;0.0059207536161693655;0.04732304982722986;0.23699455245809914;0.15869050797189582;0.20522148920722885;0.13877232198536865;0.14198340903114023;0.21863032175394334;0.0724229531646968;0.08904282599217384;0.05171231959866655;0.16033526770166442;0.29237329562320424;1.0;0.8548573757841157;0.04641312597186026;0.5085843123138523;0.6574542427224658;0.33669192146053417;0.331614755581215
+Bisphenol A;0.07592492658014928;0.07652828780451414;0.07936147587356164;0.08257759528600096;0.08341401423819385;0.0923489021150683;0.061903936795432435;0.07815581246491682;0.07785228672041093;0.1454147978291058;0.7909992858917406;0.08224028332274344;0.2331369791661642;0.07938557750483186;0.07594880018309286;0.07281059958912882;0.07992173847639929;0.07859241987792631;0.07640136435818139;0.07830648903285517;0.08038181478178713;0.0789664541989573;0.09165817848240318;0.08020785658700606;0.10600937147885196;0.011846400850254875;0.05572451389531954;0.5196307855116182;0.9134261709044295;0.19803230155415363;0.6416410547013068;0.02898811545362432;0.08989510475268955;0.06493727349324946;0.05564019996873491;0.09122046630686936;0.28359197016791493;0.9215814455346681;0.015279148322000339;0.06014523442735189;0.030661643006212977;0.05992588296196773;0.03961095336613034;0.002187004071560213;0.0038759193813816648;0.012168444463643674;0.011676698615169304;0.010952389272311954;0.012680441261832966;0.04104748437822366;0.038819400568879926;0.021414771900781955;0.046353397289194576;0.04519453493002498;0.04602031916638392;0.051319518784314046;0.035856508913389325;0.034498251656933765;0.031153102001712427;0.002488571467905528;0.027741761903229856;0.05735045814564792;0.054013450996340195;0.0425865280369802;0.039444914120289755;0.033041158862184845;0.03392647495473433;0.027866127954964355;0.026472323371390948;0.02703741415179769;0.02329633355388799;0.0196491511408399;0.020809389384305287;0.020882073013586928;0.030501563940943815;0.03269338290996971;0.015893198002621227;0.01860402718433767;0.03938375148248886;0.06247460546390008;0.03138890692022779;0.02987035140839154;0.025047559017652855;0.02529308330789498;0.03398519089455174;0.024051720409887286;0.02695903862282097;0.025835067571534094;0.06725801903947995;0.060793703971363015;0.035788219011076136;0.026534709340255213;0.050393067927754165;0.03903019606950294;0.045898713844842606;0.026839034882351804;0.034293973040574834;0.032267401565840174;0.0681635225294074;0.050891627576149595;0.09311235716117112;0.05132613349014508;0.05497646060230372;0.03755687502153843;0.033222059651204845;0.07087750737245636;0.056984915702727436;0.0594849591651257;0.05743124956989453;0.06714564818395714;0.0644655451870259;0.06460232243826168;0.06554174576430633;0.07185703123241867;0.07328401625584048;0.009512022262329962;0.008912047785166959;0.10292297660832729;0.04934849280272114;0.006612545405061869;0.0036639448741023293;0.011823115018756691;0.04218467248050592;0.06167742389077657;0.0017251570997533715;0.007329578932737188;0.007329007650668428;0.005211989159551256;0.014703264382220957;0.0043047270097532194;0.06495788695759729;0.05952598334542107;0.01897543908144188;0.41241359917477843;0.08242919299588304;0.054132320338852194;0.7300393991710936;0.08666678217674612;0.37903831849307584;0.3176698739122541;0.08747049055184226;0.38579611732010266;0.07601695547749297;0.05059783919499109;0.1921487001273945;0.05747530240566716;0.06151593246143016;0.09806338825726588;0.05816601616305305;0.5268384278349465;0.0530495865829233;0.20060293368268567;0.13115330953272145;0.16377585276853376;0.09861956140431256;0.6843067032301684;0.8393964473082719;0.9397050501512221;0.9105855096012462;0.019546290292838296;0.8570086720820911;0.00838471606151067;0.002479588994822742;0.03515151470420915;0.013351572493544513;0.010396963504595399;0.022953810437515175;0.018275489414809307;0.018603166879553157;0.012097923211208035;0.012665400329967696;0.014006519098191787;0.033202040608947284;0.03918339301808718;0.03533989028556451;0.9532342335514792;0.026543184925554075;0.04563468729483406;0.1296169410197178;0.1142791398976337;0.08971907240353605;0.0066228658381238615;0.08666966671324006;0.26131678724617957;0.01786838460721612;0.023583274892496602;0.017736830715764172;0.0;0.05588500032296964;0.06367646158410142;0.07897106665040603;0.23525799565309488;0.06348907332538668;0.0743924650290066;0.04990308581842201;0.07133389280961756;0.07017742958979266;0.7077983938183526;0.7206402165035409;0.902599794650677;0.5962222452720706;0.8880420988099058;0.7582120985975014;0.5529450764251908;0.01642200808472679;0.1342027813726123;0.5830239679592756;0.06365170140638018;0.03113134500040436;0.15168219339836556;0.03005196914939309;0.0665309360593913;0.8189126376407225;0.13100727572332616;0.012738308924602783;0.07313928094358374;0.060398315904502016;0.03594366374906858;0.0009844487757561023;0.00492248634625445;0.798984291203939;0.03587882523076367;0.004633936615387043;0.08267942092533102;0.0785832965980081;0.04614549879674101;0.05132289920233367;0.0572577719238783;0.05110132179393939;0.032225012100677894;0.029041135520306745;0.03125284694015676;0.042257875213890156;0.036250335091362024;0.025818432210336723;0.03981111746410688;0.07404543018243148;0.1706379989577756;0.05384005388014231;0.03531375777067507;0.025069622132969198;0.05030805063217921;0.019294508622779635;0.025994142644800086;0.10497001224940017;0.011198672520611748;0.0023151364824614226;0.006483726695393724;0.05739405139583286;0.006761658516835164;0.037064418709599777;0.03709792595087848;0.008043961582519224;0.07633190951882006;0.05742813731550855;0.03437028484939652;0.03334775213993401;0.05177584787391686;0.021490363452588517;0.9546324571435242;0.06817510121185455;0.0353585658833453;0.017261301176869942;0.002233437505386876;0.01779171616345934;0.020418994263976042;0.05132630117538554;0.08708035289081235;0.0950478207370889;0.027471765402677206;0.017214171003272324;0.008959134102747473;0.11779608873869105;0.02182700812512115;0.0721173757695788;0.05215088767165824;0.017716674772974957;0.01657934927299744;0.042134220486984834;0.040760944924519725;0.00820976515697533;0.017452227738313432;0.06666969240704511;0.5652366538797178;0.26797655779656565;0.02683543681295705;0.021633152641085562;0.053183670989682116;0.000884075230885966;0.16584541045287596;0.02223265946758102;0.021809006345498046;0.008196252750183841;0.02942179413674582;0.021259511151428486;0.04515676053102522;0.19675933072832796;0.033762439276925;0.1397692260549813;0.04428683232114529;0.019153389414466246;0.031532362657658256;0.5500239525529853;0.00817808102692561;0.07009668039396429;0.006595354109862636;0.023118360316625664;0.01873169118935944;0.010243797362248558;0.013579272193054215;0.2590532079665999;0.007135533600696607;0.0009646543915838022;0.0016157048020198472;0.03551556847109679;0.5240683167479301;0.08384414468360203;0.6593451288832364;0.017632230637125476;0.0323739321142715;0.02680033893548034;0.053423561792281846;0.048529841341883755;0.03329277312342324;0.030690232358606278;0.014268788713835788;0.0021292977467172202;0.006536054520297331;0.021118543553371272;0.8666832297430326;0.16800191896153976;0.41780702754097554;0.0865199472401606;0.07024688476293615;0.08716644490277625;0.025377012036092623;0.015710620721412178;0.04092692965008356;0.057379468437949804;0.07060157797722631;0.875690501903602;0.0415230195908198;0.5577337543695768;0.007632879566326431;0.00695885431306275;0.007286755772928136;0.005454787970240129;0.015224856050447455;0.03348112221313693;0.0034600563309858355;0.04912989695930527;0.0010787277866911632;0.01630095590064186;0.033615161051894715;0.13078953102545138;0.055295231023442026;0.0;0.09601382011195299;0.005668180620109698;0.03751088257521804;0.03769877383642043;0.025916085846894754;0.047069779281439225;0.004341498941560785;0.012567024111922332;0.010178875573709896;0.0016285838350148841;0.010512452143869403;0.016684791655153543;0.027887004052415083;0.03514978617205468;0.06319760999258567;0.044522784360473786;0.07927178223631985;0.016336872717865457;0.018098389616255532;0.014441927310234776;0.05810551302596067;0.12666307030415788;0.8548573757841157;1.0;0.03695500518838331;0.22183008298701784;0.42672975870992624;0.28212125853766234;0.149139047638064
+4-tert-Octylphenol;0.0;0.0014444546688947815;0.0002511530747481131;0.00024259108136068475;0.0009693434245692787;0.00944781712749482;0.0;0.0016224393094899548;0.0011325266086177558;0.0030943373553738197;0.015823736415895358;0.02953757987467966;0.005296625757488818;0.001001521638797221;0.0038797433712797163;0.0062683098932208876;0.0;0.0008396037323956462;0.00136981129028025;0.0008850018159277786;0.003666659227750024;0.014116465783622247;0.026798511513508164;0.0;0.02032862278986232;0.0230278805613981;0.02409456502910645;0.09868154598184874;0.08409593490412744;0.06580934844644185;0.052962219812280685;0.03676039569042174;0.06556557686799305;0.0011704201298430926;0.0045837936001014625;0.11278393234332308;0.36355235726084206;0.14688572946771086;0.9472756889952365;0.018730643021010362;0.001529056994169192;0.0003703979192458051;0.0013854035772312714;0.0014343322953718513;0.005105443798301272;0.030263185475206525;0.030627222145962703;0.02956463602008338;0.032036344909482505;0.002210201480735437;0.0010047754582867842;0.0;0.01990108334026571;0.002990329506453825;0.002209110550305595;0.0;0.00026327594005429785;0.000296623627469427;0.0009105517470197657;0.0077654445477911655;0.0016577867006034416;0.005913129854948806;9.607181404285088e-05;0.0;0.005922687943252539;0.0003714262892159143;0.00031196643463068897;0.007289340518588854;0.0006629337398772724;0.007947839740225959;0.006305044133324724;0.0016403764284013728;0.05019401705004634;0.05028617264745056;0.026590641378702713;0.025442060701887634;0.13566165854957513;0.17625200339864774;0.0013532756639773643;0.008403900673428168;0.023601827228368528;0.0238651338514288;0.029241826903285858;0.028248637223551535;0.07794154691134313;0.07571511920116568;0.004626281548554138;0.005821105790099501;0.04320642096102901;0.008855240191557728;0.005302004432735557;0.008385488092040351;0.028723330069765317;0.011078872417487924;0.014510350759785979;0.07968781834524463;0.08143889003900759;0.038119389133610806;0.030521010438134082;0.025173512060095504;0.09372692833211088;0.03902680379749438;0.03943196197368942;0.03756674233636255;0.02574903505492728;0.0006241556756823735;0.0014405251205629537;0.0014429864559616563;0.00011581614330050356;0.017438508262525746;0.0006162630416160399;0.0008731862722556309;0.011178436831778764;0.0011515132609405219;0.0006764633513559211;0.0006814197418999352;0.00018653858712344387;0.0013274729761751252;0.004683105356559306;0.03457324955536141;0.0008903209699612992;0.0028733599149782115;0.00020267655556800276;0.008704417507986199;0.009464334650712466;0.011568912312782915;0.013628512540404697;0.055944867203555654;0.05539126306962579;0.04448658640679804;0.20100464823381606;0.15404560375556325;0.008035632649400371;0.2586907336581194;0.01354904949862335;0.03739131911894814;0.1224361353146825;0.4182490858834445;0.10105479498013771;0.09430171691694615;0.12645272875406507;0.3819879967735837;0.06508647611167612;0.122487731060689;0.16870867643649265;0.0426773143075709;0.04262510557187158;0.06565121135339384;0.4255175510530438;0.1235805533153419;0.0038743624625135176;0.09711927238088609;0.9325525162700331;0.0675835995579223;0.20869670633248852;0.2700887361775854;0.36793087647173683;0.100919258698789;0.27802153710750377;0.0027687693634982774;0.07658659870355415;0.09208015459278843;0.028459104802210495;0.0011740686542094205;0.0016106880882936969;0.010619126712060773;0.010321449647998615;0.00030932388869807397;0.001456127151639694;0.012192991719467179;0.021797766642529855;0.0;0.000362882929661699;0.0027286717736092416;0.002358920695079902;0.06931314153971983;0.009464786036999821;0.01464831194393402;0.058200218052674654;0.021444025279724218;0.04387740608574453;0.0073764500026004655;0.04311871372827462;0.0219508554082391;0.003287577913722588;0.0012018464171900942;0.0010168162459087996;0.0;0.010681106997351244;0.0008037733012412687;0.017389072062646196;0.012310236051056076;0.07825192199920696;0.0007719479441782566;0.013916763372653358;0.0032046122996631106;0.003367917878831353;0.022534630587279947;0.32066534563710014;0.039386689377726804;0.028507746033553036;0.003348133589387108;0.016626751061673457;0.0026294754034324927;0.036842072685068866;0.00014919330085378347;0.11216172528137418;0.11924095688412796;0.11879214569629513;0.016948468255938577;0.0018887904315374232;0.26801424233862575;0.042325344324621136;0.0070707381505790414;0.029496811443058112;0.006738867098500136;0.02859957847620662;0.051746808955688554;0.0041884613675479765;0.005116963947174304;0.10369478821219076;0.7663526459976552;0.05279165609825575;0.0009980964999407125;0.0002656241009864315;0.000462899172877458;0.0004714708550810125;0.008925517407353931;0.0069743935586734146;0.0018290721545271154;0.0018436764421019584;0.001811419148276369;0.0011170664046881034;0.0003759282838313045;0.0100985986893639;0.001350542513642751;0.001432362390600985;0.03044557612954857;0.013853667688775599;0.0011437579088484206;0.029442157308020443;0.1331820800755849;0.1153296773127355;0.08454481163040009;0.10427483523552922;0.008550804773688168;0.012621919968422832;0.0034711799877352274;0.033745219286484315;0.007879266978654511;0.003978525315187461;0.003889136175403934;0.004403319353047119;0.002702818439401921;0.026193308068348974;0.3287678759340552;0.6816703171432911;0.3706679076341269;0.07825879617564425;0.0002919466585344746;0.10091853422287453;0.007317711138894936;0.0005390868405096192;0.0030840200111048135;0.001432671648164479;0.18269911539569664;0.034612115557702376;0.03169213799084716;0.03159896784485001;0.12475242413272862;0.027453242298662976;0.10497935481466462;0.005260899625041906;0.12036099117595893;0.18790185625310027;0.4054250420417885;0.0008919382074686897;0.05134273778676265;0.05252123834226405;0.8618388147450954;0.03728184713739935;0.015174387597387096;0.09988318410804;0.05183833652447289;0.003024135468597416;0.015822067278685438;0.00057485385377427;0.0006677729198084861;0.0;0.0686472670320989;0.025478872091647484;0.0011144971687260192;0.0005863786571268422;0.04780696327984699;0.018598345338035716;0.001081515986695114;0.05440656401020717;0.019022990806563965;0.002793074151130011;0.04045940180611238;0.019955509788766375;0.06503535481025774;0.040574638404832185;0.038130880556692635;0.0014991664271481102;0.08435593379765455;0.018570902915940178;0.012246437748431422;0.003376251618982412;0.05619560331857446;0.136572877423433;0.004361699506134609;0.0005763787920711684;0.0007543419529452446;0.019217938923374825;0.010145900024955776;0.0012940768350158684;0.3634374192089165;0.03067930028201162;0.01398276786602865;0.3557642127241428;0.002259059608897414;0.036652315669677686;0.002128186005818223;0.051934763373813884;0.02033688392273727;0.04625997676455108;0.04831757921349361;0.05677343613264482;0.12394282699468323;0.020331501860103122;0.019614615517711258;0.933348027918741;0.9420947118350893;0.05544653529849242;0.017716295810575648;0.031038714325936818;0.017471159510836054;0.0010208860887612285;0.14856838239430142;0.016539137634939804;0.0001812106233969561;0.4784788713193473;0.042544454456221036;0.0007584460467148288;0.0011969007824188152;0.0;0.0012333738952427595;0.005305226304470504;0.0011229200498402228;0.0007925189393125499;0.009600542960689228;0.01656133540533975;0.05807855335678836;0.0603683742922224;0.10564927309890038;0.0023569015949635444;0.004097343514164338;0.004446995270923359;0.0018839771911337952;0.12124975910494759;0.003116649959014597;0.0021218682899506566;0.05046812290349211;0.020667505829356694;0.006781184307970328;0.006164193060522573;0.0017444176773318899;0.008936707470623051;0.08097678737705756;0.021171756942126866;0.04691224918386811;0.04143977132832007;0.0012832849125235077;0.0012108483767504033;0.00219120039171092;0.010468252285413543;0.025425684823397132;0.030696038908562987;0.04641312597186026;0.03695500518838331;0.9999999999999999;0.10715543208255485;0.04930178757470795;0.15733674957826174;0.14441111333967438
+Estrone;0.7316862182300122;0.737825578224457;0.7808320161578779;0.7393663340823324;0.746186561071614;0.7545439299084106;0.4166983222888759;0.7502540059796882;0.7467925190230479;0.7670500921367084;0.30533923965553705;0.7535422360500714;0.4703140383575468;0.75374349416457;0.7511673106888809;0.7237822055148401;0.7691007607581224;0.7580582593169944;0.7350802154320234;0.7545994498056143;0.7601285197283745;0.7506140806321652;0.7568670644590164;0.7692563993627948;0.7517408639451605;0.02775143199507908;0.40720344028876404;0.32025778702651997;0.2874724451725617;0.32359420643703896;0.17077247944201238;0.18434906531395034;0.3151038956275799;0.5680447071587708;0.47184683999170807;0.7823826417462821;0.6541626031113352;0.15936694753263392;0.09076042441342111;0.44960315270407414;0.1449006941649168;0.5209422554230173;0.12273625631022907;0.0011285446429439652;0.07731301261073266;0.19543270303463137;0.19615559877581745;0.19409230574772626;0.20024287817314848;0.35564903227320555;0.2721633192125878;0.10984810981006872;0.050676316954050296;0.03055238803074639;0.2559726855026937;0.5305713571795823;0.26843954246390694;0.3509961392552961;0.2366803194320369;0.022769520223824665;0.1847011162990994;0.32391062457349556;0.4099484242013858;0.40349856773788545;0.2696504879688826;0.3336699221031994;0.3465934282655499;0.25122712423741916;0.24650104439472265;0.24874983468110687;0.22819750098203154;0.17327280423692154;0.0686064625909449;0.08176486906565585;0.1578764070449628;0.15622769358891506;0.026033623284675036;0.029390479792633636;0.04797497275618898;0.12083519424863633;0.09376213274218714;0.0868293485708536;0.06658441893829718;0.06381546514183911;0.24377886573230179;0.2292337764791549;0.07329791528019344;0.0714690736731239;0.07226501846253311;0.0637578597453073;0.06904903085765075;0.03596560147489163;0.0645861267721461;0.07715029303704145;0.08823115323995723;0.08101583298768891;0.06673537247531186;0.08605733359298604;0.09863556835955888;0.09439283612269317;0.19152643499645855;0.08359435981548514;0.10891435221104145;0.08204935879447264;0.10233524338670462;0.49916416362440524;0.4334786528156877;0.46037839694411736;0.46910617181875514;0.5624241279744667;0.5313299246662669;0.49026804974314026;0.5692412867412506;0.5552579707253132;0.5420375025230294;0.09810915442754778;0.09109987865101436;0.08309965229146422;0.41803823637949866;0.07019672810090268;0.033197200027033254;0.12065975078775967;0.4082978257566834;0.018221387069948452;0.02122281388480274;0.013496303225970193;0.01317180071692438;0.04754672566426252;0.04974018941915609;0.060618214747842306;0.08674948140946359;0.30958597934604776;0.24835363547938138;0.12082371548112734;0.7737174716408716;0.23677821646157235;0.319928870156758;0.3104659264541211;0.6747863562000748;0.7673649457646923;0.3072825033746112;0.6412414871523048;0.21699108841983022;0.25640570841863747;0.5560896048714981;0.11861791562554613;0.14582935584577317;0.10254346285190341;0.2316812113573538;0.13014745523839855;0.432384330128685;0.15480055054868777;0.1732999181211795;0.05069814436314278;0.6525964598110658;0.5091287394272673;0.39627945811730647;0.22349807402980124;0.24666089786585285;0.1564279586943271;0.31574800126780295;0.06640008790407728;0.10636886528789956;0.10780751544669477;0.03510048451120456;0.04214214511041612;0.025903705791670097;0.022475627970166924;0.030605893194361394;0.1534351023181599;0.10871727242498065;0.07338015842546457;0.038130167316916375;0.025348959964957975;0.023271336007338547;0.13368386506549937;0.20547785166503893;0.013386339459008504;0.3345675712541478;0.6395533222495347;0.6242338215900185;0.15214703025068146;0.37641997944016126;0.7160599197025077;0.06351106557108109;0.033822499034795304;0.04515399524274541;0.0;0.46656598988358705;0.5664103975690338;0.6608036143417416;0.6037905122581952;0.4583503497705607;0.655159329391489;0.5591258867771631;0.5608525777489145;0.5488972006500319;0.5829919523087637;0.5232820240110594;0.36486808924137876;0.6396380960374313;0.39156047634855706;0.5382742636271011;0.5655205112858717;0.3952627879191743;0.7684351722128888;0.6339013331253193;0.18103914066799606;0.05572332504895763;0.2276054027526414;0.07742414517246256;0.4827436390029666;0.3375463557083311;0.22335623687294914;0.1252810146027756;0.3661637554861357;0.41454924736381626;0.18119544430421988;0.0956487509970942;0.2371145321168075;0.21731740738207253;0.11208395014627191;0.030752451946260993;0.6516903422850507;0.5723149942823259;0.4246548523935481;0.5321575872920251;0.3372227564738126;0.4277854121164531;0.18039759276651998;0.18950599320915823;0.169762787109096;0.2997441533037787;0.3558045536115034;0.10688200444796396;0.21989063278839072;0.1760516876706206;0.2192420691251863;0.2401508393459443;0.22159769106540153;0.4650140383775361;0.19153297742265343;0.17832489828623493;0.11978182572900264;0.12851215235430455;0.29178750440558904;0.05836114088048441;0.10575227165944598;0.12074487251457405;0.03027872827609156;0.2630611162241152;0.2655673328244699;0.05400369999407502;0.6587497569846352;0.16894918602646028;0.06605903679048135;0.08305519563137757;0.4268024004878927;0.1417419845640029;0.18845835237605826;0.08403431184692295;0.2263935954387217;0.06721044648281815;0.034537094855371195;0.11072414073095978;0.056964843762868374;0.43604595710290606;0.4133557945222559;0.48346599222025194;0.15447801107836287;0.125405057106141;0.10812097326551723;0.31621578804757816;0.23603304933011576;0.1922954851446798;0.4106566240072575;0.07363785210956857;0.07290348272593125;0.057369413047924825;0.04873637368830453;0.11875012398662987;0.06931296287496452;0.08413585716569254;0.7250812485386458;0.12017720684426164;0.06760818344273486;0.07501604298013108;0.3068362442303013;0.0429913201713583;0.07312946879040878;0.07381663822647855;0.22303048419159888;0.17923217222288537;0.09754784131876972;0.12925775956976585;0.16915126153672738;0.22941452632604503;0.23572537620199144;0.14342334591360262;0.15790314161261748;0.2679460465822039;0.07071234682358106;0.4181342224046304;0.07062553230072573;0.21462521769127166;0.06174313937118542;0.14626171603496704;0.40848581416459867;0.1864548985632919;0.17046496536809908;0.13519898704864353;0.2257155137043852;0.008254159263208967;0.01592993102345337;0.21119271867728595;0.4372755633079219;0.6997259294711642;0.18832695610577085;0.14268800901023088;0.0689475479447161;0.0524590206150816;0.1889046648278481;0.2119112611871915;0.3294385502393195;0.3236623107932981;0.10392369315246955;0.12067334685522932;0.022186401694471804;0.03641848494060368;0.12975281404854552;0.06879336928448058;0.6012317455415461;0.10562572326542319;0.09937512239338726;0.1290765598722872;0.2224423028629867;0.07508382596641701;0.10744719742628611;0.5413931168056738;0.6697875274168354;0.7958362365737168;0.3328872219531125;0.4245341788396331;0.2162978595699003;0.11446275087527182;0.03633092661939949;0.029925536261676877;0.1318265355808249;0.12787829185765098;0.10016049515130644;0.037013482693436725;0.006153778192704612;0.02071882541361958;0.09530851474920266;0.3365671136814698;0.15243629163283762;0.0013253308036320214;0.06494510330703618;0.02679128336521999;0.012600408843312278;0.20046164848443798;0.0625545410231875;0.03990856047832848;0.05655700844014239;0.062083658663410354;0.08764586737466713;0.004910617644258945;0.08825730246532489;0.17468110686966132;0.1648594275035101;0.18754761984197588;0.12107088718019321;0.14937818218103582;0.7646606126510852;0.08783256074378515;0.10487204778704248;0.06384587871128945;0.25269235486962405;0.49655310370836414;0.5085843123138523;0.22183008298701784;0.10715543208255485;1.0;0.9032020173696237;0.47758369203734863;0.3881349843527812
+17-beta-Estradiol;0.7486162781172123;0.7882968816906623;0.7837942089587673;0.7632083922193631;0.7708246132828043;0.7879195266169382;0.4284888439615965;0.78365304764254;0.777773741942568;0.7905801522486887;0.3045870108626561;0.7788219267325113;0.5338453826415958;0.7866945130007348;0.7708411302690603;0.7511900624867347;0.7979752352053466;0.7984549237809424;0.7831481695352333;0.7965665486458883;0.7817756280396032;0.7729079973635005;0.7790534907772959;0.7919667787396079;0.7681406944670469;0.022009202345095576;0.4118632812936865;0.2898749177048506;0.2851064546162694;0.30433153725219547;0.16710145370612683;0.18065977764155852;0.3074399747567661;0.5831972769106485;0.46983119501250376;0.7751476221004817;0.5510430929276285;0.1431318235110625;0.05016123061133588;0.48046432819772994;0.1420699158443022;0.5545670456919762;0.10646798288057445;0.0004767055059963975;0.0615838174342296;0.048825806255744966;0.05025447207783364;0.05092917338268296;0.05237610144325322;0.3625791283266558;0.27532221048265904;0.11283952143726923;0.03900813428494792;0.019793827501881717;0.29584545494707765;0.5621723272474655;0.2630388345052431;0.35114358111769717;0.23708356292096422;0.015955107445805982;0.1839317513360928;0.3135212120342182;0.4056712394376771;0.3983162019904313;0.26193880432873395;0.334867596540955;0.3475354608388483;0.2516999733914164;0.24694932466204056;0.24919428963850954;0.23306598532336134;0.17454627593460656;0.046286930497154814;0.0597991143808578;0.13746237113259907;0.11917512475556007;0.018361287656122056;0.019267525081700865;0.025777736521936885;0.10494001745981113;0.07223102463335554;0.06669454113041091;0.03990019158864276;0.03901693496796849;0.21145521439509798;0.19783325164992493;0.0657810973859897;0.06526645449836385;0.08816065960800909;0.011768659083999482;0.062301880872914044;0.03319400868094822;0.04606145372901059;0.0754569548065799;0.08182842391181053;0.0626758109627341;0.047536933651063394;0.07258127909948764;0.07723087716580013;0.0796808183078079;0.17286654448214894;0.06098230584778735;0.08286607941481271;0.07402861227788944;0.08491808437057063;0.5374516450741003;0.4668586780295591;0.49649196902585346;0.5042144292959412;0.592815328890817;0.5650328670234963;0.5264820848938638;0.596930236380337;0.5834937617257304;0.5761122369557875;0.08844886321275687;0.08236256682057205;0.08298884594541625;0.436818628677691;0.05596319456646535;0.03544343339158549;0.10921734123726999;0.4301865228212249;0.02637271776625971;0.019501228234737163;0.011854252904455279;0.011847549933929976;0.05416936855396231;0.056031454254680466;0.06172242590866463;0.08904057284675262;0.26560881194762137;0.23572706628756637;0.09266608690859857;0.7940265780986792;0.23390022862131876;0.23568141314344906;0.28731458847651714;0.6989362571272902;0.7667954145257119;0.32431269388391953;0.652096402501572;0.18764956588383994;0.2581356350703815;0.5453651041111699;0.1333203130754468;0.16481547130176438;0.09358881986580649;0.17709222395116397;0.17687931545062216;0.3874727663888808;0.14122558785207603;0.1444575902252467;0.04166446751717046;0.6996115502726872;0.4544265534819415;0.39126052234774655;0.2026888900461019;0.23064447863286072;0.1308759275843426;0.3477223539927992;0.028172296234152346;0.07982361770453107;0.051307497981778354;0.028447660060828096;0.01384500491903614;0.03768509858524288;0.016548769937087135;0.02463936247381902;0.1414018956212568;0.10436918847313621;0.06930436081423116;0.020177260733392866;0.019239368680451653;0.01729280164825356;0.14822850192201933;0.15311609825639327;0.019345257955607945;0.30469081074282134;0.6190061606799823;0.6060660635409764;0.08885741904788523;0.35572228888679064;0.7199626967989273;0.059431669922650913;0.03876327191935963;0.037131190223142936;0.0010472921780459992;0.43299474185412284;0.5641161467280312;0.6486487450730289;0.6600815092096166;0.4457022815086413;0.6133523767302659;0.5273372267480461;0.5670489794896091;0.5546887117953263;0.5894583116342411;0.5538477590599714;0.3642661257652666;0.6444991951212962;0.39418362849157174;0.541707038752645;0.5807998425730492;0.18730495033298858;0.7849731648905588;0.6294813920123672;0.1602472495235264;0.048304706350032804;0.21470932941573423;0.04305018039528161;0.46889769427851447;0.27953793772251373;0.22287331458298382;0.12808393616350705;0.3697435084463296;0.4015790920812787;0.17635863684754324;0.05994012829386188;0.06751517362035594;0.2019213257261825;0.06704216927853984;0.02791163179635817;0.6639705573547117;0.5844186529889008;0.4596467227429169;0.5594372251858248;0.3271687843270528;0.4257127422145168;0.1796027782428552;0.18976832274374775;0.1683146969867756;0.2920755108903004;0.35542515956586385;0.10619609455023311;0.21886047896002706;0.177227667856848;0.21908783199405843;0.241763158993476;0.22182403636033596;0.36736270751806416;0.14379158324017635;0.1079307993685684;0.1251211768946397;0.1443167680163643;0.16565913278162875;0.06297592750375755;0.046366231348350745;0.14942020900177685;0.03610245767017298;0.2929577034490025;0.29497377792693014;0.052397394402694385;0.6633568194478519;0.0977436877015879;0.07083993674673054;0.06810104693383776;0.43255585274157315;0.056072850438993536;0.1811825558597149;0.07433459875254349;0.36210852258126697;0.007177869236543034;0.04435292200944101;0.10200389497345524;0.03441305707448307;0.45478257237656455;0.5267223334990493;0.5341451472473808;0.15260207271345097;0.131461837764294;0.050244566122840374;0.33001069134618927;0.1107248402297358;0.2054652707240375;0.3863655650457991;0.06779833974271748;0.020609677393254488;0.027948506493620386;0.07844253129290411;0.11686740192175828;0.06268997429513168;0.07452998403909326;0.645894829403859;0.37399386388349243;0.08242648799293419;0.05179218240551876;0.30288365288489133;0.0695398443450885;0.10283484944273932;0.07584031571083154;0.10129167622010667;0.18363444797256967;0.2152186528676438;0.1311560790732858;0.1676896563352124;0.25584490387417524;0.26643747977093013;0.05796997217374101;0.18627220881450368;0.26728602409183116;0.06606545305179509;0.34810783826271335;0.06064603406214062;0.20227281104194386;0.05672246026902474;0.11734659728354363;0.11463614870550139;0.19222736315684724;0.22639799948035383;0.1054251581503341;0.2534811553343772;0.004849733626968195;0.017577602124713806;0.21263988354169389;0.39639919785591715;0.7059756039557669;0.1322444449477805;0.13888264736647776;0.009679906800986002;0.04482755329981098;0.19404377922733837;0.16619909576247152;0.3248318392929335;0.22489954113753277;0.0518894920015883;0.030403046526316552;0.022191019656295555;0.03374112749717319;0.16279356582741056;0.03872197501512275;0.49594619951028346;0.10808029498183042;0.10157554866069414;0.11798255435306745;0.1951014105757896;0.05660638306416509;0.10783191016715046;0.540601350066011;0.6727966643504392;0.7644893925961387;0.32808929525026514;0.18788748033053823;0.08746813076032449;0.06176815777667292;0.04918375270794708;0.03267258848390243;0.0313432597063356;0.3261707942763502;0.007836984228048465;0.00290549821793176;0.0063993963171340975;0.011251111250409031;0.06912700866187377;0.36681169578726575;0.09656054813358023;0.00042177201707408737;0.05585860920266196;0.019896552566381256;0.016396549768404836;0.15070289714300125;0.08606593036516537;0.03966113123199409;0.06570097757401347;0.09298766014044517;0.058961436443426135;0.003819019051848381;0.05067718250168001;0.12427724998402681;0.15591917909208253;0.2468068554668102;0.21096311921457336;0.1590111957979284;0.7593999403782158;0.07453140976102705;0.09279644951390661;0.07143044766896733;0.6406153151112499;0.4430098449392238;0.6574542427224658;0.42672975870992624;0.04930178757470795;0.9032020173696237;1.0;0.46118413848735573;0.3574090148392564
+Progesterone;0.16855366571746844;0.18451691951536953;0.1741157871887139;0.16716294231837267;0.17336036429232443;0.21502952564780214;0.09385688119535905;0.17455800812039682;0.1742915586250145;0.2253953560026549;0.26650128576448356;0.17849242588723108;0.13504213850537453;0.173249829558199;0.24354836241817;0.2331035815911369;0.18007193817114112;0.18068207064861247;0.18388707790794964;0.18203638255474203;0.17461278540009825;0.17224673275700833;0.19614253424912878;0.17703675988869438;0.1843350415790154;0.04033475241741704;0.26711635074378604;0.33240692153360163;0.35915662433951506;0.40721119660696625;0.35218487263045506;0.13929282141296603;0.24618962628085572;0.28360767813972476;0.16065384925742837;0.2180878610093058;0.5670310987014165;0.2654146954489739;0.09656183191933077;0.10987666355917532;0.04693767105965389;0.11880135080809781;0.08947228467927941;0.001300518417838089;0.0671934786951035;0.05843969774144837;0.06497478159155252;0.05831472057085603;0.0673674174755416;0.08097379319537686;0.06359344850984062;0.04934825859288722;0.0323676592778168;0.019172079777700808;0.09972114626604418;0.11751510586697847;0.07959078886700167;0.08734439784967887;0.06755561447404941;0.03997113383907275;0.05209377875358885;0.09266642537021204;0.10019373652160729;0.09742739506339196;0.08299738765688675;0.08431576956435442;0.08724043301836594;0.07092485418748379;0.06711480656771668;0.06979103649031068;0.06293854307239473;0.04707631154681097;0.3117854662443953;0.3301970464108451;0.33730522003569635;0.2645034826540396;0.08251668260712956;0.13226233753576289;0.020291836833380136;0.21311809236340332;0.22215039933690442;0.21909917464751008;0.2915748110389822;0.2355827792562736;0.16058359042203307;0.13070102157167632;0.13700972271500306;0.15630857105680038;0.18822616661975913;0.07047734843710313;0.06669739324800661;0.06688652531726226;0.20411279567038593;0.11057527729054747;0.13281433925054453;0.34274887034659274;0.36343578000471055;0.14495727657696503;0.20016426872965057;0.1416794938331487;0.2937066790285641;0.17407966765260832;0.2095560745921893;0.15125308661797732;0.10274125569637141;0.12207352192019733;0.1009650243185629;0.10576772150015455;0.10694703631265637;0.12697554824715007;0.12135146703845318;0.11484314908513844;0.12735761683131785;0.1356022158779262;0.12776071599762592;0.026918666857023658;0.02265019764397204;0.06015058597897548;0.11275621654612689;0.14418807826113927;0.016552435532990246;0.0428072954615992;0.08745434303337973;0.060104346930247556;0.10843473240213002;0.048320435793669486;0.047537457973792094;0.2250597135115284;0.23282589367880702;0.26897293008857825;0.28300727529185016;0.39969663940824135;0.19137296074014856;0.41889193920212875;0.188439261240105;0.3275629695571044;0.5069784031187944;0.3967567038641159;0.4996356457288234;0.47403178511061145;0.3554905920945987;0.4939349918437435;0.5239466508472314;0.3130445179504719;0.44783037370737067;0.37158702090662;0.3379352201569602;0.3445424701379335;0.27088142326980247;0.38821252439718296;0.12411478132215294;0.5068587484670869;0.3160871070685338;0.3405066130419798;0.33801172675927166;0.6282531472747006;0.475795519715351;0.45748812493633;0.3575624890219071;0.13702681634920644;0.3274081474433233;0.15782108837121647;0.15077794331244618;0.0493886103899397;0.039371831295961904;0.015161255668236243;0.05545508721271903;0.017583414929844447;0.020051960566563946;0.25085564094653134;0.1479076215288289;0.05401926260967191;0.08317139580942778;0.017787224203136255;0.024049911983453614;0.26890091016969797;0.0661232773443774;0.044646528148214036;0.26958120641879474;0.21596357551469475;0.2072133211995398;0.04987791874537166;0.3041968533270175;0.2880138263560018;0.12789796801351827;0.05461099582374789;0.10542015024447599;0.005914050394378141;0.12769054809358427;0.196174500550551;0.2530960671156804;0.17252717110156235;0.21732663010793055;0.14847312768715137;0.2119955009407424;0.1471238122670346;0.14478540222303235;0.2812541279602355;0.329666743921685;0.2670381966564167;0.28135354891381353;0.2715563558975882;0.2821368080601603;0.2763335888405337;0.11466396761130304;0.19986617259156744;0.4899211415060335;0.274835032430631;0.15008725734938613;0.23602616240374275;0.1618959216378998;0.17992089318196064;0.39620946049919414;0.1959842686711364;0.2730231611529007;0.15920638943142487;0.26997704769562786;0.2858965029914426;0.0695536176701099;0.18778030076487118;0.3321455302287253;0.10199516662045226;0.043233830437791256;0.152647996208716;0.1404859549177433;0.11532422985812806;0.12841423410141228;0.10427354652385133;0.11060601505479387;0.05167410879644035;0.05456195709341725;0.05160844416588359;0.0939831956056046;0.09301832817379224;0.03649350559644575;0.07520998797244996;0.0880237550302972;0.1314425012025761;0.10531796786561139;0.07056255790392091;0.2883692864266196;0.15767797611001277;0.13159948623904494;0.19797039817127957;0.13512647372027317;0.19320066161155736;0.05300989615707701;0.03478585696689152;0.14426815557108;0.12005016455773139;0.16673762986393673;0.1670295210526732;0.09653095942250349;0.2187363231152506;0.19614313579790188;0.15371205430014023;0.22980143725874883;0.16887184887186552;0.13341390161217787;0.2494786107138329;0.17597728015210024;0.3405093209250045;0.04994796798546918;0.0551208613511447;0.059592754419966934;0.19848846108455545;0.37655455861064363;0.29899104486192735;0.24420155480450847;0.05297895593261419;0.14969647541316627;0.028837603613359204;0.2658381230963553;0.20584934027326676;0.08524806924158555;0.4393872398631922;0.04598747213101775;0.1708531939128645;0.1350329254243908;0.16131240126198773;0.0995218683617028;0.06203511261090774;0.17429966849440962;0.3650557720527025;0.1519980241526961;0.1731814325261366;0.008951494344084222;0.08193716264338909;0.11551011972288484;0.2078257968312266;0.05988893593551756;0.11359056382253867;0.13055376180744843;0.1817998437856014;0.2897931674576709;0.048335574677373885;0.2888537015110866;0.27659287351182543;0.09513122718362071;0.3170275687271385;0.2301494611915501;0.16092564725740888;0.3508245223761747;0.08580262917530099;0.069947672104223;0.08375472338703117;0.04660412441814832;0.3867396041098165;0.1952084556476743;0.1251124044265376;0.11740856368128962;0.17920353786212723;0.030211391855336583;0.1635500874171271;0.30929792866051165;0.32690733643008596;0.15672784671936557;0.2355651449317592;0.24896895819609463;0.21251691692761093;0.06939851100829626;0.23400440919791293;0.39129124069859955;0.14663796833041015;0.2549411168072453;0.17560805589533468;0.042036227666719404;0.14498881883398032;0.1336963467538178;0.2480670805025969;0.07396760535317494;0.305657490461376;0.23728045026124375;0.24812175163552377;0.19315315544983586;0.08995712382196698;0.12196984193979978;0.2686119391190106;0.15662855070507825;0.18824414772064918;0.2596371054654303;0.10129213212454667;0.23901319609278993;0.04223144923542265;0.040127420744713004;0.19405138844354317;0.19223034020148713;0.14615919658027932;0.08312284349626689;0.04851430636197995;0.016749368453205894;0.017037449409968198;0.23979614742850838;0.2132501766182426;0.3815645714914564;0.09400770852976463;0.020163377014208478;0.050781991802384206;0.09880950883552878;0.044477499868078856;0.14103955527060022;0.10460243409726344;0.06448113944505872;0.13570839453582081;0.07390044398485632;0.24809254548539617;0.01121831532202856;0.08573729719399652;0.24497590920257784;0.32551020923646284;0.1711473191996843;0.20045703464078965;0.2944579821611271;0.1934877855264416;0.06872514927740564;0.09695634296539514;0.15121656982998094;0.33332603273765643;0.37575157779584495;0.33669192146053417;0.28212125853766234;0.15733674957826174;0.47758369203734863;0.46118413848735573;1.0;0.8662836910447197
+Testosterone;0.1771147315306595;0.19369169872933167;0.18179856323559515;0.1758644401721163;0.1824966876845853;0.24727012595505546;0.09299865866975005;0.20762043268060604;0.20696502403217343;0.21638179789304654;0.18033845022504447;0.19005061361481054;0.1241779803577553;0.17258358922524866;0.18325439658435724;0.17950705397304048;0.19179872229066658;0.18847771330432947;0.19173460025744812;0.19178157922955374;0.1903352576996871;0.18802322079062386;0.21289379419065443;0.19557730658952888;0.19198719809720474;0.042951608621639444;0.30880886098810983;0.2628686353170746;0.19921342254833432;0.42850593774921963;0.3398873468492177;0.1641707634530079;0.28664381641617315;0.1510215770901302;0.17835204641434188;0.24027033259121347;0.4371608802369236;0.11093222518798476;0.07079589324892813;0.11323595768497753;0.05242569040540614;0.13106728428634123;0.053945985009383475;0.0015756606860764639;0.047708774991956755;0.061043522722204;0.06918454780983531;0.06411798757255824;0.06997422142696172;0.08488651273317163;0.06585073356702645;0.056098784164397154;0.045778587820067;0.031177864381819218;0.10000553772423125;0.12827101992989798;0.0876720130188127;0.09373104757834806;0.07523356870927506;0.037678890892377616;0.05693471645432045;0.10467498823619928;0.1155445150138865;0.10581668579665257;0.09267361787273115;0.09080873196562896;0.09348930064918054;0.07813961749036481;0.07369984355120429;0.07713032480407146;0.06907477237408323;0.04939328557602865;0.39680780646026054;0.41632385593139004;0.3465932657194196;0.292352520507449;0.12277949244266034;0.19331225800577734;0.025282253120450203;0.2536544428162365;0.2477073008469054;0.2483680801707965;0.3195803749701757;0.285498394242353;0.10265496004045387;0.06644688925273487;0.11752858793952685;0.14942361394976816;0.21675363988073737;0.08799514426703682;0.04819237322431948;0.050883537194934735;0.22558773493052792;0.0886110067800826;0.11695154731152532;0.434973456009296;0.4631899366251393;0.1575236312901718;0.22866616177129054;0.15620768527128526;0.311376133300496;0.19937143711872282;0.2352414101104853;0.16416044282807218;0.10836278381861104;0.12548918123871602;0.10366856925622582;0.10887499050092281;0.11044295205163528;0.13092987194124348;0.12461740515768956;0.11816233129266407;0.1308913620597866;0.14125838887248082;0.13182958425934505;0.032214532987350546;0.02012676574352023;0.04605830867491946;0.1222732873417201;0.09744508960824408;0.018402489679890496;0.044488805746980074;0.09091203366050134;0.050559231787096835;0.1372847654614334;0.05796123935470299;0.05734186902805125;0.28401255913878753;0.29197944345511395;0.34432204016448326;0.3422056405925241;0.3866762262347713;0.20563550931267113;0.4424265020327893;0.19910283813930793;0.3296664885135528;0.39522816803632466;0.42773027316054163;0.4843686447091798;0.4652433480408812;0.4380094584305785;0.5116812498317872;0.5147029877711671;0.3854354836533068;0.49619916134098563;0.4406153437706522;0.35064460033241845;0.4253464991669202;0.3231148814135064;0.35716088302502014;0.15211351509528942;0.556751138386835;0.328204149795739;0.13216741055553896;0.3261323455403189;0.48491808264355013;0.19105928281573614;0.14040670983453846;0.1849459434360088;0.08863905461455031;0.16591714972801108;0.10695430904427451;0.31328340566785456;0.03486749144000016;0.04348693102665585;0.025824953326451246;0.05404902833607291;0.020178968742977765;0.022284433220774245;0.23006079721535658;0.13020333853619317;0.0634184774731202;0.060414830773260465;0.026596573296041617;0.036231208261239926;0.09981685585943985;0.04711128583308551;0.03582478146918577;0.23090831315361618;0.2079031537400895;0.21535342072402444;0.05051367533158064;0.32487202837399004;0.25699522150266857;0.10086896866641386;0.19470204063894617;0.11098877289750769;0.006075991834095414;0.12927366381808264;0.2082286991025265;0.27240094810916426;0.1654349689057302;0.19840999142874;0.16569982850423232;0.2161122709425279;0.14188794086609754;0.13892041895889107;0.163316162934255;0.19714612348281121;0.11328276368401106;0.1797393737639574;0.11912510425789868;0.1513410655357927;0.17376963876857818;0.11727276196549535;0.18242398225791773;0.42587475586474854;0.26019712746688456;0.14368704499704515;0.2071878076412335;0.09453837918890001;0.17883495196186588;0.230407695094039;0.2003708220640954;0.28221288790938787;0.1632240149541304;0.33569524175870596;0.3064105089065634;0.06757663229398125;0.1875387758604876;0.14809372567415943;0.0852574772349589;0.038518437729193764;0.1694183013806351;0.15289185256222845;0.1323269305931256;0.14183815846488648;0.11892832652180535;0.12040055943475189;0.055133306975097635;0.059734777165814525;0.0566711436003959;0.10411276944449463;0.09983202384693853;0.038921466584489514;0.0866119306764878;0.06992238111265867;0.09431159408139042;0.0938643626333852;0.08034523157647287;0.30621301093750836;0.1961893280957181;0.1611360617918086;0.23758939346985095;0.12271395237074852;0.1430157698712594;0.0833933983294341;0.035843502317569234;0.1633740133739675;0.1483671806190231;0.13613729576468475;0.13641339521522466;0.10219746530932572;0.24528101783913517;0.22010021314888892;0.17232404535039347;0.17930641471345765;0.15547769438760414;0.1764623247344844;0.08065948881320073;0.19144552461877729;0.3183099871734532;0.06306342224555873;0.05987974210984678;0.05740354384209485;0.20721138046115542;0.328456758896439;0.32098885468030136;0.23821868337793292;0.07145396369303544;0.19081119513093286;0.057616601871621285;0.2340183931599587;0.23822558856834722;0.06797270073648182;0.43003853617809873;0.02792424887822149;0.18822156250959438;0.16114686619257262;0.22810608062777601;0.0838224184080167;0.08443319924123477;0.1894850392430079;0.265083072227541;0.10874839217026484;0.21783385621466414;0.006793839193263404;0.08475249990448121;0.12988582068761828;0.2837084520725496;0.07764215735572715;0.08398679648212394;0.09380315448372266;0.21450922103222061;0.27742281155579906;0.04435157844941482;0.35472454340204307;0.3010423011492258;0.06572111033523048;0.35449933960739016;0.184212014644299;0.16510341696367972;0.22650136131747978;0.08545503348016772;0.054746540083621745;0.07158142375321293;0.05222918108605921;0.29873505869435935;0.1592048730563699;0.12242150172343544;0.06834825436267856;0.11787482883203612;0.06533075716795377;0.29220597270428633;0.3204987910247821;0.23075740046511872;0.16013387140172308;0.1031810078648983;0.11609557607181138;0.06536501695877456;0.07528353746322132;0.14631099884719126;0.31686299036015636;0.15686508283056178;0.2502894060505306;0.15632555985381263;0.06157073783891902;0.17850524434839174;0.15082352190116588;0.10496525194001774;0.0328681907045638;0.24179240409750177;0.20560588522808376;0.2271655674450096;0.218989372412798;0.09854462852017379;0.1117782001836314;0.32586231433297036;0.16492586594387235;0.1863221551020623;0.23621550072877454;0.12483921692480258;0.16889581762525904;0.03249926663036536;0.015295084861858975;0.20368054392043403;0.18965962379608556;0.1016530064450796;0.12816683398762763;0.06555661306024704;0.022930759762077174;0.019231613914197573;0.15747279820504434;0.088105124422038;0.34732800952940357;0.12915213761674713;0.026497694389320044;0.07320003712462311;0.15992895420273134;0.04418658553634053;0.22031587132600947;0.10334439566995825;0.054857312240601364;0.14588090116315752;0.0720775597079632;0.2322377084263006;0.009182131128330325;0.08725499132616112;0.23335439715459685;0.26456927574996886;0.20593724958472245;0.16953436023943352;0.2915911520785385;0.1972305838560561;0.061557676013784396;0.08503438513801481;0.16053915107475406;0.14738299237590127;0.3485715331892874;0.331614755581215;0.149139047638064;0.14441111333967438;0.3881349843527812;0.3574090148392564;0.8662836910447197;1.0