From 76cda7efc2c004b65d93809df2f3aee9e4ac3d0f Mon Sep 17 00:00:00 2001
From: TCHERNIATINSKY <philippe.tcherniatinsky@inrae.fr>
Date: Sat, 16 Mar 2024 08:00:15 +0100
Subject: [PATCH 1/2] Split des checkers des validations

---
 .../configuration/ValidationDescription.java  |   3 +-
 .../builder/ValidationsBuilder.java           | 111 ++++++++-----
 .../data/read/DataHeaderReaderTest.java       |   4 +-
 .../configuration/data.result.example.json    |  89 ++++++++++-
 .../data/configuration/data.result.json       | 147 ++++++++++++++++--
 .../configuration/data.result.monsore.json    | 114 +++++++++++++-
 .../localization.example.result.json          |  20 +++
 .../localization.monsore.result.json          |  18 +++
 .../configuration/localization.result.json    |  21 +++
 .../fixtures/applications/errors/errors.json  |   2 +-
 .../ore/monsore/changeMonsore.txt             |  38 ++---
 .../ore/monsore/createMonsore.txt             |  44 +++---
 .../ore/monsore/validateMonsore.txt           |  20 +--
 13 files changed, 523 insertions(+), 108 deletions(-)

diff --git a/src/main/java/fr/inra/oresing/domain/application/configuration/ValidationDescription.java b/src/main/java/fr/inra/oresing/domain/application/configuration/ValidationDescription.java
index f56a5f5a3..4fcc8933d 100644
--- a/src/main/java/fr/inra/oresing/domain/application/configuration/ValidationDescription.java
+++ b/src/main/java/fr/inra/oresing/domain/application/configuration/ValidationDescription.java
@@ -3,8 +3,9 @@ package fr.inra.oresing.domain.application.configuration;
 import fr.inra.oresing.domain.ComponentPresenceConstraint;
 import fr.inra.oresing.domain.application.configuration.checker.CheckerDescription;
 
+import java.util.List;
 import java.util.Set;
 
-public record ValidationDescription(CheckerDescription checker, Set<Tag> tags,
+public record ValidationDescription(List<CheckerDescription> checkers, Set<Tag> tags,
                                     Set<String> columns, boolean required, ComponentPresenceConstraint mandatory) {
 }
diff --git a/src/main/java/fr/inra/oresing/rest/model/configuration/builder/ValidationsBuilder.java b/src/main/java/fr/inra/oresing/rest/model/configuration/builder/ValidationsBuilder.java
index 39f02530e..00a7508c8 100644
--- a/src/main/java/fr/inra/oresing/rest/model/configuration/builder/ValidationsBuilder.java
+++ b/src/main/java/fr/inra/oresing/rest/model/configuration/builder/ValidationsBuilder.java
@@ -5,12 +5,10 @@ import com.google.common.collect.ImmutableMap;
 import fr.inra.oresing.domain.ComponentPresenceConstraint;
 import fr.inra.oresing.domain.application.configuration.*;
 import fr.inra.oresing.domain.application.configuration.checker.CheckerDescription;
+import fr.inra.oresing.domain.application.configuration.checker.GroovyExpressionChecker;
 import fr.inra.oresing.domain.exceptions.configuration.ConfigurationException;
 
-import java.util.Iterator;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
+import java.util.*;
 
 public record ValidationsBuilder(RootBuilder rootBuilder) {
 
@@ -62,35 +60,70 @@ public record ValidationsBuilder(RootBuilder rootBuilder) {
             final Parsing<CheckerDescription> checker = rootBuilder.getCheckerDescriptionBuilder().build(componentKey, i18n1, required, "%2$s > OA_validations > %2$s > OA_validations".formatted(componentPath, componentKey), componentNodeValue.get(ConfigurationSchemaNode.OA_CHECKER), key);
             i18n1 = checker.i18n();
             final ComponentPresenceConstraint mandatory = RootBuilder.isMandatory(componentNodeValue);
-            final Set<String> columns = rootBuilder.getMapper().convertValue(componentNodeValue.findPath(ConfigurationSchemaNode.OA_COLUMNS), Set.class);
-            return switch (checker.result().type()) {
+            final Set<String> columns = rootBuilder.getMapper()
+                    .convertValue(componentNodeValue.findPath(ConfigurationSchemaNode.OA_COLUMNS), Set.class);
+            /*return switch (checker.result().type()) {
                 case GroovyExpressionChecker -> i18n1;
-                case null, default -> {
+                case null, default -> {*/
 
-                    final List<String> listComponentKey = rootBuilder.getListComponentKeys(key);
-                    if (columns == null) {
-                        rootBuilder.buildError(ConfigurationException.MISSING_COLUMN_NAME_VALIDATION, Map.of(
-                                        "knownComponents", listComponentKey),
-                                NodeSchemaValidator.joinPath(
-                                        ConfigurationSchemaNode.OA_DATA,
-                                        key,
-                                        ConfigurationSchemaNode.OA_VALIDATIONS,
-                                        componentKey,
-                                        ConfigurationSchemaNode.OA_COLUMNS
-                                )
-                        );
-                    } else if(columns.isEmpty()){
-                        rootBuilder.buildError(ConfigurationException.MISSING_COMPONENT_FOR_COMPONENT_NAME, Map.of(
-                                                "knownComponents", listComponentKey),
-                                        NodeSchemaValidator.joinPath(
-                                                ConfigurationSchemaNode.OA_DATA,
-                                                key,
-                                                ConfigurationSchemaNode.OA_VALIDATIONS,
-                                                componentKey,
-                                                ConfigurationSchemaNode.OA_COLUMNS
-                                        ));
-                    } else {
-                        columns.forEach(column -> {
+            final List<String> listComponentKey = rootBuilder.getListComponentKeys(key);
+
+            List<CheckerDescription> checkers = new ArrayList<>();
+            if (columns == null) {
+
+                Parsing<CheckerDescription> parsing = rootBuilder.getCheckerDescriptionBuilder()
+                        .build(componentKey,
+                                i18n,
+                                required,
+                                "%2$s > OA_validations > %2$s > OA_validations".formatted(componentPath, componentKey),
+                                componentNodeValue.get(ConfigurationSchemaNode.OA_CHECKER),
+                                key);
+                if (!(parsing.result() instanceof GroovyExpressionChecker)) {
+
+                    rootBuilder.buildError(ConfigurationException.MISSING_COLUMN_NAME_VALIDATION, Map.of(
+                                    "knownComponents", listComponentKey),
+                            NodeSchemaValidator.joinPath(
+                                    ConfigurationSchemaNode.OA_DATA,
+                                    key,
+                                    ConfigurationSchemaNode.OA_VALIDATIONS,
+                                    componentKey,
+                                    ConfigurationSchemaNode.OA_COLUMNS
+                            )
+                    );
+                    i18n1 = parsing.i18n();
+                }
+            } else if (columns.isEmpty()) {
+
+                Parsing<CheckerDescription> parsing = rootBuilder.getCheckerDescriptionBuilder()
+                        .build(componentKey,
+                                i18n,
+                                required,
+                                "%2$s > OA_validations > %2$s > OA_validations".formatted(componentPath, componentKey),
+                                componentNodeValue.get(ConfigurationSchemaNode.OA_CHECKER),
+                                key);
+                if (!(parsing.result() instanceof GroovyExpressionChecker)) {
+                    rootBuilder.buildError(ConfigurationException.MISSING_COMPONENT_FOR_COMPONENT_NAME, Map.of(
+                                    "knownComponents", listComponentKey),
+                            NodeSchemaValidator.joinPath(
+                                    ConfigurationSchemaNode.OA_DATA,
+                                    key,
+                                    ConfigurationSchemaNode.OA_VALIDATIONS,
+                                    componentKey,
+                                    ConfigurationSchemaNode.OA_COLUMNS
+                            ));
+                }
+                i18n1 = parsing.i18n();
+            } else {
+                I18n finalI18n = i18n1;
+                List<I18n> internationalizations = columns.stream().map(column -> {
+
+                            Parsing<CheckerDescription> parsing = rootBuilder.getCheckerDescriptionBuilder()
+                                    .build(column,
+                                            finalI18n,
+                                            required,
+                                            "%2$s > OA_validations > %2$s > OA_validations".formatted(componentPath, componentKey),
+                                            componentNodeValue.get(ConfigurationSchemaNode.OA_CHECKER),
+                                            key);
                             if (!listComponentKey.contains(column)) {
                                 rootBuilder.buildError(ConfigurationException.UNKNOWN_COMPONENT_FOR_COMPONENT_NAME, Map.of(
                                                 "unknownComponent", column,
@@ -103,13 +136,17 @@ public record ValidationsBuilder(RootBuilder rootBuilder) {
                                                 ConfigurationSchemaNode.OA_COLUMNS
                                         ));
                             }
-                        });
-                    }
-
-                    validationBuilder.put(componentKey, new ValidationDescription(checker.result(), oaTags, columns, required, mandatory));
-                    yield i18n1;
+                            checkers.add(checker.result());
+                            return checker.i18n();
+                        })
+                        .toList();
+                for (I18n internationalization : internationalizations) {
+                    i18n1 = internationalization;
                 }
-            };
+            }
+            validationBuilder.put(
+                    componentKey,
+                    new ValidationDescription(checkers, oaTags, columns, required, mandatory));
         }
         return i18n1;
     }
diff --git a/src/test/java/fr/inra/oresing/domain/data/read/DataHeaderReaderTest.java b/src/test/java/fr/inra/oresing/domain/data/read/DataHeaderReaderTest.java
index 38790cfa6..31f144ed4 100644
--- a/src/test/java/fr/inra/oresing/domain/data/read/DataHeaderReaderTest.java
+++ b/src/test/java/fr/inra/oresing/domain/data/read/DataHeaderReaderTest.java
@@ -43,7 +43,9 @@ class DataHeaderReaderTest {
         final URL url = com.google.common.io.Resources.getResource("data/configuration/data.result.example.json");
         final String json = Resources.toString(url, StandardCharsets.UTF_8);
         dataDescription = new JsonRowMapper<>().readValue(
-                new JsonRowMapper<>().toJson(new JsonRowMapper<>().readValue(json, JsonNode.class).findPath("t_data_dat")),
+                new JsonRowMapper<>().toJson(new JsonRowMapper<>()
+                        .readValue(json, JsonNode.class)
+                        .findPath("t_data_dat")),
                 StandardDataDescription.class
         );
 
diff --git a/src/test/resources/data/configuration/data.result.example.json b/src/test/resources/data/configuration/data.result.example.json
index 182527413..3dd512364 100644
--- a/src/test/resources/data/configuration/data.result.example.json
+++ b/src/test/resources/data/configuration/data.result.example.json
@@ -1046,7 +1046,7 @@
     "submission" : null,
     "validations" : {
       "type_site_validation" : {
-        "checker" : {
+        "checkers" : [ {
           "type" : "ReferenceChecker",
           "componentKey" : "type_site_validation",
           "multiplicity" : "ONE",
@@ -1054,13 +1054,98 @@
           "refType" : "tr_type_zone_etude_tze",
           "isRecursive" : false,
           "isParent" : true
-        },
+        } ],
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
         "columns" : [ "dat_type_site" ],
         "required" : true,
         "mandatory" : "OPTIONAL"
+      },
+      "site_validation" : {
+        "checkers" : [ {
+          "type" : "ReferenceChecker",
+          "componentKey" : "site_validation",
+          "multiplicity" : "ONE",
+          "required" : true,
+          "refType" : "tr_type_zone_etude_tze",
+          "isRecursive" : false,
+          "isParent" : false
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "dat_site" ],
+        "required" : true,
+        "mandatory" : "OPTIONAL"
+      },
+      "start_date_validation" : {
+        "checkers" : [ {
+          "type" : "DateChecker",
+          "multiplicity" : "ONE",
+          "required" : false,
+          "pattern" : "dd/MM/yyyy",
+          "min" : [ 2004, 1, 1 ],
+          "max" : [ 999999999, 12, 31, 23, 59, 59, 999999999 ],
+          "duration" : "1 Day"
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "dat_start_date" ],
+        "required" : false,
+        "mandatory" : "OPTIONAL"
+      },
+      "end_date_validation" : {
+        "checkers" : [ {
+          "type" : "DateChecker",
+          "multiplicity" : "ONE",
+          "required" : false,
+          "pattern" : "dd/MM/yyyy",
+          "min" : [ 2004, 1, 1 ],
+          "max" : [ 999999999, 12, 31, 23, 59, 59, 999999999 ],
+          "duration" : "1 Day"
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "dat_end_date" ],
+        "required" : false,
+        "mandatory" : "OPTIONAL"
+      },
+      "date_validation" : {
+        "checkers" : [ {
+          "type" : "DateChecker",
+          "multiplicity" : "ONE",
+          "required" : true,
+          "pattern" : "dd/MM/yyyy",
+          "min" : [ 2004, 1, 1 ],
+          "max" : [ 999999999, 12, 31, 23, 59, 59, 999999999 ],
+          "duration" : "1 Day"
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "dat_end_date" ],
+        "required" : true,
+        "mandatory" : "OPTIONAL"
+      },
+      "intrval_date_validation" : {
+        "checkers" : [ {
+          "type" : "GroovyExpressionChecker",
+          "multiplicity" : "ONE",
+          "required" : true,
+          "expression" : "if (datum.data_dat == null) {\n    throw new SiOreIllegalArgumentException(\n            \"MISSING_DATE\"\n    )\n} LocalDate date = LocalDate.parse(datum.data_dat, DateTimeFormatter.ofPattern(\"dd/MM/yyyy\")); if (datum.start_date_dat != null) {\n    try {\n        LocalDate startDate = LocalDate.parse(datum.start_date_dat, DateTimeFormatter.ofPattern(\"dd/MM/yyyy\"));\n        if (startDate.isAfter(date)) {\n            throw new SiOreIllegalArgumentException(\n                    \"DATE_NOT_IN_INTERVAL\"\n            )\n        }\n    } catch (DateTimeParseException e) {\n        throw new SiOreIllegalArgumentException(\n                \"BAD_DATE_FORMAT\"\n        )\n    }\n} if (datum.end_date_dat != null) {\n    try {\n        LocalDate endDate = LocalDate.parse(datum.end_date_dat, DateTimeFormatter.ofPattern(\"dd/MM/yyyy\"));\n        if (endDate.isBefore(date)) {\n            throw new SiOreIllegalArgumentException(\n                    \"DATE_NOT_IN_INTERVAL\"\n            )\n        }\n    } catch (DateTimeParseException e) {\n        throw new SiOreIllegalArgumentException(\n                \"BAD_DATE_FORMAT\"\n        )\n    }\n} return true;\n",
+          "references" : null,
+          "codify" : true,
+          "data" : null
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "dat_end_date" ],
+        "required" : true,
+        "mandatory" : "OPTIONAL"
       }
     },
     "depends" : [ ],
diff --git a/src/test/resources/data/configuration/data.result.json b/src/test/resources/data/configuration/data.result.json
index 0e4b6e353..4182e4a33 100644
--- a/src/test/resources/data/configuration/data.result.json
+++ b/src/test/resources/data/configuration/data.result.json
@@ -559,7 +559,7 @@
     "submission" : null,
     "validations" : {
       "sitesRef" : {
-        "checker" : {
+        "checkers" : [ {
           "type" : "ReferenceChecker",
           "componentKey" : "sitesRef",
           "multiplicity" : "ONE",
@@ -567,13 +567,47 @@
           "refType" : "sites",
           "isRecursive" : false,
           "isParent" : false
-        },
+        } ],
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
         "columns" : [ "site" ],
         "required" : false,
         "mandatory" : "OPTIONAL"
+      },
+      "themesRef" : {
+        "checkers" : [ {
+          "type" : "ReferenceChecker",
+          "componentKey" : "themesRef",
+          "multiplicity" : "ONE",
+          "required" : false,
+          "refType" : "themes",
+          "isRecursive" : false,
+          "isParent" : false
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "theme" ],
+        "required" : false,
+        "mandatory" : "OPTIONAL"
+      },
+      "checkDatatype" : {
+        "checkers" : [ {
+          "type" : "GroovyExpressionChecker",
+          "multiplicity" : "ONE",
+          "required" : false,
+          "expression" : "String datatype = Arrays.stream((String)datum.datatype).split(\"_\")\n                .collect{it.substring(0, 1)}\n                .join();\n                return application.getDataType().contains(datatype);\n",
+          "references" : null,
+          "codify" : true,
+          "data" : null
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "datatype" ],
+        "required" : false,
+        "mandatory" : "OPTIONAL"
       }
     },
     "depends" : [ {
@@ -672,7 +706,7 @@
     "submission" : null,
     "validations" : {
       "variableRef" : {
-        "checker" : {
+        "checkers" : [ {
           "type" : "ReferenceChecker",
           "componentKey" : "variableRef",
           "multiplicity" : "ONE",
@@ -680,13 +714,47 @@
           "refType" : "variables",
           "isRecursive" : false,
           "isParent" : false
-        },
+        } ],
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
         "columns" : [ "variable" ],
         "required" : false,
         "mandatory" : "OPTIONAL"
+      },
+      "uniteRef" : {
+        "checkers" : [ {
+          "type" : "ReferenceChecker",
+          "componentKey" : "uniteRef",
+          "multiplicity" : "ONE",
+          "required" : false,
+          "refType" : "unites",
+          "isRecursive" : false,
+          "isParent" : false
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "unite" ],
+        "required" : false,
+        "mandatory" : "OPTIONAL"
+      },
+      "checkDatatype" : {
+        "checkers" : [ {
+          "type" : "GroovyExpressionChecker",
+          "multiplicity" : "ONE",
+          "required" : false,
+          "expression" : "String datatype = Arrays.stream((String)(datum.datatype).split(\"_\")) .collect{it.substring(0, 1)} .join(); return  application.getDataType().contains(datatype);\n",
+          "references" : null,
+          "codify" : true,
+          "data" : null
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "datatype" ],
+        "required" : false,
+        "mandatory" : "OPTIONAL"
       }
     },
     "depends" : [ ],
@@ -1499,7 +1567,17 @@
         }
       }
     },
-    "validations" : { },
+    "validations" : {
+      "v_treatment_plot" : {
+        "checkers" : [ ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : null,
+        "required" : false,
+        "mandatory" : "OPTIONAL"
+      }
+    },
     "depends" : [ {
       "type" : "DependsReferences",
       "references" : "tr_flag_fla",
@@ -2590,7 +2668,26 @@
         }
       }
     },
-    "validations" : { },
+    "validations" : {
+      "unitOfColor" : {
+        "checkers" : [ ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : null,
+        "required" : false,
+        "mandatory" : "OPTIONAL"
+      },
+      "unitOfIndividus" : {
+        "checkers" : [ ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : null,
+        "required" : true,
+        "mandatory" : "OPTIONAL"
+      }
+    },
     "depends" : [ {
       "type" : "DependsReferences",
       "references" : "sites",
@@ -2906,7 +3003,7 @@
     "submission" : null,
     "validations" : {
       "reference" : {
-        "checker" : {
+        "checkers" : [ {
           "type" : "ReferenceChecker",
           "componentKey" : "reference",
           "multiplicity" : "ONE",
@@ -2914,13 +3011,43 @@
           "refType" : "sites",
           "isRecursive" : false,
           "isParent" : false
-        },
+        } ],
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
         "columns" : [ "site" ],
         "required" : true,
         "mandatory" : "OPTIONAL"
+      },
+      "floats" : {
+        "checkers" : [ {
+          "type" : "FloatChecker",
+          "multiplicity" : "ONE",
+          "required" : false,
+          "min" : "-Infinity",
+          "max" : "Infinity"
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "is_float_value" ],
+        "required" : false,
+        "mandatory" : "OPTIONAL"
+      },
+      "integer" : {
+        "checkers" : [ {
+          "type" : "IntegerChecker",
+          "multiplicity" : "ONE",
+          "required" : false,
+          "min" : -2147483648,
+          "max" : 2147483647
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "ordre_affichage" ],
+        "required" : false,
+        "mandatory" : "OPTIONAL"
       }
     },
     "depends" : [ ],
@@ -3360,12 +3487,12 @@
     "submission" : null,
     "validations" : {
       "determinedTaxonName" : {
-        "checker" : {
+        "checkers" : [ {
           "type" : "StringChecker",
           "multiplicity" : "ONE",
           "required" : true,
           "pattern" : ""
-        },
+        } ],
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
diff --git a/src/test/resources/data/configuration/data.result.monsore.json b/src/test/resources/data/configuration/data.result.monsore.json
index 83a6135b6..bb6c1cf5a 100644
--- a/src/test/resources/data/configuration/data.result.monsore.json
+++ b/src/test/resources/data/configuration/data.result.monsore.json
@@ -690,7 +690,7 @@
     "submission" : null,
     "validations" : {
       "projetRef" : {
-        "checker" : {
+        "checkers" : [ {
           "type" : "ReferenceChecker",
           "componentKey" : "projetRef",
           "multiplicity" : "ONE",
@@ -698,13 +698,64 @@
           "refType" : "projet",
           "isRecursive" : false,
           "isParent" : false
-        },
+        } ],
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
         "columns" : [ "projet" ],
         "required" : false,
         "mandatory" : "OPTIONAL"
+      },
+      "sitesRef" : {
+        "checkers" : [ {
+          "type" : "ReferenceChecker",
+          "componentKey" : "sitesRef",
+          "multiplicity" : "ONE",
+          "required" : false,
+          "refType" : "sites",
+          "isRecursive" : false,
+          "isParent" : false
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "site" ],
+        "required" : false,
+        "mandatory" : "OPTIONAL"
+      },
+      "themesRef" : {
+        "checkers" : [ {
+          "type" : "ReferenceChecker",
+          "componentKey" : "themesRef",
+          "multiplicity" : "ONE",
+          "required" : false,
+          "refType" : "themes",
+          "isRecursive" : false,
+          "isParent" : false
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "theme" ],
+        "required" : false,
+        "mandatory" : "OPTIONAL"
+      },
+      "checkDatatype" : {
+        "checkers" : [ {
+          "type" : "GroovyExpressionChecker",
+          "multiplicity" : "ONE",
+          "required" : false,
+          "expression" : "String datatype = Arrays.stream((String)datum.datatype).split(\"_\")\n                .collect{it.substring(0, 1)}\n                .join(); \n                return application.getDataType().contains(datatype);\n",
+          "references" : null,
+          "codify" : true,
+          "data" : null
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "datatype" ],
+        "required" : false,
+        "mandatory" : "OPTIONAL"
       }
     },
     "depends" : [ ],
@@ -1432,7 +1483,7 @@
     "submission" : null,
     "validations" : {
       "variableRef" : {
-        "checker" : {
+        "checkers" : [ {
           "type" : "ReferenceChecker",
           "componentKey" : "variableRef",
           "multiplicity" : "ONE",
@@ -1440,13 +1491,47 @@
           "refType" : "variables",
           "isRecursive" : false,
           "isParent" : false
-        },
+        } ],
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
         "columns" : [ "variable" ],
         "required" : false,
         "mandatory" : "OPTIONAL"
+      },
+      "uniteRef" : {
+        "checkers" : [ {
+          "type" : "ReferenceChecker",
+          "componentKey" : "uniteRef",
+          "multiplicity" : "ONE",
+          "required" : false,
+          "refType" : "unites",
+          "isRecursive" : false,
+          "isParent" : false
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "unite" ],
+        "required" : false,
+        "mandatory" : "OPTIONAL"
+      },
+      "checkDatatype" : {
+        "checkers" : [ {
+          "type" : "GroovyExpressionChecker",
+          "multiplicity" : "ONE",
+          "required" : false,
+          "expression" : "String datatype = Arrays.stream((String)(datum.datatype).split(\"_\")) .collect{it.substring(0, 1)} .join();  return  application.getDataType().contains(datatype);\n",
+          "references" : null,
+          "codify" : true,
+          "data" : null
+        } ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : [ "datatype" ],
+        "required" : false,
+        "mandatory" : "OPTIONAL"
       }
     },
     "depends" : [ ],
@@ -1799,7 +1884,26 @@
         }
       }
     },
-    "validations" : { },
+    "validations" : {
+      "unitOfColor" : {
+        "checkers" : [ ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : null,
+        "required" : false,
+        "mandatory" : "OPTIONAL"
+      },
+      "unitOfIndividus" : {
+        "checkers" : [ ],
+        "tags" : [ {
+          "tagDefinition" : "NO_TAG"
+        } ],
+        "columns" : null,
+        "required" : true,
+        "mandatory" : "OPTIONAL"
+      }
+    },
     "depends" : [ {
       "type" : "DependsReferences",
       "references" : "sites",
diff --git a/src/test/resources/data/configuration/localization.example.result.json b/src/test/resources/data/configuration/localization.example.result.json
index 0efd9ea8c..59f1d4fa6 100644
--- a/src/test/resources/data/configuration/localization.example.result.json
+++ b/src/test/resources/data/configuration/localization.example.result.json
@@ -133,9 +133,29 @@
     },
     "t_data_dat" : {
       "validations" : {
+        "site_validation" : {
+          "en" : "Site validation",
+          "fr" : "Validation du site"
+        },
+        "date_validation" : {
+          "en" : "Date validation",
+          "fr" : "Validation de la date"
+        },
         "type_site_validation" : {
           "en" : "Site type validation",
           "fr" : "Validation du type de sites"
+        },
+        "start_date_validation" : {
+          "en" : "Min date validation",
+          "fr" : "Validation de la borne inférieure de date"
+        },
+        "intrval_date_validation" : {
+          "en" : "Checks that the date is included in the interval",
+          "fr" : "Vérifie que la date est comprise dans l'interval"
+        },
+        "end_date_validation" : {
+          "en" : "Max date validation",
+          "fr" : "Validation de la borne supérieure de date"
         }
       },
       "components" : {
diff --git a/src/test/resources/data/configuration/localization.monsore.result.json b/src/test/resources/data/configuration/localization.monsore.result.json
index 20e64c50b..dd9e6e781 100644
--- a/src/test/resources/data/configuration/localization.monsore.result.json
+++ b/src/test/resources/data/configuration/localization.monsore.result.json
@@ -127,8 +127,17 @@
     },
     "site_theme_datatype" : {
       "validations" : {
+        "checkDatatype" : {
+          "fr" : "test"
+        },
         "projetRef" : {
           "fr" : "référence au projet"
+        },
+        "sitesRef" : {
+          "fr" : "référence au site"
+        },
+        "themesRef" : {
+          "fr" : "référence au theme"
         }
       },
       "components" : { },
@@ -252,6 +261,12 @@
     },
     "variables_et_unites_par_types_de_donnees" : {
       "validations" : {
+        "checkDatatype" : {
+          "fr" : "test"
+        },
+        "uniteRef" : {
+          "fr" : "référence à l'unité'"
+        },
         "variableRef" : {
           "fr" : "référence à la variable"
         }
@@ -298,6 +313,9 @@
     },
     "pem" : {
       "validations" : {
+        "unitOfIndividus" : {
+          "fr" : "vérifie l'unité du nombre d'individus"
+        },
         "unitOfColor" : {
           "fr" : "vérifie l'unité de la couleur des individus"
         }
diff --git a/src/test/resources/data/configuration/localization.result.json b/src/test/resources/data/configuration/localization.result.json
index eb4477e94..242d63fd9 100644
--- a/src/test/resources/data/configuration/localization.result.json
+++ b/src/test/resources/data/configuration/localization.result.json
@@ -76,8 +76,14 @@
     },
     "site_theme_datatype" : {
       "validations" : {
+        "checkDatatype" : {
+          "fr" : "test"
+        },
         "sitesRef" : {
           "fr" : "référence au site"
+        },
+        "themesRef" : {
+          "fr" : "référence au theme"
         }
       },
       "components" : { },
@@ -123,6 +129,12 @@
     },
     "variables_et_unites_par_types_de_donnees" : {
       "validations" : {
+        "checkDatatype" : {
+          "fr" : "test"
+        },
+        "uniteRef" : {
+          "fr" : "référence à l'unité'"
+        },
         "variableRef" : {
           "fr" : "référence à la variable"
         }
@@ -378,6 +390,9 @@
     },
     "pem" : {
       "validations" : {
+        "unitOfIndividus" : {
+          "fr" : "vérifie l'unité du nombre d'individus"
+        },
         "unitOfColor" : {
           "fr" : "vérifie l'unité de la couleur des individus"
         }
@@ -459,6 +474,12 @@
       "validations" : {
         "reference" : {
           "fr" : "les references"
+        },
+        "floats" : {
+          "fr" : "les décimaux"
+        },
+        "integer" : {
+          "fr" : "les entiers"
         }
       },
       "components" : {
diff --git a/ui/cypress/fixtures/applications/errors/errors.json b/ui/cypress/fixtures/applications/errors/errors.json
index 84edce195..2c8988cf2 100644
--- a/ui/cypress/fixtures/applications/errors/errors.json
+++ b/ui/cypress/fixtures/applications/errors/errors.json
@@ -1 +1 @@
-{"testUnknownReferenceNameForChecker":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > sites > OA_basicComponents > tze_type_nom > OA_checker > OA_params > OA_reference > OA_name","referenceName":"tr_type_de_sites"}},"time":"2024-03-13T13:53:48.950398226","type":"REACTIVE_ERROR"}],"testUnexpectedNameTagInComputedComponents":[{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > pem > OA_computedComponents > site_bassin > OA_tags","notExpectedDomainTags":["contextt"]}},"time":"2024-03-13T13:54:10.599834931","type":"REACTIVE_ERROR"}],"testUnknownReferenceNameForDynamicColumns":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_reference","referenceName":"type_de_site"}},"time":"2024-03-13T13:53:58.314600517","type":"REACTIVE_ERROR"}],"testmissingComponentNameForAuthorization":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_component"}},"time":"2024-03-13T13:53:45.319749948","type":"REACTIVE_ERROR"}],"testMissingOrBadTypeVersionApplication":[{"errortype":"ValidationError","result":{"message":"badVersionPattern","params":{"givenVersion":"deux","path":"OA_application"}},"time":"2024-03-13T13:53:45.920302214","type":"REACTIVE_ERROR"}],"testUnexpectedReferencesForComputation":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_computedComponents > site_bassin > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-13T13:53:42.576224782","type":"REACTIVE_ERROR"}],"testmissingRequiredValueInTimeScopeInSubmission":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_timeScope > OA_component"}},"time":"2024-03-13T13:54:06.710610839","type":"REACTIVE_ERROR"}],"testMissingNameApplication":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_application > OA_name"}},"time":"2024-03-13T13:54:12.660697141","type":"REACTIVE_ERROR"}],"testUnexpectedReferencesForDefaultValue":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_basicComponents > chemin > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-13T13:53:44.57913018","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-13T13:53:44.579798495","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_references","referenceName":"proj"}},"time":"2024-03-13T13:54:18.444553369","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataI18ndisplay":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > especes > OA_i18nDisplay > OA_pattern"}},"time":"2024-03-13T13:54:20.743430228","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataI18n":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > especes > OA_i18n"}},"time":"2024-03-13T13:54:01.823199042","type":"REACTIVE_ERROR"}],"testUnexpectedSections":[{"errortype":"ValidationError","result":{"message":"unexpectedSections","params":{"expectedSections":["OA_application","OA_version","OA_data","OA_additionalFiles","OA_rightsRequest","OA_tags"],"path":"OA_version > OA_application > OA_data > OA_unexpectedTag > OA_rightsRequest > OA_tags","unexpectedSections":["OA_unexpectedTag"]}},"time":"2024-03-13T13:53:59.360443348","type":"REACTIVE_ERROR"}],"testBadEnumSectionTypeInSubmission":[{"errortype":"ValidationError","result":{"message":"badEnumSectionType","params":{"givenValue":"OA_REPOSITORYY","path":"OA_data > pem > OA_submission > OA_strategy","acceptedValues":["OA_INSERTION","OA_REPOSITORY"]}},"time":"2024-03-13T13:53:47.740382234","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInRightsRequestDescription":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_rightsRequest > OA_description > OA_i18n"}},"time":"2024-03-13T13:54:14.085816184","type":"REACTIVE_ERROR"}],"testUnknownNameAuthorizationScopeInFileNameSubmission":[{"errortype":"ValidationError","result":{"message":"unknownNameAuthorizationScope","params":{"path":"OA_submission > OA_fileName > OA_authorizationScopes > proj","unknownAuthorizationScope":"proj","knownAuthorizationScope":["projet","localization"]}},"time":"2024-03-13T13:54:13.583616015","type":"REACTIVE_ERROR"}],"testMissingMandatorySectionsInConstantComponents":[{"errortype":"ValidationError","result":{"message":"missingMandatoriesSections","params":{"missingMandatoriesSections":["OA_rowNumber"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_columnNumber"}},"time":"2024-03-13T13:54:00.801026235","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataI18ncolumns":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > especes > OA_i18nColumns > esp_definition_fr"}},"time":"2024-03-13T13:54:16.513766142","type":"REACTIVE_ERROR"}],"testInvalidMinMaxForCheckerDate":[{"errortype":"ValidationError","result":{"message":"invalidMinMaxForCheckerDate","params":{"declaredPattern":"dd/MM/yyyy","path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params","declaredMinValue":"12/31/1980","declaredMaxValue":"31/12/2024"}},"time":"2024-03-13T13:53:43.272067549","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"invalidMinMaxForCheckerDate","params":{"declaredPattern":"dd/MM/yyyy","path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params","declaredMinValue":"31/12/1980","declaredMaxValue":"12/31/2024"}},"time":"2024-03-13T13:54:03.788209524","type":"REACTIVE_ERROR"}],"testBadNameApplication":[{"errortype":"ValidationError","result":{"message":"unsupportedNameApplication","params":{"path":"OA_application","nameApplication":"F4KE app!cat°"}},"time":"2024-03-13T13:53:57.802564469","type":"REACTIVE_ERROR"}],"testBadVersionApplication":[{"errortype":"ValidationError","result":{"message":"badVersionPattern","params":{"givenVersion":"-2","path":"OA_application"}},"time":"2024-03-13T13:53:54.272068851","type":"REACTIVE_ERROR"}],"testUnknownColumnNumberToFirstRowLineInConstantComponents":[{"errortype":"ValidationError","result":{"message":"negativeConstantImportHeaderColumnNumber","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_importHeaderTarget > OA_columnNumber"}},"time":"2024-03-13T13:54:04.26445404","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"negativeConstantImportHeaderColumnNumber","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_columnNumber"}},"time":"2024-03-13T13:54:21.222962807","type":"REACTIVE_ERROR"}],"testBadBuilderVersion":[{"errortype":"ValidationError","result":{"message":"unsupportedOpenadomVersion","params":{"path":"OA_version","actualVersion":"2","expectedVersion":"2.0.1"}},"time":"2024-03-13T13:53:54.768183381","type":"REACTIVE_ERROR"}],"testMissingReferenceNameForChecker":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > sites > OA_basicComponents > tze_type_nom > OA_checker > OA_params > OA_reference > OA_name","referenceName":"toto"}},"time":"2024-03-13T13:53:46.526558704","type":"REACTIVE_ERROR"}],"testBadNameTag":[{"errortype":"ValidationError","result":{"message":"badTagsPatterns","params":{"path":"OA_data > especes","acceptedTagPatterns":["__HIDDEN__","__REFERENCE__","test","context","no-tag","__DATA__","__ORDER_([0-9]*)__"]}},"time":"2024-03-13T13:53:58.812137056","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"badTagsPatterns","params":{"path":"OA_data > type_de_sites","acceptedTagPatterns":["__HIDDEN__","__REFERENCE__","test","context","no-tag","__DATA__","__ORDER_([0-9]*)__"]}},"time":"2024-03-13T13:53:58.813836298","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"badTagsPatterns","params":{"path":"OA_data > sites","acceptedTagPatterns":["__HIDDEN__","__REFERENCE__","test","context","no-tag","__DATA__","__ORDER_([0-9]*)__"]}},"time":"2024-03-13T13:53:58.814360685","type":"REACTIVE_ERROR"}],"testReturnMultiplesErrors":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > site > OA_basicComponents > zet_chemin_parent > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-13T13:54:16.975405285","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_basicComponents > chemin > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-13T13:54:16.975870749","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_basicComponents > chemin > OA_defaultValue > OA_references","referenceName":"sites"}},"time":"2024-03-13T13:54:16.975916848","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_computedComponents > site_bassin > OA_checker > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-13T13:54:16.976177575","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_computedComponents > site_bassin > OA_defaultValue > OA_references","referenceName":"sites"}},"time":"2024-03-13T13:54:16.976210315","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-13T13:54:16.976389576","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_defaultValue > OA_references","referenceName":"sites"}},"time":"2024-03-13T13:54:16.976417076","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"reference > OA_validations > reference > OA_validations > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-13T13:54:16.976630672","type":"REACTIVE_ERROR"}],"testEmptyFile":[{"errortype":"ValidationError","result":{"message":"emptyFile","params":{}},"time":"2024-03-13T13:53:57.342453689","type":"REACTIVE_ERROR"}],"testunknownComponentNameForAuthorization":[{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":"proj","knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_component"}},"time":"2024-03-13T13:53:56.290787943","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"undefinedComponentForAuthorizationScopeAuthorization","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScope > projet","componentName":"proj"}},"time":"2024-03-13T13:53:56.291367892","type":"REACTIVE_ERROR"}],"testMissingNameChecker":[{"errortype":"ValidationError","result":{"message":"missingCheckerName","params":{"path":"OA_data > sites > OA_basicComponents > tze_type_nom","acceptedCheckerNames":["OA_reference","OA_float","OA_date","OA_groovyExpression","OA_boolean","OA_integer","OA_string"]}},"time":"2024-03-13T13:54:03.29804915","type":"REACTIVE_ERROR"}],"testMissingComponentNameValidation":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_validations > reference > OA_columns"}},"time":"2024-03-13T13:54:02.330449938","type":"REACTIVE_ERROR"}],"testInvalidPatternForCheckerDate":[{"errortype":"ValidationError","result":{"message":"invalidPatternForCheckerDate","params":{"badPattern":"bb/MM/yyyy","path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params > OA_pattern"}},"time":"2024-03-13T13:53:50.540849716","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInAuthorizationScopes":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_i18n"}},"time":"2024-03-13T13:54:09.556419811","type":"REACTIVE_ERROR"}],"testunknownComponentInTimeScopeInSubmission":[{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":"dates","knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_submission > OA_authorization > OA_timeScope > OA_component"}},"time":"2024-03-13T13:53:53.247440011","type":"REACTIVE_ERROR"}],"testMissingPatternForCheckerDate":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params > OA_pattern"}},"time":"2024-03-13T13:53:49.498101012","type":"REACTIVE_ERROR"}],"testUnexpectedReferencesForDefaultValueInConstantComponents":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-13T13:54:10.061096378","type":"REACTIVE_ERROR"}],"testSuperieurImportHeaderRowNumberToFirstRowLineInConstantComponents":[{"errortype":"ValidationError","result":{"message":"badConstantImportHeaderRowNumber","params":{"givenRowNumber":8,"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_rowNumber","firstRowLine":7}},"time":"2024-03-13T13:53:53.759880435","type":"REACTIVE_ERROR"}],"testNegativeImportHeaderRowNumberInConstantComponents":[{"errortype":"ValidationError","result":{"message":"negativeConstantImportHeaderRowNumber","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_rowNumber"}},"time":"2024-03-13T13:53:47.135427029","type":"REACTIVE_ERROR"}],"testUnexpectedNameTagInData":[{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > especes","notExpectedDomainTags":["contxet"]}},"time":"2024-03-13T13:54:19.833520689","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > type_de_sites","notExpectedDomainTags":["contxet"]}},"time":"2024-03-13T13:54:19.834185977","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > sites","notExpectedDomainTags":["contxet"]}},"time":"2024-03-13T13:54:19.834393544","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataDynamicComponents":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_exportHeader > OA_i18n"}},"time":"2024-03-13T13:54:15.59114662","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInTags":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_tags > test"}},"time":"2024-03-13T13:53:52.167277457","type":"REACTIVE_ERROR"}],"testNegativeColumnNumberToFirstRowLineInConstantComponents":[{"errortype":"ValidationError","result":{"message":"negativeConstantImportHeaderColumnNumber","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_columnNumber"}},"time":"2024-03-13T13:54:17.435894411","type":"REACTIVE_ERROR"}],"testUnExpectedReservedTagPatternForDomainTag":[{"errortype":"ValidationError","result":{"message":"illegalDomainTagPattern","params":{"reservedTagNames":["HiddenTag[tagDefinition=HIDDEN_TAG]"],"path":"OA_tags","expectedPattern":"^[a-z][a-z_0-9]*[a-z0-9]$"}},"time":"2024-03-13T13:54:12.198072034","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > especes","notExpectedDomainTags":["context"]}},"time":"2024-03-13T13:54:12.198237746","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > projet","notExpectedDomainTags":["context"]}},"time":"2024-03-13T13:54:12.198778792","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > type_de_sites","notExpectedDomainTags":["context"]}},"time":"2024-03-13T13:54:12.199004436","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > sites","notExpectedDomainTags":["context"]}},"time":"2024-03-13T13:54:12.199260917","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_tags","notExpectedDomainTags":["context"]}},"time":"2024-03-13T13:54:12.199591321","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > pem","notExpectedDomainTags":["context"]}},"time":"2024-03-13T13:54:12.199731051","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataInConstantComponentsExportheaderI18n":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_exportHeader > OA_i18n"}},"time":"2024-03-13T13:54:08.12518195","type":"REACTIVE_ERROR"}],"testMissingRequiredSections":[{"errortype":"ValidationError","result":{"message":"missingVersionApplication","params":{"path":"","actualVersion":"2.0.1"}},"time":"2024-03-13T13:54:09.08335893","type":"REACTIVE_ERROR"}],"testMissingReferencesForAuthorization":[{"errortype":"ValidationError","result":{"message":"invalidComponentReferenceForAuthorizationScopeAuthorization","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet","componentName":"projet"}},"time":"2024-03-13T13:53:55.77782555","type":"REACTIVE_ERROR"}],"testMissingRequiredValueForChecker":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > sites > OA_basicComponents > tze_type_nom > OA_checker > OA_params > OA_reference > OA_name"}},"time":"2024-03-13T13:53:51.07071629","type":"REACTIVE_ERROR"}],"testMissingAnyMandatorySectionsInConstantComponents":[{"errortype":"ValidationError","result":{"message":"missingAnyMandatoriesSections","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_importHeaderTarget > OA_rowNumber","anyMandatorySections":["OA_columnName","OA_columnNumber"]}},"time":"2024-03-13T13:54:13.131826966","type":"REACTIVE_ERROR"}],"testMissingBuilderVersion":[{"errortype":"ValidationError","result":{"message":"missingVersionApplication","params":{"path":"OA_version","expectedVersion":"2.0.1"}},"time":"2024-03-13T13:54:07.655240314","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInAuthorizationScopesExportheader":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_exportHeader"}},"time":"2024-03-13T13:54:01.302292384","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataExportheaderI18n":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > especes > OA_computedComponents > my_computed_column > OA_exportHeader > OA_i18n"}},"time":"2024-03-13T13:53:43.945592955","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInApplication":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_application > OA_i18n"}},"time":"2024-03-13T13:54:05.754995008","type":"REACTIVE_ERROR"}],"testUnknownCheckerName":[{"errortype":"ValidationError","result":{"message":"unknownCheckerName","params":{"path":"OA_data > sites > OA_basicComponents > tze_type_nom","checkerName":"reference","acceptedCheckerNames":["OA_reference","OA_float","OA_date","OA_groovyExpression","OA_boolean","OA_integer","OA_string"]}},"time":"2024-03-13T13:53:55.278098913","type":"REACTIVE_ERROR"}],"testUnknownReferenceColumnToLookForHeaderInDataDynamicComponents":[{"errortype":"ValidationError","result":{"message":"unknownReferenceColumnToLookForHeader","params":{"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_referenceColumnToLookForHeader","listColumnsNameReference":["tze_definition_en","tze_definition_fr","tze_nom_en","tze_nom_fr","tze_nom_key"],"columnNameReference":"nom_key","referenceName":"type_de_sites"}},"time":"2024-03-13T13:53:48.283250371","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataGroups":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_dataGroups > number"}},"time":"2024-03-13T13:54:18.894777851","type":"REACTIVE_ERROR"}],"testBadNameTagInDynamicComponents":[{"errortype":"ValidationError","result":{"message":"badTagsPatterns","params":{"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_tags","acceptedTagPatterns":["__HIDDEN__","__REFERENCE__","test","context","no-tag","__DATA__","__ORDER_([0-9]*)__"]}},"time":"2024-03-13T13:54:07.165868407","type":"REACTIVE_ERROR"}],"testMissingRequiredValueForAuthorization":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_references"}},"time":"2024-03-13T13:53:56.842104523","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInValidation":[{"errortype":"ValidationError","result":{"message":"duplicatedComponentName","params":{"duplicatedPathes":["OA_data > pem > OA_constantComponents > tel_date","OA_data > pem > OA_patternComponents > tel_value > OA_components > tel_date"],"path":"OA_data > pem > OA_patternComponents > tel_value > OA_components > tel_date","componentName":"tel_date"}},"time":"2024-03-13T13:53:51.653267412","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"invalidConfigurationFile","params":null},"time":"2024-03-13T13:53:59.832400556","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":"zet_nom_ke","knownComponents":["tze_type_nom","zet_description_en","zet_nom_fr","zet_nom_key","zet_nom_en","zet_chemin_parent","zet_description_fr"],"path":"OA_data > sites > OA_i18nColumns"}},"time":"2024-03-13T13:54:00.299867397","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"duplicatedComponentHeader","params":{"duplicatedPathes":["OA_data > sites > OA_basicComponents > zet_nom_key > OA_importHeader > OA_headerName","OA_data > sites > OA_basicComponents > zet_chemin_parent"],"header":"zet_chemin_parent","path":"OA_data > sites > OA_basicComponents > zet_chemin_parent"}},"time":"2024-03-13T13:54:11.074288435","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_validations > reference"}},"time":"2024-03-13T13:54:11.61960892","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"duplicatedComponentName","params":{"duplicatedPathes":["OA_data > pem > OA_constantComponents > tel_experimental_site","OA_data > pem > OA_patternComponents > tel_experimental_site"],"path":"OA_data > pem > OA_patternComponents > tel_experimental_site","componentName":"tel_experimental_site"}},"time":"2024-03-13T13:54:15.02461141","type":"REACTIVE_ERROR"}],"testMissingAnyMandatoriesSectionsForAuthorization":[{"errortype":"ValidationError","result":{"message":"missingAnyMandatoriesSections","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_exportHeader > OA_i18n","anyMandatorySections":["OA_component","OA_references"]}},"time":"2024-03-13T13:54:14.575643993","type":"REACTIVE_ERROR"}],"testInvalidNaturalKey":[{"errortype":"ValidationError","result":{"message":"invalidNaturalKey","params":{"path":"OA_data > especes","invalidNaturalKeyElements":["espNom"],"expectedComponentLabel":["colonne_homonyme_entre_referentiels","esp_definition_en","my_computed_column","esp_nom","esp_definition_fr"]}},"time":"2024-03-13T13:54:06.254653761","type":"REACTIVE_ERROR"}],"testInvalidDurationForCheckerDate":[{"errortype":"ValidationError","result":{"message":"invalidDurationCheckerDate","params":{"declaredDuration":"1 Yearss","path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params"}},"time":"2024-03-13T13:54:17.949627449","type":"REACTIVE_ERROR"}],"testMissingRequiredValueForDynamicColumns":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_reference"}},"time":"2024-03-13T13:54:20.30068452","type":"REACTIVE_ERROR"}],"testUnexpectedNameTagInBasicComponent":[{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > pem > OA_basicComponents > projet > OA_tags","notExpectedDomainTags":["testz"]}},"time":"2024-03-13T13:54:05.241320575","type":"REACTIVE_ERROR"}],"testunknownComponentNameValidation":[{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":"sites","knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_validations > reference > OA_columns"}},"time":"2024-03-13T13:54:04.744090759","type":"REACTIVE_ERROR"}],"testNotExpectedTagsInConstantComponents":[{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_tags","notExpectedDomainTags":["testz"]}},"time":"2024-03-13T13:54:02.790216554","type":"REACTIVE_ERROR"}],"testunknownComponentInDataGroupsInSubmission":[{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":["ordre_affichag"],"knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_submission > OA_authorization > OA_dataGroups > OA_component"}},"time":"2024-03-13T13:54:08.5870945","type":"REACTIVE_ERROR"}],"testMissingComponentNameInColumnsForAuthorization":[{"errortype":"ValidationError","result":{"message":"missingComponentForComponentName","params":{"knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_validations > reference > OA_columns"}},"time":"2024-03-13T13:54:19.365663731","type":"REACTIVE_ERROR"}],"testBadDomaineTagPattern":[{"errortype":"ValidationError","result":{"message":"badDomainTagPattern","params":{"path":"OA_tags","domainTagPattern":"^[a-z][a-z_0-9]*[a-z0-9]$"}},"time":"2024-03-13T13:54:16.051250007","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"illegalDomainTagPattern","params":{"reservedTagNames":["NoTag[tagDefinition=NO_TAG]"],"path":"OA_tags","expectedPattern":"^[a-z][a-z_0-9]*[a-z0-9]$"}},"time":"2024-03-13T13:54:16.051300495","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > especes","notExpectedDomainTags":["context"]}},"time":"2024-03-13T13:54:16.051417235","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > especes > OA_basicComponents > esp_nom > OA_tags","notExpectedDomainTags":["test"]}},"time":"2024-03-13T13:54:16.051700908","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > projet","notExpectedDomainTags":["test","context"]}},"time":"2024-03-13T13:54:16.051886706","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > type_de_sites","notExpectedDomainTags":["context"]}},"time":"2024-03-13T13:54:16.05211826","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > sites","notExpectedDomainTags":["context"]}},"time":"2024-03-13T13:54:16.052321135","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_tags","notExpectedDomainTags":["test","context"]}},"time":"2024-03-13T13:54:16.052674652","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > pem","notExpectedDomainTags":["test","context"]}},"time":"2024-03-13T13:54:16.052764963","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > pem > OA_basicComponents > projet > OA_tags","notExpectedDomainTags":["test"]}},"time":"2024-03-13T13:54:16.052954504","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_tags","notExpectedDomainTags":["test"]}},"time":"2024-03-13T13:54:16.053231973","type":"REACTIVE_ERROR"}]}
\ No newline at end of file
+{"testUnknownReferenceNameForChecker":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > sites > OA_basicComponents > tze_type_nom > OA_checker > OA_params > OA_reference > OA_name","referenceName":"tr_type_de_sites"}},"time":"2024-03-16T07:18:29.796140188","type":"REACTIVE_ERROR"}],"testUnexpectedNameTagInComputedComponents":[{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > pem > OA_computedComponents > site_bassin > OA_tags","notExpectedDomainTags":["contextt"]}},"time":"2024-03-16T07:18:53.249873206","type":"REACTIVE_ERROR"}],"testUnknownReferenceNameForDynamicColumns":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_reference","referenceName":"type_de_site"}},"time":"2024-03-16T07:18:40.197589258","type":"REACTIVE_ERROR"}],"testmissingComponentNameForAuthorization":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_component"}},"time":"2024-03-16T07:18:24.947782447","type":"REACTIVE_ERROR"}],"testMissingOrBadTypeVersionApplication":[{"errortype":"ValidationError","result":{"message":"badVersionPattern","params":{"givenVersion":"deux","path":"OA_application"}},"time":"2024-03-16T07:18:25.740085048","type":"REACTIVE_ERROR"}],"testUnexpectedReferencesForComputation":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_computedComponents > site_bassin > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-16T07:18:20.771659229","type":"REACTIVE_ERROR"}],"testmissingRequiredValueInTimeScopeInSubmission":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_timeScope > OA_component"}},"time":"2024-03-16T07:18:49.19519568","type":"REACTIVE_ERROR"}],"testMissingNameApplication":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_application > OA_name"}},"time":"2024-03-16T07:18:55.191439133","type":"REACTIVE_ERROR"}],"testUnexpectedReferencesForDefaultValue":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_basicComponents > chemin > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-16T07:18:24.072744717","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-16T07:18:24.073572102","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_references","referenceName":"proj"}},"time":"2024-03-16T07:19:00.788715006","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataI18ndisplay":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > especes > OA_i18nDisplay > OA_pattern"}},"time":"2024-03-16T07:19:03.192784072","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataI18n":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > especes > OA_i18n"}},"time":"2024-03-16T07:18:44.23282857","type":"REACTIVE_ERROR"}],"testUnexpectedSections":[{"errortype":"ValidationError","result":{"message":"unexpectedSections","params":{"expectedSections":["OA_version","OA_application","OA_data","OA_additionalFiles","OA_rightsRequest","OA_tags"],"path":"OA_version > OA_application > OA_data > OA_unexpectedTag > OA_rightsRequest > OA_tags","unexpectedSections":["OA_unexpectedTag"]}},"time":"2024-03-16T07:18:41.308280531","type":"REACTIVE_ERROR"}],"testBadEnumSectionTypeInSubmission":[{"errortype":"ValidationError","result":{"message":"badEnumSectionType","params":{"givenValue":"OA_REPOSITORYY","path":"OA_data > pem > OA_submission > OA_strategy","acceptedValues":["OA_INSERTION","OA_REPOSITORY"]}},"time":"2024-03-16T07:18:28.355621712","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInRightsRequestDescription":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_rightsRequest > OA_description > OA_i18n"}},"time":"2024-03-16T07:18:56.659467793","type":"REACTIVE_ERROR"}],"testUnknownNameAuthorizationScopeInFileNameSubmission":[{"errortype":"ValidationError","result":{"message":"unknownNameAuthorizationScope","params":{"path":"OA_submission > OA_fileName > OA_authorizationScopes > proj","unknownAuthorizationScope":"proj","knownAuthorizationScope":["projet","localization"]}},"time":"2024-03-16T07:18:56.109130815","type":"REACTIVE_ERROR"}],"testMissingMandatorySectionsInConstantComponents":[{"errortype":"ValidationError","result":{"message":"missingMandatoriesSections","params":{"missingMandatoriesSections":["OA_rowNumber"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_columnNumber"}},"time":"2024-03-16T07:18:42.893119486","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataI18ncolumns":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > especes > OA_i18nColumns > esp_definition_fr"}},"time":"2024-03-16T07:18:58.981713272","type":"REACTIVE_ERROR"}],"testInvalidMinMaxForCheckerDate":[{"errortype":"ValidationError","result":{"message":"invalidMinMaxForCheckerDate","params":{"declaredPattern":"dd/MM/yyyy","path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params","declaredMinValue":"12/31/1980","declaredMaxValue":"31/12/2024"}},"time":"2024-03-16T07:18:21.977942794","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"invalidMinMaxForCheckerDate","params":{"declaredPattern":"dd/MM/yyyy","path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params","declaredMinValue":"31/12/1980","declaredMaxValue":"12/31/2024"}},"time":"2024-03-16T07:18:46.228473499","type":"REACTIVE_ERROR"}],"testBadNameApplication":[{"errortype":"ValidationError","result":{"message":"unsupportedNameApplication","params":{"path":"OA_application","nameApplication":"F4KE app!cat°"}},"time":"2024-03-16T07:18:39.629513152","type":"REACTIVE_ERROR"}],"testBadVersionApplication":[{"errortype":"ValidationError","result":{"message":"badVersionPattern","params":{"givenVersion":"-2","path":"OA_application"}},"time":"2024-03-16T07:18:35.715768513","type":"REACTIVE_ERROR"}],"testUnknownColumnNumberToFirstRowLineInConstantComponents":[{"errortype":"ValidationError","result":{"message":"negativeConstantImportHeaderColumnNumber","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_importHeaderTarget > OA_columnNumber"}},"time":"2024-03-16T07:18:46.752092564","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"negativeConstantImportHeaderColumnNumber","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_columnNumber"}},"time":"2024-03-16T07:19:03.639687504","type":"REACTIVE_ERROR"}],"testBadBuilderVersion":[{"errortype":"ValidationError","result":{"message":"unsupportedOpenadomVersion","params":{"path":"OA_version","actualVersion":"2","expectedVersion":"2.0.1"}},"time":"2024-03-16T07:18:36.291154783","type":"REACTIVE_ERROR"}],"testMissingReferenceNameForChecker":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > sites > OA_basicComponents > tze_type_nom > OA_checker > OA_params > OA_reference > OA_name","referenceName":"toto"}},"time":"2024-03-16T07:18:26.812589124","type":"REACTIVE_ERROR"}],"testBadNameTag":[{"errortype":"ValidationError","result":{"message":"badTagsPatterns","params":{"path":"OA_data > especes","acceptedTagPatterns":["__HIDDEN__","__REFERENCE__","test","context","no-tag","__DATA__","__ORDER_([0-9]*)__"]}},"time":"2024-03-16T07:18:40.760132658","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"badTagsPatterns","params":{"path":"OA_data > type_de_sites","acceptedTagPatterns":["__HIDDEN__","__REFERENCE__","test","context","no-tag","__DATA__","__ORDER_([0-9]*)__"]}},"time":"2024-03-16T07:18:40.761400539","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"badTagsPatterns","params":{"path":"OA_data > sites","acceptedTagPatterns":["__HIDDEN__","__REFERENCE__","test","context","no-tag","__DATA__","__ORDER_([0-9]*)__"]}},"time":"2024-03-16T07:18:40.7617496","type":"REACTIVE_ERROR"}],"testReturnMultiplesErrors":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > site > OA_basicComponents > zet_chemin_parent > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-16T07:18:59.429063757","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_basicComponents > chemin > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-16T07:18:59.429484565","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_basicComponents > chemin > OA_defaultValue > OA_references","referenceName":"sites"}},"time":"2024-03-16T07:18:59.429523469","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_computedComponents > site_bassin > OA_checker > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-16T07:18:59.429760913","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_computedComponents > site_bassin > OA_defaultValue > OA_references","referenceName":"sites"}},"time":"2024-03-16T07:18:59.429798993","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-16T07:18:59.429988023","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_defaultValue > OA_references","referenceName":"sites"}},"time":"2024-03-16T07:18:59.430026744","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"reference > OA_validations > reference > OA_validations > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-16T07:18:59.430294352","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"reference > OA_validations > reference > OA_validations > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-16T07:18:59.430484067","type":"REACTIVE_ERROR"}],"testEmptyFile":[{"errortype":"ValidationError","result":{"message":"emptyFile","params":{}},"time":"2024-03-16T07:18:39.091762985","type":"REACTIVE_ERROR"}],"testunknownComponentNameForAuthorization":[{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":"proj","knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_component"}},"time":"2024-03-16T07:18:37.952111273","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"undefinedComponentForAuthorizationScopeAuthorization","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScope > projet","componentName":"proj"}},"time":"2024-03-16T07:18:37.95291474","type":"REACTIVE_ERROR"}],"testMissingNameChecker":[{"errortype":"ValidationError","result":{"message":"missingCheckerName","params":{"path":"OA_data > sites > OA_basicComponents > tze_type_nom","acceptedCheckerNames":["OA_reference","OA_float","OA_date","OA_groovyExpression","OA_boolean","OA_integer","OA_string"]}},"time":"2024-03-16T07:18:45.694082853","type":"REACTIVE_ERROR"}],"testMissingComponentNameValidation":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_validations > reference > OA_columns"}},"time":"2024-03-16T07:18:44.685290989","type":"REACTIVE_ERROR"}],"testInvalidPatternForCheckerDate":[{"errortype":"ValidationError","result":{"message":"invalidPatternForCheckerDate","params":{"badPattern":"bb/MM/yyyy","path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params > OA_pattern"}},"time":"2024-03-16T07:18:31.764816311","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInAuthorizationScopes":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_i18n"}},"time":"2024-03-16T07:18:52.207248788","type":"REACTIVE_ERROR"}],"testunknownComponentInTimeScopeInSubmission":[{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":"dates","knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_submission > OA_authorization > OA_timeScope > OA_component"}},"time":"2024-03-16T07:18:34.59342909","type":"REACTIVE_ERROR"}],"testMissingPatternForCheckerDate":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params > OA_pattern"}},"time":"2024-03-16T07:18:30.550471448","type":"REACTIVE_ERROR"}],"testUnexpectedReferencesForDefaultValueInConstantComponents":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-16T07:18:52.706827177","type":"REACTIVE_ERROR"}],"testSuperieurImportHeaderRowNumberToFirstRowLineInConstantComponents":[{"errortype":"ValidationError","result":{"message":"badConstantImportHeaderRowNumber","params":{"givenRowNumber":8,"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_rowNumber","firstRowLine":7}},"time":"2024-03-16T07:18:35.201718059","type":"REACTIVE_ERROR"}],"testNegativeImportHeaderRowNumberInConstantComponents":[{"errortype":"ValidationError","result":{"message":"negativeConstantImportHeaderRowNumber","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_rowNumber"}},"time":"2024-03-16T07:18:27.576712892","type":"REACTIVE_ERROR"}],"testUnexpectedNameTagInData":[{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > especes","notExpectedDomainTags":["contxet"]}},"time":"2024-03-16T07:19:02.245610335","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > type_de_sites","notExpectedDomainTags":["contxet"]}},"time":"2024-03-16T07:19:02.246540993","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > sites","notExpectedDomainTags":["contxet"]}},"time":"2024-03-16T07:19:02.246776131","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataDynamicComponents":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_exportHeader > OA_i18n"}},"time":"2024-03-16T07:18:58.045150333","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInTags":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_tags > test"}},"time":"2024-03-16T07:18:33.495430822","type":"REACTIVE_ERROR"}],"testNegativeColumnNumberToFirstRowLineInConstantComponents":[{"errortype":"ValidationError","result":{"message":"negativeConstantImportHeaderColumnNumber","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_columnNumber"}},"time":"2024-03-16T07:18:59.905767344","type":"REACTIVE_ERROR"}],"testUnExpectedReservedTagPatternForDomainTag":[{"errortype":"ValidationError","result":{"message":"illegalDomainTagPattern","params":{"reservedTagNames":["HiddenTag[tagDefinition=HIDDEN_TAG]"],"path":"OA_tags","expectedPattern":"^[a-z][a-z_0-9]*[a-z0-9]$"}},"time":"2024-03-16T07:18:54.724788209","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > especes","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:54.725207342","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > projet","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:54.726005542","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > type_de_sites","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:54.726541093","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > sites","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:54.727127532","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_tags","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:54.727960421","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > pem","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:54.728102095","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataInConstantComponentsExportheaderI18n":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_exportHeader > OA_i18n"}},"time":"2024-03-16T07:18:50.743584129","type":"REACTIVE_ERROR"}],"testMissingRequiredSections":[{"errortype":"ValidationError","result":{"message":"missingVersionApplication","params":{"path":"","actualVersion":"2.0.1"}},"time":"2024-03-16T07:18:51.753298101","type":"REACTIVE_ERROR"}],"testMissingReferencesForAuthorization":[{"errortype":"ValidationError","result":{"message":"invalidComponentReferenceForAuthorizationScopeAuthorization","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet","componentName":"projet"}},"time":"2024-03-16T07:18:37.360140537","type":"REACTIVE_ERROR"}],"testMissingRequiredValueForChecker":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > sites > OA_basicComponents > tze_type_nom > OA_checker > OA_params > OA_reference > OA_name"}},"time":"2024-03-16T07:18:32.356996931","type":"REACTIVE_ERROR"}],"testMissingAnyMandatorySectionsInConstantComponents":[{"errortype":"ValidationError","result":{"message":"missingAnyMandatoriesSections","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_importHeaderTarget > OA_rowNumber","anyMandatorySections":["OA_columnName","OA_columnNumber"]}},"time":"2024-03-16T07:18:55.63480413","type":"REACTIVE_ERROR"}],"testMissingBuilderVersion":[{"errortype":"ValidationError","result":{"message":"missingVersionApplication","params":{"path":"OA_version","expectedVersion":"2.0.1"}},"time":"2024-03-16T07:18:50.223125218","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInAuthorizationScopesExportheader":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_exportHeader"}},"time":"2024-03-16T07:18:43.683936504","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataExportheaderI18n":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > especes > OA_computedComponents > my_computed_column > OA_exportHeader > OA_i18n"}},"time":"2024-03-16T07:18:23.199323733","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInApplication":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_application > OA_i18n"}},"time":"2024-03-16T07:18:48.168767883","type":"REACTIVE_ERROR"}],"testUnknownCheckerName":[{"errortype":"ValidationError","result":{"message":"unknownCheckerName","params":{"path":"OA_data > sites > OA_basicComponents > tze_type_nom","checkerName":"reference","acceptedCheckerNames":["OA_reference","OA_float","OA_date","OA_groovyExpression","OA_boolean","OA_integer","OA_string"]}},"time":"2024-03-16T07:18:36.778089037","type":"REACTIVE_ERROR"}],"testUnknownReferenceColumnToLookForHeaderInDataDynamicComponents":[{"errortype":"ValidationError","result":{"message":"unknownReferenceColumnToLookForHeader","params":{"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_referenceColumnToLookForHeader","listColumnsNameReference":["tze_definition_en","tze_definition_fr","tze_nom_en","tze_nom_fr","tze_nom_key"],"columnNameReference":"nom_key","referenceName":"type_de_sites"}},"time":"2024-03-16T07:18:29.110921762","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataGroups":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_dataGroups > number"}},"time":"2024-03-16T07:19:01.231347015","type":"REACTIVE_ERROR"}],"testBadNameTagInDynamicComponents":[{"errortype":"ValidationError","result":{"message":"badTagsPatterns","params":{"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_tags","acceptedTagPatterns":["__HIDDEN__","__REFERENCE__","test","context","no-tag","__DATA__","__ORDER_([0-9]*)__"]}},"time":"2024-03-16T07:18:49.77577599","type":"REACTIVE_ERROR"}],"testMissingRequiredValueForAuthorization":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_references"}},"time":"2024-03-16T07:18:38.550926202","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInValidation":[{"errortype":"ValidationError","result":{"message":"duplicatedComponentName","params":{"duplicatedPathes":["OA_data > pem > OA_constantComponents > tel_date","OA_data > pem > OA_patternComponents > tel_value > OA_components > tel_date"],"path":"OA_data > pem > OA_patternComponents > tel_value > OA_components > tel_date","componentName":"tel_date"}},"time":"2024-03-16T07:18:32.918550388","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"invalidConfigurationFile","params":null},"time":"2024-03-16T07:18:41.789504144","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":"zet_nom_ke","knownComponents":["tze_type_nom","zet_description_en","zet_nom_fr","zet_nom_key","zet_nom_en","zet_chemin_parent","zet_description_fr"],"path":"OA_data > sites > OA_i18nColumns"}},"time":"2024-03-16T07:18:42.253684562","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"duplicatedComponentHeader","params":{"duplicatedPathes":["OA_data > sites > OA_basicComponents > zet_nom_key > OA_importHeader > OA_headerName","OA_data > sites > OA_basicComponents > zet_chemin_parent"],"header":"zet_chemin_parent","path":"OA_data > sites > OA_basicComponents > zet_chemin_parent"}},"time":"2024-03-16T07:18:53.694175608","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_validations > reference"}},"time":"2024-03-16T07:18:54.205921828","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"duplicatedComponentName","params":{"duplicatedPathes":["OA_data > pem > OA_constantComponents > tel_experimental_site","OA_data > pem > OA_patternComponents > tel_experimental_site"],"path":"OA_data > pem > OA_patternComponents > tel_experimental_site","componentName":"tel_experimental_site"}},"time":"2024-03-16T07:18:57.58018769","type":"REACTIVE_ERROR"}],"testMissingAnyMandatoriesSectionsForAuthorization":[{"errortype":"ValidationError","result":{"message":"missingAnyMandatoriesSections","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_exportHeader > OA_i18n","anyMandatorySections":["OA_component","OA_references"]}},"time":"2024-03-16T07:18:57.115800685","type":"REACTIVE_ERROR"}],"testInvalidNaturalKey":[{"errortype":"ValidationError","result":{"message":"invalidNaturalKey","params":{"path":"OA_data > especes","invalidNaturalKeyElements":["espNom"],"expectedComponentLabel":["colonne_homonyme_entre_referentiels","esp_definition_en","my_computed_column","esp_nom","esp_definition_fr"]}},"time":"2024-03-16T07:18:48.630342007","type":"REACTIVE_ERROR"}],"testInvalidDurationForCheckerDate":[{"errortype":"ValidationError","result":{"message":"invalidDurationCheckerDate","params":{"declaredDuration":"1 Yearss","path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params"}},"time":"2024-03-16T07:19:00.346689767","type":"REACTIVE_ERROR"}],"testMissingRequiredValueForDynamicColumns":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_reference"}},"time":"2024-03-16T07:19:02.71774226","type":"REACTIVE_ERROR"}],"testUnexpectedNameTagInBasicComponent":[{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > pem > OA_basicComponents > projet > OA_tags","notExpectedDomainTags":["testz"]}},"time":"2024-03-16T07:18:47.683381517","type":"REACTIVE_ERROR"}],"testunknownComponentNameValidation":[{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":"sites","knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_validations > reference > OA_columns"}},"time":"2024-03-16T07:18:47.217009461","type":"REACTIVE_ERROR"}],"testNotExpectedTagsInConstantComponents":[{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_tags","notExpectedDomainTags":["testz"]}},"time":"2024-03-16T07:18:45.167883731","type":"REACTIVE_ERROR"}],"testunknownComponentInDataGroupsInSubmission":[{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":["ordre_affichag"],"knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_submission > OA_authorization > OA_dataGroups > OA_component"}},"time":"2024-03-16T07:18:51.261720047","type":"REACTIVE_ERROR"}],"testMissingComponentNameInColumnsForAuthorization":[{"errortype":"ValidationError","result":{"message":"missingComponentForComponentName","params":{"knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_validations > reference > OA_columns"}},"time":"2024-03-16T07:19:01.71616522","type":"REACTIVE_ERROR"}],"testBadDomaineTagPattern":[{"errortype":"ValidationError","result":{"message":"badDomainTagPattern","params":{"path":"OA_tags","domainTagPattern":"^[a-z][a-z_0-9]*[a-z0-9]$"}},"time":"2024-03-16T07:18:58.550242375","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"illegalDomainTagPattern","params":{"reservedTagNames":["NoTag[tagDefinition=NO_TAG]"],"path":"OA_tags","expectedPattern":"^[a-z][a-z_0-9]*[a-z0-9]$"}},"time":"2024-03-16T07:18:58.550330948","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > especes","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:58.55046305","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > especes > OA_basicComponents > esp_nom > OA_tags","notExpectedDomainTags":["test"]}},"time":"2024-03-16T07:18:58.55096084","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > projet","notExpectedDomainTags":["test","context"]}},"time":"2024-03-16T07:18:58.55117576","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > type_de_sites","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:58.55143434","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > sites","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:58.5517075","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_tags","notExpectedDomainTags":["test","context"]}},"time":"2024-03-16T07:18:58.552496619","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > pem","notExpectedDomainTags":["test","context"]}},"time":"2024-03-16T07:18:58.552602901","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > pem > OA_basicComponents > projet > OA_tags","notExpectedDomainTags":["test"]}},"time":"2024-03-16T07:18:58.552883813","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_tags","notExpectedDomainTags":["test"]}},"time":"2024-03-16T07:18:58.553481777","type":"REACTIVE_ERROR"}]}
\ No newline at end of file
diff --git a/ui/cypress/fixtures/applications/ore/monsore/changeMonsore.txt b/ui/cypress/fixtures/applications/ore/monsore/changeMonsore.txt
index b4c38af4f..2a4ad0d84 100644
--- a/ui/cypress/fixtures/applications/ore/monsore/changeMonsore.txt
+++ b/ui/cypress/fixtures/applications/ore/monsore/changeMonsore.txt
@@ -1,19 +1,19 @@
-{"result":0.0,"time":[2024,3,13,13,53,5,956213534],"type":"REACTIVE_PROGRESS"}
-{"result":"application.ChangeConfiguration.configuration.rights.checking","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,6,18099092],"type":"REACTIVE_INFO"}
-{"result":"application.ChangeConfiguration.configuration.rights.ok","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,6,25567943],"type":"REACTIVE_INFO"}
-{"result":0.02,"time":[2024,3,13,13,53,6,25641941],"type":"REACTIVE_PROGRESS"}
-{"result":"application.ChangeConfiguration.configuration.parsingConfiguration.forSingle","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,6,25695248],"type":"REACTIVE_INFO"}
-{"result":"application.ChangeConfiguration.configuration.testYamlIsvalid","params":null,"time":[2024,3,13,13,53,6,25732822],"type":"REACTIVE_INFO"}
-{"result":"application.ChangeConfiguration.configuration.yamlIsvalid","params":null,"time":[2024,3,13,13,53,6,25775505],"type":"REACTIVE_INFO"}
-{"result":"application.ChangeConfiguration.configuration.versionIsValid","params":null,"time":[2024,3,13,13,53,6,25791125],"type":"REACTIVE_INFO"}
-{"result":0.03,"time":[2024,3,13,13,53,6,25817449],"type":"REACTIVE_PROGRESS"}
-{"result":"application.ChangeConfiguration.configuration.Starting parsing of configuration","params":{},"time":[2024,3,13,13,53,6,58688161],"type":"REACTIVE_INFO"}
-{"result":0.0,"time":[2024,3,13,13,53,6,58805433],"type":"REACTIVE_PROGRESS"}
-{"result":0.0,"time":[2024,3,13,13,53,6,58826673],"type":"REACTIVE_PROGRESS"}
-{"result":"application.ChangeConfiguration.configuration.CheckSyntax.startValidation.start","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,6,83275324],"type":"REACTIVE_INFO"}
-{"result":"application.configuration.create.register.start","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,6,83358079],"type":"REACTIVE_INFO"}
-{"result":"application.ChangeConfiguration.configuration.parsingConfiguration.endparsing","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,6,83394240],"type":"REACTIVE_INFO"}
-{"result":"application.register","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,6,99460395],"type":"REACTIVE_INFO"}
-{"result":"application.migrate.start","params":{"application":"monsore","newVersion":"3.0.2","oldVersion":"3.0.1"},"time":[2024,3,13,13,53,6,117765147],"type":"REACTIVE_INFO"}
-{"result":"6bb82531-aea8-4771-9072-865487705a98","time":[2024,3,13,13,53,6,122853935],"type":"REACTIVE_RESULT"}
-{"result":1.0,"time":[2024,3,13,13,53,6,122967797],"type":"REACTIVE_PROGRESS"}
+{"result":0.0,"time":[2024,3,16,7,54,25,385523971],"type":"REACTIVE_PROGRESS"}
+{"result":"application.ChangeConfiguration.configuration.rights.checking","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,417066208],"type":"REACTIVE_INFO"}
+{"result":"application.ChangeConfiguration.configuration.rights.ok","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,422712407],"type":"REACTIVE_INFO"}
+{"result":0.02,"time":[2024,3,16,7,54,25,422768835],"type":"REACTIVE_PROGRESS"}
+{"result":"application.ChangeConfiguration.configuration.parsingConfiguration.forSingle","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,422804987],"type":"REACTIVE_INFO"}
+{"result":"application.ChangeConfiguration.configuration.testYamlIsvalid","params":null,"time":[2024,3,16,7,54,25,422815369],"type":"REACTIVE_INFO"}
+{"result":"application.ChangeConfiguration.configuration.yamlIsvalid","params":null,"time":[2024,3,16,7,54,25,422821879],"type":"REACTIVE_INFO"}
+{"result":"application.ChangeConfiguration.configuration.versionIsValid","params":null,"time":[2024,3,16,7,54,25,422827130],"type":"REACTIVE_INFO"}
+{"result":0.03,"time":[2024,3,16,7,54,25,422832219],"type":"REACTIVE_PROGRESS"}
+{"result":"application.ChangeConfiguration.configuration.Starting parsing of configuration","params":{},"time":[2024,3,16,7,54,25,436174286],"type":"REACTIVE_INFO"}
+{"result":0.0,"time":[2024,3,16,7,54,25,436225556],"type":"REACTIVE_PROGRESS"}
+{"result":0.0,"time":[2024,3,16,7,54,25,436232137],"type":"REACTIVE_PROGRESS"}
+{"result":"application.ChangeConfiguration.configuration.CheckSyntax.startValidation.start","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,465967990],"type":"REACTIVE_INFO"}
+{"result":"application.configuration.create.register.start","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,466020302],"type":"REACTIVE_INFO"}
+{"result":"application.ChangeConfiguration.configuration.parsingConfiguration.endparsing","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,466041753],"type":"REACTIVE_INFO"}
+{"result":"application.register","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,478752034],"type":"REACTIVE_INFO"}
+{"result":"application.migrate.start","params":{"oldVersion":"3.0.1","application":"monsore","newVersion":"3.0.2"},"time":[2024,3,16,7,54,25,486832581],"type":"REACTIVE_INFO"}
+{"result":"6b6c3451-24f3-4d8f-af99-3017ddd65cea","time":[2024,3,16,7,54,25,490181608],"type":"REACTIVE_RESULT"}
+{"result":1.0,"time":[2024,3,16,7,54,25,490236293],"type":"REACTIVE_PROGRESS"}
diff --git a/ui/cypress/fixtures/applications/ore/monsore/createMonsore.txt b/ui/cypress/fixtures/applications/ore/monsore/createMonsore.txt
index 91e45c08a..9e87e93f4 100644
--- a/ui/cypress/fixtures/applications/ore/monsore/createMonsore.txt
+++ b/ui/cypress/fixtures/applications/ore/monsore/createMonsore.txt
@@ -1,22 +1,22 @@
-{"result":0.0,"time":[2024,3,13,13,53,5,645830953],"type":"REACTIVE_PROGRESS"}
-{"result":"application.createConfiguration.configuration.rights.checking","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,5,652127669],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.configuration.rights.ok","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,5,661604417],"type":"REACTIVE_INFO"}
-{"result":0.02,"time":[2024,3,13,13,53,5,661926213],"type":"REACTIVE_PROGRESS"}
-{"result":"application.createConfiguration.configuration.parsingConfiguration.forSingle","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,5,662042878],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.configuration.testYamlIsvalid","params":null,"time":[2024,3,13,13,53,5,662077535],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.configuration.yamlIsvalid","params":null,"time":[2024,3,13,13,53,5,662107266],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.configuration.versionIsValid","params":null,"time":[2024,3,13,13,53,5,662121133],"type":"REACTIVE_INFO"}
-{"result":0.03,"time":[2024,3,13,13,53,5,662132734],"type":"REACTIVE_PROGRESS"}
-{"result":"application.createConfiguration.configuration.Starting parsing of configuration","params":{},"time":[2024,3,13,13,53,5,716310062],"type":"REACTIVE_INFO"}
-{"result":0.0,"time":[2024,3,13,13,53,5,716393507],"type":"REACTIVE_PROGRESS"}
-{"result":0.0,"time":[2024,3,13,13,53,5,716419278],"type":"REACTIVE_PROGRESS"}
-{"result":"application.createConfiguration.configuration.CheckSyntax.startValidation.start","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,5,738674434],"type":"REACTIVE_INFO"}
-{"result":"application.configuration.create.register.start","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,5,738769984],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.configuration.parsingConfiguration.endparsing","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,5,739199288],"type":"REACTIVE_INFO"}
-{"result":"application.register","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,5,944047790],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.viewCreation.start","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,5,944154822],"type":"REACTIVE_INFO"}
-{"result":0.5,"time":[2024,3,13,13,53,5,944448196],"type":"REACTIVE_PROGRESS"}
-{"result":"application.createConfiguration.viewCreation.end","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,5,944504979],"type":"REACTIVE_INFO"}
-{"result":"6bb82531-aea8-4771-9072-865487705a98","time":[2024,3,13,13,53,5,944543248],"type":"REACTIVE_RESULT"}
-{"result":1.0,"time":[2024,3,13,13,53,5,944725925],"type":"REACTIVE_PROGRESS"}
-{"result":1.0,"time":[2024,3,13,13,53,5,944765714],"type":"REACTIVE_PROGRESS"}
+{"result":0.0,"time":[2024,3,16,7,54,25,175397943],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.configuration.rights.checking","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,179627546],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.configuration.rights.ok","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,185184573],"type":"REACTIVE_INFO"}
+{"result":0.02,"time":[2024,3,16,7,54,25,185234413],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.configuration.parsingConfiguration.forSingle","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,185253268],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.configuration.testYamlIsvalid","params":null,"time":[2024,3,16,7,54,25,185259025],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.configuration.yamlIsvalid","params":null,"time":[2024,3,16,7,54,25,185263045],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.configuration.versionIsValid","params":null,"time":[2024,3,16,7,54,25,185267025],"type":"REACTIVE_INFO"}
+{"result":0.03,"time":[2024,3,16,7,54,25,185270222],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.configuration.Starting parsing of configuration","params":{},"time":[2024,3,16,7,54,25,210967752],"type":"REACTIVE_INFO"}
+{"result":0.0,"time":[2024,3,16,7,54,25,211047805],"type":"REACTIVE_PROGRESS"}
+{"result":0.0,"time":[2024,3,16,7,54,25,211058662],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.configuration.CheckSyntax.startValidation.start","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,235647409],"type":"REACTIVE_INFO"}
+{"result":"application.configuration.create.register.start","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,235707368],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.configuration.parsingConfiguration.endparsing","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,235730757],"type":"REACTIVE_INFO"}
+{"result":"application.register","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,376005438],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.viewCreation.start","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,376060431],"type":"REACTIVE_INFO"}
+{"result":0.5,"time":[2024,3,16,7,54,25,376070206],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.viewCreation.end","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,376076371],"type":"REACTIVE_INFO"}
+{"result":"6b6c3451-24f3-4d8f-af99-3017ddd65cea","time":[2024,3,16,7,54,25,376080110],"type":"REACTIVE_RESULT"}
+{"result":1.0,"time":[2024,3,16,7,54,25,376090433],"type":"REACTIVE_PROGRESS"}
+{"result":1.0,"time":[2024,3,16,7,54,25,376097578],"type":"REACTIVE_PROGRESS"}
diff --git a/ui/cypress/fixtures/applications/ore/monsore/validateMonsore.txt b/ui/cypress/fixtures/applications/ore/monsore/validateMonsore.txt
index 5e970c0d4..02cc010ec 100644
--- a/ui/cypress/fixtures/applications/ore/monsore/validateMonsore.txt
+++ b/ui/cypress/fixtures/applications/ore/monsore/validateMonsore.txt
@@ -1,10 +1,10 @@
-{"result":"application.createConfiguration.testYamlIsvalid","params":null,"time":[2024,3,13,13,53,5,346193840],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.yamlIsvalid","params":null,"time":[2024,3,13,13,53,5,346647418],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.versionIsValid","params":null,"time":[2024,3,13,13,53,5,346681055],"type":"REACTIVE_INFO"}
-{"result":0.01,"time":[2024,3,13,13,53,5,347356804],"type":"REACTIVE_PROGRESS"}
-{"result":"application.createConfiguration.Starting parsing of configuration","params":{},"time":[2024,3,13,13,53,5,487827221],"type":"REACTIVE_INFO"}
-{"result":0.0,"time":[2024,3,13,13,53,5,488373627],"type":"REACTIVE_PROGRESS"}
-{"result":0.0,"time":[2024,3,13,13,53,5,488860285],"type":"REACTIVE_PROGRESS"}
-{"result":"application.createConfiguration.CheckSyntax.startValidation.start","params":{"applicationName":"monsore"},"time":[2024,3,13,13,53,5,569616927],"type":"REACTIVE_INFO"}
-{"result":{"id":"3b9a9f87-b2cb-4478-ac4a-58b4340820e2","creationDate":null,"updateDate":null,"name":"monsore","version":null,"data":["themes","especes","variables","type_de_sites","site_theme_datatype","unites","projet","valeurs_qualitatives","type_de_fichiers","variables_et_unites_par_types_de_donnees","pem","sites"],"additionalFiles":["fichiers","utilisateurs"],"configuration":{"version":{"version":"2.0.1","runTimeVersion":{}},"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"},{"tagDefinition":"DOMAIN_TAG","tagName":"data"},{"tagDefinition":"DOMAIN_TAG","tagName":"test"},{"tagDefinition":"DOMAIN_TAG","tagName":"unit"},{"tagDefinition":"DOMAIN_TAG","tagName":"temporal"}],"i18n":{"tags":{"unit":{"en":"unit","fr":"unité"},"data":{"en":"data","fr":"données"},"test":{"en":"test","fr":"test"},"context":{"en":"context","fr":"contexte"},"temporal":{"en":"temporality","fr":"temporalité"}},"application":{"en":"SOERE my SOERE","fr":"SOERE mon SOERE"},"data":{"themes":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"description_fr":{"en":"description_en","fr":"description_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Thematic","fr":"Thème"}},"variables":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"nom_key":{"en":"nom_en","fr":"nom_fr"},"definition_fr":{"en":"definition_en","fr":"definition_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Variables","fr":"Variables"}},"especes":{"validations":{},"components":{"my_computed_column":{"exportHeader":{"en":"computed column","fr":"colonne calculée"}},"esp_definition_en":{"exportHeader":{"en":"definition","fr":"definition"}},"esp_definition_fr":{"exportHeader":{"en":"définition","fr":"définition"}},"esp_nom":{"exportHeader":{"en":"code","fr":"code"}}},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"esp_definition_fr":{"en":"esp_definition_en","fr":"esp_definition_fr"}},"i18nDisplay":{"en":"{esp_nom}","fr":"{esp_nom}"},"i18n":{"en":"Species","fr":"Espèces"}},"site_theme_datatype":{"validations":{"projetRef":{"fr":"référence au projet"}},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{},"i18nDisplay":{"en":"projet name: {projet}, site name : {site}, theme name : {theme}, data type name : {datatype}","fr":"nom du projet: {projet}, nom du site : {site}, nom du thème : {theme}, nom du type de données : {datatype}"},"i18n":{"en":"Data types by site and project","fr":"Types de données par site et projet"}},"type_de_sites":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"tze_nom_key":{"en":"tze_nom_en","fr":"tze_nom_fr"},"tze_definition_fr":{"en":"tze_definition_en","fr":"tze_definition_fr"}},"i18nDisplay":{"en":"{tze_nom_key}","fr":"{tze_nom_key}"},"i18n":{"en":"Sites types","fr":"Types de sites"}},"unites":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"code_key":{"en":"code_en","fr":"code_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{nom_key} ({code_key})","fr":"{nom_key} ({code_key})"},"i18n":{"en":"Units","fr":"Unités"}},"projet":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"nom_key":{"en":"nom_en","fr":"nom_fr"},"definition_fr":{"en":"definition_en","fr":"definition_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Project","fr":"Projet"}},"valeurs_qualitatives":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"valeur_key":{"en":"valeur_en","fr":"valeur_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{valeur_key}","fr":"{valeur_key}"},"i18n":{"en":"Qualitative values","fr":"Valeurs qualitatives"}},"variables_et_unites_par_types_de_donnees":{"validations":{"variableRef":{"fr":"référence à la variable"}},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{},"i18nDisplay":{"en":"datatype name : {datatype}, variable name : {variable}, : unit name {unite}","fr":"nom du type de données : {datatype}, nom de la variable : {variable}, : nom de l'unité {unite}"},"i18n":{"fr":"référence à la variable"}},"type_de_fichiers":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"description_fr":{"en":"description_en","fr":"description_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Files types","fr":"Types de fichiers"}},"pem":{"validations":{"unitOfColor":{"fr":"vérifie l'unité de la couleur des individus"}},"components":{"color_value":{"exportHeader":{"en":"United colors","fr":"Couleur des individus"}},"individusNumbervalue":{"exportHeader":{"fr":"Nombre d'individus"}}},"submissions":{"authorizationScopes":{"localization":{"en":"site","fr":"site"},"projet":{"en":"project","fr":"projet"}},"datagroups":{"qualitatif":{"en":"Qualitative","fr":"Qualitatif"},"quantitatif":{"en":"Quantitative","fr":"Quantitatif"}}},"i18nColumns":{},"i18nDisplay":{"en":"TRap in ascent","fr":"Piégeage en montée"},"i18n":{"en":"Trap in ascent","fr":"Piégeage en Montée"}},"sites":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"zet_nom_key":{"en":"zet_nom_en","fr":"zet_nom_fr"},"zet_description_fr":{"en":"zet_description_en","fr":"zet_description_fr"}},"i18nDisplay":{"en":"{zet_nom_key}","fr":"{zet_nom_key}"},"i18n":{"en":"Site","fr":"Site"}}},"rightsrequest":{"description":{"en":"You can request rights to the monsore application by filling out this form","fr":"Vous pouvez demander des droits à l'application monsore en remplissant ce formulaire"},"fields":{"endDate":{"en":"Project end date","fr":"Date de fin du projet"},"organization":{"en":"Name of research organization","fr":"Nom de l'organisme de recherche"},"project":{"en":"Description of the research project","fr":"Description du projet de recherche"},"startDate":{"en":"Project start date","fr":"Date de début du projet"}}},"additionalFiles":{"utilisateurs":{"i18n":{"en":"User","fr":"Users"},"fields":{"nom":{"en":"Name","fr":"Nom"},"prenom":{"en":"Surname","fr":"Prénom"}}},"fichiers":{"i18n":{"en":"Files","fr":"Fichiers"},"fields":{"date":{"en":"Date","fr":"Date"},"site":{"en":"Place","fr":"Site"},"poids":{"en":"Weight","fr":"Poids"},"nom":{"en":"Name","fr":"Nom"},"age":{"en":"Age","fr":"Age"}}}}},"applicationDescription":{"name":"monsore","version":{"version":"3.0.1","runTimeVersion":{}},"defaultLanguage":"fr","comment":"Fichier de test de l'application brokenADOM"},"dataDescription":{"themes":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_fr":{"type":"BasicComponent","componentKey":"description_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_fr","exportHeaderName":"description_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_en":{"type":"BasicComponent","componentKey":"description_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_en","exportHeaderName":"description_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"especes":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["esp_nom"],"componentDescriptions":{"colonne_homonyme_entre_referentiels":{"type":"BasicComponent","componentKey":"colonne_homonyme_entre_referentiels","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"colonne_homonyme_entre_referentiels","exportHeaderName":"colonne_homonyme_entre_referentiels","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"esp_definition_en":{"type":"BasicComponent","componentKey":"esp_definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"esp_definition_en","exportHeaderName":"esp_definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"my_computed_column":{"type":"ComputedComponent","componentKey":"my_computed_column","tags":[{"tagDefinition":"HIDDEN_TAG"}],"exportHeaderName":"my_computed_column","required":false,"mandatory":"OPTIONAL","checker":null,"computationChecker":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"my value\";\n","references":null,"codify":false,"data":null},"submissionAuthorizationScope":null,"hidden":true,"chartDescription":null},"esp_nom":{"type":"BasicComponent","componentKey":"esp_nom","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"test"}],"importHeader":"esp_nom","exportHeaderName":"esp_nom","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"esp_definition_fr":{"type":"BasicComponent","componentKey":"esp_definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"esp_definition_fr","exportHeaderName":"esp_definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"variables":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_en":{"type":"BasicComponent","componentKey":"definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_en","exportHeaderName":"definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"is_qualitative":{"type":"BasicComponent","componentKey":"is_qualitative","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"isQualitative","exportHeaderName":"is_qualitative","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_fr":{"type":"BasicComponent","componentKey":"definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_fr","exportHeaderName":"definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"type_de_sites":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["tze_nom_key"],"componentDescriptions":{"tze_nom_key":{"type":"BasicComponent","componentKey":"tze_nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_nom_key","exportHeaderName":"tze_nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_nom_fr":{"type":"BasicComponent","componentKey":"tze_nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_nom_fr","exportHeaderName":"tze_nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_definition_fr":{"type":"BasicComponent","componentKey":"tze_definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_definition_fr","exportHeaderName":"tze_definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_nom_en":{"type":"BasicComponent","componentKey":"tze_nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_nom_en","exportHeaderName":"tze_nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_definition_en":{"type":"BasicComponent","componentKey":"tze_definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_definition_en","exportHeaderName":"tze_definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"site_theme_datatype":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["projet","site","theme","datatype"],"componentDescriptions":{"site":{"type":"BasicComponent","componentKey":"site","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du site","exportHeaderName":"site","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"theme":{"type":"BasicComponent","componentKey":"theme","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du thème","exportHeaderName":"theme","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"projet":{"type":"BasicComponent","componentKey":"projet","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du projet","exportHeaderName":"projet","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"datatype":{"type":"BasicComponent","componentKey":"datatype","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du type de données","exportHeaderName":"datatype","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{"projetRef":{"checker":{"type":"ReferenceChecker","componentKey":"projetRef","multiplicity":"ONE","required":false,"refType":"projet","isRecursive":false,"isParent":false},"tags":[{"tagDefinition":"NO_TAG"}],"columns":["projet"],"required":false,"mandatory":"OPTIONAL"}},"depends":[],"migrations":null,"hidden":false,"order":9999},"unites":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["nom_key"],"componentDescriptions":{"code_en":{"type":"BasicComponent","componentKey":"code_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"code_en","exportHeaderName":"code_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"code_key":{"type":"BasicComponent","componentKey":"code_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"code_key","exportHeaderName":"code_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"code_fr":{"type":"BasicComponent","componentKey":"code_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"code_fr","exportHeaderName":"code_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"projet":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"},{"tagDefinition":"DOMAIN_TAG","tagName":"test"},{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_en":{"type":"BasicComponent","componentKey":"definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_en","exportHeaderName":"definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"colonne_homonyme_entre_referentiels":{"type":"BasicComponent","componentKey":"colonne_homonyme_entre_referentiels","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"colonne_homonyme_entre_referentiels","exportHeaderName":"colonne_homonyme_entre_referentiels","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_fr":{"type":"BasicComponent","componentKey":"definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_fr","exportHeaderName":"definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"valeurs_qualitatives":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["nom_key","valeur_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"valeur_en":{"type":"BasicComponent","componentKey":"valeur_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"valeur_en","exportHeaderName":"valeur_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"valeur_key":{"type":"BasicComponent","componentKey":"valeur_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"valeur_key","exportHeaderName":"valeur_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"valeur_fr":{"type":"BasicComponent","componentKey":"valeur_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"valeur_fr","exportHeaderName":"valeur_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"type_de_fichiers":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"HIDDEN_TAG"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_fr":{"type":"BasicComponent","componentKey":"description_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_fr","exportHeaderName":"description_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_en":{"type":"BasicComponent","componentKey":"description_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_en","exportHeaderName":"description_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"variables_et_unites_par_types_de_donnees":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["datatype","variable"],"componentDescriptions":{"variable":{"type":"BasicComponent","componentKey":"variable","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom de la variable","exportHeaderName":"variable","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"datatype":{"type":"BasicComponent","componentKey":"datatype","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du type de données","exportHeaderName":"datatype","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"unite":{"type":"BasicComponent","componentKey":"unite","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom de l'unité","exportHeaderName":"unite","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{"variableRef":{"checker":{"type":"ReferenceChecker","componentKey":"variableRef","multiplicity":"ONE","required":false,"refType":"variables","isRecursive":false,"isParent":false},"tags":[{"tagDefinition":"NO_TAG"}],"columns":["variable"],"required":false,"mandatory":"OPTIONAL"}},"depends":[],"migrations":null,"hidden":false,"order":9999},"pem":{"separator":";","headerLine":4,"firstRowLine":5,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"ORDER_TAG","tagOrder":2},{"tagDefinition":"DOMAIN_TAG","tagName":"data"},{"tagDefinition":"DOMAIN_TAG","tagName":"test"},{"tagDefinition":"DOMAIN_TAG","tagName":"context"},{"tagDefinition":"DATA_TAG"}],"naturalKey":["projet","site","plateforme","date","espece"],"componentDescriptions":{"date":{"type":"BasicComponent","componentKey":"date","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":true,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"ORDER_TAG","tagOrder":1},{"tagDefinition":"DOMAIN_TAG","tagName":"temporal"}],"importHeader":"date","exportHeaderName":"date","required":true,"mandatory":"OPTIONAL","checker":{"type":"DateChecker","multiplicity":"ONE","required":true,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"site":{"type":"BasicComponent","componentKey":"site","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"site","exportHeaderName":"site","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"site","multiplicity":"ONE","required":false,"refType":"sites","isRecursive":false,"isParent":false},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"__projet__":{"type":"AuthorizationScopeComponent","componentKey":null,"authorizationScopeName":"projet","references":"projet","component":"projet","exportHeaderName":"projet","submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"individusNumber_unit":{"type":"ComputedComponent","componentKey":"individusNumber_unit","tags":[{"tagDefinition":"NO_TAG"}],"exportHeaderName":null,"required":true,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"individusNumber_unit","multiplicity":"ONE","required":true,"refType":"unites","isRecursive":false,"isParent":false},"computationChecker":{"type":"ComputationChecker","multiplicity":"ONE","required":true,"expression":"'sans_unite'","references":null,"codify":false,"data":null},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"projet":{"type":"BasicComponent","componentKey":"projet","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"ORDER_TAG","tagOrder":2},{"tagDefinition":"DOMAIN_TAG","tagName":"test"}],"importHeader":"projet","exportHeaderName":"projet","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"projet","multiplicity":"ONE","required":false,"refType":"projet","isRecursive":false,"isParent":false},"submissionAuthorizationScope":"projet","hidden":false,"chartDescription":null},"espece":{"type":"BasicComponent","componentKey":"espece","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"espece","exportHeaderName":"espece","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"espece","multiplicity":"ONE","required":false,"refType":"especes","isRecursive":false,"isParent":false},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"plateforme":{"type":"BasicComponent","componentKey":"plateforme","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"plateforme","exportHeaderName":"plateforme","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"color_value":{"type":"BasicComponent","componentKey":"color_value","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"Couleur des individus","exportHeaderName":"color_value","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"color_value","multiplicity":"ONE","required":false,"refType":"valeurs_qualitatives","isRecursive":false,"isParent":false},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"individusNumbervalue":{"type":"BasicComponent","componentKey":"individusNumbervalue","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return 0","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"Nombre d'individus","exportHeaderName":"individusNumbervalue","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"color_unit":{"type":"ComputedComponent","componentKey":"color_unit","tags":[{"tagDefinition":"NO_TAG"}],"exportHeaderName":null,"required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"color_unit","multiplicity":"ONE","required":false,"refType":"unites","isRecursive":false,"isParent":false},"computationChecker":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"'sans_unite'","references":null,"codify":false,"data":null},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":{"strategy":"OA_REPOSITORY","fileNameParsing":{"pattern":"(.*)_(.*)_(.*)_(.*).csv","authorizationScopes":{"localization":1,"projet":2},"startDate":null,"endDate":null},"authorization":{"authorizationScopes":{"projet":{"references":"projet","component":"projet"},"localization":{"references":"sites","component":null}},"timescope":{"component":"date"},"datagroups":{"datagroups":{"qualitatif":["color_unit"],"quantitatif":["individusNumbervalue"]}}}},"validations":{},"depends":[{"type":"DependsReferences","references":"sites","component":"site"},{"type":"DependsReferences","references":"unites","component":"individusNumber_unit"},{"type":"DependsReferences","references":"projet","component":"projet"},{"type":"DependsReferences","references":"especes","component":"espece"},{"type":"DependsReferences","references":"valeurs_qualitatives","component":"color_value"},{"type":"DependsReferences","references":"unites","component":"color_unit"}],"migrations":null,"hidden":false,"order":2},"sites":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["zet_chemin_parent","zet_nom_key"],"componentDescriptions":{"tze_type_nom":{"type":"BasicComponent","componentKey":"tze_type_nom","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":true,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_type_nom","exportHeaderName":"tze_type_nom","required":true,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"tze_type_nom","multiplicity":"ONE","required":true,"refType":"type_de_sites","isRecursive":false,"isParent":true},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_description_en":{"type":"BasicComponent","componentKey":"zet_description_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_description_en","exportHeaderName":"zet_description_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_nom_fr":{"type":"BasicComponent","componentKey":"zet_nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_nom_fr","exportHeaderName":"zet_nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_nom_key":{"type":"BasicComponent","componentKey":"zet_nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_nom_key","exportHeaderName":"zet_nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_nom_en":{"type":"BasicComponent","componentKey":"zet_nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_nom_en","exportHeaderName":"zet_nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_description_fr":{"type":"BasicComponent","componentKey":"zet_description_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_description_fr","exportHeaderName":"zet_description_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_chemin_parent":{"type":"BasicComponent","componentKey":"zet_chemin_parent","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_chemin_parent","exportHeaderName":"zet_chemin_parent","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"zet_chemin_parent","multiplicity":"ONE","required":false,"refType":"sites","isRecursive":true,"isParent":true},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[{"type":"DependsParent","references":"type_de_sites","component":"tze_type_nom"},{"type":"DependsParent","references":"sites","component":"zet_chemin_parent"}],"migrations":null,"hidden":false,"order":9999}},"rightsRequest":{"format":{"organization":{"type":"RightsRequestField","required":true,"checker":{"type":"StringChecker","multiplicity":"ONE","required":true,"pattern":".*"}},"project":{"type":"RightsRequestField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":".*"}},"startDate":{"type":"RightsRequestField","required":false,"checker":{"type":"DateChecker","multiplicity":"ONE","required":false,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null}},"endDate":{"type":"RightsRequestField","required":false,"checker":{"type":"DateChecker","multiplicity":"ONE","required":false,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null}}}},"additionalFiles":{"fichiers":{"format":{"nom":{"type":"AdditionalFileField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":"[a-z]*"}},"date":{"type":"AdditionalFileField","required":false,"checker":{"type":"DateChecker","multiplicity":"ONE","required":false,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null}},"age":{"type":"AdditionalFileField","required":false,"checker":{"type":"IntegerChecker","multiplicity":"ONE","required":false,"min":-2147483648,"max":2147483647}},"poids":{"type":"AdditionalFileField","required":false,"checker":{"type":"FloatChecker","multiplicity":"ONE","required":false,"min":10.0,"max":100.0}},"site":{"type":"AdditionalFileField","required":true,"checker":{"type":"ReferenceChecker","componentKey":"site","multiplicity":"ONE","required":true,"refType":"sites","isRecursive":false,"isParent":false}}}},"utilisateurs":{"format":{"nom":{"type":"AdditionalFileField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":"[a-z]*"}},"prenom":{"type":"AdditionalFileField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":"[a-z]*"}}}}},"hierarchicalNodes":[{"nodeName":"especes","componentKey":"espece","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"projet","componentKey":"projet","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"pem","componentKey":"individusNumber_unit","parent":null,"children":[],"depends":["projet","sites","especes","valeurs_qualitatives","unites","type_de_sites"],"order":2,"isRecursive":false},{"nodeName":"site_theme_datatype","componentKey":"projetRef","parent":null,"children":[],"depends":["projet"],"order":9999,"isRecursive":false},{"nodeName":"themes","componentKey":null,"parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"type_de_fichiers","componentKey":null,"parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"type_de_sites","componentKey":"tze_type_nom","parent":null,"children":[{"nodeName":"sites","componentKey":"zet_chemin_parent","parent":"type_de_sites","children":[],"depends":["type_de_sites"],"order":9999,"isRecursive":true}],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"unites","componentKey":"individusNumber_unit","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"valeurs_qualitatives","componentKey":"color_value","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"variables","componentKey":"variableRef","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"variables_et_unites_par_types_de_donnees","componentKey":"variableRef","parent":null,"children":[],"depends":["variables"],"order":9999,"isRecursive":false}],"requiredAuthorizationsAttributes":["localization","projet"],"hiddenData":["type_de_fichiers"]},"configFile":null},"time":[2024,3,13,13,53,5,570344300],"type":"REACTIVE_RESULT"}
-{"result":1.0,"time":[2024,3,13,13,53,5,570607686],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.testYamlIsvalid","params":null,"time":[2024,3,16,7,54,25,79189553],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.yamlIsvalid","params":null,"time":[2024,3,16,7,54,25,79465274],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.versionIsValid","params":null,"time":[2024,3,16,7,54,25,79485691],"type":"REACTIVE_INFO"}
+{"result":0.01,"time":[2024,3,16,7,54,25,79493067],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.Starting parsing of configuration","params":{},"time":[2024,3,16,7,54,25,98333111],"type":"REACTIVE_INFO"}
+{"result":0.0,"time":[2024,3,16,7,54,25,98598974],"type":"REACTIVE_PROGRESS"}
+{"result":0.0,"time":[2024,3,16,7,54,25,98616194],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.CheckSyntax.startValidation.start","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,125199815],"type":"REACTIVE_INFO"}
+{"result":{"id":"4cd68688-9973-40b6-bd42-0cf258df119c","creationDate":null,"updateDate":null,"name":"monsore","version":null,"data":["themes","especes","variables","type_de_sites","site_theme_datatype","unites","projet","valeurs_qualitatives","type_de_fichiers","variables_et_unites_par_types_de_donnees","pem","sites"],"additionalFiles":["fichiers","utilisateurs"],"configuration":{"version":{"version":"2.0.1","runTimeVersion":{}},"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"},{"tagDefinition":"DOMAIN_TAG","tagName":"data"},{"tagDefinition":"DOMAIN_TAG","tagName":"test"},{"tagDefinition":"DOMAIN_TAG","tagName":"unit"},{"tagDefinition":"DOMAIN_TAG","tagName":"temporal"}],"i18n":{"tags":{"unit":{"en":"unit","fr":"unité"},"data":{"en":"data","fr":"données"},"test":{"en":"test","fr":"test"},"context":{"en":"context","fr":"contexte"},"temporal":{"en":"temporality","fr":"temporalité"}},"application":{"en":"SOERE my SOERE","fr":"SOERE mon SOERE"},"data":{"themes":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"description_fr":{"en":"description_en","fr":"description_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Thematic","fr":"Thème"}},"variables":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"nom_key":{"en":"nom_en","fr":"nom_fr"},"definition_fr":{"en":"definition_en","fr":"definition_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Variables","fr":"Variables"}},"especes":{"validations":{},"components":{"my_computed_column":{"exportHeader":{"en":"computed column","fr":"colonne calculée"}},"esp_definition_en":{"exportHeader":{"en":"definition","fr":"definition"}},"esp_definition_fr":{"exportHeader":{"en":"définition","fr":"définition"}},"esp_nom":{"exportHeader":{"en":"code","fr":"code"}}},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"esp_definition_fr":{"en":"esp_definition_en","fr":"esp_definition_fr"}},"i18nDisplay":{"en":"{esp_nom}","fr":"{esp_nom}"},"i18n":{"en":"Species","fr":"Espèces"}},"site_theme_datatype":{"validations":{"checkDatatype":{"fr":"test"},"projetRef":{"fr":"référence au projet"},"sitesRef":{"fr":"référence au site"},"themesRef":{"fr":"référence au theme"}},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{},"i18nDisplay":{"en":"projet name: {projet}, site name : {site}, theme name : {theme}, data type name : {datatype}","fr":"nom du projet: {projet}, nom du site : {site}, nom du thème : {theme}, nom du type de données : {datatype}"},"i18n":{"en":"Data types by site and project","fr":"Types de données par site et projet"}},"type_de_sites":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"tze_nom_key":{"en":"tze_nom_en","fr":"tze_nom_fr"},"tze_definition_fr":{"en":"tze_definition_en","fr":"tze_definition_fr"}},"i18nDisplay":{"en":"{tze_nom_key}","fr":"{tze_nom_key}"},"i18n":{"en":"Sites types","fr":"Types de sites"}},"unites":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"code_key":{"en":"code_en","fr":"code_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{nom_key} ({code_key})","fr":"{nom_key} ({code_key})"},"i18n":{"en":"Units","fr":"Unités"}},"projet":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"nom_key":{"en":"nom_en","fr":"nom_fr"},"definition_fr":{"en":"definition_en","fr":"definition_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Project","fr":"Projet"}},"valeurs_qualitatives":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"valeur_key":{"en":"valeur_en","fr":"valeur_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{valeur_key}","fr":"{valeur_key}"},"i18n":{"en":"Qualitative values","fr":"Valeurs qualitatives"}},"variables_et_unites_par_types_de_donnees":{"validations":{"checkDatatype":{"fr":"test"},"uniteRef":{"fr":"référence à l'unité'"},"variableRef":{"fr":"référence à la variable"}},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{},"i18nDisplay":{"en":"datatype name : {datatype}, variable name : {variable}, : unit name {unite}","fr":"nom du type de données : {datatype}, nom de la variable : {variable}, : nom de l'unité {unite}"},"i18n":{"fr":"référence à la variable"}},"type_de_fichiers":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"description_fr":{"en":"description_en","fr":"description_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Files types","fr":"Types de fichiers"}},"pem":{"validations":{"unitOfIndividus":{"fr":"vérifie l'unité du nombre d'individus"},"unitOfColor":{"fr":"vérifie l'unité de la couleur des individus"}},"components":{"color_value":{"exportHeader":{"en":"United colors","fr":"Couleur des individus"}},"individusNumbervalue":{"exportHeader":{"fr":"Nombre d'individus"}}},"submissions":{"authorizationScopes":{"localization":{"en":"site","fr":"site"},"projet":{"en":"project","fr":"projet"}},"datagroups":{"qualitatif":{"en":"Qualitative","fr":"Qualitatif"},"quantitatif":{"en":"Quantitative","fr":"Quantitatif"}}},"i18nColumns":{},"i18nDisplay":{"en":"TRap in ascent","fr":"Piégeage en montée"},"i18n":{"en":"Trap in ascent","fr":"Piégeage en Montée"}},"sites":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"zet_nom_key":{"en":"zet_nom_en","fr":"zet_nom_fr"},"zet_description_fr":{"en":"zet_description_en","fr":"zet_description_fr"}},"i18nDisplay":{"en":"{zet_nom_key}","fr":"{zet_nom_key}"},"i18n":{"en":"Site","fr":"Site"}}},"rightsrequest":{"description":{"en":"You can request rights to the monsore application by filling out this form","fr":"Vous pouvez demander des droits à l'application monsore en remplissant ce formulaire"},"fields":{"endDate":{"en":"Project end date","fr":"Date de fin du projet"},"organization":{"en":"Name of research organization","fr":"Nom de l'organisme de recherche"},"project":{"en":"Description of the research project","fr":"Description du projet de recherche"},"startDate":{"en":"Project start date","fr":"Date de début du projet"}}},"additionalFiles":{"utilisateurs":{"i18n":{"en":"User","fr":"Users"},"fields":{"nom":{"en":"Name","fr":"Nom"},"prenom":{"en":"Surname","fr":"Prénom"}}},"fichiers":{"i18n":{"en":"Files","fr":"Fichiers"},"fields":{"date":{"en":"Date","fr":"Date"},"site":{"en":"Place","fr":"Site"},"poids":{"en":"Weight","fr":"Poids"},"nom":{"en":"Name","fr":"Nom"},"age":{"en":"Age","fr":"Age"}}}}},"applicationDescription":{"name":"monsore","version":{"version":"3.0.1","runTimeVersion":{}},"defaultLanguage":"fr","comment":"Fichier de test de l'application brokenADOM"},"dataDescription":{"themes":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_fr":{"type":"BasicComponent","componentKey":"description_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_fr","exportHeaderName":"description_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_en":{"type":"BasicComponent","componentKey":"description_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_en","exportHeaderName":"description_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"especes":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["esp_nom"],"componentDescriptions":{"colonne_homonyme_entre_referentiels":{"type":"BasicComponent","componentKey":"colonne_homonyme_entre_referentiels","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"colonne_homonyme_entre_referentiels","exportHeaderName":"colonne_homonyme_entre_referentiels","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"esp_definition_en":{"type":"BasicComponent","componentKey":"esp_definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"esp_definition_en","exportHeaderName":"esp_definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"my_computed_column":{"type":"ComputedComponent","componentKey":"my_computed_column","tags":[{"tagDefinition":"HIDDEN_TAG"}],"exportHeaderName":"my_computed_column","required":false,"mandatory":"OPTIONAL","checker":null,"computationChecker":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"my value\";\n","references":null,"codify":false,"data":null},"submissionAuthorizationScope":null,"hidden":true,"chartDescription":null},"esp_nom":{"type":"BasicComponent","componentKey":"esp_nom","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"test"}],"importHeader":"esp_nom","exportHeaderName":"esp_nom","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"esp_definition_fr":{"type":"BasicComponent","componentKey":"esp_definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"esp_definition_fr","exportHeaderName":"esp_definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"variables":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_en":{"type":"BasicComponent","componentKey":"definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_en","exportHeaderName":"definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"is_qualitative":{"type":"BasicComponent","componentKey":"is_qualitative","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"isQualitative","exportHeaderName":"is_qualitative","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_fr":{"type":"BasicComponent","componentKey":"definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_fr","exportHeaderName":"definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"type_de_sites":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["tze_nom_key"],"componentDescriptions":{"tze_nom_key":{"type":"BasicComponent","componentKey":"tze_nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_nom_key","exportHeaderName":"tze_nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_nom_fr":{"type":"BasicComponent","componentKey":"tze_nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_nom_fr","exportHeaderName":"tze_nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_definition_fr":{"type":"BasicComponent","componentKey":"tze_definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_definition_fr","exportHeaderName":"tze_definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_nom_en":{"type":"BasicComponent","componentKey":"tze_nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_nom_en","exportHeaderName":"tze_nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_definition_en":{"type":"BasicComponent","componentKey":"tze_definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_definition_en","exportHeaderName":"tze_definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"site_theme_datatype":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["projet","site","theme","datatype"],"componentDescriptions":{"site":{"type":"BasicComponent","componentKey":"site","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du site","exportHeaderName":"site","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"theme":{"type":"BasicComponent","componentKey":"theme","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du thème","exportHeaderName":"theme","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"projet":{"type":"BasicComponent","componentKey":"projet","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du projet","exportHeaderName":"projet","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"datatype":{"type":"BasicComponent","componentKey":"datatype","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du type de données","exportHeaderName":"datatype","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{"projetRef":{"checkers":[{"type":"ReferenceChecker","componentKey":"projetRef","multiplicity":"ONE","required":false,"refType":"projet","isRecursive":false,"isParent":false}],"tags":[{"tagDefinition":"NO_TAG"}],"columns":["projet"],"required":false,"mandatory":"OPTIONAL"},"sitesRef":{"checkers":[{"type":"ReferenceChecker","componentKey":"sitesRef","multiplicity":"ONE","required":false,"refType":"sites","isRecursive":false,"isParent":false}],"tags":[{"tagDefinition":"NO_TAG"}],"columns":["site"],"required":false,"mandatory":"OPTIONAL"},"themesRef":{"checkers":[{"type":"ReferenceChecker","componentKey":"themesRef","multiplicity":"ONE","required":false,"refType":"themes","isRecursive":false,"isParent":false}],"tags":[{"tagDefinition":"NO_TAG"}],"columns":["theme"],"required":false,"mandatory":"OPTIONAL"},"checkDatatype":{"checkers":[{"type":"GroovyExpressionChecker","multiplicity":"ONE","required":false,"expression":"String datatype = Arrays.stream((String)datum.datatype).split(\"_\")\n                .collect{it.substring(0, 1)}\n                .join(); \n                return application.getDataType().contains(datatype);\n","references":null,"codify":true,"data":null}],"tags":[{"tagDefinition":"NO_TAG"}],"columns":["datatype"],"required":false,"mandatory":"OPTIONAL"}},"depends":[],"migrations":null,"hidden":false,"order":9999},"unites":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["nom_key"],"componentDescriptions":{"code_en":{"type":"BasicComponent","componentKey":"code_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"code_en","exportHeaderName":"code_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"code_key":{"type":"BasicComponent","componentKey":"code_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"code_key","exportHeaderName":"code_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"code_fr":{"type":"BasicComponent","componentKey":"code_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"code_fr","exportHeaderName":"code_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"projet":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"},{"tagDefinition":"DOMAIN_TAG","tagName":"test"},{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_en":{"type":"BasicComponent","componentKey":"definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_en","exportHeaderName":"definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"colonne_homonyme_entre_referentiels":{"type":"BasicComponent","componentKey":"colonne_homonyme_entre_referentiels","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"colonne_homonyme_entre_referentiels","exportHeaderName":"colonne_homonyme_entre_referentiels","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_fr":{"type":"BasicComponent","componentKey":"definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_fr","exportHeaderName":"definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"valeurs_qualitatives":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["nom_key","valeur_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"valeur_en":{"type":"BasicComponent","componentKey":"valeur_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"valeur_en","exportHeaderName":"valeur_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"valeur_key":{"type":"BasicComponent","componentKey":"valeur_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"valeur_key","exportHeaderName":"valeur_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"valeur_fr":{"type":"BasicComponent","componentKey":"valeur_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"valeur_fr","exportHeaderName":"valeur_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"type_de_fichiers":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"HIDDEN_TAG"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_fr":{"type":"BasicComponent","componentKey":"description_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_fr","exportHeaderName":"description_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_en":{"type":"BasicComponent","componentKey":"description_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_en","exportHeaderName":"description_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"variables_et_unites_par_types_de_donnees":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["datatype","variable"],"componentDescriptions":{"variable":{"type":"BasicComponent","componentKey":"variable","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom de la variable","exportHeaderName":"variable","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"datatype":{"type":"BasicComponent","componentKey":"datatype","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du type de données","exportHeaderName":"datatype","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"unite":{"type":"BasicComponent","componentKey":"unite","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom de l'unité","exportHeaderName":"unite","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{"variableRef":{"checkers":[{"type":"ReferenceChecker","componentKey":"variableRef","multiplicity":"ONE","required":false,"refType":"variables","isRecursive":false,"isParent":false}],"tags":[{"tagDefinition":"NO_TAG"}],"columns":["variable"],"required":false,"mandatory":"OPTIONAL"},"uniteRef":{"checkers":[{"type":"ReferenceChecker","componentKey":"uniteRef","multiplicity":"ONE","required":false,"refType":"unites","isRecursive":false,"isParent":false}],"tags":[{"tagDefinition":"NO_TAG"}],"columns":["unite"],"required":false,"mandatory":"OPTIONAL"},"checkDatatype":{"checkers":[{"type":"GroovyExpressionChecker","multiplicity":"ONE","required":false,"expression":"String datatype = Arrays.stream((String)(datum.datatype).split(\"_\")) .collect{it.substring(0, 1)} .join();  return  application.getDataType().contains(datatype);\n","references":null,"codify":true,"data":null}],"tags":[{"tagDefinition":"NO_TAG"}],"columns":["datatype"],"required":false,"mandatory":"OPTIONAL"}},"depends":[],"migrations":null,"hidden":false,"order":9999},"pem":{"separator":";","headerLine":4,"firstRowLine":5,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"ORDER_TAG","tagOrder":2},{"tagDefinition":"DOMAIN_TAG","tagName":"data"},{"tagDefinition":"DOMAIN_TAG","tagName":"test"},{"tagDefinition":"DOMAIN_TAG","tagName":"context"},{"tagDefinition":"DATA_TAG"}],"naturalKey":["projet","site","plateforme","date","espece"],"componentDescriptions":{"date":{"type":"BasicComponent","componentKey":"date","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":true,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"ORDER_TAG","tagOrder":1},{"tagDefinition":"DOMAIN_TAG","tagName":"temporal"}],"importHeader":"date","exportHeaderName":"date","required":true,"mandatory":"OPTIONAL","checker":{"type":"DateChecker","multiplicity":"ONE","required":true,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"site":{"type":"BasicComponent","componentKey":"site","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"site","exportHeaderName":"site","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"site","multiplicity":"ONE","required":false,"refType":"sites","isRecursive":false,"isParent":false},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"__projet__":{"type":"AuthorizationScopeComponent","componentKey":null,"authorizationScopeName":"projet","references":"projet","component":"projet","exportHeaderName":"projet","submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"individusNumber_unit":{"type":"ComputedComponent","componentKey":"individusNumber_unit","tags":[{"tagDefinition":"NO_TAG"}],"exportHeaderName":null,"required":true,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"individusNumber_unit","multiplicity":"ONE","required":true,"refType":"unites","isRecursive":false,"isParent":false},"computationChecker":{"type":"ComputationChecker","multiplicity":"ONE","required":true,"expression":"'sans_unite'","references":null,"codify":false,"data":null},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"projet":{"type":"BasicComponent","componentKey":"projet","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"ORDER_TAG","tagOrder":2},{"tagDefinition":"DOMAIN_TAG","tagName":"test"}],"importHeader":"projet","exportHeaderName":"projet","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"projet","multiplicity":"ONE","required":false,"refType":"projet","isRecursive":false,"isParent":false},"submissionAuthorizationScope":"projet","hidden":false,"chartDescription":null},"espece":{"type":"BasicComponent","componentKey":"espece","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"espece","exportHeaderName":"espece","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"espece","multiplicity":"ONE","required":false,"refType":"especes","isRecursive":false,"isParent":false},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"plateforme":{"type":"BasicComponent","componentKey":"plateforme","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"plateforme","exportHeaderName":"plateforme","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"color_value":{"type":"BasicComponent","componentKey":"color_value","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"Couleur des individus","exportHeaderName":"color_value","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"color_value","multiplicity":"ONE","required":false,"refType":"valeurs_qualitatives","isRecursive":false,"isParent":false},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"individusNumbervalue":{"type":"BasicComponent","componentKey":"individusNumbervalue","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return 0","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"Nombre d'individus","exportHeaderName":"individusNumbervalue","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"color_unit":{"type":"ComputedComponent","componentKey":"color_unit","tags":[{"tagDefinition":"NO_TAG"}],"exportHeaderName":null,"required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"color_unit","multiplicity":"ONE","required":false,"refType":"unites","isRecursive":false,"isParent":false},"computationChecker":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"'sans_unite'","references":null,"codify":false,"data":null},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":{"strategy":"OA_REPOSITORY","fileNameParsing":{"pattern":"(.*)_(.*)_(.*)_(.*).csv","authorizationScopes":{"localization":1,"projet":2},"startDate":null,"endDate":null},"authorization":{"authorizationScopes":{"projet":{"references":"projet","component":"projet"},"localization":{"references":"sites","component":null}},"timescope":{"component":"date"},"datagroups":{"datagroups":{"qualitatif":["color_unit"],"quantitatif":["individusNumbervalue"]}}}},"validations":{"unitOfColor":{"checkers":[],"tags":[{"tagDefinition":"NO_TAG"}],"columns":null,"required":false,"mandatory":"OPTIONAL"},"unitOfIndividus":{"checkers":[],"tags":[{"tagDefinition":"NO_TAG"}],"columns":null,"required":true,"mandatory":"OPTIONAL"}},"depends":[{"type":"DependsReferences","references":"sites","component":"site"},{"type":"DependsReferences","references":"unites","component":"individusNumber_unit"},{"type":"DependsReferences","references":"projet","component":"projet"},{"type":"DependsReferences","references":"especes","component":"espece"},{"type":"DependsReferences","references":"valeurs_qualitatives","component":"color_value"},{"type":"DependsReferences","references":"unites","component":"color_unit"}],"migrations":null,"hidden":false,"order":2},"sites":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["zet_chemin_parent","zet_nom_key"],"componentDescriptions":{"tze_type_nom":{"type":"BasicComponent","componentKey":"tze_type_nom","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":true,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_type_nom","exportHeaderName":"tze_type_nom","required":true,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"tze_type_nom","multiplicity":"ONE","required":true,"refType":"type_de_sites","isRecursive":false,"isParent":true},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_description_en":{"type":"BasicComponent","componentKey":"zet_description_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_description_en","exportHeaderName":"zet_description_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_nom_fr":{"type":"BasicComponent","componentKey":"zet_nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_nom_fr","exportHeaderName":"zet_nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_nom_key":{"type":"BasicComponent","componentKey":"zet_nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_nom_key","exportHeaderName":"zet_nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_nom_en":{"type":"BasicComponent","componentKey":"zet_nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_nom_en","exportHeaderName":"zet_nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_description_fr":{"type":"BasicComponent","componentKey":"zet_description_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_description_fr","exportHeaderName":"zet_description_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_chemin_parent":{"type":"BasicComponent","componentKey":"zet_chemin_parent","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_chemin_parent","exportHeaderName":"zet_chemin_parent","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"zet_chemin_parent","multiplicity":"ONE","required":false,"refType":"sites","isRecursive":true,"isParent":true},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[{"type":"DependsParent","references":"type_de_sites","component":"tze_type_nom"},{"type":"DependsParent","references":"sites","component":"zet_chemin_parent"}],"migrations":null,"hidden":false,"order":9999}},"rightsRequest":{"format":{"organization":{"type":"RightsRequestField","required":true,"checker":{"type":"StringChecker","multiplicity":"ONE","required":true,"pattern":".*"}},"project":{"type":"RightsRequestField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":".*"}},"startDate":{"type":"RightsRequestField","required":false,"checker":{"type":"DateChecker","multiplicity":"ONE","required":false,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null}},"endDate":{"type":"RightsRequestField","required":false,"checker":{"type":"DateChecker","multiplicity":"ONE","required":false,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null}}}},"additionalFiles":{"fichiers":{"format":{"nom":{"type":"AdditionalFileField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":"[a-z]*"}},"date":{"type":"AdditionalFileField","required":false,"checker":{"type":"DateChecker","multiplicity":"ONE","required":false,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null}},"age":{"type":"AdditionalFileField","required":false,"checker":{"type":"IntegerChecker","multiplicity":"ONE","required":false,"min":-2147483648,"max":2147483647}},"poids":{"type":"AdditionalFileField","required":false,"checker":{"type":"FloatChecker","multiplicity":"ONE","required":false,"min":10.0,"max":100.0}},"site":{"type":"AdditionalFileField","required":true,"checker":{"type":"ReferenceChecker","componentKey":"site","multiplicity":"ONE","required":true,"refType":"sites","isRecursive":false,"isParent":false}}}},"utilisateurs":{"format":{"nom":{"type":"AdditionalFileField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":"[a-z]*"}},"prenom":{"type":"AdditionalFileField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":"[a-z]*"}}}}},"hierarchicalNodes":[{"nodeName":"especes","componentKey":"espece","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"projet","componentKey":"projet","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"pem","componentKey":"individusNumber_unit","parent":null,"children":[],"depends":["projet","sites","especes","valeurs_qualitatives","unites","type_de_sites"],"order":2,"isRecursive":false},{"nodeName":"themes","componentKey":"theme","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"site_theme_datatype","componentKey":"theme","parent":null,"children":[],"depends":["projet","sites","themes","type_de_sites"],"order":9999,"isRecursive":false},{"nodeName":"type_de_fichiers","componentKey":null,"parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"type_de_sites","componentKey":"tze_type_nom","parent":null,"children":[{"nodeName":"sites","componentKey":"zet_chemin_parent","parent":"type_de_sites","children":[],"depends":["type_de_sites"],"order":9999,"isRecursive":true}],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"unites","componentKey":"individusNumber_unit","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"valeurs_qualitatives","componentKey":"color_value","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"variables","componentKey":"variable","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"variables_et_unites_par_types_de_donnees","componentKey":"unite","parent":null,"children":[],"depends":["variables","unites"],"order":9999,"isRecursive":false}],"requiredAuthorizationsAttributes":["localization","projet"],"hiddenData":["type_de_fichiers"]},"configFile":null},"time":[2024,3,16,7,54,25,125580263],"type":"REACTIVE_RESULT"}
+{"result":1.0,"time":[2024,3,16,7,54,25,125605635],"type":"REACTIVE_PROGRESS"}
-- 
GitLab


From 300dd4e0710169eb35e10fe37bb9705d5037dc2b Mon Sep 17 00:00:00 2001
From: TCHERNIATINSKY <philippe.tcherniatinsky@inrae.fr>
Date: Sat, 16 Mar 2024 10:36:31 +0100
Subject: [PATCH 2/2] =?UTF-8?q?Modification=20pour=20les=20r=C3=A9cursifs?=
 =?UTF-8?q?=20correction=20#208?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Incompatibilite recursif + pattern -> il existe plusieurs ligne pour le parent
---
 .../configuration/BuilderNode.java            |   12 +-
 .../configuration/ComponentDescription.java   |   78 +-
 .../application/configuration/Node.java       |    4 +
 .../StandardDataDescription.java              |   17 +
 .../configuration/ValidationDescription.java  |    3 +-
 .../checker/CheckerDescription.java           |    2 +-
 .../domain/checker/CheckerFactory.java        |   31 +-
 .../oresing/domain/checker/LineChecker.java   |   48 +
 .../deposit/context/DataImporterContext.java  |    2 +-
 .../builder/BasicComponentBuilder.java        |   11 +-
 .../HierarchicalDependancesBuilder.java       |   11 +-
 .../builder/ParentChildRelation.java          |    4 +
 .../builder/ValidationsBuilder.java           |  233 +--
 .../java/fr/inra/oresing/rest/Fixtures.java   |   14 +-
 .../inra/oresing/rest/OreSiResourcesTest.java |  101 +-
 .../configuration/data.result.example.json    |  120 +-
 .../data/configuration/data.result.json       |  192 ++-
 .../configuration/data.result.monsore.json    |  144 +-
 .../data/configuration/hierarchical.json      |   15 +-
 ..._donnees_par_themes_de_sites_et_projet.csv |   18 +-
 src/test/resources/data/pattern/pattern.yaml  |  349 ++++
 .../data/pattern/proprietes_des_taxons.csv    |   40 +
 src/test/resources/data/pattern/sites.csv     |   44 +
 ...ons_prelevements_01-01-2020_31-12-2020.csv |   17 +
 ...s_du_phytoplancton-reduit-pour-pattern.csv |   10 +
 .../taxons_du_phytoplancton-reduit.csv        |   10 +
 .../data/pattern/taxons_du_phytoplancton.csv  | 1482 +++++++++++++++++
 .../taxons_du_phytoplancton_reduit-test.csv   |    3 +
 .../pattern/taxons_du_phytoplancton_test.csv  |   68 +
 .../data/recursivite/recusivite.yaml          |   16 +-
 ..._phytoplancton-reduit-pour-recursivite.csv |   10 +
 .../fixtures/applications/errors/errors.json  |    2 +-
 .../ore/monsore/changeMonsore.txt             |   38 +-
 .../ore/monsore/createMonsore.txt             |   44 +-
 .../ore/monsore/validateMonsore.txt           |   20 +-
 35 files changed, 2765 insertions(+), 448 deletions(-)
 create mode 100644 src/test/resources/data/pattern/pattern.yaml
 create mode 100644 src/test/resources/data/pattern/proprietes_des_taxons.csv
 create mode 100644 src/test/resources/data/pattern/sites.csv
 create mode 100644 src/test/resources/data/pattern/suivi_des_lacs_leman_conditions_prelevements_01-01-2020_31-12-2020.csv
 create mode 100644 src/test/resources/data/pattern/taxons_du_phytoplancton-reduit-pour-pattern.csv
 create mode 100644 src/test/resources/data/pattern/taxons_du_phytoplancton-reduit.csv
 create mode 100644 src/test/resources/data/pattern/taxons_du_phytoplancton.csv
 create mode 100644 src/test/resources/data/pattern/taxons_du_phytoplancton_reduit-test.csv
 create mode 100644 src/test/resources/data/pattern/taxons_du_phytoplancton_test.csv
 create mode 100644 src/test/resources/data/recursivite/taxons_du_phytoplancton-reduit-pour-recursivite.csv

diff --git a/src/main/java/fr/inra/oresing/domain/application/configuration/BuilderNode.java b/src/main/java/fr/inra/oresing/domain/application/configuration/BuilderNode.java
index 71cf72a94..8448972d0 100644
--- a/src/main/java/fr/inra/oresing/domain/application/configuration/BuilderNode.java
+++ b/src/main/java/fr/inra/oresing/domain/application/configuration/BuilderNode.java
@@ -10,14 +10,16 @@ import java.util.stream.Collectors;
 public record BuilderNode(
         String nodeName,
         String componentKey,
+        String columnToLookUpForRecursive,
         BuilderNode parent,
         List<String> children,
         List<String> depends,
         Integer order,
         boolean isRecursive) implements WithDepends {
-    public BuilderNode(final String nodeName, final String componentKey, final BuilderNode parent, final List<String> children, final List<String> depends, final Integer order, final boolean isRecursive) {
+    public BuilderNode(final String nodeName, final String componentKey, String columnToLookUpForRecursive, final BuilderNode parent, final List<String> children, final List<String> depends, final Integer order, final boolean isRecursive) {
         this.nodeName = nodeName;
         this.componentKey = componentKey;
+        this.columnToLookUpForRecursive = columnToLookUpForRecursive;
         this.parent = parent;
         this.children = children;
         this.depends = depends.stream().filter(depend->!depend.equals(nodeName)).collect(Collectors.toCollection(ArrayList::new));
@@ -46,13 +48,14 @@ public record BuilderNode(
                     .toList();
             depends.addAll(childDepends);
         }
-        return new BuilderNode(nodeName(), componentKey(), parent(), children(), depends, order(), isRecursive);
+        return new BuilderNode(nodeName(), componentKey(), columnToLookUpForRecursive(), parent(), children(), depends, order(), isRecursive);
     }
 
     public BuilderNode withComponentKeyAndRecursive(final String componentKey) {
         return new BuilderNode(
                 nodeName(),
                 componentKey,
+                componentKey,
                 parent(),
                 children(),
                 depends(),
@@ -61,10 +64,11 @@ public record BuilderNode(
         );
     }
 
-    public BuilderNode withComponentKeyAndNotRecursive(final String componentKey) {
+    public BuilderNode withComponentKeyAndNotRecursive(final String componentKey, Boolean isParent) {
         return new BuilderNode(
                 nodeName(),
-                componentKey,
+                isParent?componentKey:componentKey(),
+                null,
                 parent(),
                 children(),
                 depends(),
diff --git a/src/main/java/fr/inra/oresing/domain/application/configuration/ComponentDescription.java b/src/main/java/fr/inra/oresing/domain/application/configuration/ComponentDescription.java
index 6db1413ed..4ea1b9260 100644
--- a/src/main/java/fr/inra/oresing/domain/application/configuration/ComponentDescription.java
+++ b/src/main/java/fr/inra/oresing/domain/application/configuration/ComponentDescription.java
@@ -11,6 +11,7 @@ import fr.inra.oresing.domain.application.Application;
 import fr.inra.oresing.domain.data.deposit.PublishContext;
 import fr.inra.oresing.domain.repository.data.DataValueRepository;
 import fr.inra.oresing.domain.transformer.transformer.TransformationConfiguration;
+import org.jetbrains.annotations.NotNull;
 
 import java.util.*;
 
@@ -52,47 +53,52 @@ public sealed interface ComponentDescription permits AuthorizationScopeComponent
                                               final Application application) {
         final ImmutableSet.Builder<LineChecker> lineCheckerBuilder = new ImmutableSet.Builder<>();
         if (checker() != null) {
-            final DataColumn target = new DataColumn(componentKey());
-            final LineChecker.LineTransformer lineTransformer = transformation() == null ?
-                    LineChecker.LineTransformer.NULL_LINE_TRANSFORMER :
-                    LineChecker.LineTransformer.newTransformer(
-                            referenceValueRepository,
-                            transformation(),
-                            target,
-                            publishContextBuilder,
-                            Optional.ofNullable(checker())
-                                    .map(CheckerDescription::multiplicity)
-                                    .orElse(transformation().multiplicity())
-                    );
-            final FieldType fieldType = checker().buildFieldtype(
-                    referenceValueRepository,
-                    application,
-                    target,
-                    lineTransformer
-            );
-            return switch (checker().multiplicity()) {
-                case ONE -> {
-                    yield Set.of(new LineChecker.OneChecker<>(
-                            fieldType,
-                            target,
-                            lineTransformer,
-                            checker()
-                    ));
-                }
-                case MANY -> {
-                    yield Set.of(new LineChecker.ManyChecker<>(
-                            new ListType<>(fieldType),
-                            target,
-                            lineTransformer,
-                            checker()
-                    ));
-                }
-            };
+            return toLineChecker(referenceValueRepository, publishContextBuilder, application);
         }
         return Set.of();
 
     }
 
+    @NotNull
+    private Set<LineChecker> toLineChecker(DataValueRepository referenceValueRepository, PublishContext.PublishContextBuilder publishContextBuilder, Application application) {
+        final DataColumn target = new DataColumn(componentKey());
+        final LineChecker.LineTransformer lineTransformer = transformation() == null ?
+                LineChecker.LineTransformer.NULL_LINE_TRANSFORMER :
+                LineChecker.LineTransformer.newTransformer(
+                        referenceValueRepository,
+                        transformation(),
+                        target,
+                        publishContextBuilder,
+                        Optional.ofNullable(checker())
+                                .map(CheckerDescription::multiplicity)
+                                .orElse(transformation().multiplicity())
+                );
+        final FieldType fieldType = checker().buildFieldtype(
+                referenceValueRepository,
+                application,
+                target,
+                lineTransformer
+        );
+        return switch (checker().multiplicity()) {
+            case ONE -> {
+                yield Set.of(new LineChecker.OneChecker<>(
+                        fieldType,
+                        target,
+                        lineTransformer,
+                        checker()
+                ));
+            }
+            case MANY -> {
+                yield Set.of(new LineChecker.ManyChecker<>(
+                        new ListType<>(fieldType),
+                        target,
+                        lineTransformer,
+                        checker()
+                ));
+            }
+        };
+    }
+
     default TransformationConfiguration transformation() {
         return null;
     }
diff --git a/src/main/java/fr/inra/oresing/domain/application/configuration/Node.java b/src/main/java/fr/inra/oresing/domain/application/configuration/Node.java
index 1d309a284..378ce8ec9 100644
--- a/src/main/java/fr/inra/oresing/domain/application/configuration/Node.java
+++ b/src/main/java/fr/inra/oresing/domain/application/configuration/Node.java
@@ -9,6 +9,7 @@ import java.util.stream.Collectors;
 public record Node(
         String nodeName,
         String componentKey,
+        String columnToLookUpForRecursive,
         String parent,
         SortedSet<Node> children,
         List<String> depends,
@@ -27,6 +28,7 @@ public record Node(
                         .map(node -> new Node(
                                 node.nodeName(),
                                 node.componentKey(),
+                                node.columnToLookUpForRecursive(),
                                 Optional.ofNullable(node).map(BuilderNode::parent).map(BuilderNode::nodeName).orElse(null),
                                 new TreeSet<>(),
                                 node.depends(),
@@ -50,6 +52,7 @@ public record Node(
                 Function<BuilderNode, Node> findNode = node -> new Node(
                         node.nodeName(),
                         node.componentKey(),
+                        node.columnToLookUpForRecursive(),
                         Optional.ofNullable(node)
                                 .map(BuilderNode::parent)
                                 .map(BuilderNode::nodeName)
@@ -114,6 +117,7 @@ public record Node(
                 return new Node(
                         builderNode.nodeName(),
                         builderNode.componentKey(),
+                        builderNode.columnToLookUpForRecursive(),
                         Optional.ofNullable(builderNode)
                                 .map(BuilderNode::parent)
                                 .map(BuilderNode::nodeName)
diff --git a/src/main/java/fr/inra/oresing/domain/application/configuration/StandardDataDescription.java b/src/main/java/fr/inra/oresing/domain/application/configuration/StandardDataDescription.java
index dba07cd2b..35b1b7111 100644
--- a/src/main/java/fr/inra/oresing/domain/application/configuration/StandardDataDescription.java
+++ b/src/main/java/fr/inra/oresing/domain/application/configuration/StandardDataDescription.java
@@ -108,4 +108,21 @@ public record StandardDataDescription(
         return Optional.ofNullable(submission())
                 .map(Submission::authorization);
     }
+
+    public Map<String, CheckerDescription> findValidationCheckers() {
+        return validations().values().stream()
+                .map(ValidationDescription::checkers)
+                .flatMap(map -> map.entrySet().stream())
+                .reduce(
+                        new HashMap<>(),
+                        (map, element) -> {
+                            map.put(element.getKey(), element.getValue());
+                            return map;
+                        },
+                        (map1, map2) -> {
+                            map1.putAll(map2);
+                            return map1;
+                        }
+                );
+    }
 }
diff --git a/src/main/java/fr/inra/oresing/domain/application/configuration/ValidationDescription.java b/src/main/java/fr/inra/oresing/domain/application/configuration/ValidationDescription.java
index 4fcc8933d..7a89a770a 100644
--- a/src/main/java/fr/inra/oresing/domain/application/configuration/ValidationDescription.java
+++ b/src/main/java/fr/inra/oresing/domain/application/configuration/ValidationDescription.java
@@ -3,9 +3,8 @@ package fr.inra.oresing.domain.application.configuration;
 import fr.inra.oresing.domain.ComponentPresenceConstraint;
 import fr.inra.oresing.domain.application.configuration.checker.CheckerDescription;
 
-import java.util.List;
 import java.util.Set;
 
-public record ValidationDescription(List<CheckerDescription> checkers, Set<Tag> tags,
+public record ValidationDescription(java.util.Map<String, CheckerDescription> checkers, Set<Tag> tags,
                                     Set<String> columns, boolean required, ComponentPresenceConstraint mandatory) {
 }
diff --git a/src/main/java/fr/inra/oresing/domain/application/configuration/checker/CheckerDescription.java b/src/main/java/fr/inra/oresing/domain/application/configuration/checker/CheckerDescription.java
index ac44e5c9d..e685e1918 100644
--- a/src/main/java/fr/inra/oresing/domain/application/configuration/checker/CheckerDescription.java
+++ b/src/main/java/fr/inra/oresing/domain/application/configuration/checker/CheckerDescription.java
@@ -91,7 +91,7 @@ sealed public interface CheckerDescription permits
     default ImmutableMap<String, Object> getGroovyContextForReferences(final DataValueRepository referenceValueRepository, final Set<String> refs, final PublishContext.PublishContextBuilder publishContextBuilder) {
         final Map<String, List<ReferenceValueDecorator>> references = new HashMap<>();
         final Map<String, List<Map<String, Object>>> referencesValues = new HashMap<>();
-        refs.forEach(ref -> {
+        (refs==null?Set.<String>of():refs).forEach(ref -> {
             final List<DataValue> allByReferenceType = referenceValueRepository.findAllByName(ref);
             allByReferenceType.stream()
                     .map(ReferenceValueDecorator::new)
diff --git a/src/main/java/fr/inra/oresing/domain/checker/CheckerFactory.java b/src/main/java/fr/inra/oresing/domain/checker/CheckerFactory.java
index 43152f553..c4a6c6989 100644
--- a/src/main/java/fr/inra/oresing/domain/checker/CheckerFactory.java
+++ b/src/main/java/fr/inra/oresing/domain/checker/CheckerFactory.java
@@ -5,6 +5,7 @@ import com.google.common.collect.ImmutableSet;
 import fr.inra.oresing.domain.application.Application;
 import fr.inra.oresing.domain.application.configuration.ComponentDescription;
 import fr.inra.oresing.domain.application.configuration.StandardDataDescription;
+import fr.inra.oresing.domain.application.configuration.checker.CheckerDescription;
 import fr.inra.oresing.domain.checker.type.ReferenceType;
 import fr.inra.oresing.domain.data.DataColumn;
 import fr.inra.oresing.domain.data.deposit.PublishContext;
@@ -29,18 +30,40 @@ public class CheckerFactory {
 
     public ImmutableSet<LineChecker> getCheckers(final Application application, final String reference, final PublishContext.PublishContextBuilder publishContextBuilder) {
         Preconditions.checkArgument(application.getConfiguration().dataDescription().containsKey(reference), "Pas de référence " + reference + " dans " + application);
-        final StandardDataDescription referenceDescription = application.getConfiguration().dataDescription().get(reference);
+        final StandardDataDescription dataDescription = application.getConfiguration().dataDescription().get(reference);
         final ImmutableSet.Builder<LineChecker> checkers = ImmutableSet.builder();
-        for (final Map.Entry<String, ComponentDescription> variableEntry : referenceDescription.componentDescriptions().entrySet()) {
+        for (final Map.Entry<String, ComponentDescription> variableEntry : dataDescription.componentDescriptions().entrySet()) {
             final String column = variableEntry.getKey();
             final DataColumn referenceColumn = new DataColumn(column);
             final ComponentDescription componentDescription = variableEntry.getValue();
-            checkers.addAll(componentDescription.buildLineChecker(dataValueRepository, publishContextBuilder, application));
+            if(componentDescription.checker()!=null){
+                checkers.addAll(LineChecker.toLineChecker(
+                        dataValueRepository,
+                        publishContextBuilder,
+                        application,
+                        componentDescription.transformation(),
+                        componentDescription.componentKey(),
+                        componentDescription.checker()));
+            }
         }
+        Map<String, CheckerDescription> validationCheckers = dataDescription.findValidationCheckers();
+        validationCheckers.entrySet().stream()
+                .forEach(entry -> {
+                    checkers.addAll(
+                            LineChecker.toLineChecker(
+                                    dataValueRepository,
+                                    publishContextBuilder,
+                                    application,
+                                    null,
+                                    entry.getKey(),
+                                    entry.getValue()
+                            )
+                    );
+                });
         return checkers.build();
     }
 
-    public Map<String, LineChecker> getReferenceCheckersByComponentname(final Application application, final String reference, final PublishContext.PublishContextBuilder publishContextBuilder){
+    public Map<String, LineChecker> getReferenceCheckersByComponentname(final Application application, final String reference, final PublishContext.PublishContextBuilder publishContextBuilder) {
         return getCheckers(application, reference, publishContextBuilder)
                 .stream()
                 .filter(lineChecker -> lineChecker.underlyingType() instanceof ReferenceType)
diff --git a/src/main/java/fr/inra/oresing/domain/checker/LineChecker.java b/src/main/java/fr/inra/oresing/domain/checker/LineChecker.java
index 2b473ac27..75a5ccc54 100644
--- a/src/main/java/fr/inra/oresing/domain/checker/LineChecker.java
+++ b/src/main/java/fr/inra/oresing/domain/checker/LineChecker.java
@@ -3,6 +3,7 @@ package fr.inra.oresing.domain.checker;
 import com.google.common.base.Strings;
 import com.google.common.collect.ImmutableList;
 import com.google.common.collect.ImmutableMap;
+import fr.inra.oresing.domain.application.Application;
 import fr.inra.oresing.domain.application.configuration.Ltree;
 import fr.inra.oresing.domain.application.configuration.checker.CheckerDescription;
 import fr.inra.oresing.domain.checker.type.FieldType;
@@ -17,12 +18,59 @@ import fr.inra.oresing.domain.repository.data.DataValueRepository;
 import fr.inra.oresing.domain.groovy.StringGroovyExpression;
 import fr.inra.oresing.domain.transformer.transformer.TransformationConfiguration;
 import org.apache.commons.lang3.NotImplementedException;
+import org.jetbrains.annotations.NotNull;
 
 import java.util.*;
 import java.util.function.Function;
 import java.util.stream.Collectors;
 
 public sealed interface LineChecker<FT extends FieldType> permits LineChecker.ManyChecker, LineChecker.OneChecker {
+
+    @NotNull
+    public static Set<LineChecker> toLineChecker(
+            DataValueRepository referenceValueRepository,
+            PublishContext.PublishContextBuilder publishContextBuilder,
+            Application application,
+            TransformationConfiguration transformation,
+            String componentKey,
+            CheckerDescription checker) {
+        final DataColumn target = new DataColumn(componentKey);
+        final LineChecker.LineTransformer lineTransformer = transformation == null ?
+                LineChecker.LineTransformer.NULL_LINE_TRANSFORMER :
+                LineChecker.LineTransformer.newTransformer(
+                        referenceValueRepository,
+                        transformation,
+                        target,
+                        publishContextBuilder,
+                        Optional.ofNullable(checker)
+                                .map(CheckerDescription::multiplicity)
+                                .orElse(transformation.multiplicity())
+                );
+        final FieldType fieldType = checker.buildFieldtype(
+                referenceValueRepository,
+                application,
+                target,
+                lineTransformer
+        );
+        return switch (checker.multiplicity()) {
+            case ONE -> {
+                yield Set.of(new LineChecker.OneChecker<>(
+                        fieldType,
+                        target,
+                        lineTransformer,
+                        checker
+                ));
+            }
+            case MANY -> {
+                yield Set.of(new LineChecker.ManyChecker<>(
+                        new ListType<>(fieldType),
+                        target,
+                        lineTransformer,
+                        checker
+                ));
+            }
+        };
+    }
     default FieldType<FT> underlyingType() {
         return switch (this) {
             case final ManyChecker manyChecker -> manyChecker.fieldTypeForOne;
diff --git a/src/main/java/fr/inra/oresing/domain/data/deposit/context/DataImporterContext.java b/src/main/java/fr/inra/oresing/domain/data/deposit/context/DataImporterContext.java
index 1f7b31c4c..f52c28fbf 100644
--- a/src/main/java/fr/inra/oresing/domain/data/deposit/context/DataImporterContext.java
+++ b/src/main/java/fr/inra/oresing/domain/data/deposit/context/DataImporterContext.java
@@ -159,7 +159,7 @@ public class DataImporterContext {
         Preconditions.checkState(isRecursive());
         return getRecursiveComponentDescription()
                 .map(HierarchicalNode::node)
-                .map(Node::componentKey)
+                .map(Node::columnToLookUpForRecursive)
                 .map(DataColumn::new)
                 .orElseThrow(() -> new IllegalStateException("ne devrait jamais arriver (?)"));
     }
diff --git a/src/main/java/fr/inra/oresing/rest/model/configuration/builder/BasicComponentBuilder.java b/src/main/java/fr/inra/oresing/rest/model/configuration/builder/BasicComponentBuilder.java
index ce59ccea1..f4895fed4 100644
--- a/src/main/java/fr/inra/oresing/rest/model/configuration/builder/BasicComponentBuilder.java
+++ b/src/main/java/fr/inra/oresing/rest/model/configuration/builder/BasicComponentBuilder.java
@@ -34,11 +34,12 @@ public record BasicComponentBuilder(RootBuilder rootBuilder) {
             final JsonNode defaultValueNode = componentNodeValue.findPath(ConfigurationSchemaNode.OA_DEFAULT_VALUE);
             final String componentKey = componentEntry.getKey();
             final boolean required = componentNodeValue.findPath(ConfigurationSchemaNode.OA_REQUIRED).asBoolean(false);
-            final Parsing<CheckerDescription> checkerParsing = rootBuilder.getCheckerDescriptionBuilder().build(componentKey, i18n1, required,
-                    NodeSchemaValidator.joinPath(
-                            componentPath,
-                            ConfigurationSchemaNode.OA_BASIC_COMPONENTS,
-                            componentKey), componentNodeValue.get(ConfigurationSchemaNode.OA_CHECKER), key);
+            final Parsing<CheckerDescription> checkerParsing = rootBuilder.getCheckerDescriptionBuilder()
+                    .build(componentKey, i18n1, required,
+                            NodeSchemaValidator.joinPath(
+                                    componentPath,
+                                    ConfigurationSchemaNode.OA_BASIC_COMPONENTS,
+                                    componentKey), componentNodeValue.get(ConfigurationSchemaNode.OA_CHECKER), key);
             i18n = checkerParsing.i18n();
             Multiplicity multiplicity = Optional.ofNullable(checkerParsing)
                     .map(Parsing::result)
diff --git a/src/main/java/fr/inra/oresing/rest/model/configuration/builder/HierarchicalDependancesBuilder.java b/src/main/java/fr/inra/oresing/rest/model/configuration/builder/HierarchicalDependancesBuilder.java
index fdd9aa33f..e0a01bdc5 100644
--- a/src/main/java/fr/inra/oresing/rest/model/configuration/builder/HierarchicalDependancesBuilder.java
+++ b/src/main/java/fr/inra/oresing/rest/model/configuration/builder/HierarchicalDependancesBuilder.java
@@ -59,14 +59,15 @@ public record HierarchicalDependancesBuilder(
                         final String componentKey = checker.componentKey();
                         final Boolean isRecursive = checker.isRecursive() || (checker.isParent() && dataName.equals(refType));
                         if (dataName.equals(refType)) {
-                            nodes.put(refType, nodes.getOrDefault(refType,
-                                    new BuilderNode(refType, componentKey, null, new LinkedList<>(), new LinkedList<>(), orderTags.get(refType), isRecursive)).withComponentKeyAndRecursive(componentKey)
+                            nodes.put(refType, nodes.getOrDefault(
+                                    refType,
+                                    new BuilderNode(refType, componentKey, componentKey, null, new LinkedList<>(), new LinkedList<>(), orderTags.get(refType), isRecursive)).withComponentKeyAndRecursive(componentKey)
                             );
                         } else {
                             ParentChildRelation relation = new ParentChildRelation(
                                     nodes.getOrDefault(refType,
-                                            new BuilderNode(refType, componentKey, null, new LinkedList<>(), new LinkedList<>(), orderTags.get(refType), isRecursive)).withComponentKeyAndNotRecursive(componentKey),
-                                    nodes.getOrDefault(dataName, new BuilderNode(dataName, componentKey, null, new LinkedList<>(), new LinkedList<>(), orderTags.get(dataName), isRecursive)),
+                                            new BuilderNode(refType, componentKey, null, null, new LinkedList<>(), new LinkedList<>(), orderTags.get(refType), isRecursive)).withComponentKeyAndNotRecursive(componentKey, isParent),
+                                    nodes.getOrDefault(dataName, new BuilderNode(dataName, componentKey, null,null, new LinkedList<>(), new LinkedList<>(), orderTags.get(dataName), isRecursive)),
                                     orderTags.get(dataName)
                             );
                             if (isParent) {
@@ -88,7 +89,7 @@ public record HierarchicalDependancesBuilder(
                 checkerdescriptions,
                 orders,
                 data.keySet().stream()
-                        .map(name -> new BuilderNode(name, null, null, new LinkedList<>(), new LinkedList<>(), orders.get(name), false))
+                        .map(name -> new BuilderNode(name, null, null, null,  new LinkedList<>(), new LinkedList<>(), orders.get(name), false))
                         .collect(Collectors.toMap(k -> k.nodeName(), Function.identity())),
                 domainTags
         );
diff --git a/src/main/java/fr/inra/oresing/rest/model/configuration/builder/ParentChildRelation.java b/src/main/java/fr/inra/oresing/rest/model/configuration/builder/ParentChildRelation.java
index f6c0cedb3..f1db48d59 100644
--- a/src/main/java/fr/inra/oresing/rest/model/configuration/builder/ParentChildRelation.java
+++ b/src/main/java/fr/inra/oresing/rest/model/configuration/builder/ParentChildRelation.java
@@ -13,6 +13,7 @@ record ParentChildRelation(BuilderNode parent, BuilderNode child,
         final BuilderNode parentNode = new BuilderNode(
                 parent.nodeName(),
                 parent.componentKey(),
+                parent.columnToLookUpForRecursive(),
                 parent.parent(),
                 parent.children(),
                 parent.depends(),
@@ -21,6 +22,7 @@ record ParentChildRelation(BuilderNode parent, BuilderNode child,
         final BuilderNode childNode = new BuilderNode(
                 child.nodeName(),
                 parent.componentKey(),
+                parent.columnToLookUpForRecursive(),
                 child.parent(),
                 child.children(),
                 addDependance(child, parent),
@@ -57,6 +59,7 @@ record ParentChildRelation(BuilderNode parent, BuilderNode child,
         final BuilderNode parentNode = new BuilderNode(
                 parent().nodeName(),
                 parent().componentKey(),
+                parent().columnToLookUpForRecursive(),
                 parent().parent(),
                 addChildren(child(), parent()),
                 parent().depends(),
@@ -65,6 +68,7 @@ record ParentChildRelation(BuilderNode parent, BuilderNode child,
         final BuilderNode childNode = new BuilderNode(
                 child().nodeName(),
                 child().componentKey(),
+                child.columnToLookUpForRecursive(),
                 parentNode,
                 child().children(),
                 child().depends(),
diff --git a/src/main/java/fr/inra/oresing/rest/model/configuration/builder/ValidationsBuilder.java b/src/main/java/fr/inra/oresing/rest/model/configuration/builder/ValidationsBuilder.java
index 00a7508c8..f49f56544 100644
--- a/src/main/java/fr/inra/oresing/rest/model/configuration/builder/ValidationsBuilder.java
+++ b/src/main/java/fr/inra/oresing/rest/model/configuration/builder/ValidationsBuilder.java
@@ -7,6 +7,7 @@ import fr.inra.oresing.domain.application.configuration.*;
 import fr.inra.oresing.domain.application.configuration.checker.CheckerDescription;
 import fr.inra.oresing.domain.application.configuration.checker.GroovyExpressionChecker;
 import fr.inra.oresing.domain.exceptions.configuration.ConfigurationException;
+import org.jetbrains.annotations.NotNull;
 
 import java.util.*;
 
@@ -26,39 +27,9 @@ public record ValidationsBuilder(RootBuilder rootBuilder) {
             final JsonNode componentNodeValue = validationEntry.getValue();
             final Map localizationNames = rootBuilder.getMapper().convertValue(componentNodeValue.findPath(ConfigurationSchemaNode.OA_I_18_N), Map.class);
             final String componentKey = validationEntry.getKey();
-            try {
-                i18n1 = i18n1.add(
-                        NodeSchemaValidator.joinI18nPath(
-                                Internationalizations.DATA,
-                                key,
-                                Internationalizations.InternationalizationData.VALIDATIONS,
-                                componentKey
-                        ),
-                        rootBuilder.getMapper().convertValue(localizationNames, Map.class));
-            } catch (final IllegalArgumentException illegalArgumentException) {
-                rootBuilder.buildError(ConfigurationException.UNSUPORTED_I18N_KEY_LANGUAGE,
-                        Map.of(),
-                        NodeSchemaValidator.joinPath(
-                                ConfigurationSchemaNode.OA_DATA,
-                                key,
-                                ConfigurationSchemaNode.OA_VALIDATIONS,
-                                componentKey
-                        )
-                );
-            }
-            final Set<Tag> oaTags = TagsBuilder.validateDomainTagNames(
-                    componentNodeValue,
-                    NodeSchemaValidator.joinPath(
-                            ConfigurationSchemaNode.OA_DATA,
-                            key,
-                            ConfigurationSchemaNode.OA_VALIDATIONS,
-                            componentKey,
-                            ConfigurationSchemaNode.OA_TAGS
-                    ),
-                    rootBuilder);
+            i18n1 = buildInternationalizations(key, i18n1, componentKey, localizationNames);
+            final Set<Tag> oaTags = buildTags(key, componentNodeValue, componentKey);
             final boolean required = componentNodeValue.findPath(ConfigurationSchemaNode.OA_REQUIRED).asBoolean(false);
-            final Parsing<CheckerDescription> checker = rootBuilder.getCheckerDescriptionBuilder().build(componentKey, i18n1, required, "%2$s > OA_validations > %2$s > OA_validations".formatted(componentPath, componentKey), componentNodeValue.get(ConfigurationSchemaNode.OA_CHECKER), key);
-            i18n1 = checker.i18n();
             final ComponentPresenceConstraint mandatory = RootBuilder.isMandatory(componentNodeValue);
             final Set<String> columns = rootBuilder.getMapper()
                     .convertValue(componentNodeValue.findPath(ConfigurationSchemaNode.OA_COLUMNS), Set.class);
@@ -68,81 +39,13 @@ public record ValidationsBuilder(RootBuilder rootBuilder) {
 
             final List<String> listComponentKey = rootBuilder.getListComponentKeys(key);
 
-            List<CheckerDescription> checkers = new ArrayList<>();
+            Map<String, CheckerDescription> checkers = new HashMap<>();
             if (columns == null) {
-
-                Parsing<CheckerDescription> parsing = rootBuilder.getCheckerDescriptionBuilder()
-                        .build(componentKey,
-                                i18n,
-                                required,
-                                "%2$s > OA_validations > %2$s > OA_validations".formatted(componentPath, componentKey),
-                                componentNodeValue.get(ConfigurationSchemaNode.OA_CHECKER),
-                                key);
-                if (!(parsing.result() instanceof GroovyExpressionChecker)) {
-
-                    rootBuilder.buildError(ConfigurationException.MISSING_COLUMN_NAME_VALIDATION, Map.of(
-                                    "knownComponents", listComponentKey),
-                            NodeSchemaValidator.joinPath(
-                                    ConfigurationSchemaNode.OA_DATA,
-                                    key,
-                                    ConfigurationSchemaNode.OA_VALIDATIONS,
-                                    componentKey,
-                                    ConfigurationSchemaNode.OA_COLUMNS
-                            )
-                    );
-                    i18n1 = parsing.i18n();
-                }
+                i18n1 = buildGroovyForNullColumn(componentPath, key, i18n, componentKey, required, componentNodeValue, listComponentKey, i18n1);
             } else if (columns.isEmpty()) {
-
-                Parsing<CheckerDescription> parsing = rootBuilder.getCheckerDescriptionBuilder()
-                        .build(componentKey,
-                                i18n,
-                                required,
-                                "%2$s > OA_validations > %2$s > OA_validations".formatted(componentPath, componentKey),
-                                componentNodeValue.get(ConfigurationSchemaNode.OA_CHECKER),
-                                key);
-                if (!(parsing.result() instanceof GroovyExpressionChecker)) {
-                    rootBuilder.buildError(ConfigurationException.MISSING_COMPONENT_FOR_COMPONENT_NAME, Map.of(
-                                    "knownComponents", listComponentKey),
-                            NodeSchemaValidator.joinPath(
-                                    ConfigurationSchemaNode.OA_DATA,
-                                    key,
-                                    ConfigurationSchemaNode.OA_VALIDATIONS,
-                                    componentKey,
-                                    ConfigurationSchemaNode.OA_COLUMNS
-                            ));
-                }
-                i18n1 = parsing.i18n();
+                i18n1 = buildGroovyForEmptyColumn(componentPath, key, i18n, componentKey, required, componentNodeValue, listComponentKey);
             } else {
-                I18n finalI18n = i18n1;
-                List<I18n> internationalizations = columns.stream().map(column -> {
-
-                            Parsing<CheckerDescription> parsing = rootBuilder.getCheckerDescriptionBuilder()
-                                    .build(column,
-                                            finalI18n,
-                                            required,
-                                            "%2$s > OA_validations > %2$s > OA_validations".formatted(componentPath, componentKey),
-                                            componentNodeValue.get(ConfigurationSchemaNode.OA_CHECKER),
-                                            key);
-                            if (!listComponentKey.contains(column)) {
-                                rootBuilder.buildError(ConfigurationException.UNKNOWN_COMPONENT_FOR_COMPONENT_NAME, Map.of(
-                                                "unknownComponent", column,
-                                                "knownComponents", listComponentKey),
-                                        NodeSchemaValidator.joinPath(
-                                                ConfigurationSchemaNode.OA_DATA,
-                                                key,
-                                                ConfigurationSchemaNode.OA_VALIDATIONS,
-                                                componentKey,
-                                                ConfigurationSchemaNode.OA_COLUMNS
-                                        ));
-                            }
-                            checkers.add(checker.result());
-                            return checker.i18n();
-                        })
-                        .toList();
-                for (I18n internationalization : internationalizations) {
-                    i18n1 = internationalization;
-                }
+                i18n1 = buildCheckersForColumn(componentPath, key, i18n1, columns, required, componentKey, componentNodeValue, listComponentKey, checkers);
             }
             validationBuilder.put(
                     componentKey,
@@ -150,4 +53,126 @@ public record ValidationsBuilder(RootBuilder rootBuilder) {
         }
         return i18n1;
     }
+
+    private I18n buildCheckersForColumn(String componentPath, String key, I18n i18n1, Set<String> columns, boolean required, String componentKey, JsonNode componentNodeValue, List<String> listComponentKey, Map<String, CheckerDescription> checkers) {
+        I18n finalI18n = i18n1;
+        List<I18n> internationalizations = columns.stream().map(column -> {
+                    Parsing<CheckerDescription> checker = rootBuilder
+                            .getCheckerDescriptionBuilder()
+                            .build(
+                                    column,
+                                    finalI18n,
+                                    required,
+                                    "%2$s > OA_validations > %2$s > OA_validations".formatted(componentPath, componentKey), componentNodeValue.get(ConfigurationSchemaNode.OA_CHECKER), key);
+                    checker.i18n();
+                    if (!listComponentKey.contains(column)) {
+                        rootBuilder.buildError(ConfigurationException.UNKNOWN_COMPONENT_FOR_COMPONENT_NAME, Map.of(
+                                        "unknownComponent", column,
+                                        "knownComponents", listComponentKey),
+                                NodeSchemaValidator.joinPath(
+                                        ConfigurationSchemaNode.OA_DATA,
+                                        key,
+                                        ConfigurationSchemaNode.OA_VALIDATIONS,
+                                        componentKey,
+                                        ConfigurationSchemaNode.OA_COLUMNS
+                                ));
+                    }
+                    checkers.put(column, checker.result());
+                    return checker.i18n();
+                })
+                .toList();
+        for (I18n internationalization : internationalizations) {
+            i18n1 = internationalization;
+        }
+        return i18n1;
+    }
+
+    private I18n buildGroovyForEmptyColumn(String componentPath, String key, I18n i18n, String componentKey, boolean required, JsonNode componentNodeValue, List<String> listComponentKey) {
+        I18n i18n1;
+        Parsing<CheckerDescription> parsing = rootBuilder.getCheckerDescriptionBuilder()
+                .build(componentKey,
+                        i18n,
+                        required,
+                        "%2$s > OA_validations > %2$s > OA_validations".formatted(componentPath, componentKey),
+                        componentNodeValue.get(ConfigurationSchemaNode.OA_CHECKER),
+                        key);
+        if (!(parsing.result() instanceof GroovyExpressionChecker)) {
+            rootBuilder.buildError(ConfigurationException.MISSING_COMPONENT_FOR_COMPONENT_NAME, Map.of(
+                            "knownComponents", listComponentKey),
+                    NodeSchemaValidator.joinPath(
+                            ConfigurationSchemaNode.OA_DATA,
+                            key,
+                            ConfigurationSchemaNode.OA_VALIDATIONS,
+                            componentKey,
+                            ConfigurationSchemaNode.OA_COLUMNS
+                    ));
+        }
+        i18n1 = parsing.i18n();
+        return i18n1;
+    }
+
+    private I18n buildGroovyForNullColumn(String componentPath, String key, I18n i18n, String componentKey, boolean required, JsonNode componentNodeValue, List<String> listComponentKey, I18n i18n1) {
+        Parsing<CheckerDescription> parsing = rootBuilder.getCheckerDescriptionBuilder()
+                .build(componentKey,
+                        i18n,
+                        required,
+                        "%2$s > OA_validations > %2$s > OA_validations".formatted(componentPath, componentKey),
+                        componentNodeValue.get(ConfigurationSchemaNode.OA_CHECKER),
+                        key);
+        if (!(parsing.result() instanceof GroovyExpressionChecker)) {
+
+            rootBuilder.buildError(ConfigurationException.MISSING_COLUMN_NAME_VALIDATION, Map.of(
+                            "knownComponents", listComponentKey),
+                    NodeSchemaValidator.joinPath(
+                            ConfigurationSchemaNode.OA_DATA,
+                            key,
+                            ConfigurationSchemaNode.OA_VALIDATIONS,
+                            componentKey,
+                            ConfigurationSchemaNode.OA_COLUMNS
+                    )
+            );
+            i18n1 = parsing.i18n();
+        }
+        return i18n1;
+    }
+
+    @NotNull
+    private Set<Tag> buildTags(String key, JsonNode componentNodeValue, String componentKey) {
+        final Set<Tag> oaTags = TagsBuilder.validateDomainTagNames(
+                componentNodeValue,
+                NodeSchemaValidator.joinPath(
+                        ConfigurationSchemaNode.OA_DATA,
+                        key,
+                        ConfigurationSchemaNode.OA_VALIDATIONS,
+                        componentKey,
+                        ConfigurationSchemaNode.OA_TAGS
+                ),
+                rootBuilder);
+        return oaTags;
+    }
+
+    @NotNull
+    private I18n buildInternationalizations(String key, I18n i18n1, String componentKey, Map localizationNames) {
+        try {
+            i18n1 = i18n1.add(
+                    NodeSchemaValidator.joinI18nPath(
+                            Internationalizations.DATA,
+                            key,
+                            Internationalizations.InternationalizationData.VALIDATIONS,
+                            componentKey
+                    ),
+                    rootBuilder.getMapper().convertValue(localizationNames, Map.class));
+        } catch (final IllegalArgumentException illegalArgumentException) {
+            rootBuilder.buildError(ConfigurationException.UNSUPORTED_I18N_KEY_LANGUAGE,
+                    Map.of(),
+                    NodeSchemaValidator.joinPath(
+                            ConfigurationSchemaNode.OA_DATA,
+                            key,
+                            ConfigurationSchemaNode.OA_VALIDATIONS,
+                            componentKey
+                    )
+            );
+        }
+        return i18n1;
+    }
 }
diff --git a/src/test/java/fr/inra/oresing/rest/Fixtures.java b/src/test/java/fr/inra/oresing/rest/Fixtures.java
index 7a6dd109e..a5e60ea24 100644
--- a/src/test/java/fr/inra/oresing/rest/Fixtures.java
+++ b/src/test/java/fr/inra/oresing/rest/Fixtures.java
@@ -427,6 +427,18 @@ public class Fixtures {
         return dataFiles;
     }
 
+    public static String getPatternApplicationConfigurationResourceName() {
+        return "/data/pattern/pattern.yaml";
+    }
+
+    public static Map<String, String> getPatternReferentielOrderFiles() {
+        final Map<String, String> referentielFiles = new LinkedHashMap<>();
+        referentielFiles.put("site", "/data/pattern/sites.csv");
+        referentielFiles.put("proprietes_taxon", "/data/pattern/proprietes_des_taxons.csv");
+        referentielFiles.put("taxon", "/data/pattern/taxons_du_phytoplancton-reduit-pour-pattern.csv");
+        return referentielFiles;
+    }
+
     public static String getRecursivityApplicationConfigurationResourceName() {
         return "/data/recursivite/recusivite.yaml";
     }
@@ -478,7 +490,7 @@ public class Fixtures {
         final Map<String, String> referentielFiles = new LinkedHashMap<>();
         referentielFiles.put("site", "/data/recursivite/sites.csv");
         referentielFiles.put("proprietes_taxon", "/data/recursivite/proprietes_des_taxons.csv");
-        referentielFiles.put("taxon", "/data/recursivite/taxons_du_phytoplancton-reduit.csv");
+        referentielFiles.put("taxon", "/data/recursivite/taxons_du_phytoplancton-reduit-pour-recursivite.csv");
         return referentielFiles;
     }
 
diff --git a/src/test/java/fr/inra/oresing/rest/OreSiResourcesTest.java b/src/test/java/fr/inra/oresing/rest/OreSiResourcesTest.java
index f610cc227..4a8f731ba 100644
--- a/src/test/java/fr/inra/oresing/rest/OreSiResourcesTest.java
+++ b/src/test/java/fr/inra/oresing/rest/OreSiResourcesTest.java
@@ -266,7 +266,7 @@ public class OreSiResourcesTest {
         Assertions.assertEquals("Fichier de test de l'application brokenADOM", applicationResult.comment());
         Assertions.assertEquals("monsore", applicationResult.name());
         Assert.assertEquals(
-                new TreeSet<>(Set.of("themes","especes", "site_theme_datatype" ,"variables","type_de_sites","unites","projet","valeurs_qualitatives","type_de_fichiers", "variables_et_unites_par_types_de_donnees")),
+                new TreeSet<>(Set.of("themes", "especes", "site_theme_datatype", "variables", "type_de_sites", "unites", "projet", "valeurs_qualitatives", "type_de_fichiers", "variables_et_unites_par_types_de_donnees")),
                 new TreeSet<>(applicationResult.references().keySet())
         );
 //        assertEquals(List.of("pem"), applicationResult.getDataType());
@@ -740,13 +740,13 @@ public class OreSiResourcesTest {
     }
 
     private CreateUserResult createUserIfNotExists(String login, String password, String mail) throws Exception {
-        if( mockMvc.perform(post("/api/v1/login")
+        if (mockMvc.perform(post("/api/v1/login")
                         .param("login", login)
                         .param("password", password))
-                .andReturn()
-                .getResponse().getStatus()>300){
+                    .andReturn()
+                    .getResponse().getStatus() > 300) {
             return authenticationService.createUser(login, password, mail);
-        }else{
+        } else {
             OreSiUser userByLogin = userRepository.findByLogin(login).get();
             return CreateUserResult.of(userByLogin);
         }
@@ -2231,12 +2231,12 @@ public class OreSiResourcesTest {
         {
             mockMvc.perform(get("/api/v1/applications/recursivite/references/{refType}", "taxon")
                             .cookie(authCookie))
-                    .andExpect(status().is2xxSuccessful())
-                    .andExpect(jsonPath("$..values.tel_S2_value", contains("7.2", "3.4", "2.1", "2.6", "2.5", "5.2", "3.9", "3.2", "1.2")))
+                    .andExpect(status().is2xxSuccessful());
+/*                    .andExpect(jsonPath("$..values.tel_S2_value", contains("7.2", "3.4", "2.1", "2.6", "2.5", "5.2", "3.9", "3.2", "1.2")))
                     .andExpect(jsonPath("$..values.tel_S2_resolution", contains(3.2, 3.2, 3.2, 3.2, 3.2, 3.2, 3.2, 3.2, 3.2)))
                     .andExpect(jsonPath("$..values.tel_S2_qualifier", contains(3, 3, 3, 3, 3, 3, 3, 3, 3)))
                     .andExpect(jsonPath("$..values.tel_S2_variable", contains("annecy", "annecy", "annecy", "annecy", "annecy", "annecy", "annecy", "annecy", "annecy")))
-                    .andExpect(jsonPath("$.referenceTypeForReferencingColumns.tel_S2_variable", Is.is("site")));
+                    .andExpect(jsonPath("$.referenceTypeForReferencingColumns.tel_S2_variable", Is.is("site")));*/
             //.andReturn().getResponse().getContentAsString();
 
         }
@@ -2273,6 +2273,91 @@ public class OreSiResourcesTest {
         }
     }
 
+    @Test
+    @Tag("SUITE")
+    public void testPattern() throws Exception {
+
+        final URL resource = getClass().getResource(Fixtures.getPatternApplicationConfigurationResourceName());
+        try (final InputStream in = Objects.requireNonNull(resource).openStream()) {
+            final MockMultipartFile configuration = new MockMultipartFile("file", "pattern.yaml", "text/plain", in);
+            //définition de l'application
+            addUserRightCreateApplication(authUserId, "pattern");
+            final String id = fixtures.getIdFromApplicationResult(fixtures.loadApplication(configuration, authCookie, "pattern", ""));
+            final String response = mockMvc.perform(get("/api/v1/applications/pattern")
+                            .param("filter", "ALL")
+                            .cookie(authCookie))
+                    .andExpect(status().is2xxSuccessful())
+                    .andExpect(jsonPath("$.data.taxon.componentDescriptions.proprietesDeTaxon.type", IsEqual.equalTo("DynamicComponent")))
+                    .andExpect(jsonPath("$.data.taxon.componentDescriptions.proprietesDeTaxon.reference", IsEqual.equalTo("proprietes_taxon")))
+                    .andExpect(jsonPath("$.data.taxon.componentDescriptions.proprietesDeTaxon.prefix", IsEqual.equalTo("pt_")))
+                    .andExpect(jsonPath("$.internationalization.data.taxon.components.proprietesDeTaxon.exportHeader.en", IsEqual.equalTo("Properties of Taxa")))
+                    .andReturn().getResponse().getContentAsString();
+
+        } catch (final Throwable e) {
+            throw new RuntimeException(e);
+        }
+
+        String response;
+        // Ajout de referentiel
+        for (final Map.Entry<String, String> e : Fixtures.getPatternReferentielOrderFiles().entrySet()) {
+            try (final InputStream refStream = getClass().getResourceAsStream(e.getValue())) {
+                final MockMultipartFile refFile = new MockMultipartFile("file", e.getValue(), "text/plain", refStream);
+
+                response = mockMvc.perform(multipart("/api/v1/applications/pattern/references/{refType}", e.getKey())
+                                .file(refFile)
+                                .cookie(authCookie))
+                        .andExpect(status().isCreated())
+                        .andExpect(jsonPath("$.id", IsNull.notNullValue()))
+                        .andReturn().getResponse().getContentAsString();
+
+                JsonPath.parse(response).read("$.id");
+            }
+        }
+        {
+            mockMvc.perform(get("/api/v1/applications/pattern/references/{refType}", "taxon")
+                            .cookie(authCookie))
+                    .andExpect(status().is2xxSuccessful())
+                    .andExpect(jsonPath("$..values.tel_S2_value", contains("7.2", "3.4", "2.1", "2.6", "2.5", "5.2", "3.9", "3.2", "1.2")))
+                    .andExpect(jsonPath("$..values.tel_S2_resolution", contains(3.2, 3.2, 3.2, 3.2, 3.2, 3.2, 3.2, 3.2, 3.2)))
+                    .andExpect(jsonPath("$..values.tel_S2_qualifier", contains(3, 3, 3, 3, 3, 3, 3, 3, 3)))
+                    .andExpect(jsonPath("$..values.tel_S2_variable", contains("annecy", "annecy", "annecy", "annecy", "annecy", "annecy", "annecy", "annecy", "annecy")))
+                    .andExpect(jsonPath("$.referenceTypeForReferencingColumns.tel_S2_variable", Is.is("site")))
+                    .andReturn().getResponse().getContentAsString();
+
+        }
+        // Ajout de taxon
+        {
+            for (final Map.Entry<String, String> e : Fixtures.getPatternReferentielOrderFiles().entrySet()) {
+                try (final InputStream refStream = getClass().getResourceAsStream(e.getValue())) {
+                    final MockMultipartFile refFile = new MockMultipartFile("file", e.getValue(), "text/plain", refStream);
+
+                    response = mockMvc.perform(multipart("/api/v1/applications/pattern/references/{refType}", e.getKey())
+                                    .file(refFile)
+                                    .cookie(authCookie))
+                            .andExpect(status().isCreated())
+                            .andExpect(jsonPath("$.id", IsNull.notNullValue()))
+                            .andReturn().getResponse().getContentAsString();
+
+                    JsonPath.parse(response).read("$.id");
+                }
+            }
+        }
+        for (final Map.Entry<String, String> e : Fixtures.getPatternReferentielOrderFiles().entrySet()) {
+            try (final InputStream refStream = getClass().getResourceAsStream(e.getValue())) {
+                final MockMultipartFile refFile = new MockMultipartFile("file", e.getValue(), "text/plain", refStream);
+
+                response = mockMvc.perform(multipart("/api/v1/applications/pattern/references/{refType}", e.getKey())
+                                .file(refFile)
+                                .cookie(authCookie))
+                        .andExpect(status().isCreated())
+                        .andExpect(jsonPath("$.id", IsNull.notNullValue()))
+                        .andReturn().getResponse().getContentAsString();
+
+                JsonPath.parse(response).read("$.id");
+            }
+        }
+    }
+
     @Test
     @Tag("SUITE")
     public void testComputedWithNaturalKeyColumns() throws Exception {
diff --git a/src/test/resources/data/configuration/data.result.example.json b/src/test/resources/data/configuration/data.result.example.json
index 3dd512364..5a03fe302 100644
--- a/src/test/resources/data/configuration/data.result.example.json
+++ b/src/test/resources/data/configuration/data.result.example.json
@@ -1046,15 +1046,17 @@
     "submission" : null,
     "validations" : {
       "type_site_validation" : {
-        "checkers" : [ {
-          "type" : "ReferenceChecker",
-          "componentKey" : "type_site_validation",
-          "multiplicity" : "ONE",
-          "required" : true,
-          "refType" : "tr_type_zone_etude_tze",
-          "isRecursive" : false,
-          "isParent" : true
-        } ],
+        "checkers" : {
+          "dat_type_site" : {
+            "type" : "ReferenceChecker",
+            "componentKey" : "dat_type_site",
+            "multiplicity" : "ONE",
+            "required" : true,
+            "refType" : "tr_type_zone_etude_tze",
+            "isRecursive" : false,
+            "isParent" : true
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -1063,15 +1065,17 @@
         "mandatory" : "OPTIONAL"
       },
       "site_validation" : {
-        "checkers" : [ {
-          "type" : "ReferenceChecker",
-          "componentKey" : "site_validation",
-          "multiplicity" : "ONE",
-          "required" : true,
-          "refType" : "tr_type_zone_etude_tze",
-          "isRecursive" : false,
-          "isParent" : false
-        } ],
+        "checkers" : {
+          "dat_site" : {
+            "type" : "ReferenceChecker",
+            "componentKey" : "dat_site",
+            "multiplicity" : "ONE",
+            "required" : true,
+            "refType" : "tr_type_zone_etude_tze",
+            "isRecursive" : false,
+            "isParent" : false
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -1080,15 +1084,17 @@
         "mandatory" : "OPTIONAL"
       },
       "start_date_validation" : {
-        "checkers" : [ {
-          "type" : "DateChecker",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "pattern" : "dd/MM/yyyy",
-          "min" : [ 2004, 1, 1 ],
-          "max" : [ 999999999, 12, 31, 23, 59, 59, 999999999 ],
-          "duration" : "1 Day"
-        } ],
+        "checkers" : {
+          "dat_start_date" : {
+            "type" : "DateChecker",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "pattern" : "dd/MM/yyyy",
+            "min" : [ 2004, 1, 1 ],
+            "max" : [ 999999999, 12, 31, 23, 59, 59, 999999999 ],
+            "duration" : "1 Day"
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -1097,15 +1103,17 @@
         "mandatory" : "OPTIONAL"
       },
       "end_date_validation" : {
-        "checkers" : [ {
-          "type" : "DateChecker",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "pattern" : "dd/MM/yyyy",
-          "min" : [ 2004, 1, 1 ],
-          "max" : [ 999999999, 12, 31, 23, 59, 59, 999999999 ],
-          "duration" : "1 Day"
-        } ],
+        "checkers" : {
+          "dat_end_date" : {
+            "type" : "DateChecker",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "pattern" : "dd/MM/yyyy",
+            "min" : [ 2004, 1, 1 ],
+            "max" : [ 999999999, 12, 31, 23, 59, 59, 999999999 ],
+            "duration" : "1 Day"
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -1114,15 +1122,17 @@
         "mandatory" : "OPTIONAL"
       },
       "date_validation" : {
-        "checkers" : [ {
-          "type" : "DateChecker",
-          "multiplicity" : "ONE",
-          "required" : true,
-          "pattern" : "dd/MM/yyyy",
-          "min" : [ 2004, 1, 1 ],
-          "max" : [ 999999999, 12, 31, 23, 59, 59, 999999999 ],
-          "duration" : "1 Day"
-        } ],
+        "checkers" : {
+          "dat_end_date" : {
+            "type" : "DateChecker",
+            "multiplicity" : "ONE",
+            "required" : true,
+            "pattern" : "dd/MM/yyyy",
+            "min" : [ 2004, 1, 1 ],
+            "max" : [ 999999999, 12, 31, 23, 59, 59, 999999999 ],
+            "duration" : "1 Day"
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -1131,15 +1141,17 @@
         "mandatory" : "OPTIONAL"
       },
       "intrval_date_validation" : {
-        "checkers" : [ {
-          "type" : "GroovyExpressionChecker",
-          "multiplicity" : "ONE",
-          "required" : true,
-          "expression" : "if (datum.data_dat == null) {\n    throw new SiOreIllegalArgumentException(\n            \"MISSING_DATE\"\n    )\n} LocalDate date = LocalDate.parse(datum.data_dat, DateTimeFormatter.ofPattern(\"dd/MM/yyyy\")); if (datum.start_date_dat != null) {\n    try {\n        LocalDate startDate = LocalDate.parse(datum.start_date_dat, DateTimeFormatter.ofPattern(\"dd/MM/yyyy\"));\n        if (startDate.isAfter(date)) {\n            throw new SiOreIllegalArgumentException(\n                    \"DATE_NOT_IN_INTERVAL\"\n            )\n        }\n    } catch (DateTimeParseException e) {\n        throw new SiOreIllegalArgumentException(\n                \"BAD_DATE_FORMAT\"\n        )\n    }\n} if (datum.end_date_dat != null) {\n    try {\n        LocalDate endDate = LocalDate.parse(datum.end_date_dat, DateTimeFormatter.ofPattern(\"dd/MM/yyyy\"));\n        if (endDate.isBefore(date)) {\n            throw new SiOreIllegalArgumentException(\n                    \"DATE_NOT_IN_INTERVAL\"\n            )\n        }\n    } catch (DateTimeParseException e) {\n        throw new SiOreIllegalArgumentException(\n                \"BAD_DATE_FORMAT\"\n        )\n    }\n} return true;\n",
-          "references" : null,
-          "codify" : true,
-          "data" : null
-        } ],
+        "checkers" : {
+          "dat_end_date" : {
+            "type" : "GroovyExpressionChecker",
+            "multiplicity" : "ONE",
+            "required" : true,
+            "expression" : "if (datum.data_dat == null) {\n    throw new SiOreIllegalArgumentException(\n            \"MISSING_DATE\"\n    )\n} LocalDate date = LocalDate.parse(datum.data_dat, DateTimeFormatter.ofPattern(\"dd/MM/yyyy\")); if (datum.start_date_dat != null) {\n    try {\n        LocalDate startDate = LocalDate.parse(datum.start_date_dat, DateTimeFormatter.ofPattern(\"dd/MM/yyyy\"));\n        if (startDate.isAfter(date)) {\n            throw new SiOreIllegalArgumentException(\n                    \"DATE_NOT_IN_INTERVAL\"\n            )\n        }\n    } catch (DateTimeParseException e) {\n        throw new SiOreIllegalArgumentException(\n                \"BAD_DATE_FORMAT\"\n        )\n    }\n} if (datum.end_date_dat != null) {\n    try {\n        LocalDate endDate = LocalDate.parse(datum.end_date_dat, DateTimeFormatter.ofPattern(\"dd/MM/yyyy\"));\n        if (endDate.isBefore(date)) {\n            throw new SiOreIllegalArgumentException(\n                    \"DATE_NOT_IN_INTERVAL\"\n            )\n        }\n    } catch (DateTimeParseException e) {\n        throw new SiOreIllegalArgumentException(\n                \"BAD_DATE_FORMAT\"\n        )\n    }\n} return true;\n",
+            "references" : null,
+            "codify" : true,
+            "data" : null
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
diff --git a/src/test/resources/data/configuration/data.result.json b/src/test/resources/data/configuration/data.result.json
index 4182e4a33..acbf5dc3f 100644
--- a/src/test/resources/data/configuration/data.result.json
+++ b/src/test/resources/data/configuration/data.result.json
@@ -559,15 +559,17 @@
     "submission" : null,
     "validations" : {
       "sitesRef" : {
-        "checkers" : [ {
-          "type" : "ReferenceChecker",
-          "componentKey" : "sitesRef",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "refType" : "sites",
-          "isRecursive" : false,
-          "isParent" : false
-        } ],
+        "checkers" : {
+          "site" : {
+            "type" : "ReferenceChecker",
+            "componentKey" : "site",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "refType" : "sites",
+            "isRecursive" : false,
+            "isParent" : false
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -576,15 +578,17 @@
         "mandatory" : "OPTIONAL"
       },
       "themesRef" : {
-        "checkers" : [ {
-          "type" : "ReferenceChecker",
-          "componentKey" : "themesRef",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "refType" : "themes",
-          "isRecursive" : false,
-          "isParent" : false
-        } ],
+        "checkers" : {
+          "theme" : {
+            "type" : "ReferenceChecker",
+            "componentKey" : "theme",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "refType" : "themes",
+            "isRecursive" : false,
+            "isParent" : false
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -593,15 +597,17 @@
         "mandatory" : "OPTIONAL"
       },
       "checkDatatype" : {
-        "checkers" : [ {
-          "type" : "GroovyExpressionChecker",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "expression" : "String datatype = Arrays.stream((String)datum.datatype).split(\"_\")\n                .collect{it.substring(0, 1)}\n                .join();\n                return application.getDataType().contains(datatype);\n",
-          "references" : null,
-          "codify" : true,
-          "data" : null
-        } ],
+        "checkers" : {
+          "datatype" : {
+            "type" : "GroovyExpressionChecker",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "expression" : "String datatype = Arrays.stream((String)datum.datatype).split(\"_\")\n                .collect{it.substring(0, 1)}\n                .join();\n                return application.getDataType().contains(datatype);\n",
+            "references" : null,
+            "codify" : true,
+            "data" : null
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -706,15 +712,17 @@
     "submission" : null,
     "validations" : {
       "variableRef" : {
-        "checkers" : [ {
-          "type" : "ReferenceChecker",
-          "componentKey" : "variableRef",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "refType" : "variables",
-          "isRecursive" : false,
-          "isParent" : false
-        } ],
+        "checkers" : {
+          "variable" : {
+            "type" : "ReferenceChecker",
+            "componentKey" : "variable",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "refType" : "variables",
+            "isRecursive" : false,
+            "isParent" : false
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -723,15 +731,17 @@
         "mandatory" : "OPTIONAL"
       },
       "uniteRef" : {
-        "checkers" : [ {
-          "type" : "ReferenceChecker",
-          "componentKey" : "uniteRef",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "refType" : "unites",
-          "isRecursive" : false,
-          "isParent" : false
-        } ],
+        "checkers" : {
+          "unite" : {
+            "type" : "ReferenceChecker",
+            "componentKey" : "unite",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "refType" : "unites",
+            "isRecursive" : false,
+            "isParent" : false
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -740,15 +750,17 @@
         "mandatory" : "OPTIONAL"
       },
       "checkDatatype" : {
-        "checkers" : [ {
-          "type" : "GroovyExpressionChecker",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "expression" : "String datatype = Arrays.stream((String)(datum.datatype).split(\"_\")) .collect{it.substring(0, 1)} .join(); return  application.getDataType().contains(datatype);\n",
-          "references" : null,
-          "codify" : true,
-          "data" : null
-        } ],
+        "checkers" : {
+          "datatype" : {
+            "type" : "GroovyExpressionChecker",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "expression" : "String datatype = Arrays.stream((String)(datum.datatype).split(\"_\")) .collect{it.substring(0, 1)} .join(); return  application.getDataType().contains(datatype);\n",
+            "references" : null,
+            "codify" : true,
+            "data" : null
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -1569,7 +1581,7 @@
     },
     "validations" : {
       "v_treatment_plot" : {
-        "checkers" : [ ],
+        "checkers" : { },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -2670,7 +2682,7 @@
     },
     "validations" : {
       "unitOfColor" : {
-        "checkers" : [ ],
+        "checkers" : { },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -2679,7 +2691,7 @@
         "mandatory" : "OPTIONAL"
       },
       "unitOfIndividus" : {
-        "checkers" : [ ],
+        "checkers" : { },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -3003,15 +3015,17 @@
     "submission" : null,
     "validations" : {
       "reference" : {
-        "checkers" : [ {
-          "type" : "ReferenceChecker",
-          "componentKey" : "reference",
-          "multiplicity" : "ONE",
-          "required" : true,
-          "refType" : "sites",
-          "isRecursive" : false,
-          "isParent" : false
-        } ],
+        "checkers" : {
+          "site" : {
+            "type" : "ReferenceChecker",
+            "componentKey" : "site",
+            "multiplicity" : "ONE",
+            "required" : true,
+            "refType" : "sites",
+            "isRecursive" : false,
+            "isParent" : false
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -3020,13 +3034,15 @@
         "mandatory" : "OPTIONAL"
       },
       "floats" : {
-        "checkers" : [ {
-          "type" : "FloatChecker",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "min" : "-Infinity",
-          "max" : "Infinity"
-        } ],
+        "checkers" : {
+          "is_float_value" : {
+            "type" : "FloatChecker",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "min" : "-Infinity",
+            "max" : "Infinity"
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -3035,13 +3051,15 @@
         "mandatory" : "OPTIONAL"
       },
       "integer" : {
-        "checkers" : [ {
-          "type" : "IntegerChecker",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "min" : -2147483648,
-          "max" : 2147483647
-        } ],
+        "checkers" : {
+          "ordre_affichage" : {
+            "type" : "IntegerChecker",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "min" : -2147483648,
+            "max" : 2147483647
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -3487,12 +3505,14 @@
     "submission" : null,
     "validations" : {
       "determinedTaxonName" : {
-        "checkers" : [ {
-          "type" : "StringChecker",
-          "multiplicity" : "ONE",
-          "required" : true,
-          "pattern" : ""
-        } ],
+        "checkers" : {
+          "nom" : {
+            "type" : "StringChecker",
+            "multiplicity" : "ONE",
+            "required" : true,
+            "pattern" : ""
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
diff --git a/src/test/resources/data/configuration/data.result.monsore.json b/src/test/resources/data/configuration/data.result.monsore.json
index bb6c1cf5a..8aa965eba 100644
--- a/src/test/resources/data/configuration/data.result.monsore.json
+++ b/src/test/resources/data/configuration/data.result.monsore.json
@@ -690,15 +690,17 @@
     "submission" : null,
     "validations" : {
       "projetRef" : {
-        "checkers" : [ {
-          "type" : "ReferenceChecker",
-          "componentKey" : "projetRef",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "refType" : "projet",
-          "isRecursive" : false,
-          "isParent" : false
-        } ],
+        "checkers" : {
+          "projet" : {
+            "type" : "ReferenceChecker",
+            "componentKey" : "projet",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "refType" : "projet",
+            "isRecursive" : false,
+            "isParent" : false
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -707,15 +709,17 @@
         "mandatory" : "OPTIONAL"
       },
       "sitesRef" : {
-        "checkers" : [ {
-          "type" : "ReferenceChecker",
-          "componentKey" : "sitesRef",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "refType" : "sites",
-          "isRecursive" : false,
-          "isParent" : false
-        } ],
+        "checkers" : {
+          "site" : {
+            "type" : "ReferenceChecker",
+            "componentKey" : "site",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "refType" : "sites",
+            "isRecursive" : false,
+            "isParent" : false
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -724,15 +728,17 @@
         "mandatory" : "OPTIONAL"
       },
       "themesRef" : {
-        "checkers" : [ {
-          "type" : "ReferenceChecker",
-          "componentKey" : "themesRef",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "refType" : "themes",
-          "isRecursive" : false,
-          "isParent" : false
-        } ],
+        "checkers" : {
+          "theme" : {
+            "type" : "ReferenceChecker",
+            "componentKey" : "theme",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "refType" : "themes",
+            "isRecursive" : false,
+            "isParent" : false
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -741,15 +747,17 @@
         "mandatory" : "OPTIONAL"
       },
       "checkDatatype" : {
-        "checkers" : [ {
-          "type" : "GroovyExpressionChecker",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "expression" : "String datatype = Arrays.stream((String)datum.datatype).split(\"_\")\n                .collect{it.substring(0, 1)}\n                .join(); \n                return application.getDataType().contains(datatype);\n",
-          "references" : null,
-          "codify" : true,
-          "data" : null
-        } ],
+        "checkers" : {
+          "datatype" : {
+            "type" : "GroovyExpressionChecker",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "expression" : "String datatype = Arrays.stream((String)datum.datatype).split(\"_\")\n                .collect{it.substring(0, 1)}\n                .join(); \n                return application.getDataType().contains(datatype);\n",
+            "references" : null,
+            "codify" : true,
+            "data" : null
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -1483,15 +1491,17 @@
     "submission" : null,
     "validations" : {
       "variableRef" : {
-        "checkers" : [ {
-          "type" : "ReferenceChecker",
-          "componentKey" : "variableRef",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "refType" : "variables",
-          "isRecursive" : false,
-          "isParent" : false
-        } ],
+        "checkers" : {
+          "variable" : {
+            "type" : "ReferenceChecker",
+            "componentKey" : "variable",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "refType" : "variables",
+            "isRecursive" : false,
+            "isParent" : false
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -1500,15 +1510,17 @@
         "mandatory" : "OPTIONAL"
       },
       "uniteRef" : {
-        "checkers" : [ {
-          "type" : "ReferenceChecker",
-          "componentKey" : "uniteRef",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "refType" : "unites",
-          "isRecursive" : false,
-          "isParent" : false
-        } ],
+        "checkers" : {
+          "unite" : {
+            "type" : "ReferenceChecker",
+            "componentKey" : "unite",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "refType" : "unites",
+            "isRecursive" : false,
+            "isParent" : false
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -1517,15 +1529,17 @@
         "mandatory" : "OPTIONAL"
       },
       "checkDatatype" : {
-        "checkers" : [ {
-          "type" : "GroovyExpressionChecker",
-          "multiplicity" : "ONE",
-          "required" : false,
-          "expression" : "String datatype = Arrays.stream((String)(datum.datatype).split(\"_\")) .collect{it.substring(0, 1)} .join();  return  application.getDataType().contains(datatype);\n",
-          "references" : null,
-          "codify" : true,
-          "data" : null
-        } ],
+        "checkers" : {
+          "datatype" : {
+            "type" : "GroovyExpressionChecker",
+            "multiplicity" : "ONE",
+            "required" : false,
+            "expression" : "String datatype = Arrays.stream((String)(datum.datatype).split(\"_\")) .collect{it.substring(0, 1)} .join();  return  application.getDataType().contains(datatype);\n",
+            "references" : null,
+            "codify" : true,
+            "data" : null
+          }
+        },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -1886,7 +1900,7 @@
     },
     "validations" : {
       "unitOfColor" : {
-        "checkers" : [ ],
+        "checkers" : { },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
@@ -1895,7 +1909,7 @@
         "mandatory" : "OPTIONAL"
       },
       "unitOfIndividus" : {
-        "checkers" : [ ],
+        "checkers" : { },
         "tags" : [ {
           "tagDefinition" : "NO_TAG"
         } ],
diff --git a/src/test/resources/data/configuration/hierarchical.json b/src/test/resources/data/configuration/hierarchical.json
index 4c89c9bb0..b9fa9d672 100644
--- a/src/test/resources/data/configuration/hierarchical.json
+++ b/src/test/resources/data/configuration/hierarchical.json
@@ -1,6 +1,7 @@
 [ {
   "nodeName" : "valeur_qualitative_vqe",
-  "componentKey" : "commune",
+  "componentKey" : null,
+  "columnToLookUpForRecursive" : null,
   "parent" : null,
   "children" : [ ],
   "depends" : [ ],
@@ -9,10 +10,12 @@
 }, {
   "nodeName" : "type_de_taxon_ttx",
   "componentKey" : "ttx_nom",
+  "columnToLookUpForRecursive" : null,
   "parent" : null,
   "children" : [ {
     "nodeName" : "taxon_tax",
-    "componentKey" : "espece",
+    "componentKey" : null,
+    "columnToLookUpForRecursive" : null,
     "parent" : "type_de_taxon_ttx",
     "children" : [ ],
     "depends" : [ "type_de_taxon_ttx", "valeur_qualitative_vqe" ],
@@ -25,14 +28,17 @@
 }, {
   "nodeName" : "type_de_site_tsi",
   "componentKey" : "tsi_nom",
+  "columnToLookUpForRecursive" : null,
   "parent" : null,
   "children" : [ {
     "nodeName" : "site_sit",
     "componentKey" : "sit_key",
+    "columnToLookUpForRecursive" : null,
     "parent" : "type_de_site_tsi",
     "children" : [ {
       "nodeName" : "traitement_tra",
       "componentKey" : "sit_key",
+      "columnToLookUpForRecursive" : null,
       "parent" : "site_sit",
       "children" : [ ],
       "depends" : [ "site_sit", "type_de_site_tsi", "valeur_qualitative_vqe" ],
@@ -41,10 +47,12 @@
     }, {
       "nodeName" : "parcelle_par",
       "componentKey" : "sit_key",
+      "columnToLookUpForRecursive" : null,
       "parent" : "site_sit",
       "children" : [ {
         "nodeName" : "plot_plo",
         "componentKey" : "sit_key",
+        "columnToLookUpForRecursive" : null,
         "parent" : "parcelle_par",
         "children" : [ ],
         "depends" : [ "parcelle_par", "site_sit", "type_de_site_tsi", "valeur_qualitative_vqe" ],
@@ -64,7 +72,8 @@
   "isRecursive" : false
 }, {
   "nodeName" : "data",
-  "componentKey" : "plo_key",
+  "componentKey" : null,
+  "columnToLookUpForRecursive" : null,
   "parent" : null,
   "children" : [ ],
   "depends" : [ "valeur_qualitative_vqe", "plot_plo", "parcelle_par", "site_sit", "type_de_site_tsi", "valeur_qualitative_vqe" ],
diff --git a/src/test/resources/data/monsore/refdatas/types_de_donnees_par_themes_de_sites_et_projet.csv b/src/test/resources/data/monsore/refdatas/types_de_donnees_par_themes_de_sites_et_projet.csv
index 5b599dfc2..28510addb 100644
--- a/src/test/resources/data/monsore/refdatas/types_de_donnees_par_themes_de_sites_et_projet.csv
+++ b/src/test/resources/data/monsore/refdatas/types_de_donnees_par_themes_de_sites_et_projet.csv
@@ -1,10 +1,10 @@
 nom du projet;nom du site;nom du thème;nom du type de données
-projet_manche;plateforme.oir.oir__p1;donnees_biologiques;piegeage_en_montee
-projet_manche;plateforme.oir.oir__p2;donnees_biologiques;piegeage_en_montee
-projet_manche;plateforme.nivelle.nivelle__p1;donnees_biologiques;piegeage_en_montee
-projet_manche;plateforme.scarff.scarff__p1;donnees_biologiques;piegeage_en_montee
-projet_atlantique;plateforme.oir.oir__p1.oir__p1__a;donnees_biologiques;piegeage_en_montee
-projet_atlantique;plateforme.oir.oir__p1.oir__p1__b;donnees_biologiques;piegeage_en_montee
-projet_atlantique;plateforme.oir.oir__p2;donnees_biologiques;piegeage_en_montee
-projet_atlantique;plateforme.nivelle.nivelle__p1;donnees_biologiques;piegeage_en_montee
-projet_atlantique;plateforme.scarff.scarff__p1;donnees_biologiques;piegeage_en_montee
\ No newline at end of file
+projet_manche;oir__p1;donnees_biologiques;piegeage_en_montee
+projet_manche;oir__p2;donnees_biologiques;piegeage_en_montee
+projet_manche;nivelle__p1;donnees_biologiques;piegeage_en_montee
+projet_manche;scarff__p1;donnees_biologiques;piegeage_en_montee
+projet_atlantique;oir__p1__a;donnees_biologiques;piegeage_en_montee
+projet_atlantique;oir__p1__b;donnees_biologiques;piegeage_en_montee
+projet_atlantique;oir__p2;donnees_biologiques;piegeage_en_montee
+projet_atlantique;nivelle__p1;donnees_biologiques;piegeage_en_montee
+projet_atlantique;scarff__p1;donnees_biologiques;piegeage_en_montee
\ No newline at end of file
diff --git a/src/test/resources/data/pattern/pattern.yaml b/src/test/resources/data/pattern/pattern.yaml
new file mode 100644
index 000000000..5664aa2d3
--- /dev/null
+++ b/src/test/resources/data/pattern/pattern.yaml
@@ -0,0 +1,349 @@
+OA_version: 2.0.1
+OA_application:
+  OA_defaultLanguage: fr
+  OA_i18n:
+    fr: Récursivité
+    en: Recusivity
+  OA_comment: Fichier de test de l'application pattern
+  OA_name: pattern
+  OA_version: 3.0.1
+
+OA_data:
+  proprietes_taxon:
+    OA_dataHeaderLine: 1
+    OA_dataFirstLine: 2
+    OA_validations:
+      reference:
+        OA_i18n:
+          fr: les references
+        OA_columns: [site]
+        OA_required: false
+        OA_checker:
+          OA_name: OA_reference
+          OA_params:
+            OA_reference:
+              OA_name: site
+              OA_isParent: true
+      floats:
+        OA_i18n:
+          fr: les décimaux
+        OA_columns: [ isFloatValue ]
+        OA_checker:
+          OA_name: OA_float
+      integer:
+        OA_i18n:
+          fr: les entiers
+        OA_columns: [ ordre_affichage ]
+        OA_checker:
+          OA_name: OA_integer
+    OA_i18n:
+      fr: Proprétés de Taxon
+      en: Properties of Taxa
+    OA_i18nColumns:
+      propriete_key:
+        fr: propriete_fr
+        en: propriete_en
+      definition_fr:
+        fr: definition_fr
+        en: definition_en
+    OA_i18nDisplay:
+      OA_pattern:
+        fr: '{propriete_key}'
+        en: '{propriete_key}'
+    OA_naturalKey: [propriete_key]
+    OA_basicComponents:
+      date:
+        OA_importHeader: Date
+        OA_required: true
+        OA_checker:
+          OA_name: OA_date
+          OA_params:
+            OA_pattern: dd/MM/yyyy
+      propriete_key:
+        OA_importHeader:  nom de la propriété_key
+      propriete_fr:
+        OA_importHeader: nom de la propriété_fr
+      propriete_en:
+        OA_importHeader: nom de la propriété_en
+      definition_fr:
+        OA_importHeader: définition_fr
+      definition_en:
+        OA_importHeader: définition_en
+      isFloatValue:
+        OA_importHeader: isFloatValue
+      isQualitative:
+        OA_importHeader: isQualitative
+      type_associe:
+        OA_importHeader: type associé
+      ordre_affichage:
+        OA_importHeader: ordre d'affichage
+      site:
+  site:
+    OA_i18n:
+      fr: Site
+      en: Site
+    OA_i18nColumns:
+      site_key:
+        fr: site_fr
+        en: site_en
+    OA_i18nDisplay:
+      OA_pattern:
+        fr: '{site_key}'
+        en: '{site_key}'
+    OA_naturalKey: [site_key]
+    OA_basicComponents:
+      type_site:
+        OA_importHeader: nom du type de site
+      site_key:
+        OA_importHeader:  nom du site_key
+      site_fr:
+        OA_importHeader:  nom du site_fr
+      site_en:
+        OA_importHeader:  nom du site_en
+      description_fr:
+        OA_importHeader: description du site_fr
+      description_en:
+        OA_importHeader: description du site_en
+      sandre_eau:
+        OA_importHeader:  code sandre du Plan d'eau
+      sandre:
+        OA_importHeader: code sandre de la Masse d'eau plan d'eau
+  taxon:
+    OA_i18n:
+      fr: Taxons
+      en: Taxa
+    OA_i18nDisplay:
+      OA_pattern:
+        fr: '{nom}'
+        en: '{nom}'
+    OA_naturalKey: [nom]
+    OA_validations:
+      nomDuTaxonDetermine:
+        OA_required: true
+        OA_i18n:
+          fr: "nom du taxon déterminé"
+        OA_checker:
+          OA_name: OA_string
+        OA_columns: [ nom ]
+    OA_basicComponents:
+      nom:
+        OA_importHeader: nom du taxon déterminé
+      theme:
+      niveau_taxon:
+        OA_importHeader: nom du niveau de taxon
+      taxon_superieur:
+        OA_importHeader: nom du taxon superieur
+      sandre_taxon:
+        OA_importHeader: code sandre du taxon
+      sandre_superieur:
+        OA_importHeader: code sandre du taxon supérieur
+      incertitude:
+        OA_importHeader: niveau incertitude de détermination
+      auteur:
+        OA_importHeader: Auteur de la description
+      annee:
+        OA_importHeader: Année de la description
+      reference_description:
+        OA_importHeader: Référence de la description
+      references_taxon:
+        OA_importHeader: Références relatives à ce taxon
+      synonyme_ancien:
+        OA_importHeader: Synonyme ancien
+      synonyme_recent:
+        OA_importHeader: Synonyme récent
+      bourrelly:
+        OA_importHeader: Classe algale sensu Bourrelly
+      sandre:
+        OA_importHeader: Code Sandre
+      notes:
+        OA_importHeader:  Notes libres
+    OA_dynamicComponents:
+      proprietesDeTaxon:
+        OA_exportHeader:
+          OA_i18n:
+            fr: Proprétés de Taxons
+            en: Properties of Taxa
+        OA_headerPrefix: "pt_"
+        OA_reference: proprietes_taxon
+        OA_referenceColumnToLookForHeader: propriete_key
+    OA_patternComponents:
+      tel_S1_value:
+        OA_patternForComponents: "(.*)_S1_(.*)_(.*)"
+        OA_required: false
+        OA_exportHeader:
+          OA_i18n:
+            fr: "valeur"
+            en: "value"
+        OA_components:
+          - tel_S1_variable: #$1
+              OA_exportHeader:
+                OA_i18n:
+                  fr: "variable fr"
+                  en: "variable en"
+              OA_tags: [__ORDER_1__]
+              OA_checker:
+                OA_name: OA_reference
+                OA_params:
+                  OA_reference:
+                    OA_name: site
+          - tel_S1_qualifier: #$2
+              OA_tags: [__ORDER_2__]
+              OA_exportHeader:
+                OA_i18n:
+                  fr: "qualificatif fr"
+                  en: "qualifier en"
+              OA_checker:
+                OA_name: OA_integer
+          - tel_S1_resolution: #$3
+              OA_tags: [__ORDER_3__]
+              OA_exportHeader:
+                OA_i18n:
+                  fr: "resolution fr"
+                  en: "resolution en"
+              OA_checker:
+                OA_name: OA_float
+      tel_S2_value:
+        OA_patternForComponents: "(.*)_S2_(.*)_(.*)"
+        OA_required: false
+        OA_exportHeader:
+          OA_i18n:
+            fr: "valeur"
+            en: "value"
+        OA_components:
+          - tel_S2_variable: #$1
+              OA_exportHeader:
+                OA_i18n:
+                  fr: "variable fr"
+                  en: "variable en"
+              OA_tags: [__ORDER_1__]
+              OA_checker:
+                OA_name: OA_reference
+                OA_params:
+                  OA_reference:
+                    OA_name: site
+          - tel_S2_qualifier: #$2
+              OA_tags: [__ORDER_2__]
+              OA_exportHeader:
+                OA_i18n:
+                  fr: "qualificatif fr"
+                  en: "qualifier en"
+              OA_checker:
+                OA_name: OA_integer
+          - tel_S2_resolution: #$3
+              OA_tags: [__ORDER_3__]
+              OA_exportHeader:
+                OA_i18n:
+                  fr: "resolution fr"
+                  en: "resolution en"
+              OA_checker:
+                OA_name: OA_float
+
+  condition_prelevements:
+    OA_naturalKey:
+      - date_day
+      - date_time
+      - siteName
+    # ajout d'un nom internationnalisé
+    OA_i18n:
+      fr: Condition de prélèvement
+      en: Collection condition
+    OA_basicComponents:
+          date_day:
+            OA_checker:
+              OA_name: OA_date
+              OA_params:
+                OA_pattern: dd/MM/yyyy
+          date_time:
+            OA_checker:
+              OA_name: OA_date
+              OA_params:
+                OA_pattern: HH:mm:ss
+          projet:
+          siteName:
+            OA_importHeader: Nom du site
+            OA_required: true
+            OA_checker:
+              OA_name: OA_reference
+              OA_params:
+                OA_reference:   
+                  OA_name: site
+          sitePlateforme:
+            OA_importHeader: Plateforme du site
+          couleurDeLEau:
+            OA_importHeader: couleur de l'eau
+          directionDuVent:
+            OA_importHeader: direction du vent
+          ensoleillement:
+          temps:
+          aspectDeLEau:
+            OA_importHeader: aspect de l'eau
+          etatDeSurface:
+            OA_importHeader: etat de surface
+          nebulosite:
+          vitesseDuVent:
+            OA_importHeader: vitesse du vent
+          pressionAtmospherique:
+            OA_importHeader: pression atmospherique
+          temperatureDeLAir:
+            OA_importHeader: temperature de l'air
+            OA_checker:
+              OA_name: OA_integer
+          transparenceParDisqueInra:
+            OA_importHeader: transparence par disque inra
+          transparenceParSecchi:
+            OA_importHeader: transparence par secchi
+            OA_checker:
+              OA_name: OA_float
+          commentaire:
+    # création des authorisations
+    OA_submission:
+      OA_strategy: OA_REPOSITORY
+      OA_authorization:
+        # par groupe de données
+        OA_dataGroups:
+          referentiel:
+            OA_i18n:
+              fr: Référentiel
+              en: Referential
+            OA_components:
+              - date_day
+              - date_time
+              - projet
+              - siteName
+              - commentaire
+          qualitatif:
+            OA_i18n:
+              fr: Données qualitatives
+              en: Qualitative data
+            OA_components:
+              - couleurDeLEau
+              - directionDuVent
+              - ensoleillement
+              - temps
+              - aspectDeLEau
+              - etatDeSurface
+              - nebulosite
+              - vitesseDuVent
+          quantitatif:
+            OA_i18n:
+              fr: Données quantitatives
+              en: Quantitative data
+            OA_components:
+              - pressionAtmospherique
+              - temperatureDeLAir
+              - transparenceParDisqueInra
+              - transparenceParSecchi
+        # par types de données (ex: ici on fait par localisation)
+        OA_authorizationScopes:
+          localization_site:
+            OA_i18n:
+              fr: Nom du site
+              en: Site name
+            OA_component: siteName
+            OA_exportHeader:
+              OA_i18n:
+                fr: Nom du site
+                en: Site name
+        # par date
+        OA_timeScope:
+          OA_component: date_day
\ No newline at end of file
diff --git a/src/test/resources/data/pattern/proprietes_des_taxons.csv b/src/test/resources/data/pattern/proprietes_des_taxons.csv
new file mode 100644
index 000000000..68041111a
--- /dev/null
+++ b/src/test/resources/data/pattern/proprietes_des_taxons.csv
@@ -0,0 +1,40 @@
+Date;nom de la propriété_key;nom de la propriété_fr;nom de la propriété_en;définition_fr;définition_en;isFloatValue;isQualitative;type associé;ordre d'affichage;site
+02/01/2016;niveau incertitude de détermination;niveau incertitude de détermination;Uncertainty determining the level;niveau du taxon qui a été déterminé;Level of the determined taxon;1,22;false;Phytoplancton;1;
+01/01/2017;Auteur de la description;Auteur de la description;Description's author;Quand c'est connu;When known;2,22;false;Phytoplancton;2;
+01/01/2016;Année de la description;Année de la description;Description's year;Quand c'est connu;When known;3,22;false;Phytoplancton;3;
+01/01/2016;Référence de la description;Référence de la description;Description's reference;;;55,22;false;Phytoplancton;4;
+01/01/2016;Références relatives à ce taxon;Références relatives à ce taxon;References concerning this taxon;Infos bibliographiques;Bibliographical informations;5,22;false;phtoplancton;5;
+01/01/2016;Synonyme ancien;Synonyme ancien;Former synonyms;Il peut y avoir plusieurs synonymes anciens;May have several former synonyms;6,22;false;Phytoplancton;6;
+01/01/2016;Synonyme récent;Synonyme récent;Latest synonyms;Il peut y avoir plusieurs synonymes, bien qu'en général ils passent dans les anciens;May have several latest synonyms, tough some goes in the former ones;7,22;false;Phytoplancton;7;
+01/01/2016;Classe algale sensu Bourrelly;Classe algale sensu Bourrelly;Algal class sensu Bourrelly;Regroupement taxonomique selon Bourrelly (standard);Taxonomic grouping according to Bourrelly (standard);8,22;true;Phytoplancton;8;
+01/01/2016;Code Sandre;Code Sandre;Sandre code;Code affecté par le SANDRE (réseau national sur l'eau);Code affecté par le SANDRE (réseau national sur l'eau);9,22;false;Phytoplancton;9;
+01/01/2016;Code taxa Cemagref;Code taxa Cemagref;Taxa Cemagref code;Code affecté par le CEMAGREF;Code affecté par le CEMAGREF;10,22;false;Phytoplancton;10;
+01/01/2016;Code INRA;Code INRA;INRA code;Code interne utilisé par JC Druat (ancien INRA);Code interne utilisé par JC Druat (ancien INRA);11,22;false;Phytoplancton;11;
+01/01/2016;code INRA lettres;code INRA lettres;INRA code (w/ letters);code affecté;Affected code;12,22;false;Phytoplancton;12;
+01/01/2016;Rebecca name;Rebecca name;Rebecca name;;;13,22;false;Phytoplancton;13;
+01/01/2016;Code Rebecca;Code Rebecca;Rebecca code;;;85,22;false;Phytoplancton;85;
+01/01/2016;Code Omnidia;Code Omnidia;Omnidia code;Code pour les diatomés;Code for the diatoms;15,22;false;Phytoplancton;15;
+01/01/2016;Unité de comptage du taxon;Unité de comptage du taxon;Taxon's counting unit;Indique sous quel format est compté le taxon (filament, cellule, colonie);Indicates the format in which the taxon is counted (filament, cell colony);16,22;true;Phytoplancton;16;
+01/01/2016;Erreur sur le biovolume;Erreur sur le biovolume;Error on the biovolume;indique si il y a une erreur ou pas;Whether there is an error or not;17,22;true;Phytoplancton;17;
+01/01/2016;valeur du biovolume spécifique choisi pour le taxon;valeur du biovolume spécifique choisi pour le taxon;Specific biovolume value chosen for the taxon;µm3;µm3;18,22;false;Phytoplancton;18;
+01/01/2016;Longueur de la cellule;Longueur de la cellule;Cell length;µm;µm;19,22;false;Phytoplancton;19;
+01/01/2016;Largeur de la cellule;Largeur de la cellule;Cell width;µm;µm;20,22;false;Phytoplancton;20;
+01/01/2016;Epaisseur de la cellule;Epaisseur de la cellule;Cell thickness;µm;µm;21,22;false;Phytoplancton;21;
+01/01/2016;Forme géométrique de la cellule;Forme géométrique de la cellule;Cell's geometric form;;;22,22;true;Phytoplancton;22;
+01/01/2016;Facteur à multiplier à la forme géométrique pour avoir le biovolume de la cellule;Facteur à multiplier à la forme géométrique pour avoir le biovolume de la cellule;Factor to multiply the geometric shape to get the cell biovolume;;;23,22;false;Phytoplancton;23;
+01/01/2016;Facteur à diviser à la forme géométrique pour avoir la surface de la cellule;Facteur à diviser à la forme géométrique pour avoir la surface de la cellule;Factor to multiply the geometric shape to get the cell surface;;;28,22;false;Phytoplancton;28;
+01/01/2016;Surface de la cellule;Surface de la cellule;Cell surface;µm2;µm2;25,22;false;Phytoplancton;25;
+01/01/2016;Biovolume de la cellule;Biovolume de la cellule;Cell biovolume;µm3;µm3;26,22;false;Phytoplancton;26;
+01/01/2016;Nombre de cellule par colonie;Nombre de cellule par colonie;Number of cells by colony;;;27,22;false;Phytoplancton;27;
+01/01/2016;Surface cumulée des cellules;Surface cumulée des cellules;Cumulative surface of cells;µm2;µm2;28,22;false;Phytoplancton;28;
+01/01/2016;biovolume cumulé des cellules;biovolume cumulé des cellules;Cumulative biovolume of cells;µm3;µm3;29,22;false;Phytoplancton;29;
+01/01/2016;Longueur de la colonie (prends en compte la gelée);Longueur de la colonie (prends en compte la gelée);Colony length (with jelly);µm;µm;30,22;false;Phytoplancton;30;
+01/01/2016;Largeur de la colonie (prends en compte la gelée);Largeur de la colonie (prends en compte la gelée);Colony width (with jelly);µm;µm;31,22;false;Phytoplancton;31;
+01/01/2016;Epaisseur de la colonie (prends en compte la gelée);Epaisseur de la colonie (prends en compte la gelée);Colony thickness (with jelly);µm;µm;32,22;false;Phytoplancton;32;
+01/01/2016;Forme géométrique de la colonie;Forme géométrique de la colonie;Colony's geometric form;;;33,22;true;Phytoplancton;33;
+01/01/2016;Facteur à multiplier à la forme géométrique pour avoir le biovolume de la colonie (sans prendre en compte la gelée);Facteur à multiplier à la forme géométrique pour avoir le biovolume de la colonie (sans prendre en compte la gelée);Factor to multiply the geometric shape to get the colony biovolume (without jelly);;;59,22;false;Phytoplancton;39;
+01/01/2016;Facteur à diviser à la forme géométrique pour avoir la surface de la colonie (en prenant en compte la gelée);Facteur à diviser à la forme géométrique pour avoir la surface de la colonie (en prenant en compte la gelée);Factor to multiply the geometric shape to get the colony surface (with jelly);;;35,22;false;Phytoplancton;35;
+01/01/2016;Surface de la colonie;Surface de la colonie;Colony surface;µm2;µm2;36,22;false;Phytoplancton;36;
+01/01/2016;Biovolume de la colonie;Biovolume de la colonie;Colony biovolume;µm3;µm3;37,22;false;Phytoplancton;37;
+01/01/2016;Notes sur les biovolumes;Notes sur les biovolumes;Notes on biovolumes;;;39,22;false;Phytoplancton;38;
+01/01/2016;Notes libres;Notes libres;Free notes;;;39,22;false;Phytoplancton;39;
diff --git a/src/test/resources/data/pattern/sites.csv b/src/test/resources/data/pattern/sites.csv
new file mode 100644
index 000000000..0cb29aecf
--- /dev/null
+++ b/src/test/resources/data/pattern/sites.csv
@@ -0,0 +1,44 @@
+nom du type de site;nom du site_key;nom du site_fr;nom du site_en;description du site_fr;description du site_en;code sandre du Plan d'eau;code sandre de la Masse d'eau plan d'eau
+grand_lac;aiguebelette;Aiguebelette;Aiguebelette;;;DL61;V1535003
+grand_lac;annecy;Annecy;Annecy;lac d' Annecy;lake of Annecy;DL66;V1235003
+grand_lac;bourget;Bourget;Bourget;lac du Bourget;lake of  Bourget;DL60;V1335003
+grand_lac;leman;Léman;Leman(Geneva Lake);lac Léman;Geneva lake (Leman);DL65;V03-4003
+lac_d_altitude;anterne;Anterne;Anterne;Lac d'Anterne;Anterne lake;DL62;V0115023
+lac_d_altitude;aratilles;Aratilles;Aratilles;lac des pyrénées française;french pyrenes lake;;
+lac_d_altitude;arbu;Arbu;Arbu;lac des pyrénées française;french pyrenes lake;;O1135003
+lac_d_altitude;arpont;Arpont;Arpont;Lac de l'Arpont;Arpont Lake;;W1015003
+lac_d_altitude;aumar;Aumar;Aumar;Ce lac est situé pyrénées française à une altitude de 2192 m au cœur de la réserve naturelle de Néouvielle. Il fait partie de l'aménagement hydroélectrique de Pragnères (EDF) où ses eaux sont turbinées;This lake is located in the French pyrénées at 2192 m in the Néouvielle Reserve. This lake belongs to the EDF hydropower scheme of Pragnères;;O0115123
+lac_d_altitude;barroude;Barroude;Barroude;lac des pyrénées française;french pyrenes lake;;O0105023 (grand) et O0105013 (petit)
+lac_d_altitude;blanc_du_bramant;Blanc du Bramant;Blanc du Bramant;lac Blanc du Bramant;Blanc du Bramant Lake;;
+lac_d_altitude;blanc_du_carro;Blanc du Carro;Blanc du Carro;Lac Blanc du Caro;Carro Blanc lake;;W1005043
+lac_d_altitude;bramant;Bramant;Bramant;Lac Bramant;Bramant Lake;;
+lac_d_altitude;bresses_inferieur;Bresses inférieur;Bresses inférieur;lac de Bresses inférieur;Lower Bresse lake;;Y6225043 bis
+lac_d_altitude;bresses_superieur;Bresses supérieur;Bresses supérieur;lac de Bresses supérieur;Upper Bresse lake;;Y6225043
+lac_d_altitude;brevent;Brévent;Brevent;Lac du Brévent;Brevent lake;;V0015023
+lac_d_altitude;corne;Corne;Corne;Lac de Corne;Corne lake;;W2755063
+lac_d_altitude;cornu;Cornu;Cornu;Lac Cornu;Cornu lake;;V0015043
+lac_d_altitude;cos;Cos;Cos;lac de Cos;Cos lake;;W1205063
+lac_d_altitude;espingo;Espingo;Espingo;lac des pyrénées française;french pyrenes lake;;
+lac_d_altitude;estany_gros;Estany Gros;Estany Gros;lac des pyrénées française;french pyrenes lake;;
+lac_d_altitude;gentau;Gentau;Gentau;lac des pyrénées française;french pyrenes lake;;
+lac_d_altitude;gourg_gaudet;Gourg Gaudet;Gourg Gaudet;lac des pyrénées française;french pyrenes lake;;
+lac_d_altitude;isaby;Isaby;Isaby;lac d'Isaby;Isaby lake;;Q4425003
+lac_d_altitude;izourt;Izourt;Izourt;lac d'Izourt;Lake Izourt;;O1125103
+lac_d_altitude;jovet;Jovet;Jovet;Lac Jovet;Jovet lake;;V0025023 et V0025003 (lacs)
+lac_d_altitude;lauzanier;Lauzanier;Lauzanier;lac du Lauzanier;Lauzanier lake;;X0415043
+lac_d_altitude;malrif;Malrif;Malrif;lac de Malrif;Malrif lake;;X0215003 (petit laus), X0215023 (grand laus), Mezan ?
+lac_d_altitude;merlet_superieur;Merlet supérieur;Merlet supérieur;Lac du Merlet supérieur;Upper Merlet lake;;W0225003
+lac_d_altitude;mont_coua;Mont Coua;Mont Coua;lac du Mont Coua;Coua mont lake;;W0235063
+lac_d_altitude;muzelle;Muzelle;Muzelle;lac de la Muzelle;Muzelle lake;;W2735043
+lac_d_altitude;noir_du_carro;Noir du Carro;Noir du Carro;lac Noir du Caro;Carro Noir lake;;W1005023
+lac_d_altitude;oncet;Oncet;Oncet;lac d'Oncet;Oncet lake;;Q4305003
+lac_d_altitude;pave;Pavé;Pavé;lac du Pavé;Pave lake;;W2705003
+lac_d_altitude;petarel;Pétarel;Pétarel;Lac Pétarel;Petarel lake;;W2115023
+lac_d_altitude;pisses;Pisses;Pisses;Lac des Pisses;Pisses lake;;W2005023
+lac_d_altitude;plan_vianney;Plan Vianney;Plan Vianney;Lac de Plan Vianney;Plan Vianney Lake;;W2735003
+lac_d_altitude;pormenaz;Pormenaz;Pormenaz;Lac de Pormenaz;Pormenaz lake;;V0015003
+lac_d_altitude;port_bielh;Port-Bielh;Port-Bielh;lac des pyrénées française;french pyrenes lake;;O0115003
+lac_d_altitude;rabuons;Rabuons;Rabuons;lac du Rabuons;Rabuons lake;;Y6205283
+riviere;dranse;Dranse;Dranse;rivière Dranse;Dranse river;;V03-0400 ou V0321430
+riviere;mercube;Mercube;Mercube;rivière Mercube;Mercube river;;V0351440
+lac_d_altitude;port___bielh;Port Bielh;Port Bielh;lac des pyrénées française;french pyrenes lake;;O0115002
diff --git a/src/test/resources/data/pattern/suivi_des_lacs_leman_conditions_prelevements_01-01-2020_31-12-2020.csv b/src/test/resources/data/pattern/suivi_des_lacs_leman_conditions_prelevements_01-01-2020_31-12-2020.csv
new file mode 100644
index 000000000..2b66eb861
--- /dev/null
+++ b/src/test/resources/data/pattern/suivi_des_lacs_leman_conditions_prelevements_01-01-2020_31-12-2020.csv
@@ -0,0 +1,17 @@
+Nom du projet;nom du site;Nom de la plateforme;date de prelevement;heure de prelevement;commentaire;Température de l'air;nebulosite;ensoleillement; temps ;direction du vent;vitesse du vent;pression atmosphérique;aspect de l'eau;etat de surface;transparence par disque inra;transparence par secchi 20 cm;couleur de l'eau
+suivi des lacs;leman;SHL2;22/01/2020;08:45:00;probleme de treuil a 150 m batteries. sans consequences;3;1;ensoleille;clair;;2;978;vaguelettes;propre;;15;vert-vert
+suivi des lacs;leman;SHL2;24/02/2020;00:00:00;Tract� par la Daphnie;8;1;ensoleille;clair;;1;979;plat;propre;;10;vert-vert
+suivi des lacs;leman;SHL2;05/05/2020;10:30:00;pas d�iWS en panne . echantillon moyen avec les 7 surfaces. pas de production prim. commenc� par Multiparametre cause mauvais temps. puis echantillons avec amelioration;12;8;ombre;clair;;3;970;petites vagues;pollen;;6.1;vert-vert
+suivi des lacs;leman;SHL2;02/06/2020;08:15:00;test de la 214. utilisation du Daphnie en secours ;24;1;ensoleille;clair;;1;970;plat;propre;;5.9;vert-gris
+suivi des lacs;leman;SHL2;15/06/2020;08:30:00;PAM pour Serena. Cyto en panne.Pb treuil sur retour Sonde;18;6;ombre;clair;NW;1;974;plat;propre;;7.5;vert-vert
+suivi des lacs;leman;SHL2;30/06/2020;08:45:00;PAM . +Louise;20;1;ensoleille;clair;;2;970;friselis;amas d'algues;;10.7;bleu-gris
+suivi des lacs;leman;SHL2;20/07/2020;08:45:00;;21;1;ensoleille;clair;;2;973;friselis;amas d'algues;;7.8;vert-gris
+suivi des lacs;leman;SHL2;03/08/2020;08:45:00;orage apres 2 palanquees. attente puis fin prelevements chimie. A/R Evian . impossible l'apres-midi. Pas de ProdPrim;16;10;ombre;clair;;12;969;vagues deferlantes;propre;;;
+suivi des lacs;leman;SHL2;04/08/2020;09:00:00;;13;6;ombre;clair;E;3;971;houle longue;propre;;5.2;vert-vert
+suivi des lacs;leman;SHL2;20/08/2020;08:30:00;la production a deriv�. retrouv�e en face de Torrent;21;1;ensoleille;clair;W;2;968;friselis;branches;;7.0;vert-gris
+suivi des lacs;leman;SHL2;09/09/2020;09:30:00;La prod a d�riv� Pr�sence Yvan Mattadia (2 filets de ZOO);24;1;ensoleille;clair;;1;978;friselis;propre;;6;vert-vert
+suivi des lacs;leman;SHL2;23/09/2020;10:30:00;Commencement tardif cause hourle � l'arriv�e;22;4;ensoleille;clair;;3;966;houle courte;propre;;5.8;vert-gris
+suivi des lacs;leman;SHL2;13/10/2020;11:45:00;"Commencement tardif cause hourle jusqu'à 11H00, pr�l�vement pour Yvan M Leslie et Alexis.  Branche sur parcours";11;5;ensoleille;clair;;3;966;houle courte;propre;;6.4;vert-vert
+suivi des lacs;leman;SHL2;03/11/2020;09:20:00;Octeau tract� par Daphnie. Vent temp�tueux  l'AM et pluie. Profil sonde jusqu�� 240 m.Profil sonde refait  le 6/11;;;ombre;clair;;5;;;branches;;6.5;vert-vert
+suivi des lacs;leman;SHL2;18/11/2020;09:15:00;Octeau tract� par Daphnie;12;5;ensoleille;clair;W;2;983;petites vagues;branches;;5.2;vert-jaune
+suivi des lacs;leman;SHL2;16/12/2020;09:15:00;Octeau tract� par Daphnie;6;7;ombre;brume;E;0.4;974;petites vagues;feuilles;;7.8;vert-vert
diff --git a/src/test/resources/data/pattern/taxons_du_phytoplancton-reduit-pour-pattern.csv b/src/test/resources/data/pattern/taxons_du_phytoplancton-reduit-pour-pattern.csv
new file mode 100644
index 000000000..4a6521562
--- /dev/null
+++ b/src/test/resources/data/pattern/taxons_du_phytoplancton-reduit-pour-pattern.csv
@@ -0,0 +1,10 @@
+nom du taxon déterminé;theme;nom du niveau de taxon;nom du taxon superieur;code sandre du taxon;code sandre du taxon supérieur;annecy_S1_4_5.6;annecy_S1_2_1.5;annecy_S2_3_3.2;pt_niveau incertitude de détermination;pt_Auteur de la description;pt_Année de la description;pt_Référence de la description;pt_Références relatives à ce taxon;pt_Synonyme ancien;pt_Synonyme récent;pt_Classe algale sensu Bourrelly;pt_Code Sandre;pt_Code taxa Cemagref;pt_Code INRA;pt_code INRA lettres;pt_Rebecca name;pt_Code Rebecca;pt_Code Omnidia;pt_Unité de comptage du taxon;pt_Erreur sur le biovolume;pt_valeur du biovolume spécifique choisi pour le taxon;pt_Longueur de la cellule;pt_Largeur de la cellule;pt_Epaisseur de la cellule;pt_Forme géométrique de la cellule;pt_Facteur à multiplier à la forme géométrique pour avoir le biovolume de la cellule;pt_Facteur à diviser à la forme géométrique pour avoir la surface de la cellule;pt_Surface de la cellule;pt_Biovolume de la cellule;pt_Nombre de cellule par colonie;pt_Surface cumulée des cellules;pt_biovolume cumulé des cellules;pt_Longueur de la colonie (prends en compte la gelée);pt_Largeur de la colonie (prends en compte la gelée);pt_Epaisseur de la colonie (prends en compte la gelée);pt_Forme géométrique de la colonie;pt_Facteur à multiplier à la forme géométrique pour avoir le biovolume de la colonie (sans prendre en compte la gelée);pt_Facteur à diviser à la forme géométrique pour avoir la surface de la colonie (en prenant en compte la gelée);pt_Surface de la colonie;pt_Biovolume de la colonie;pt_Notes sur les biovolumes;pt_Notes libres;Code Sandre;Synonyme ancien;Synonyme récent;Année de la description;Auteur de la description;Classe algale sensu Bourrelly;Référence de la description;Références relatives à ce taxon;niveau incertitude de détermination;Notes libres
+Chroomonas cf coerulea;Phytoplancton;Genre espèce;Chroomonadaceae;;;5.2;3.4;2.1;espèce;;;;;;;Cryptophycées;;;30320.0;;;;;cellule;ok;109.9;7.0;6.0;5.0;trel;1.0;1.0;386.61;109.9;1.0;386.61;109.9;;;;;;;;;JCD;;;;;;;;;;;
+Chroomonas sp.;Phytoplancton;Genre espèce;Chroomonadaceae;;;3.9;1.2;2.6;espèce;;;;Kugrens; P. & Clay; B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds); pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;;CHMSPX;30310.0;CHM.SPX;Chroomonas;R1375;;cellule;ok;796.4;13.0;13.0;9.0;ell;1.0;1.0;1422.3;795.99;1.0;1422.3;795.99;;;;;;;;;;;;;;;;;
+Chroomonadaceae;Phytoplancton;Famille;Pyrenomonadales;;;2.5;5.2;3.4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pyrenomonadales;Phytoplancton;Ordre;Cryptophyceae;;;7.2;3.9;1.2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptophyceae;Phytoplancton;Classe;Cryptophyta;;;3.2;2.5;5.2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptophyta;Phytoplancton;Embranchement;Cryptista;;;2.1;7.2;3.9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptista;Phytoplancton;Règne;Chromista;;;2.6;3.2;2.5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chromista;Phytoplancton;Règne;Eukaryota;;;3.4;2.1;7.2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Eukaryota;Phytoplancton;Domaine;;;;1.2;2.6;3.2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
diff --git a/src/test/resources/data/pattern/taxons_du_phytoplancton-reduit.csv b/src/test/resources/data/pattern/taxons_du_phytoplancton-reduit.csv
new file mode 100644
index 000000000..4a6521562
--- /dev/null
+++ b/src/test/resources/data/pattern/taxons_du_phytoplancton-reduit.csv
@@ -0,0 +1,10 @@
+nom du taxon déterminé;theme;nom du niveau de taxon;nom du taxon superieur;code sandre du taxon;code sandre du taxon supérieur;annecy_S1_4_5.6;annecy_S1_2_1.5;annecy_S2_3_3.2;pt_niveau incertitude de détermination;pt_Auteur de la description;pt_Année de la description;pt_Référence de la description;pt_Références relatives à ce taxon;pt_Synonyme ancien;pt_Synonyme récent;pt_Classe algale sensu Bourrelly;pt_Code Sandre;pt_Code taxa Cemagref;pt_Code INRA;pt_code INRA lettres;pt_Rebecca name;pt_Code Rebecca;pt_Code Omnidia;pt_Unité de comptage du taxon;pt_Erreur sur le biovolume;pt_valeur du biovolume spécifique choisi pour le taxon;pt_Longueur de la cellule;pt_Largeur de la cellule;pt_Epaisseur de la cellule;pt_Forme géométrique de la cellule;pt_Facteur à multiplier à la forme géométrique pour avoir le biovolume de la cellule;pt_Facteur à diviser à la forme géométrique pour avoir la surface de la cellule;pt_Surface de la cellule;pt_Biovolume de la cellule;pt_Nombre de cellule par colonie;pt_Surface cumulée des cellules;pt_biovolume cumulé des cellules;pt_Longueur de la colonie (prends en compte la gelée);pt_Largeur de la colonie (prends en compte la gelée);pt_Epaisseur de la colonie (prends en compte la gelée);pt_Forme géométrique de la colonie;pt_Facteur à multiplier à la forme géométrique pour avoir le biovolume de la colonie (sans prendre en compte la gelée);pt_Facteur à diviser à la forme géométrique pour avoir la surface de la colonie (en prenant en compte la gelée);pt_Surface de la colonie;pt_Biovolume de la colonie;pt_Notes sur les biovolumes;pt_Notes libres;Code Sandre;Synonyme ancien;Synonyme récent;Année de la description;Auteur de la description;Classe algale sensu Bourrelly;Référence de la description;Références relatives à ce taxon;niveau incertitude de détermination;Notes libres
+Chroomonas cf coerulea;Phytoplancton;Genre espèce;Chroomonadaceae;;;5.2;3.4;2.1;espèce;;;;;;;Cryptophycées;;;30320.0;;;;;cellule;ok;109.9;7.0;6.0;5.0;trel;1.0;1.0;386.61;109.9;1.0;386.61;109.9;;;;;;;;;JCD;;;;;;;;;;;
+Chroomonas sp.;Phytoplancton;Genre espèce;Chroomonadaceae;;;3.9;1.2;2.6;espèce;;;;Kugrens; P. & Clay; B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds); pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;;CHMSPX;30310.0;CHM.SPX;Chroomonas;R1375;;cellule;ok;796.4;13.0;13.0;9.0;ell;1.0;1.0;1422.3;795.99;1.0;1422.3;795.99;;;;;;;;;;;;;;;;;
+Chroomonadaceae;Phytoplancton;Famille;Pyrenomonadales;;;2.5;5.2;3.4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pyrenomonadales;Phytoplancton;Ordre;Cryptophyceae;;;7.2;3.9;1.2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptophyceae;Phytoplancton;Classe;Cryptophyta;;;3.2;2.5;5.2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptophyta;Phytoplancton;Embranchement;Cryptista;;;2.1;7.2;3.9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptista;Phytoplancton;Règne;Chromista;;;2.6;3.2;2.5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chromista;Phytoplancton;Règne;Eukaryota;;;3.4;2.1;7.2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Eukaryota;Phytoplancton;Domaine;;;;1.2;2.6;3.2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
diff --git a/src/test/resources/data/pattern/taxons_du_phytoplancton.csv b/src/test/resources/data/pattern/taxons_du_phytoplancton.csv
new file mode 100644
index 000000000..2dae8d1f7
--- /dev/null
+++ b/src/test/resources/data/pattern/taxons_du_phytoplancton.csv
@@ -0,0 +1,1482 @@
+nom du taxon déterminé;theme;nom du niveau de taxon;nom du taxon superieur;code sandre du taxon;code sandre du taxon supérieur;pt_niveau incertitude de détermination;pt_Auteur de la description;pt_Année de la description;pt_Référence de la description;pt_Références relatives à ce taxon;pt_Synonyme ancien;pt_Synonyme récent;pt_Classe algale sensu Bourrelly;pt_Code Sandre;pt_Code taxa Cemagref;pt_Code INRA;pt_code INRA lettres;pt_Rebecca name;pt_Code Rebecca;pt_Code Omnidia;pt_Unité de comptage du taxon;pt_Erreur sur le biovolume;pt_valeur du biovolume spécifique choisi pour le taxon;pt_Longueur de la cellule;pt_Largeur de la cellule;pt_Epaisseur de la cellule;pt_Forme géométrique de la cellule;pt_Facteur à multiplier à la forme géométrique pour avoir le biovolume de la cellule;pt_Facteur à diviser à la forme géométrique pour avoir la surface de la cellule;pt_Surface de la cellule;pt_Biovolume de la cellule;pt_Nombre de cellule par colonie;pt_Surface cumulée des cellules;pt_biovolume cumulé des cellules;pt_Longueur de la colonie (prends en compte la gelée);pt_Largeur de la colonie (prends en compte la gelée);pt_Epaisseur de la colonie (prends en compte la gelée);pt_Forme géométrique de la colonie;pt_Facteur à multiplier à la forme géométrique pour avoir le biovolume de la colonie (sans prendre en compte la gelée);pt_Facteur à diviser à la forme géométrique pour avoir la surface de la colonie (en prenant en compte la gelée);pt_Surface de la colonie;pt_Biovolume de la colonie;pt_Notes sur les biovolumes;pt_Notes libres;Code Sandre;Synonyme ancien;Synonyme récent;Année de la description;Auteur de la description;Classe algale sensu Bourrelly;Référence de la description;Références relatives à ce taxon;niveau incertitude de détermination;Notes libres
+Acanthoceras zachariasi;Phytoplancton;Genre espèce;Acanthocerataceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;10788.0;;70001.0;;Acanthoceras zachariasii;R0016;ACZA;cellule;ok;4900.0;50.0;14.0;7.0;box;1.0;1.0;2296.0;4900.0;1.0;2296.0;4900.0;;;;;;;;;;
+Acanthocerataceae;Phytoplancton;Famille;Chaetocerotales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Acanthosphaera sp.;Phytoplancton;Genre espèce;Golenkiniaceae;;;espèce;;;;Sociedad Española de Ficología (2008). Catálogo de las Clorofíceas de la Península Ibérica, Islas Baleares e Islas Canarias. pp. 568.;;;Chlorophycées;;ACASPX;89811.0;;;;;cellule;ok;795.92456;11.5;11.5;11.5;sphe;1.0;1.0;415.27;795.92;1.0;415.27;795.92;;;;;;;;;Moyennes bibliographie;
+Achnanthaceae;Phytoplancton;Famille;Achnanthales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Achnanthales;Phytoplancton;Ordre;Bacillariophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Achnanthes catenata;Phytoplancton;Genre espèce;Achnanthaceae;;;;BILY & MARVAN;1959;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9350.0;ACHCAE;71170.0;ACH.CAE;Achnanthes catenata;R0104;ACTT;cellule;ok;132.3;13.5;3.5;3.5;box;0.8;0.8;266.88;132.3;1.0;266.88;132.3;;;;;;;;;;
+Achnanthes clevei;Phytoplancton;Genre espèce;Achnanthaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9351.0;ACHCLE;71172.0;;;;ACLE;cellule;ok;485.0;20.0;7.5;3.5;box;0.8;0.8;615.63;420.0;1.0;615.63;420.0;;;;;;;;;Valeurs OMNIDIA;
+Achnanthes coarctata;Phytoplancton;Genre espèce;Achnanthaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6880.0;ACHCOA;71171.0;;;;ACOA;cellule;ok;1407.0;16.0;3.5;3.5;box;0.8;0.8;310.63;156.8;1.0;310.63;156.8;;;;;;;;;Valeurs OMNIDIA;
+Achnanthes conspicua;Phytoplancton;Genre espèce;Achnanthaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6882.0;ACHCON;71160.0;ACH.CON;;;ACON;cellule;ok;23.9;6.5;3.5;1.5;box;0.7;0.7;107.86;23.89;1.0;107.86;23.89;;;;;;;;;;
+Achnanthes exigua;Phytoplancton;Genre espèce;Achnanthaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9353.0;ACHEXG;71180.0;;Achnanthes exigua;R0108;AEXG;cellule;ok;190.4;17.0;7.0;2.0;box;0.8;0.8;417.5;190.4;1.0;417.5;190.4;;;;;;;;;;
+Achnanthes exilis;Phytoplancton;Genre espèce;Achnanthaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6904.0;ACHEXI;71130.0;ACH.EXI;Achnanthes exilis;R0109;AEXI;cellule;ok;225.0;20.0;5.0;3.0;box;0.75;0.8;437.5;225.0;1.0;437.5;225.0;;;;;;;;;;
+Achnanthes flexella;Phytoplancton;Genre espèce;Achnanthaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;ACHFLE;71150.0;;Achnanthes;R0117;AFLE;cellule;ok;2511.6;39.0;18.4;5.0;box;0.7;0.7;2870.29;2511.6;1.0;2870.29;2511.6;;;;;;;;;;
+Achnanthes lanceolata;Phytoplancton;Genre espèce;Achnanthaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;Planothidium lanceolatum;Diatomées;20726.0;ACHLAN;71135.0;;Achnanthes lanceolata;R0112;ALAN;cellule;ok;450.8;23.0;7.0;4.0;box;0.6;0.6;936.67;386.4;1.0;936.67;386.4;;;;;;;;;;
+Achnanthes minutissima;Phytoplancton;Genre espèce;Achnanthaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;ACHMIU;71110.0;;Achnanthes minutissima;R0114;AMTY;cellule;ok;315.0;35.0;4.0;3.0;box;0.75;0.8;642.5;315.0;1.0;642.5;315.0;;;;;;;;;;
+Achnanthes sp.;Phytoplancton;Genre espèce;Achnanthaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;ACHSPX;71100.0;ACH.SPX;Achnanthes;R0117;ACHS;cellule;ok;270.0;30.0;4.0;3.0;box;0.75;0.8;555.0;270.0;1.0;555.0;270.0;;;;;;;;;;
+Achnanthidium catenatum;Phytoplancton;Genre espèce;Achnanthaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7074.0;ACDCAT;71173.0;;;;ADCT;cellule;ok;132.3;13.5;3.5;3.5;box;0.8;0.8;266.88;132.3;1.0;266.88;132.3;;;;;;;;;;
+Achnanthidium minutissimum;Phytoplancton;Genre espèce;Achnanthaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Achnanthes minutissima;;Diatomées;7076.0;ACDMIN;71111.0;;;;ADMI;cellule;ok;76.0;15.0;3.5;3.0;box;0.75;0.8;270.0;118.13;1.0;270.0;118.13;;;;;;;;;Valeurs OMNIDIA;
+Achnanthidium sp.;Phytoplancton;Genre espèce;Achnanthaceae;;;espèce;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Achroonema articulatum;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;20047.0;ACRART;11700.0;;Achroonema;R1574;;filament;ok;706.9;3.0;3.0;3.0;trel;1.0;1.0;96.91;14.13;30.0;2907.2;423.9;100.0;3.0;3.0;tub;1.0;1.0;956.13;706.5;;
+Actinastrum aciculare;Phytoplancton;Genre espèce;Coelastraceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9156.0;ACSACI;82612.0;;;;;colonie;ok;414.48;22.0;3.0;3.0;con;1.0;1.0;646.25;51.81;8.0;5170.0;414.48;;;;;;;;;Moyennes bibliographie;
+Actinastrum gracillimum;Phytoplancton;Genre espèce;Coelastraceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20048.0;ACSGRA;82611.0;;;;;colonie;ok;635.85;22.5;3.0;3.0;ell;1.0;1.0;660.83;105.98;6.0;3965.01;635.85;;;;;;;;;Moyennes bibliographie;
+Actinastrum hantzschii;Phytoplancton;Genre espèce;Coelastraceae;;;;LAGERHEIM;1882;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5591.0;ACSHAN;82610.0;ACS.HAN;;;;colonie;ok;4398.2;42.0;5.0;5.0;ell;1.0;1.0;2050.39;549.5;8.0;16403.15;4396.0;;;;;;;;;;
+Alveolata;Phytoplancton;Infra-règne;Biciliata;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Amphidinium sp.;Phytoplancton;Genre espèce;Gymnodiniaceae;;;espèce;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;AMDSPX;20810.0;AMD.SPX;;;;cellule;ok;381.7;10.0;9.0;9.0;ell;0.9;0.9;990.07;381.51;1.0;990.07;381.51;;;;;;;;;;
+Amphikrikos minutissimus;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;John, D.M. & Tsarenko, P.M. (2002). Order Chlorococcales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 327-409. Cambridge: Cambridge University Press.;;;Chlorophycées;5593.0;AMKMIN;85522.0;;;;;cellule;ok;35.259583;5.5;3.5;3.5;ell;1.0;1.0;195.23;35.26;1.0;195.23;35.26;;;;;;;;;Moyennes bibliographie;
+Amphikrikos sp.;Phytoplancton;Genre espèce;Oocystaceae;;;espèce;;;;John, D.M. & Tsarenko, P.M. (2002). Order Chlorococcales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 327-409. Cambridge: Cambridge University Press.;;;Chlorophycées;;AMKSPX;85523.0;;;;;cellule;ok;50.24;6.0;4.0;4.0;ell;1.0;1.0;242.19;50.24;1.0;242.19;50.24;;;;;;;;;Moyennes bibliographie;
+Amphipleuraceae;Phytoplancton;Famille;Naviculales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Amphipleura pellucida;Phytoplancton;Genre espèce;Amphipleuraceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7081.0;AMLPEL;73050.0;AML.PEL;;;APEL;cellule;ok;2520.0;96.0;7.5;5.0;box;0.7;0.7;3535.71;2520.0;1.0;3535.71;2520.0;;;;;;;;;;
+Amphora coffeaeformis;Phytoplancton;Genre espèce;Catenulaceae;;;;(C.AGARDH) KÜTZING;1844;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7096.0;AMPCOF;71660.0;AMP.COF;;;ACOF;cellule;ok;1124.8;37.0;9.5;4.0;box;0.8;0.8;1343.75;1124.8;1.0;1343.75;1124.8;;;;;;;;;;
+Amphora copulata;Phytoplancton;Genre espèce;Catenulaceae;;;;EHRENBERG sensu KRAMMER & LANGE-BERTALOT;1997;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7101.0;AMPCOP;71641.0;AMP.LIB;Amphora libyca;R0128;ACOP;cellule;ok;2492.8;41.0;19.0;4.0;box;0.8;0.8;2547.5;2492.8;1.0;2547.5;2492.8;;;;;;;;;;
+Amphora inariensis;Phytoplancton;Genre espèce;Catenulaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7107.0;AMPINA;71630.0;AMP.INA;Amphora;R0132;AINA;cellule;ok;280.0;20.0;5.0;3.5;box;0.8;0.8;468.75;280.0;1.0;468.75;280.0;;;;;;;;;;
+Amphora libyca;Phytoplancton;Genre espèce;Catenulaceae;;;;EHRENBERG sensu KRAMMER & LANGE-BERTALOT;1997;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7108.0;AMPLIB;71640.0;AMP.LIB;Amphora libyca;R0128;ALIB;cellule;ok;2492.8;41.0;19.0;4.0;box;0.8;0.8;2547.5;2492.8;1.0;2547.5;2492.8;;;;;;;;;;
+Amphora ovalis;Phytoplancton;Genre espèce;Catenulaceae;;;;(KÜTZING) KÜTZING;1844;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;AMPOVA;71610.0;AMP.OVA;Amphora ovalis;R0130;AOVA;cellule;ok;32400.0;60.0;40.0;18.0;box;0.75;0.8;10500.0;32400.0;1.0;10500.0;32400.0;;;;;;;;;;
+Amphora pediculus;Phytoplancton;Genre espèce;Catenulaceae;;;;(KÜTZING) GRUNOW;1875;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7116.0;AMPPED;71620.0;AMP.PED;Amphora pediculus;R0131;APED;cellule;ok;135.0;15.0;4.0;3.0;box;0.75;0.8;292.5;135.0;1.0;292.5;135.0;;;;;;;;;;
+Amphora sp.;Phytoplancton;Genre espèce;Catenulaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;AMPSPX;71600.0;AMP.SPX;Amphora;R0132;AMPS;cellule;ok;4500.0;40.0;15.0;10.0;box;0.75;0.8;2875.0;4500.0;1.0;2875.0;4500.0;;;;;;;;;;
+Anabaena affinis;Phytoplancton;Genre espèce;Nostocaceae;;;;Lemmermann;;;Starmach tom 2;;;Cyanobactéries;;ANAAFF;10729.0;;;;;filament;ok;3077.2;7.0;7.0;7.0;trel;1.0;1.0;490.83;179.5;14.0;6871.65;2513.05;100.0;7.0;7.0;tub;0.8;0.8;2294.16;3077.2;;
+Anabaena aphanizomenoïdes;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;Komarek J, Anagnostidis K, 1989, Modern approach to the classification system of Cyanophytes 4-Nostocales. Arch. Hydrobiol. Suppl., 82: 247-345,;;;Cyanobactéries;;;10732.0;;;;;filament;ok;1256.0;4.0;4.0;4.0;trel;1.0;1.0;166.38;33.49;25.0;4159.4;837.33;100.0;4.0;4.0;tub;1.0;1.0;1281.12;1256.0;Moyennes bibliographie;
+Anabaena bergii;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;Komarek J, Anagnostidis K, 1989, Modern approach to the classification system of Cyanophytes 4-Nostocales. Arch. Hydrobiol. Suppl., 82: 247-345,;;;Cyanobactéries;20050.0;ANABER;10771.0;;Anabaena;R1548;;filament;ok;2123.7;5.2;5.2;5.2;trel;1.0;1.0;275.23;73.58;19.0;5229.28;1398.11;100.0;5.2;5.2;tub;1.0;1.0;1675.25;2122.64;;
+Anabaena bergii var. limneticum;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;Komarek J, Anagnostidis K, 1989, Modern approach to the classification system of Cyanophytes 4-Nostocales. Arch. Hydrobiol. Suppl., 82: 247-345,;;;Cyanobactéries;;;10770.0;;Anabaena;R1548;;filament;ok;2123.7;5.2;5.2;5.2;trel;1.0;1.0;275.23;73.58;19.0;5229.28;1398.11;100.0;5.2;5.2;tub;1.0;1.0;1675.25;2122.64;;
+Anabaena circinalis;Phytoplancton;Genre espèce;Nostocaceae;;;;RABENHORST ex BORNET & FLAHAULT;1888;;Komarek J, Anagnostidis K, 1989, Modern approach to the classification system of Cyanophytes 4-Nostocales. Arch. Hydrobiol. Suppl., 82: 247-345,;;;Cyanobactéries;6280.0;ANACIR;10730.0;ANA.CIR;Anabaena circinalis;R1531;;filament;ok;4021.2;8.0;8.0;8.0;trel;1.0;1.0;637.8;267.95;10.0;6378.01;2679.47;80.0;8.0;8.0;tub;1.0;1.0;2110.08;4019.2;;
+Anabaena circinalis f. tenuis;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;Komarek J, Anagnostidis K, 1989, Modern approach to the classification system of Cyanophytes 4-Nostocales. Arch. Hydrobiol. Suppl., 82: 247-345,;;;Cyanobactéries;;;10731.0;;;;;filament;ok;3072.0;8.0;6.0;8.0;trel;1.0;1.0;561.49;200.96;10.0;5614.9;2009.6;80.0;6.0;8.0;tub;1.0;1.0;1607.68;2260.8;;
+Anabaena flos-aquae;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;Komarek J, Anagnostidis K, 1989, Modern approach to the classification system of Cyanophytes 4-Nostocales. Arch. Hydrobiol. Suppl., 82: 247-345,;;;Cyanobactéries;6282.0;ANAFLO;10720.0;;Anabaena flos-aquae;R1536;;filament;ok;1570.8;5.0;5.0;5.0;trel;1.0;1.0;255.15;65.42;20.0;5102.96;1308.33;100.0;5.0;5.0;tub;1.0;1.0;1609.25;1962.5;;
+Anabaena flos-aquae f. lemmermannii;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;;;;Cyanobactéries;;;10733.0;;;;;filament;ok;961.625;3.5;3.5;3.5;trel;1.0;1.0;129.23;22.44;29.0;3747.8;650.7;100.0;3.5;3.5;tub;1.0;1.0;1118.23;961.63;Moyennes bibliographie;
+Anabaena flos-aquae var. treleasii;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;Komarek J, Anagnostidis K, 1989, Modern approach to the classification system of Cyanophytes 4-Nostocales. Arch. Hydrobiol. Suppl., 82: 247-345,;;;Cyanobactéries;;;10750.0;;Anabaena flos-aquae;R1536;;filament;ok;769.7;3.5;3.5;3.5;trel;1.0;1.0;129.23;22.44;29.0;3747.8;650.7;100.0;3.5;3.5;tub;1.0;1.0;1118.23;961.63;;
+Anabaena macrospora;Phytoplancton;Genre espèce;Nostocaceae;;;;KLEBAHN;1895;;Komarek J, Anagnostidis K, 1989, Modern approach to the classification system of Cyanophytes 4-Nostocales. Arch. Hydrobiol. Suppl., 82: 247-345,;;;Cyanobactéries;6284.0;ANAMAC;10740.0;ANA.MAC;Anabaena macrospora;R1540;;filament;ok;6358.5;9.0;9.0;9.0;trel;1.0;1.0;804.21;381.51;11.0;8846.32;4196.61;100.0;9.0;9.0;tub;1.0;1.0;2953.17;6358.5;;
+Anabaena oscillarioides;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;;;;Cyanobactéries;;;10739.0;;;;;filament;ok;1962.5;5.0;5.0;5.0;trel;1.0;1.0;255.15;65.42;20.0;5102.96;1308.33;100.0;5.0;5.0;tub;1.0;1.0;1609.25;1962.5;;
+Anabaena oscillarioides f. elliptica;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;;;;Cyanobactéries;;;10734.0;;;;;filament;ok;1962.5;5.0;5.0;5.0;trel;1.0;1.0;255.15;65.42;20.0;5102.96;1308.33;100.0;5.0;5.0;tub;1.0;1.0;1609.25;1962.5;Moyennes bibliographie;
+Anabaena solitaria;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;;;;Cyanobactéries;;ANASOL;10735.0;;;;;filament;ok;4317.5;11.0;11.0;5.0;trel;1.0;1.0;905.85;316.62;9.0;8152.61;2849.55;100.0;11.0;5.0;tub;1.0;1.0;3493.25;9498.5;Moyennes bibliographie;
+Anabaena solitaria var. planctonica;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;;;;Cyanobactéries;;;10736.0;;;;;filament;ok;2355.0;7.5;7.5;4.0;trel;1.0;1.0;442.71;117.75;13.0;5755.17;1530.75;100.0;7.5;4.0;tub;1.0;1.0;2380.12;4415.63;Moyennes bibliographie;
+Anabaena sp.;Phytoplancton;Genre espèce;Nostocaceae;;;espèce;;;;Komarek J, Anagnostidis K, 1989, Modern approach to the classification system of Cyanophytes 4-Nostocales. Arch. Hydrobiol. Suppl., 82: 247-345,;;;Cyanobactéries;;ANASPX;10700.0;ANA.SPX;Anabaena sp.;R1548;;filament;ok;1005.3;4.0;4.0;4.0;trel;1.0;1.0;166.38;33.49;25.0;4159.4;837.33;100.0;4.0;4.0;tub;1.0;1.0;1281.12;1256.0;;
+Anabaena spiroides;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;;;;Cyanobactéries;6288.0;ANASPI;10737.0;;;;;filament;ok;3846.5;7.0;7.0;7.0;trel;1.0;1.0;490.83;179.5;14.0;6871.65;2513.05;100.0;7.0;7.0;tub;1.0;1.0;2274.93;3846.5;Moyennes bibliographie;
+Anabaena spiroides f. minima;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;;;;Cyanobactéries;;;10738.0;;;;;filament;ok;3846.5;7.0;7.0;7.0;trel;1.0;1.0;490.83;179.5;14.0;6871.65;2513.05;100.0;7.0;7.0;tub;1.0;1.0;2274.93;3846.5;Moyennes bibliographie;
+Ankistrodesmaceae;Phytoplancton;Famille;Sphaeropleales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Ankistrodesmus bibraianus erreur;Phytoplancton;Genre espèce;Chlorellaceae;;;;(REINSCH) KORSHIKOV;1953;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;81630.0;;;;;cellule;erreur;3848.5;;;;;;;;;;;;100.0;7.0;7.0;;1.0;;;;;
+Ankistrodesmus falcatus;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5925.0;ANKFAL;81631.0;;;;;colonie;ok;4097.7;43.5;3.0;3.0;ell;1.0;1.0;1274.06;204.89;20.0;25481.27;4097.7;55.0;55.0;55.0;trel;0.1;10.0;2951.91;8706.96;Moyennes bibliographie;
+Ankistrodesmus fusiformis;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5926.0;ANKFUS;81632.0;;;;;colonie;ok;330.74667;39.5;2.0;2.0;ell;1.0;1.0;771.46;82.69;4.0;3085.86;330.75;40.0;40.0;40.0;trel;0.1;10.0;1562.4;3349.33;Moyennes bibliographie;
+Ankistrodesmus gracilis;Phytoplancton;Genre espèce;Chlorellaceae;;;;(REINSCH) KORSHIKOV;1953;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;ANKGRA;81650.0;ANK.GRA;Ankistrodesmus gracilis;R0482;;cellule;ok;15.1;40.0;1.2;1.2;ell;1.0;1.0;468.72;30.14;1.0;468.72;30.14;;;;;;;;;;
+Ankistrodesmus nannoselene;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5924.0;ANKNAN;81640.0;ANK.NAN;Ankistrodesmus;R0484;;cellule;ok;4.1;7.0;1.5;1.5;ell;1.0;1.0;105.18;8.24;1.0;105.18;8.24;;;;;;;;;;
+Ankistrodesmus sp.;Phytoplancton;Genre espèce;Chlorellaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;ANKSPX;81600.0;ANK.SPX;;;;cellule;ok;100.0;50.0;4.0;4.0;ell;0.8;0.8;2440.01;334.93;1.0;2440.01;334.93;;;;;;;;;;
+Ankyra flagellé zoospore;Phytoplancton;Genre espèce;Characiaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;80969.0;;Ankyra;R0491;;cellule;ok;169.0;6.0;6.0;6.0;ell;1.0;1.0;363.29;113.04;1.0;363.29;113.04;;;;;;;;;;
+Ankyra inerme;Phytoplancton;Genre espèce;Characiaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5595.0;ANYINE;80940.0;ANY.INE;Ankyra;R0491;;cellule;ok;29.5;18.0;2.5;2.5;ell;1.0;1.0;441.36;58.88;1.0;441.36;58.88;;;;;;;;;;
+Ankyra judayi;Phytoplancton;Genre espèce;Characiaceae;;;;(G.M.SMITH) FOTT;1957;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Korshikoviella judayi;;Chlorophycées;5596.0;ANYJUD;80910.0;ANY.JUD;Ankyra judayi;R0489;;cellule;ok;58.9;25.0;3.0;3.0;ell;1.0;1.0;733.78;117.75;1.0;733.78;117.75;;;;;;;;;;
+Ankyra lanceolata;Phytoplancton;Genre espèce;Characiaceae;;;;(KORSHIKOV) FOTT;1957;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Ankyra ancora;;Chlorophycées;;ANYLAN;80950.0;;Ankyra lanceolata;R0490;;cellule;ok;104.2;65.0;3.5;3.5;ell;0.6;0.6;3699.17;250.02;1.0;3699.17;250.02;;;;;;;;;;
+aphanizomenon flexuosum;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Aphanizomenon flos-aquae;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;Komarek J, Anagnostidis K, 1989, Modern approach to the classification system of Cyanophytes 4-Nostocales. Arch. Hydrobiol. Suppl., 82: 247-345,;;;Cyanobactéries;6291.0;APHFLO;10810.0;;Aphanizomenon flos-aquae;R1558;;filament;ok;1963.0;5.0;5.0;5.0;trel;1.0;1.0;255.15;65.42;20.0;5102.96;1308.33;100.0;5.0;5.0;tub;1.0;1.0;1609.25;1962.5;;
+Aphanizomenon flos-aquae var. gracile;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;;;;Cyanobactéries;;APHFGR;10811.0;;;;;filament;ok;961.625;5.0;3.5;3.5;trel;1.0;1.0;178.6;32.05;20.0;3572.07;641.08;100.0;3.5;3.5;tub;1.0;1.0;1118.23;961.63;Moyennes bibliographie;
+Aphanizomenon issatschenkoi;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;;;;Cyanobactéries;9668.0;APHISS;10812.0;;;;;filament;ok;7850.0;10.0;3.5;3.5;trel;1.0;1.0;346.52;64.11;10.0;3465.25;641.08;100.0;10.0;3.5;tub;1.0;1.0;3159.23;7850.0;Moyennes bibliographie;
+Aphanocapsa;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;;;;Cyanobactéries;6307.0;;10263.0;;;;;colonie;ok;209.33333;2.0;2.0;2.0;trel;1.0;1.0;46.6;4.19;50.0;2329.94;209.33;50.0;50.0;50.0;trel;0.1;1.0;24400.08;6541.67;Moyennes bibliographie;
+Aphanocapsa conferta;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;;;;Cyanobactéries;6309.0;;11709.0;;;;;colonie;ok;179.97957;1.7;1.7;1.7;trel;1.0;1.0;35.2;2.57;70.0;2463.79;179.98;50.0;50.0;50.0;trel;0.1;1.0;24400.08;6541.67;;
+Aphanocapsa conferta erreur;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;Aphanocapsa elachista var. conferta;;Cyanobactéries;;;11710.0;;;;;colonie;erreur;5240.0;1.7;1.7;1.7;trel;1.0;1.0;35.2;2.57;70.0;2463.79;179.98;50.0;50.0;50.0;trel;0.1;1.0;24400.08;6541.67;Genève;
+Aphanocapsa delicatissima;Phytoplancton;Genre espèce;Merismopediaceae;;;;W. & G.S.WEST;1912;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;Microcystis delicatissima;;Cyanobactéries;6308.0;APADEL;10670.0;APA.DEL;Microcystis delicatissima;R1484;;colonie;ok;17950.334;0.75;0.75;0.75;trel;1.0;1.0;9.93;0.22;4000.0;39705.82;883.13;70.0;70.0;70.0;trel;0.1;1.0;47800.4;17950.33;;
+Aphanocapsa delicatissima (cellules isolées);Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;;Microcystis delicatissima;;Cyanobactéries;;;10671.0;;;;;cellule;ok;0.22078125;0.75;0.75;0.75;sphe;1.0;1.0;1.77;0.22;1.0;1.77;0.22;;;;;;;;;Moyennes bibliographie;
+Aphanocapsa delicatissima colonie 10 µm;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;;;;Cyanobactéries;;;10673.0;;;;;colonie;ok;52.333332;0.75;0.75;0.75;trel;1.0;1.0;9.93;0.22;20.0;198.53;4.42;10.0;10.0;10.0;trel;0.1;1.0;990.07;52.33;;
+Aphanocapsa delicatissima colonie 10 µm erreur;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10672.0;;Microcystis delicatissima;;;colonie;erreur;471.0;0.75;0.75;0.75;trel;1.0;1.0;9.93;0.22;20.0;198.53;4.42;10.0;10.0;10.0;trel;0.1;1.0;990.07;52.33;Aigubelette 2009;
+Aphanocapsa elachista;Phytoplancton;Genre espèce;Merismopediaceae;;;;W. & G.S.WEST;1894;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6310.0;APAELA;11711.0;APA.ELA;;;;colonie;ok;314.2;2.0;2.0;2.0;trel;1.0;1.0;46.6;4.19;75.0;3494.91;314.0;15.0;15.0;15.0;trel;0.1;1.0;2211.34;176.63;;
+Aphanocapsa elachista colonie 10 µm;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;;;;Cyanobactéries;;;11713.0;APA.E10;;;;colonie;ok;157.0;2.0;2.0;2.0;trel;1.0;1.0;46.6;4.19;35.0;1630.96;146.53;10.0;10.0;10.0;trel;0.1;1.0;990.07;52.33;Moyenne Annecy GL - 23/09/09;
+Aphanocapsa elachista var. conferta;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;Microcystis elachista var. conferta;Aphanocapsa conferta;Cyanobactéries;20056.0;APAECO;10220.0;APA.CON;Microcystis elachista;R1485;;colonie;ok;5240.0;2.0;2.0;2.0;trel;1.0;1.0;46.6;4.19;1250.0;58248.5;5233.33;50.0;50.0;50.0;trel;0.1;1.0;24400.08;6541.67;;
+Aphanocapsa grevillei;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;Microcystis grevillei;;Cyanobactéries;6311.0;APAGRE;10240.0;APA.GRE;Microcystis grevillei;R1488;;colonie;ok;5236.0;4.5;4.5;4.5;trel;1.0;1.0;208.34;47.69;110.0;22917.84;5245.76;100.0;100.0;100.0;trel;0.01;1.0;97522.27;5233.33;;
+Aphanocapsa grevillei (cellules isolées);Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;;Microcystis grevillei;;Cyanobactéries;;;10241.0;;;;;cellule;ok;47.68875;4.5;4.5;4.5;sphe;1.0;1.0;63.59;47.69;1.0;63.59;47.69;;;;;;;;;Moyennes bibliographie;
+Aphanocapsa holsatica;Phytoplancton;Genre espèce;Merismopediaceae;;;;(LEMMERMANN) CRONBERG & KOMÁREK;1994;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6312.0;APAHOL;10675.0;APA.HOL;Aphanocapsa holsatica;R1415;;colonie;ok;654.5;1.5;1.5;1.5;trel;1.0;1.0;28.53;1.77;370.0;10554.83;653.51;50.0;50.0;50.0;trel;0.01;1.0;24400.08;654.17;;
+Aphanocapsa holsatica (cellules isolées);Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;;;;Cyanobactéries;;;10676.0;;;;;cellule;ok;1.76625;1.5;1.5;1.5;sphe;1.0;1.0;7.07;1.77;1.0;7.07;1.77;;;;;;;;;Moyennes bibliographie;
+Aphanocapsa holsatica colonie 10 µm;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;;;;Cyanobactéries;;;10677.0;APA.HOL;Aphanocapsa holsatica;R1415;;colonie;ok;10.466666;1.5;1.5;1.5;trel;1.0;1.0;28.53;1.77;6.0;171.16;10.6;10.0;10.0;10.0;trel;0.02;1.0;990.07;10.47;Moyenne Annecy;
+Aphanocapsa incerta;Phytoplancton;Genre espèce;Merismopediaceae;;;;(LEMMERMANN) CRONBERG & KOMÁREK;1994;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;Microcystis incerta;;Cyanobactéries;6313.0;APAINC;10260.0;APA.INC;;;;colonie;ok;15714.5;1.0;1.0;1.0;trel;1.0;1.0;15.03;0.52;130.0;1954.43;68.03;35.0;35.0;35.0;trel;0.7;1.0;11967.01;15706.54;;
+Aphanocapsa incerta (50 cellules);Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;;Microcystis incerta;;Cyanobactéries;;;10261.0;;;;;colonie;ok;26.166666;1.0;1.0;1.0;trel;1.0;1.0;15.03;0.52;50.0;751.7;26.17;50.0;50.0;50.0;trel;0.1;1.0;24400.08;6541.67;Moyennes bibliographie;susswasserflora 19-1- p 149
+Aphanocapsa musicola;Phytoplancton;Genre espèce;Merismopediaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;11712.0;;Aphanocapsa;R1423;;colonie;ok;1497.5;3.1;3.1;3.1;trel;1.0;1.0;102.99;15.59;96.0;9886.85;1496.7;70.0;70.0;70.0;trel;0.1;1.0;47800.4;17950.33;;
+Aphanocapsa nubilum colonie 20 µm;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;;10267;;;;colonie;ok;706.9;3.0;3.0;3.0;trel;1.0;1.0;96.9067;14.13;30.0;2907.201;423.9;100.0;3.0;3.0;tub;1.0;1.0;956.13;706.5;;
+Aphanocapsa parasitica f. dinobryonis;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;11720.0;;Aphanocapsa;R1423;;colonie;ok;210.2;1.9;1.9;1.9;trel;1.0;1.0;42.61;3.59;100.0;4261.09;358.95;20.0;9.0;9.0;trel;0.1;1.0;1763.78;84.78;;
+Aphanocapsa parasitica f. dinobryonis cellule isolée;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;11721.0;;;;;cellule;ok;3.5895433;1.9;1.9;1.9;ell;1.0;1.0;42.61;3.59;1.0;42.61;3.59;;;;;;;;;;
+Aphanocapsa planctonica;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;APAPLA;10261.0;;;;;colonie;ok;23445.334;2.5;2.5;2.5;trel;1.0;1.0;69.37;8.18;2900.0;201180.02;23713.54;40.0;40.0;40.0;trel;0.7;1.0;15624.05;23445.33;Moyenne sur Annecy 20087;
+Aphanocapsa planctonica colonie 10 µm;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;;;;Cyanobactéries;;;10264.0;;;;;colonie;ok;366.33334;2.5;2.5;2.5;trel;1.0;1.0;69.37;8.18;47.0;3260.5;384.32;10.0;10.0;10.0;trel;0.7;1.0;990.07;366.33;Moyenne Bourget 2009;
+Aphanocapsa planctonica colonie 50 µm;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;;;;Cyanobactéries;20036.0;APAPLA;10268.0;APA.PLA;;;;colonie;ok;45791.668;2.5;2.5;2.5;trel;1.0;1.0;69.37242;8.177083;8500.0;589665.56;69505.21;50.0;50.0;50.0;trel;0.7;1.0;24400.082;45791.668;Moyenne Bourget 2016;
+Aphanocapsa sp.;Phytoplancton;Genre espèce;Merismopediaceae;;;espèce;;;;;;;Cyanobactéries;;APASPX;10262.0;;;;;colonie;ok;209.33333;2.0;2.0;2.0;trel;1.0;1.0;46.6;4.19;50.0;2329.94;209.33;15.0;15.0;15.0;trel;0.1;1.0;2211.34;176.63;Moyennes bibliographie;
+Aphanothece clathrata;Phytoplancton;Genre espèce;Synechococcaceae;;;;W. & G.S.WEST;1906;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6349.0;APOCLA;10310.0;APO.CLA;Aphanothece clathrata;R1427;;colonie;ok;5236.0;2.5;1.0;1.0;trel;1.0;1.0;27.75;1.31;4000.0;110995.87;5233.33;100.0;100.0;100.0;;0.01;;;;;
+Aphanothece clathrata var. rosea;Phytoplancton;Genre espèce;Synechococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6347.0;APOROS;10320.0;APO.ROS;Aphanothece clathrata;R1427;;colonie;ok;5236.0;2.5;1.0;1.0;trel;1.0;1.0;27.75;1.31;4000.0;110995.87;5233.33;100.0;100.0;100.0;;0.01;;;;;
+Aphanothece clathrata var. rosea colonie 10 µm;Phytoplancton;Genre espèce;Synechococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10322.0;;;;;colonie;ok;5.233333;2.5;1.0;1.0;trel;1.0;1.0;27.75;1.31;7.0;194.24;9.16;10.0;10.0;10.0;;0.01;;;;;
+Aphanothece elabens;Phytoplancton;Genre espèce;Synechococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;20058.0;APOELA;10321.0;;;;;colonie;ok;141.3;5.0;2.0;2.0;trel;1.0;1.0;102.06;10.47;13.0;1326.77;136.07;30.0;30.0;30.0;;0.01;;;;Mesure sur Annecy 2007;
+Aphanothece nidulans colonie 10 µm;Phytoplancton;Genre espèce;Synechococcaceae;;;;Richter;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;Aphanothece saxicola f. nidulans;;Cyanobactéries;;;13023.0;;;;;colonie;ok;52.333332;3.0;1.5;1.5;trel;1.0;1.0;48.45;3.53;10.0;484.53;35.33;10.0;10.0;10.0;;0.1;;;;Moyennes bibliographie;
+Aphanothece saxicola;Phytoplancton;Genre espèce;Synechococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6352.0;APOSAX;10330.0;APO.SAX;Aphanothece;R1432;;colonie;ok;314.0;2.0;1.0;1.0;trel;1.0;1.0;23.3;1.05;300.0;6989.82;314.0;20.0;20.0;20.0;trel;0.1;1.0;3919.52;418.67;Mesures sur rivières Morcille hiver 2007-2008 (colonies de 300 cellules. colonies de 56*35*35);susswasserflora 19-1- p 83
+Aphanothece sp.;Phytoplancton;Genre espèce;Synechococcaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;APOSPX;10300.0;APO.SPX;;;;colonie;ok;5236.0;2.5;1.0;1.0;trel;1.0;1.0;27.75;1.31;4000.0;110995.87;5233.33;100.0;100.0;100.0;;0.01;;;;;
+Aphanothece sp. 1;Phytoplancton;Genre espèce;Synechococcaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10301.0;APO.SP1;;;;colonie;ok;58.875;5.0;1.5;1.5;trel;1.0;1.0;76.54;5.89;10.0;765.44;58.88;10.0;10.0;10.0;trel;0.1;1.0;990.07;52.33;Mesures sur Morcille hiver 2007-2008 (ecotox Aurelie Villeneuve);
+Aphanothece sp. (cellules isolées);Phytoplancton;Genre espèce;Synechococcaceae;;;espèce;;;;;;;Cyanobactéries;;;10302.0;;;;;cellule;ok;1.1775;1.5;1.0;1.0;tub;1.0;1.0;6.28;1.18;1.0;6.28;1.18;;;;;;;;;Moyennes bibliographie;
+Aphanothecoidea sp.;Phytoplancton;Genre espèce;Synechococcaceae;;;espèce;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Aphanothecoidea sp. erreur;Phytoplancton;Genre espèce;Synechococcaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10001.0;;Cyanophyceae sp.;R1514;;cellule;erreur;3053.6;1.5;1.0;1.0;;;;;;15.0;0.0;0.0;18.0;18.0;18.0;;1.0;;;;;
+Asterionella formosa;Phytoplancton;Genre espèce;Fragilariaceae;;;;HASSALL;1856;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;4860.0;ASTFOR;70710.0;AST.FOR;Asterionella formosa;R0135;AFOR;cellule;ok;260.0;65.0;2.0;2.0;box;1.0;1.0;528.0;260.0;1.0;528.0;260.0;;;;;;;;;;
+Aulacoseira ambigua;Phytoplancton;Genre espèce;Aulacoseiraceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8554.0;AULAMB;70114.0;;;;AAMB;cellule;ok;779.0;10.5;9.0;9.0;tub;1.0;1.0;423.9;667.64;1.0;423.9;667.64;;;;;;;;;Valeurs OMNIDIA;
+Aulacoseiraceae;Phytoplancton;Famille;Aulacoseirales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Aulacoseira cf ambigua;Phytoplancton;Genre espèce;Aulacoseiraceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70111.0;;;;AAMB;cellule;ok;779.0;10.5;9.0;9.0;tub;1.0;1.0;423.9;667.64;1.0;423.9;667.64;;;;;;;;;Valeurs OMNIDIA;
+Aulacoseira distans;Phytoplancton;Genre espèce;Aulacoseiraceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8555.0;AULDIS;70112.0;;;;AUDI;cellule;ok;339.12;12.0;6.0;6.0;tub;1.0;1.0;282.6;339.12;1.0;282.6;339.12;;;;;;;;;Moyennes bibliographie;
+Aulacoseira granulata;Phytoplancton;Genre espèce;Aulacoseiraceae;;;;(EHRENBERG) SIMONSEN;1979;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8559.0;AULGRA;70115.0;AUL.GRA;Aulacoseira granulata;R0023;AUGR;cellule;ok;1920.0;30.0;8.0;8.0;tub;1.0;1.0;854.08;1507.2;1.0;854.08;1507.2;;;;;;;;;;
+Aulacoseira granulata var. angustissima;Phytoplancton;Genre espèce;Aulacoseiraceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Melosira;;Diatomées;8561.0;AULANG;70110.0;AUL.ANG;Aulacoseira granulata v. angustissima;R0024;AUGA;cellule;ok;452.4;36.0;4.0;4.0;tub;1.0;1.0;477.28;452.16;1.0;477.28;452.16;;;;;;;;;;
+Aulacoseira granulata var. angustissima f. curvata;Phytoplancton;Genre espèce;Aulacoseiraceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70113.0;;;;AGCU;cellule;ok;908.0;17.0;4.0;4.0;tub;1.0;1.0;238.64;213.52;1.0;238.64;213.52;;;;;;;;;Valeurs OMNIDIA;
+Aulacoseira islandica subsp. helvetica;Phytoplancton;Genre espèce;Aulacoseiraceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Melosira;;Diatomées;;;70120.0;;Aulacoseira islandica v. helvetica;R0027;AIHE;cellule;ok;3392.9;30.0;12.0;12.0;tub;1.0;1.0;1356.48;3391.2;1.0;1356.48;3391.2;;;;;;;;;;
+Aulacoseirales;Phytoplancton;Ordre;Coscinodiscophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Aulacoseira muzzanensis;Phytoplancton;Genre espèce;Aulacoseiraceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;11090.0;AULMUZ;70121.0;;;;AMUZ;cellule;ok;1283.0;16.5;6.0;6.0;tub;1.0;1.0;367.38;466.29;1.0;367.38;466.29;;;;;;;;;Valeurs OMNIDIA;
+Aulacoseira sp.;Phytoplancton;Genre espèce;Aulacoseiraceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;AULSPX;70122.0;;;;AULS;cellule;ok;904.32;18.0;8.0;8.0;tub;1.0;1.0;552.64;904.32;1.0;552.64;904.32;;;;;;;;;Données Jean-Claude Druart;
+Aulacoseira subarctica;Phytoplancton;Genre espèce;Aulacoseiraceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8576.0;AULSUB;70123.0;;;;AUSU;cellule;ok;668.0;9.0;10.5;10.5;tub;1.0;1.0;469.82;778.92;1.0;469.82;778.92;;;;;;;;;Valeurs OMNIDIA;
+Aulomonas purdyi;Phytoplancton;Genre espèce;Salpingoecidae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;20060.0;AUOPUR;50632.0;;;;;cellule;ok;55.42257;6.3;4.1;3.0;ell;1.0;1.0;226.74;40.55;1.0;226.74;40.55;;;;;;;;;Moyennes bibliographie;
+Bacillariaceae;Phytoplancton;Famille;Bacillariales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Bacillariales;Phytoplancton;Ordre;Bacillariophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Bacillariophyceae;Phytoplancton;Classe;Bacillariophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Bacillariophycidae;Phytoplancton;Classe;Bacillariophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Bacillariophyta;Phytoplancton;Embranchement;Heterokonta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Bacteria;Phytoplancton;Règne;Prokaryota;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Biciliata;Phytoplancton;Sous-règne;Protozoa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+bicoeca alascana;Phytoplancton;Genre espèce;Bicosoecaceae;;;;Hilliard;;;;;;Chrysophycées;;;50913.0;;;;;cellule;ok;65.42;5.0;5.0;5.0;ell;1.0;1.0;255.15;65.42;1.0;255.15;65.42;;;;;;;;;Moyennes bibliographie;
+Bicoeca campanulata;Phytoplancton;Genre espèce;Bicosoecaceae;;;;(Lackey) Bourrelly;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;6104.0;BICCAM;50910.0;BIC.CAM;Bicosoeca campanulata;R0458;;cellule;ok;968.7;37.0;10.0;10.0;ell;0.5;0.5;7227.76;968.17;1.0;7227.76;968.17;;;;;;;;;;
+Bicoeca cf. campanulata petit morphotype;Phytoplancton;Genre espèce;Bicosoecaceae;;;espèce;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;;;50911.0;;;;;cellule;ok;1059.75;18.0;15.0;15.0;con;0.5;0.5;5296.34;529.88;1.0;5296.34;529.88;;;;;;;;;Annecy GL - cloche 0-18 - 17/01/2007;
+Bicoeca cf paropsis;Phytoplancton;Genre espèce;Bicosoecaceae;;;espèce;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;;;50912.0;;;;;cellule;ok;134.56209;8.5;5.5;5.0;ell;1.0;1.0;444.13;122.33;1.0;444.13;122.33;;;;;;;;;Moyennes bibliographie;
+Bicoeca cylindrica;Phytoplancton;Genre espèce;Bicosoecaceae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;6105.0;BICCYL;50940.0;BIC.CYL;;;;cellule;ok;669.9;20.0;8.0;8.0;ell;0.5;0.5;3135.61;334.93;1.0;3135.61;334.93;;;;;;;;;;
+Bicoeca ovata;Phytoplancton;Genre espèce;Bicosoecaceae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;6106.0;BICOVA;50920.0;BIC.OVA;Stephanocodon socialis;R0466;;cellule;ok;402.0;24.0;8.0;8.0;ell;0.5;0.5;3757.84;401.92;1.0;3757.84;401.92;;;;;;;;;;
+Bicoeca planctonica;Phytoplancton;Genre espèce;Bicosoecaceae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;;;50921.0;;;;;cellule;ok;1096.8413;11.5;13.5;9.0;ell;1.0;1.0;1292.27;731.23;1.0;1292.27;731.23;;;;;;;;;Moyennes bibliographie;
+Bicoeca pulchra;Phytoplancton;Genre espèce;Bicosoecaceae;;;;;;;;;;;;BICPLA;50922.0;;;;;cellule;ok;523.33;;;;;;;;;;;;;;;;;;;;;
+Bicoeca sp.;Phytoplancton;Genre espèce;Bicosoecaceae;;;espèce;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;;BICSPX;50900.0;BIC.SPX;Bicosoeca;R0464;;cellule;ok;530.1;25.0;9.0;9.0;ell;0.5;0.5;4402.65;529.88;1.0;4402.65;529.88;;;;;;;;;;
+Bicoeca stellata;Phytoplancton;Genre espèce;Bicosoecaceae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;6109.0;BICSTE;50930.0;BIC.STE;Bicosoeca;R0464;;cellule;ok;240.3;17.0;6.0;6.0;ell;0.5;0.5;2002.0;160.14;1.0;2002.0;160.14;;;;;;;;;;
+Bicosoecaceae;Phytoplancton;Famille;Bicosoecales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Bicosoecales;Phytoplancton;Ordre;Bicosoecophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Bicosoecophyceae;Phytoplancton;Classe;Opalozoa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Bitrichia chodatii;Phytoplancton;Genre espèce;Stylococcaceae;;;;(REVERDIN) CHODAT;1926;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6111.0;BITCHO;50110.0;BIT.CHO;Bitrichia chodatii;R1155;;cellule;ok;294.5;15.0;5.0;5.0;ell;1.0;1.0;737.11;196.25;1.0;737.11;196.25;;;;;;;;;;
+Bitrichia danubiensis;Phytoplancton;Genre espèce;Stylococcaceae;;;;JURIS;1967;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;BITDAN;50112.0;;;;;cellule;ok;220.8;7.5;7.5;7.5;ell;1.0;1.0;561.89;220.78;1.0;561.89;220.78;;;;;;;;;;
+Bitrichia longispina;Phytoplancton;Genre espèce;Stylococcaceae;;;;LUND;1957;;;;;Chrysophycées;24391.0;BITLON;;;;;;;;266.0;;;;;;;;;;;;;;;;;;;;;
+Bitrichia ollula;Phytoplancton;Genre espèce;Stylococcaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6112.0;BITOLL;50111.0;BIT.OLL;Bitrichia ollula;R1159;;cellule;ok;268.0;8.0;8.0;8.0;ell;1.0;1.0;637.8;267.95;1.0;637.8;267.95;;;;;;;;;;
+Boriziaceae;Phytoplancton;Famille;Oscillatoriales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Botryococcaceae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Botryococcus braunii;Phytoplancton;Genre espèce;Dictyosphaerioideae;;;;KÜTZING;1849;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5599.0;BOTBRA;81910.0;BOT.BRA;Botryococcus braunii;R0493;;colonie;ok;1750.0;9.0;4.5;4.5;ell;1.0;1.0;402.11;95.38;32.0;12867.38;3052.08;60.0;30.0;30.0;trel;0.9;1.2;14635.63;25434.0;;
+Brachysiraceae;Phytoplancton;Famille;Naviculales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Brachysira neoexilis;Phytoplancton;Genre espèce;Brachysiraceae;;;;;;;;;;Diatomées;;BRANEO;70400.0;;;;BNEO;cellule;ok;65.625;15.0;3.5;2.5;rhp;1.0;1.0;111.0;65.63;1.0;111.0;65.63;;;;;;;;;;
+Caloneis sp.;Phytoplancton;Genre espèce;Naviculaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;CALSPX;70720.0;CAL.SPX;;;CALS;cellule;ok;840.0;40.0;6.0;5.0;box;0.7;0.7;1342.86;840.0;1.0;1342.86;840.0;;;;;;;;;;
+Calothrix sp.;Phytoplancton;Genre espèce;Oscillatoriaceae;;;espèce;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;CAOSPX;11800.0;CAO.SPX;Nostocales;R1573;;filament;ok;580.0;4.0;3.5;3.5;tub;0.8;0.8;68.0;30.77;15.0;1020.01;461.58;60.4;3.5;3.5;tub;0.92;0.92;684.7;534.36;;
+Calycomonas pascheri;Phytoplancton;Genre espèce;Chrysococcaceae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;;;58001.0;;;;;cellule;ok;1149.7633;13.0;13.0;13.0;ell;1.0;1.0;1664.42;1149.76;1.0;1664.42;1149.76;;;;;;;;;Moyennes bibliographie;
+Campylodiscus noricus;Phytoplancton;Genre espèce;Surirellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7204.0;CAMNOR;73060.0;CAM.NOR;Campylodiscus noricus;R0146;CNRC;cellule;ok;177336.6;112.0;112.0;20.0;box;0.9;0.9;37831.11;225792.0;1.0;37831.11;225792.0;;;;;;;;;;
+Carteria multifilis;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;;;;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;6014.0;CARMUL;80220.0;CAR.MUL;Carteria;R0923;;cellule;ok;6370.6;23.0;23.0;23.0;ell;1.0;1.0;5178.22;6367.4;1.0;5178.22;6367.4;;;;;;;;;;
+Carteria sp.;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;espèce;;;;;;;Chlorophycées;;CARSPX;80221.0;;;;;cellule;ok;955.9;15.0;11.0;11.0;ell;1.0;1.0;1621.65;949.85;1.0;1621.65;949.85;;;;;;;;;;
+carteria wisconsinensis;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;;Huber-Pestalozzi;1961;;Susswasserflora 9-Ettl;Carteria klebsii;;Chlorophycées;;;80222.0;CAR.WIS;;;;cellule;ok;353.25;12.0;7.5;7.5;ell;1.0;1.0;887.6074;353.25;1.0;887.6074;353.25;;;;;;;;;Moyennes bibliographie;
+Catenulaceae;Phytoplancton;Famille;Thalassiophysales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cellule de Dinobryon;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50363.0;;;;;cellule;ok;105.33334;10.0;5.0;5.0;trel;0.8;0.8;618.79;104.67;1.0;618.79;104.67;;;;;;;;;Moyenne Léman 2010;
+Centriques inf10µm;Phytoplancton;Genre espèce;Stephanodiscaceae;;;famille;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70213.0;;;;;cellule;ok;108.0;6.0;6.0;3.0;box;1.0;1.0;144.0;108.0;1.0;144.0;108.0;;;;;;;;;Moyennes bibliographie;
+Centriques sup 10µm;Phytoplancton;Genre espèce;Stephanodiscaceae;;;famille;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70214.0;;;;;cellule;ok;720.0;12.0;12.0;5.0;box;1.0;1.0;528.0;720.0;1.0;528.0;720.0;;;;;;;;;Moyennes bibliographie;
+Centriques (Cyclotella + Stephanodiscus);Phytoplancton;Genre espèce;Stephanodiscaceae;;;famille;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70212.0;;;;;cellule;ok;108.0;6.0;6.0;3.0;box;1.0;1.0;144.0;108.0;1.0;144.0;108.0;;;;;;;;;Moyennes bibliographie;
+Centriques  spp.;Phytoplancton;Genre espèce;Stephanodiscaceae;;;famille;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70211.0;;;;CTRQ;cellule;ok;108.0;6.0;6.0;3.0;box;1.0;1.0;144.0;108.0;1.0;144.0;108.0;;;;;;;;;Moyennes bibliographie;
+Centritactaceae;Phytoplancton;Famille;Mischococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Centritractus belenophorus;Phytoplancton;Genre espèce;Centritactaceae;;;;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;6228.0;CETBEL;62001.0;;;;;cellule;ok;2906.855;28.0;11.5;5.0;tub;1.0;1.0;1050.33;2906.86;1.0;1050.33;2906.86;;;;;;;;;Moyennes bibliographie;
+Ceratiaceae;Phytoplancton;Famille;Peridiniales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Ceratium hirundinella;Phytoplancton;Genre espèce;Ceratiaceae;;;;(O.F.MÜLLER) DUJARDIN;1841;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6553.0;CERHIR;20410.0;CER.HIR;Ceratium hirundinella;R1672;;cellule;ok;39269.9;60.0;50.0;25.0;ell;1.0;1.0;22681.92;39250.0;1.0;22681.92;39250.0;;;;;;;;;;
+cf. Katodinium fongiforme;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20910.0;;Katodinium;R1664;;cellule;ok;145.0;10.0;7.0;5.0;ell;0.7;0.7;855.7;128.22;1.0;855.7;128.22;;;;;;;;;;
+cf Mantellum sp.;Phytoplancton;Genre espèce;Merismopediaceae;;;genre;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;11900.0;;;;;colonie;ok;33.5;4.0;4.0;4.0;ell;1.0;1.0;166.38;33.49;1.0;166.38;33.49;;;;;;;;;;
+Chaetocerotales;Phytoplancton;Ordre;Coscinodiscophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Characiaceae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Characiaceae sp.;Phytoplancton;Famille;Chlorococcales;;;famille;;;;;;;Chlorophycées;;;86111.0;;;;;cellule;ok;141.3;30.0;3.0;3.0;ell;0.8;0.8;1099.66;113.04;1.0;1099.66;113.04;;;;;;;;;Moyennes bibliographie;
+Characium sp.;Phytoplancton;Genre espèce;Characiaceae;;;genre;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;CHCSPX;86110.0;CHC.SPX;Geminella;R0615;;cellule;ok;146.6;32.0;2.7;2.7;ell;0.8;0.8;1055.39;97.67;1.0;1055.39;97.67;;;;;;;;;;
+Charophyta;Phytoplancton;Embranchement;Viridaeplantae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlamydocapsa sp.;Phytoplancton;Genre espèce;Palmellopsidaceae;;;espèce;;;;;;;Chlorophycées;;CDCSPX;83255.0;;;;;colonie;ok;1500.0;10.0;10.0;10.0;ell;1.0;;;523.33;4.0;;2093.33;50.0;50.0;50.0;trel;0.5;1.0;24400.08;32708.33;;
+Chlamydomonadaceae;Phytoplancton;Famille;Volvocales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlamydomonadacées sp.;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;famille;;;;;;;Chlorophycées;;;80001.0;;Volvocales;R0989;;cellule;ok;209.4;10.0;8.0;5.0;ell;1.0;1.0;653.8;209.33;1.0;653.8;209.33;;;;;;;;;;
+Chlamydomonadales;Phytoplancton;Ordre;Chlorophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlamydomonas cf botryospora;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;espèce;;;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;;;80165.0;;;;;cellule;ok;180.0;7.0;7.0;7.0;ell;1.0;1.0;490.83;179.5;1.0;490.83;179.5;;;;;;;;;;
+Chlamydomonas conica;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;;;;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;6017.0;CHLCON;80131.0;CHL.CON;Chlamydomonas;R0941;;cellule;ok;1681.2;19.0;13.0;13.0;ell;1.0;1.0;2421.36;1680.42;1.0;2421.36;1680.42;;;;;;;;;;
+Chlamydomonas conica var. subconica;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;;;;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;6018.0;CHLSUB;80130.0;CHL.SUB;Chlamydomonas;R0941;;cellule;ok;551.3;13.0;9.0;9.0;ell;1.0;1.0;1152.29;551.07;1.0;1152.29;551.07;;;;;;;;;;
+Chlamydomonas globosa;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;;J.SNOW;1903;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;6019.0;CHLGLO;80120.0;CHL.GLO;Chlamydomonas globosa;R0935;;cellule;ok;113.1;6.0;6.0;6.0;ell;1.0;1.0;363.29;113.04;1.0;363.29;113.04;;;;;;;;;;
+Chlamydomonas gloeopara;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;;Rodhe et Skuja;1948;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;24393.0;;80121.0;;;;;cellule;ok;169.56;9.0;6.0;6.0;trel;1.0;1.0;536.14;169.56;1.0;536.14;169.56;;;;;;;;;moyennes biliographie;
+Chlamydomonas gloeophila var. irregularis;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;;;;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;6020.0;CHLIRR;80160.0;CHL.IRR;Chlamydomonas gloeophila;R0936;;cellule;ok;268.1;8.0;8.0;8.0;ell;1.0;1.0;637.8;267.95;1.0;637.8;267.95;;;;;;;;;;
+Chlamydomonas intermedia;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;;;;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;6022.0;CHLINT;80150.0;CHL.INT;Chlamydomonas;R0941;;colonie;ok;4188.8;20.0;20.0;20.0;ell;1.0;1.0;3919.52;4186.67;1.0;3919.52;4186.67;;;;;;;;;;
+Chlamydomonas proboscigera;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;;;;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;6025.0;CHLPRO;80110.0;;Chlamydomonas;R0941;;colonie;ok;4188.8;20.0;20.0;20.0;ell;1.0;1.0;3919.52;4186.67;1.0;3919.52;4186.67;;;;;;;;;;
+Chlamydomonas reinhardtii;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;;Dangeard;;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;6023.0;CHLREI;80111.0;;;;;cellule;ok;1884.0;16.0;15.0;15.0;ell;1.0;1.0;2356.89;1884.0;1.0;2356.89;1884.0;;;;;;;;;moyennes biliographie;
+Chlamydomonas sp.;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;espèce;;;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;;CHLSPX;80100.0;CHL.SPX;Chlamydomonas;R0941;;cellule;ok;3053.6;18.0;18.0;18.0;ell;1.0;1.0;3177.8;3052.08;1.0;3177.8;3052.08;;;;;;;;;;
+Chlamydomonas sp. 8 µm;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;80101.0;;;;;cellule;ok;66.986664;8.0;4.0;4.0;trel;1.0;1.0;318.9;66.99;1.0;318.9;66.99;;;;;;;;;Moyenne sur Lac d'Anterne 2010;
+Chlamydomonas zebra;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;;;;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;25561.0;CHLZEB;80140.0;;Chlamydomonas;R0941;;cellule;ok;1767.1;15.0;15.0;15.0;ell;1.0;1.0;2211.34;1766.25;1.0;2211.34;1766.25;;;;;;;;;;
+Chlorellaceae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlorellaceae sp;Phytoplancton;Genre espèce;Chlorellaceae;;;famille;;;;;;;Chlorophycées;;;83109.0;;;;;cellule;ok;65.416664;5.0;5.0;5.0;sphe;1.0;1.0;78.5;65.42;1.0;78.5;65.42;;;;;;;;;Moyennes bibliographie;
+Chlorella cf ellipsoidea;Phytoplancton;Genre espèce;Chlorellaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;83120.0;CLL.ELL;Chlorella ellipsoidea;R0501;;cellule;ok;110.9;7.0;5.5;5.5;ell;1.0;1.0;385.65;110.82;1.0;385.65;110.82;;;;;;;;;;
+Chlorella + Choricysits;Phytoplancton;Genre;Chlorellaceae;;;genre;;;;;;;Chlorophycées;;;86315.0;;;;;cellule;ok;9.4;3.0;2.0;2.0;ell;1.0;1.0;64.6;6.28;1.0;64.6;6.28;;;;;;;;;;
+Chlorella et Choricysits;Phytoplancton;Genre;Chlorellaceae;;;genre;;;;;;;Chlorophycées;;;86315.0;;;;;cellule;ok;9.4;3.0;2.0;2.0;ell;1.0;1.0;64.6;6.28;1.0;64.6;6.28;;;;;;;;;;
+Chlorella vulgaris;Phytoplancton;Genre espèce;Chlorellaceae;;;;BEIJERINCK;1890;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Chlorella + Choricystis;;Chlorophycées;5933.0;CLLVUL;83110.0;CLL.VUL;Chlorella vulgaris;R0504;;cellule;ok;4.2;2.0;2.0;2.0;ell;1.0;1.0;46.6;4.19;1.0;46.6;4.19;;;;;;;;;;
+Chlorelloidea sp.;Phytoplancton;Genre espèce;Chlorellaceae;;;espèce;;;;;;;Chlorophycées;;;86400.0;;;;;cellule;ok;9.2;4.4;2.0;2.0;ell;1.0;1.0;90.71;9.21;1.0;90.71;9.21;;;;;;;;;;
+Chlorhormidium sp.;Phytoplancton;Genre espèce;Ulotrichaceae;;;espèce;;;;John, D.M. (2002). Orders Chaetophorales, Klebshormidiales, Microsporales, Ulotrichales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 433-468. Cambridge: Cambridge University Press.;;;Chlorophycées;;CLHSPX;82911.0;;;;;cellule;ok;3848.2;9.0;7.0;7.0;tub;1.0;1.0;274.75;346.19;11.11;3052.47;3846.12;100.0;7.0;7.0;tub;1.0;1.0;2274.93;3846.5;;
+Chlorhormidium subtile;Phytoplancton;Genre espèce;Ulotrichaceae;;;;;;;John, D.M. (2002). Orders Chaetophorales, Klebshormidiales, Microsporales, Ulotrichales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 433-468. Cambridge: Cambridge University Press.;;;Chlorophycées;;CLHSUB;82910.0;;Ulotrichales;R0921;;cellule;ok;3848.2;9.0;7.0;7.0;tub;1.0;1.0;274.75;346.19;11.11;3052.47;3846.12;100.0;7.0;7.0;tub;1.0;1.0;2274.93;3846.5;;
+Chlorococcales;Phytoplancton;Ordre;Chlorophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlorococcales sp.;Phytoplancton;Ordre;Cyanobacteries;;;ordre;;;;;;;Cyanobactéries;;;10409.0;;;;;cellule;ok;1.76625;1.5;1.5;1.5;sphe;1.0;1.0;7.07;1.77;1.0;7.07;1.77;;;;;;;;;Moyennes bibliographie;
+Chlorodendraceae;Phytoplancton;Famille;Chlorodendrales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlorodendrales;Phytoplancton;Ordre;Prasinophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlorolobion saxatile;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5607.0;CHOSAX;81000.0;CHO.SAX;Chlorolobion;R0508;;cellule;ok;189.0;9.5;9.5;4.0;ell;1.0;1.0;667.16;188.92;1.0;667.16;188.92;;;;;;;;;;
+Chlorophyceae;Phytoplancton;Classe;Chlorophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlorophycées coloniales petits;Phytoplancton;Genre espèce;Chlorophyceae;;;famille;;;;;;;Chlorophycées;;;80005.0;;Chlorophyceae 'sp.;R0905;;cellule;ok;268.0;2.0;2.0;2.0;ell;1.0;1.0;46.6;4.19;8.0;372.79;33.49;4.0;4.0;4.0;trel;1.0;1.0;166.38;33.49;;
+Chlorophycées indéterminées gros;Phytoplancton;Genre espèce;Chlorophyta;;;famille;;;;;;;Chlorophycées;;;80004.0;;Chlorophyceae 'sp.;R0905;;cellule;ok;15.1;40.0;1.2;1.2;ell;1.0;1.0;468.72;30.14;1.0;468.72;30.14;;;;;;;;;;
+Chlorophycées indéterminées petits;Phytoplancton;Genre espèce;Chlorophyta;;;famille;;;;;;;Chlorophycées;;;80003.0;CHL.SP1;Chlorococcales;R0832;;cellule;ok;262.0;8.0;8.0;8.0;ell;1.0;1.0;637.8;267.95;1.0;637.8;267.95;;;;;;;;;;
+Chlorophycées sp.;Phytoplancton;Genre espèce;Chlorophyta;;;famille;;;;;;;Chlorophycées;;;80002.0;;Chlorophyceae sp.;R0832;;cellule;ok;221.6;28.0;5.5;5.5;ell;1.0;1.0;1505.79;443.26;1.0;1505.79;443.26;;;;;;;;;;
+Chlorophycées sp. filaments;Phytoplancton;Genre espèce;Chlorophyceae;;;famille;;;;;;;Chlorophycées;;;80006.0;CHL.FIL;;;;cellule;ok;10082.54;13.0;13.0;13.0;ell;1.0;1.0;1664.42;1149.76;8.8;14646.92;10117.92;114.0;13.0;13.0;tub;1.0;1.0;4918.81;15123.81;;
+Chlorophycées spp.;Phytoplancton;Genre espèce;Chlorophyceae;;;famille;;;;;;;Chlorophycées;;;80007.0;;;;;cellule;ok;130.83333;10.0;5.0;5.0;ell;1.0;1.0;495.04;130.83;1.0;495.04;130.83;;;;;;;;;Moyennes bibliographie;
+Chlorophyta;Phytoplancton;Embranchement;Viridaeplantae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Choanoflagellatea;Phytoplancton;Classe;Choanozoa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Choanoflagellida;Phytoplancton;Ordre;Choanoflagellatea;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Choanozoa;Phytoplancton;Embranchement;Sarcomastigota;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Choricystis cf chodatii;Phytoplancton;Genre espèce;Chlorellaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;86310.0;;;;;cellule;ok;53.0;7.5;3.0;3.0;ell;1.0;1.0;224.75;35.33;1.0;224.75;35.33;;;;;;;;;;
+Choricystis cf minor;Phytoplancton;Genre espèce;Chlorellaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;86300.0;;Choricystis minor;R0516;;cellule;ok;9.4;3.0;2.0;2.0;ell;1.0;1.0;64.6;6.28;1.0;64.6;6.28;;;;;;;;;;
+Choricystis minor;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;10245.0;CCTMIN;86300.0;;Choricystis minor;R0516;;cellule;ok;9.4;3.0;2.0;2.0;ell;1.0;1.0;64.6;6.28;1.0;64.6;6.28;;;;;;;;;;
+Chromista;Phytoplancton;Règne;Eukaryota;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chromobiota;Phytoplancton;Sous-règne;Chromista;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chromulinaceae;Phytoplancton;Famille;Chromulinales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chromulina cf erkensis;Phytoplancton;Genre espèce;Chromulinaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50810.0;;;;;cellule;ok;354.0;13.0;13.0;4.0;ell;1.0;1.0;1178.85;353.77;1.0;1178.85;353.77;;;;;;;;;;
+Chromulinales;Phytoplancton;Ordre;Chrysophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+chromulina nebulosa;Phytoplancton;Genre espèce;Chromulinaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;;;;50811.0;;;;;cellule;ok;183.16667;14.0;5.0;5.0;ell;1.0;1.0;688.623;183.16667;1.0;688.623;183.16667;;;;;;;;;Moyennes bibliographie;
+Chrooccocus distans (4 cellules);Phytoplancton;Genre espèce;Chroococcaceae;;;;(GM Smith) Komarkova-Legnerova et Cronberg;1993;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10411.0;;;;;colonie;ok;498.89993;6.2;6.2;6.2;sphe;1.0;1.0;120.7;124.72;4.0;482.81;498.9;30.0;30.0;30.0;box;0.05;1.0;5400.0;1350.0;Moyennes bibliographie;
+Chroococcaceae;Phytoplancton;Famille;Chroococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chroococcales;Phytoplancton;Ordre;Cyanobacteries;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chroococcus aphanocapsoides;Phytoplancton;Genre espèce;Chroococcaceae;;;;Skuja;1964;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;31909.0;CHRAPH;10424.0;;;;;colonie;ok;188.4;2.0;2.0;2.0;sphe;1.0;1.0;12.56;4.19;45.0;565.2;188.4;40.0;40.0;40.0;sphe;0.05;1.0;9600.0;1674.67;Mesures Bourget 2018;
+Chroococcus aphanocapsoides cellule;Phytoplancton;Genre espèce;Chroococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;31909.0;CHRAPH;10425.0;;;;;colonie;ok;33.493332;2.0;2.0;2.0;sphe;1.0;1.0;12.56;4.19;8.0;100.48;33.49;10.0;10.0;10.0;sphe;0.1;1.0;600.0;52.33;Mesures Bourget 2018;
+Chroococcus aphanocapsoides colonie 10 µm;Phytoplancton;Genre espèce;Chroococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;31909.0;CHRAPH;10426.0;;;;;cellule;ok;4.1866665;2.0;2.0;2.0;sphe;1.0;1.0;12.56;4.19;1.0;12.56;4.19;;;;;;;;;Mesures Bourget 2018;
+Chroococcus limneticus;Phytoplancton;Genre espèce;Chroococcaceae;;;;LEMMERMANN;1898;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6358.0;CHRLIM;10410.0;CHR.LIM;Chroococcus limneticus;R1438;;colonie;ok;16964.0;12.0;12.0;12.0;;;;;;4.0;0.0;0.0;60.0;60.0;30.0;;0.3;;;;;
+Chroococcus microscopicus;Phytoplancton;Genre espèce;Chroococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10421.0;;;;;colonie;ok;62.8;1.0;1.0;1.0;ell;1.0;1.0;15.03;0.52;120.0;1804.09;62.8;20.0;20.0;20.0;box;0.01;1.0;2400.0;80.0;;
+Chroococcus minimus;Phytoplancton;Genre espèce;Chroococcaceae;;;;(Keissler) Lemmermann;1904;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;9641.0;CHRMIM;10412.0;CHR.MIM;;;;colonie;ok;16.746666;2.0;2.0;2.0;sphe;1.0;1.0;46.598804;4.1866665;4.0;186.39522;16.746666;10.0;10.0;6.0;box;0.2;1.0;440.0;120.0;Moyennes bibliographie;
+Chroococcus minimus colonie 50 µm;Phytoplancton;Genre espèce;Chroococcaceae;;;;(Keissler) Lemmermann;1905;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chroococcus minutus;Phytoplancton;Genre espèce;Chroococcaceae;;;;;;;;;;Cyanobactéries;6359.0;;10419.0;;;;;colonie;ok;441.5625;7.5;7.5;7.5;ell;1.0;1.0;561.89;220.78;2.0;1123.77;441.56;25.0;25.0;25.0;box;0.2;1.0;3750.0;3125.0;;
+Chroococcus minutus erreur;Phytoplancton;Genre espèce;Chroococcaceae;;;;(KÜTZING) NÄGELI;1849;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10420.0;CHR.MIN;Chroococcus minutus;R1443;;colonie;erreur;4188.8;;;;;;;;;;;;20.0;20.0;20.0;;1.0;;;;;
+Chroococcus obliteratus;Phytoplancton;Genre espèce;Chroococcaceae;;;1886;Reichter;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;24399.0;CHROBLI;10422.0;;;;;colonie;ok;;4.5;4.5;4.5;ell;1.0;1.0;208.34;47.69;4.0;833.38;190.76;10.0;10.0;5.0;box;0.9;1.0;400.0;450.0;Moyennes bibliographie;
+Chroococcus prescottii;Phytoplancton;Genre espèce;Chroococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;9643.0;CHRPRE;10423.0;;;;;colonie;ok;574.88165;6.5;6.5;6.5;sphe;1.0;1.0;132.665;143.72041;4.0;530.66;574.88165;24.0;24.0;18.0;box;0.3;1.0;2880.0;3110.4;Moyennes bibliographie;
+Chroococcus sp.;Phytoplancton;Genre espèce;Chroococcaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;CHRSPX;10400.0;CHR.SPX;;;;colonie;ok;5361.7;10.0;8.0;8.0;ell;1.0;1.0;792.06;334.93;16.0;12672.91;5358.93;100.0;32.0;32.0;box;0.1;1.0;14848.0;10240.0;;
+Chroococcus turgidus (4 cellules);Phytoplancton;Genre espèce;Chroococcaceae;;;;;;;;Gloeocapsa turgida;;Cyanobactéries;;;10431.0;;;;;colonie;ok;16746.666;20.0;20.0;20.0;sphe;1.0;1.0;1256.0;4186.67;4.0;5024.0;16746.67;100.0;60.0;60.0;box;0.2;1.0;31200.0;72000.0;Moyennes bibliographie;
+Chroococcus turgidus (8 cellules);Phytoplancton;Genre espèce;Chroococcaceae;;;;(KÜTZING) NÄGELI;1849;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10430.0;CHR.TUR;;;;colonie;ok;17907.1;19.0;15.0;15.0;ell;1.0;1.0;2793.88;2237.25;8.0;22351.06;17898.0;100.0;60.0;60.0;box;0.2;1.0;31200.0;72000.0;;
+chroococcus turicensis;Phytoplancton;Genre espèce;Chroococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;31909.0;CHRAPH;10434.0;;;;;colonie;ok;1436.0266;14.0;14.0;14.0;sphe;1.0;1.0;615.44;1436.03;4.0;2461.76;5744.11;50.0;50.0;32.0;box;0.4;1.0;11400.0;32000.0;Moyennes bibliographie;
+Chroococcus vacuolatus;Phytoplancton;Genre espèce;Chroococcaceae;;;;Skuja;1939;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chroococcus varius;Phytoplancton;Genre espèce;Chroococcaceae;;;;Braun;1861;In Rabenhorst;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10432.0;;;;;colonie;;;3.0;3.0;3.0;sphe;1.0;1.0;28.26;14.13;140.0;3956.4;1978.2;50.0;35.0;35.0;trel;0.7;1.0;17080.06;22437.92;Mesure Bourget 3-2013;
+Chroomonadaceae;Phytoplancton;Famille;Pyrenomonadales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chroomonas cf coerulea;Phytoplancton;Genre espèce;Chroomonadaceae;;;espèce;;;;;;;Cryptophycées;;;30320.0;;;;;cellule;ok;109.9;7.0;6.0;5.0;trel;1.0;1.0;386.61;109.9;1.0;386.61;109.9;;;;;;;;;JCD;
+Chroomonas sp.;Phytoplancton;Genre espèce;Chroomonadaceae;;;espèce;;;;Kugrens, P. & Clay, B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds), pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;;CHMSPX;30310.0;CHM.SPX;Chroomonas;R1375;;cellule;ok;796.4;13.0;13.0;9.0;ell;1.0;1.0;1422.3;795.99;1.0;1422.3;795.99;;;;;;;;;;
+Chrysamoebaceae;Phytoplancton;Famille;Chromulinales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chrysastrella furcata;Phytoplancton;Genre espèce;Chrysostomataceae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;20080.0;CSTFUR;52100.0;;Chrysophyceae sp.;R1171;;cellule;ok;523.6;10.0;10.0;10.0;ell;1.0;1.0;990.07;523.33;1.0;990.07;523.33;;;;;;;;;;
+chrysidiastrum catenatum;Phytoplancton;Genre espèce;Chrysamoebaceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chrysococcaceae;Phytoplancton;Famille;Chromulinales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+chrysococcus biporus;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;;52102;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chrysococcus minutus;Phytoplancton;Genre espèce;Dinobryaceae;;;;(F.E.Fritsch) Nygaard;1932;;Nygaard, G. (1932). Contributions to our knowledge of the freshwater algae of Africa. Freshwater algae and phytoplankton from the Transvaal. Transactions of the Royal Society of South Africa 20: 101-148.;;;Chrysophycées;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chrysococcus sp.;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;CHSSPX;52101.0;;;;;cellule;ok;904.32;12.0;12.0;12.0;ell;1.0;1.0;1420.17;904.32;1.0;1420.17;904.32;;;;;;;;;;
+Chrysolykos angulatum;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;20081.0;CYYANG;50720.0;;Chrysolykos angulatus;R1164;;cellule;ok;1100.0;20.0;10.0;10.0;ell;0.7;0.7;2799.65;732.67;1.0;2799.65;732.67;;;;;;;;;;
+Chrysolykos gracilis;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Starmach, page 339;;;Chrysophycées;9567.0;CYYGRA;50722.0;;;;;cellule;;;24.0;14.0;2.0;ell;0.7;0.7;3129.75;246.18;1.0;3129.75;246.18;;;;;;;;;;
+Chrysolykos planctonicus;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6118.0;CYYPLA;50710.0;CYY.PLA;Chrysolykos planktonicus;R1166;;cellule;ok;392.5;17.0;7.0;7.0;ell;0.9;0.9;1297.59;392.34;1.0;1297.59;392.34;;;;;;;;;;
+Chrysolykos skujai;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50721.0;;;;;cellule;ok;167.46666;20.0;4.0;4.0;ell;0.7;0.7;1119.86;117.23;1.0;1119.86;117.23;;;;;;;;;Moyenne sur Annecy 2007;
+Chrysophyceae;Phytoplancton;Classe;Ochrophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+chrysophycee sp.;Phytoplancton;Classe;Ochrophyta;;;classe;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50000.0;;;;;cellule;ok;680.7;13.0;10.0;10.0;ell;1.0;1.0;1280.32;680.33;1.0;1280.32;680.33;;;;;;;;;;
+Chrysostomataceae;Phytoplancton;Famille;Chrysophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cladomonas fruticulosa;Phytoplancton;Genre espèce;Codonosigaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;20086.0;CLMFRU;51510.0;;indet. phytopl.;R1793;;cellule;ok;321.5;8.5;8.5;8.5;ell;1.0;1.0;718.58;321.39;1.0;718.58;321.39;;;;;;;;;;
+Closteriaceae;Phytoplancton;Famille;Zygnematales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Closteriopsis longissima;Phytoplancton;Genre espèce;Ankistrodesmaceae;;;;;;;;;;Chlorophycées;5935.0;CLTLON;86301.0;;;;;cellule;ok;1406.4584;215.0;5.0;3.0;doco;1.0;1.0;8541.38;843.88;1.0;8541.38;843.88;;;;;;;;;Moyennes bibliographie;
+Closterium acerosum;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5527.0;CLOACE;90290.0;CLO.ACE;Closterium acerosum;R1175;;cellule;ok;452389.3;540.0;40.0;40.0;tub;1.0;1.0;70336.0;678240.0;1.0;70336.0;678240.0;;;;;;;;;;
+Closterium aciculare;Phytoplancton;Genre espèce;Closteriaceae;;;;T.WEST;1860;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5528.0;CLOACI;90310.0;CLO.ACI;Closterium aciculare;R1176;;cellule;ok;7363.1;500.0;5.0;5.0;tub;0.75;0.75;7902.33;7359.38;1.0;7902.33;7359.38;;;;;;;;;;
+Closterium acutum;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5529.0;CLOACU;90314.0;;;;;cellule;ok;752.2917;115.0;5.0;5.0;doco;1.0;1.0;5607.09;752.29;1.0;5607.09;752.29;;;;;;;;;Moyennes bibliographie;
+Closterium acutum var. latius;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;20088.0;CLOALA;90370.0;;Closterium acutum;R1178;;cellule;ok;6234.5;140.0;9.0;9.0;tub;0.7;0.7;4138.07;6231.33;1.0;4138.07;6231.33;;;;;;;;;;
+Closterium acutum var. linea;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;9149.0;CLOALI;90321.0;CLO.ACL;Closterium acutum v. linea;R1180;;cellule;ok;721.6;100.0;3.5;3.5;tub;0.75;0.75;1124.64;721.22;1.0;1124.64;721.22;;;;;;;;;;
+Closterium acutum var. variabile;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5530.0;CLOACV;90320.0;;Closterium acutum v. variabile;R1181;;cellule;ok;938.1;130.0;3.5;3.5;tub;0.75;0.75;1454.34;937.58;1.0;1454.34;937.58;;;;;;;;;;
+Closterium cf. lanceolatum var. parvum;Phytoplancton;Genre espèce;Closteriaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90315.0;;;;;cellule;ok;34431.277;162.0;28.5;10.0;doco;1.0;1.0;32493.73;12081.15;1.0;32493.73;12081.15;;;;;;;;;Moyennes bibliographie;
+Closterium cornu;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5534.0;CLOCOR;90311.0;CLO.COR;;;;cellule;ok;2500.0;125.0;5.0;5.0;tub;0.8;0.8;2011.56;1962.5;1.0;2011.56;1962.5;;;;;;;;;;
+Closterium dianae;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5537.0;CLODIA;90313.0;CLO.DIA;;;;cellule;ok;65000.0;255.0;18.0;18.0;tub;0.8;0.8;15048.45;51885.36;1.0;15048.45;51885.36;;;;;;;;;;
+Closterium ehrenbergii;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5541.0;CLOEHR;90390.0;CLO.EHR;;;;cellule;ok;1559408.1;660.0;95.0;95.0;tub;1.0;1.0;211047.25;4675852.5;1.0;211047.25;4675852.5;;;;;;;;;;
+Closterium gracile;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5542.0;CLOGRA;90360.0;CLO.GRA;Closterium gracile;R1184;;cellule;ok;3887.7;220.0;5.0;5.0;tub;0.9;0.9;3497.61;3885.75;1.0;3497.61;3885.75;;;;;;;;;;
+Closterium jenneri;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5545.0;CLOJEN;90391.0;CLO.JEN;Closterium jenneri;R1187;;cellule;ok;173.2;35.0;3.0;3.0;tub;0.7;0.7;349.89;173.09;1.0;349.89;173.09;;;;;;;;;;
+Closterium limneticum;Phytoplancton;Genre espèce;Closteriaceae;;;;LEMMERMANN;1899;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5544.0;CLOLIM;90395.0;CLO.LIM;;;;cellule;ok;3170.0;167.5;5.2;5.2;tub;0.7;0.7;2795.59;2488.8;1.0;2795.59;2488.8;;;;;;;;;;
+Closterium lineatum;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5548.0;CLOLIN;90312.0;CLO.LIN;;;;cellule;ok;169000.0;400.0;23.0;23.0;tub;0.8;0.8;29926.16;132884.8;1.0;29926.16;132884.8;;;;;;;;;;
+Closterium monoliferum;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90380.0;;;;;cellule;ok;73042.0;310.0;30.0;30.0;tub;1.0;1.0;30615.0;219015.0;1.0;30615.0;219015.0;;;;;;;;;;
+Closterium nordstedtii;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5557.0;CLONOR;90340.0;CLO.NOR;Closterium;R1201;;cellule;ok;15708.0;250.0;10.0;10.0;tub;0.8;0.8;8046.25;15700.0;1.0;8046.25;15700.0;;;;;;;;;;
+Closterium parvulum;Phytoplancton;Genre espèce;Closteriaceae;;;;NÄGELI;1849;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5558.0;CLOPAR;90280.0;CLO.PAR;;;;cellule;ok;7068.6;100.0;15.0;15.0;tub;1.2;1.2;5004.38;21195.0;1.0;5004.38;21195.0;;;;;;;;;;
+Closterium pronum;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5552.0;CLOPRO;90316.0;;;;;cellule;ok;4415.625;300.0;7.5;7.5;doco;1.0;1.0;21935.35;4415.63;1.0;21935.35;4415.63;;;;;;;;;Moyennes bibliographie;
+Closterium sp.;Phytoplancton;Genre espèce;Closteriaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;CLOSPX;90300.0;CLO.SPX;;;;cellule;ok;71837.8;175.0;28.0;28.0;tub;1.0;1.0;16616.88;107702.0;1.0;16616.88;107702.0;;;;;;;;;;
+Closterium sp1;Phytoplancton;Genre espèce;Closteriaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90350.0;;;;;cellule;ok;377.0;19.4;5.4;4.0;tub;0.9;0.9;356.86;399.67;1.0;356.86;399.67;;;;;;;;;;
+Closterium strigosum;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5559.0;CLOSTR;90317.0;;;;;cellule;ok;12821.667;250.0;14.0;5.0;doco;1.0;1.0;24699.87;4579.17;1.0;24699.87;4579.17;;;;;;;;;Moyennes bibliographie;
+Closterium striolatum;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5560.0;CLOSTI;90385.0;CLO.STI;Closterium;R1201;;cellule;ok;365604.0;380.0;35.0;35.0;tub;0.9;0.9;43898.94;328875.75;1.0;43898.94;328875.75;;;;;;;;;;
+Closterium venus var. westii;Phytoplancton;Genre espèce;Closteriaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90318.0;;;;;cellule;ok;1582.2329;67.0;9.5;9.5;doco;1.0;1.0;6209.49;1582.23;1.0;6209.49;1582.23;;;;;;;;;Moyennes bibliographie;
+Coccomonas platyformis;Phytoplancton;Genre espèce;Phacotaceae;;;;;;;;;;Chlorophycées;;;86302.0;;;;;cellule;ok;2119.5;18.0;15.0;7.0;ell;1.0;1.0;2018.62;989.1;1.0;2018.62;989.1;;;;;;;;;Moyennes bibliographie;
+Coccomyxa littoralis;Phytoplancton;Genre espèce;Oocystaceae;;;;(Hansg) Wille;1906;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Dactylococcus littoralis;;Chlorophycées;;;85527.0;COC.LIT;;;;cellule;ok;32.97;7.0;3.0;3.0;ell;1.0;1.0;210.36;32.97;1.0;210.36;32.97;;;;;;;;;Moyennes bibliographie;
+Cocconeidales;Phytoplancton;Sous-classe;Bacillariophycidae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cocconeis;Phytoplancton;Famille;Achnanthales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cocconeis pediculus;Phytoplancton;Genre espèce;Cocconeis;;;;EHRENBERG;1838;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7226.0;COCPED;71011.0;COC.PED;Cocconeis pediculus;R0154;CPED;cellule;ok;742.5;22.0;10.0;4.5;box;0.75;0.8;910.0;742.5;1.0;910.0;742.5;;;;;;;;;;
+Cocconeis placentula;Phytoplancton;Genre espèce;Cocconeis;;;;EHRENBERG;1838;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7228.0;COCPLA;71010.0;COC.PLA;Cocconeis placentula;R0155;CPLA;cellule;ok;4593.8;35.0;25.0;7.0;box;0.75;0.8;3237.5;4593.75;1.0;3237.5;4593.75;;;;;;;;;;
+Cocconeis placentula var. euglypta;Phytoplancton;Genre espèce;Cocconeis;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7229.0;COCEUG;71020.0;COC.EUG;;;CPLE;cellule;ok;1484.8;29.0;16.0;4.0;box;0.8;0.8;1610.0;1484.8;1.0;1610.0;1484.8;;;;;;;;;;
+Cocconeis sp.;Phytoplancton;Genre espèce;Cocconeis;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;COCSPX;71000.0;COC.SPX;Fragilaria ulna;R0247;COCM;cellule;ok;742.5;22.0;10.0;4.5;box;0.75;0.8;910.0;742.5;1.0;910.0;742.5;;;;;;;;;;
+Codonosigaceae;Phytoplancton;Famille;Choanozoa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Codonosigidae;Phytoplancton;Famille;Choanoflagellida;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Codosiga botrytis;Phytoplancton;Genre espèce;Codonosigidae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;6122.0;CODBOT;51110.0;;Codosiga botrytis;R1353;;cellule;ok;2572.4;17.0;17.0;17.0;ell;1.0;1.0;2836.17;2571.14;1.0;2836.17;2571.14;;;;;;;;;;
+Codosiga sp.;Phytoplancton;Genre espèce;Codonosigidae;;;espèce;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;;CODSPX;51100.0;COD.SPX;Codosiga;R1354;;cellule;ok;1150.3;13.0;13.0;13.0;ell;1.0;1.0;1664.42;1149.76;1.0;1664.42;1149.76;;;;;;;;;;
+Coelastraceae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Coelastrum astroideum;Phytoplancton;Genre espèce;Coelastraceae;;;;DE NOTARIS;1867;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5608.0;COEAST;82270.0;COE.AST;Coelastrum astroideum;R0523;;colonie;ok;4289.3;8.0;8.0;8.0;ell;1.0;1.0;637.8;267.95;16.0;10204.82;4287.15;24.0;24.0;24.0;sphe;0.8;1.5;1205.76;5787.65;;
+Coelastrum cambricum;Phytoplancton;Genre espèce;Coelastraceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;COECAM;82240.0;;Coelastrum cambricum;R0524;;colonie;ok;18405.2;13.0;13.0;13.0;ell;1.0;1.0;1664.42;1149.76;16.0;26630.76;18396.21;39.0;39.0;39.0;sphe;0.8;1.5;3183.96;24834.89;;
+Coelastrum indicum;Phytoplancton;Genre espèce;Coelastraceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5609.0;COEIND;82280.0;COE.IND;Coelastrum;R0531;;colonie;ok;14137.2;10.0;10.0;10.0;ell;1.0;1.0;990.07;523.33;16.0;15841.14;8373.33;30.0;30.0;30.0;sphe;0.8;1.5;1884.0;11304.0;;
+Coelastrum microporum;Phytoplancton;Genre espèce;Coelastraceae;;;;NÄGELI in A.BRAUN;1855;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5610.0;COEMIC;82210.0;COE.MIC;Coelastrum microporum;R0527;;colonie;ok;18405.2;13.0;13.0;13.0;ell;1.0;1.0;1664.42;1149.76;16.0;26630.76;18396.21;39.0;39.0;39.0;sphe;0.8;1.5;3183.96;24834.89;;
+Coelastrum morus;Phytoplancton;Genre espèce;Coelastraceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;COEMOR;82230.0;COE.MOR;;;;colonie;ok;13824.0;12.0;12.0;12.0;ell;1.0;1.0;1420.17;904.32;16.0;22722.75;14469.12;36.0;36.0;36.0;sphe;0.8;1.5;2712.96;19533.31;;
+Coelastrum pseudomicroporum;Phytoplancton;Genre espèce;Coelastraceae;;;;KORSHIKOV;1953;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5612.0;COEPSE;82250.0;COE.PSE;Coelastrum pseudomicroporum;R0529;;colonie;ok;8377.6;10.0;10.0;10.0;ell;1.0;1.0;990.07;523.33;16.0;15841.14;8373.33;30.0;30.0;30.0;sphe;0.8;1.5;1884.0;11304.0;;
+Coelastrum reticulatum;Phytoplancton;Genre espèce;Coelastraceae;;;;(DANGEARD) SENN;1899;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5614.0;COERET;82220.0;COE.RET;Coelastrum reticulatum;R0530;;colonie;ok;2973.5;7.0;7.0;7.0;ell;1.0;1.0;490.83;179.5;16.0;7853.31;2872.05;21.0;21.0;21.0;sphe;0.8;1.5;923.16;3877.27;;
+Coelastrum reticulatum 3 cellules;Phytoplancton;Genre espèce;Coelastraceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;82221.0;;;;;colonie;ok;42.39;3.0;3.0;3.0;sphe;1.0;1.0;28.26;14.13;3.0;84.78;42.39;6.0;6.0;6.0;sphe;0.8;2.0;56.52;90.43;Mesures Bultière 2007;
+Coelastrum sp.;Phytoplancton;Genre espèce;Coelastraceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;;;;;;colonie;ok;;;;;sphe;;;;40.0;;;;;;;;;;;;;
+Coelastrum sp cellule seule;Phytoplancton;Genre espèce;Coelastraceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;82222.0;;;;;cellule;ok;904.32;12.0;12.0;4.0;sphe;1.0;1.0;452.16;301.44;1.0;452.16;301.44;;;;;;;;;Moyennes bibliographie;
+Coelastrum sphaericum;Phytoplancton;Genre espèce;Coelastraceae;;;;NÄGELI;1849;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5616.0;COESPH;82260.0;COE.SPH;Coelastrum sphaericum;R0532;;colonie;ok;18405.2;13.0;13.0;13.0;ell;1.0;1.0;1664.42;1149.76;16.0;26630.76;18396.21;39.0;39.0;39.0;sphe;0.8;1.5;3183.96;24834.89;;
+Coelosphaerium kutzingii;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10510.0;;;;;colonie;ok;654.5;2.5;2.5;2.5;ell;1.0;1.0;69.37;8.18;80.0;5549.79;654.17;50.0;50.0;50.0;ell;0.01;1.0;24400.08;654.17;;
+Coenochloris hindakii;Phytoplancton;Genre espèce;Radiococcaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20091.0;COOHIN;84815.0;;;;;colonie;ok;1822.2;6.0;6.0;6.0;ell;1.0;1.0;363.29;113.04;16.0;5812.61;1808.64;40.0;40.0;40.0;sphe;0.25;1.0;5024.0;8373.33;Léman 2011 pour les colonies;
+Coenochloris ovalis;Phytoplancton;Genre espèce;Radiococcaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;84816.0;;;;;colonie;ok;2260.8;9.0;6.0;5.0;trel;1.0;1.0;492.68;141.3;16.0;7882.89;2260.8;40.0;40.0;40.0;sphe;0.25;1.0;5024.0;8373.33;;
+Coenochloris pyrenoideum var. minimum;Phytoplancton;Genre espèce;Radiococcaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;84310.0;;;;;colonie;ok;1047.3;5.0;5.0;5.0;ell;1.0;1.0;255.15;65.42;16.0;4082.37;1046.67;30.0;30.0;30.0;sphe;0.25;1.0;2826.0;3532.5;;
+Coenochloris pyrenoidosa;Phytoplancton;Genre espèce;Radiococcaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5620.0;COOPYR;84810.0;COO.PYR;Coenochloris;R0535;;colonie;ok;1047.3;5.0;5.0;5.0;ell;1.0;1.0;255.15;65.42;16.0;4082.37;1046.67;30.0;30.0;30.0;sphe;0.25;1.0;2826.0;3532.5;;
+Coenochloris sp.;Phytoplancton;Genre espèce;Radiococcaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;COOSPX;84811.0;COO.SPX;;;;colonie;ok;1822.3;5.5;5.5;5.5;ell;1.0;1.0;306.79;87.07;16.0;4908.71;1393.11;33.0;33.0;33.0;sphe;0.25;1.0;3419.46;4701.76;;
+Coenocystis planctonica var. hercynica;Phytoplancton;Genre espèce;Radiococcaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20095.0;COYPHE;84020.0;;;;;colonie;ok;33303.8;20.0;16.0;16.0;ell;1.0;1.0;3135.61;2679.47;4.0;12542.45;10717.87;43.0;43.0;43.0;sphe;0.1;1.0;5805.86;4160.87;;
+Coenocystis sp.;Phytoplancton;Genre espèce;Radiococcaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;COYSPX;84021.0;;;;;colonie;ok;366.33334;7.0;5.0;5.0;ell;1.0;1.0;350.59;91.58;4.0;1402.38;366.33;20.0;20.0;30.0;sphe;0.1;1.0;1256.0;628.0;Moyennes bibliographie;
+Coenocystis subcylindrica;Phytoplancton;Genre espèce;Radiococcaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5624.0;COYSUB;84010.0;;Coenocystis;R0537;;colonie;ok;1357.5;9.0;6.0;6.0;ell;1.0;1.0;536.14;169.56;8.0;4289.13;1356.48;36.0;36.0;36.0;sphe;0.1;1.0;4069.44;2441.66;;
+Coscinodiscophyceae;Phytoplancton;Classe;Bacillariophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cosmarium abbreviatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5317.0;COSABB;90405.0;COS.ABB;Cosmarium abbreviatum;R1204;;cellule;ok;366.5;10.0;10.0;7.0;ell;1.0;1.0;849.41;366.33;1.0;849.41;366.33;;;;;;;;;;
+Cosmarium abbreviatum f. minor;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;COSAMI;90406.0;;;;;cellule;ok;366.33334;10.0;10.0;7.0;ell;1.0;1.0;849.41;366.33;1.0;849.41;366.33;;;;;;;;;Mesures moyennes sur Annecy 2007;
+Cosmarium bioculatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;BRÉBISSON ex RALFS;1848;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Zygophycées;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cosmarium biretum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5319.0;COSBIR;90470.0;COS.BIR;Cosmarium;R1233;;cellule;ok;35116.7;54.0;46.0;27.0;ell;1.0;1.0;19624.16;35098.92;1.0;19624.16;35098.92;;;;;;;;;;
+Cosmarium blytii;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90401.0;;;;;cellule;ok;647.625;16.5;15.0;5.0;trel;1.0;1.0;1740.14;647.63;1.0;1740.14;647.63;;;;;;;;;Moyennes bibliographie;
+Cosmarium botrytis;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5325.0;COSBOT;90440.0;COS.BOT;Cosmarium botrytis;R1207;;cellule;ok;2120.6;30.0;15.0;9.0;ell;1.0;1.0;3584.72;2119.5;1.0;3584.72;2119.5;;;;;;;;;;
+Cosmarium brebissonii;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5324.0;COSBRE;90475.0;COS.BRE;;;;cellule;ok;28274.4;50.0;40.0;27.0;ell;1.0;1.0;16532.4;28260.0;1.0;16532.4;28260.0;;;;;;;;;;
+Cosmarium depressum;Phytoplancton;Genre espèce;Desmidiaceae;;;;(NÄGELI) LUNDELL;1871;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5330.0;COSDEP;90411.0;COS.DEP;Cosmarium depressum;R1209;;cellule;ok;6361.7;30.0;30.0;15.0;ell;0.9;0.9;7574.33;6358.5;1.0;7574.33;6358.5;;;;;;;;;;
+Cosmarium depressum var. planctonicum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;9107.0;COSDEL;90410.0;COS.DEL;Cosmarium depressum v. planktonicum;R1210;;cellule;ok;6361.7;30.0;30.0;15.0;ell;0.9;0.9;7574.33;6358.5;1.0;7574.33;6358.5;;;;;;;;;;
+Cosmarium granatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5334.0;COSGRA;90420.0;COS.GRA;Cosmarium granatum;R1214;;cellule;ok;12440.7;45.0;33.0;16.0;ell;1.0;1.0;11149.55;12434.4;1.0;11149.55;12434.4;;;;;;;;;;
+Cosmarium impressulum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5336.0;COSIMP;90407.0;;;;;cellule;ok;3956.4;31.5;24.0;10.0;trel;1.0;1.0;5497.74;3956.4;1.0;5497.74;3956.4;;;;;;;;;Moyennes bibliographie;
+Cosmarium laeve;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5337.0;COSLAE;90480.0;COS.LAE;Cosmarium laeve;R1216;;cellule;ok;2225.3;25.0;17.0;10.0;ell;1.0;1.0;3368.39;2224.17;1.0;3368.39;2224.17;;;;;;;;;;
+Cosmarium margaritiferum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5339.0;COSMAF;90412.0;COS.MAF;;;;cellule;ok;46200.0;57.0;44.0;44.0;ell;0.8;0.8;30590.8;46200.7;1.0;30590.8;46200.7;;;;;;;;;;
+Cosmarium margaritiferum f. regularius;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;COSREL;90413.0;;;;;cellule;ok;18976.0;37.0;35.0;35.0;ell;0.8;0.8;15810.72;18976.07;1.0;15810.72;18976.07;;;;;;;;;;
+Cosmarium meneghenii;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5342.0;COSMEN;90430.0;COS.MEN;;;;cellule;ok;1266.7;18.0;14.0;8.0;ell;1.2;1.2;1654.32;1266.05;1.0;1654.32;1266.05;;;;;;;;;;
+Cosmarium minimum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5343.0;COSMIN;90414.0;COS.MIN;;;;cellule;ok;419.6;11.0;9.0;9.0;ell;0.9;0.9;1086.72;419.66;1.0;1086.72;419.66;;;;;;;;;;
+Cosmarium novae-semliae var. sibericum;Phytoplancton;Genre espèce;Desmidiaceae;;;;Boldt;1976;Skuja 1976;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90434.0;COS.NSS;;;;cellule;ok;904.32;16.0;15.0;9.0;trel;0.8;0.8;2400.97;904.32;1.0;2400.97;904.32;;;;;;;;;Moyennes bibliographie;
+Cosmarium octhodes;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5344.0;COSOCT;90417.0;COS.OCT;;;;cellule;ok;25568.0;44.0;33.0;33.0;ell;0.9;0.9;15750.45;22568.44;1.0;15750.45;22568.44;;;;;;;;;;
+Cosmarium ornatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5349.0;COSORN;90408.0;;;;;cellule;ok;10601.425;36.5;37.0;15.0;trel;1.0;1.0;9763.78;10601.43;1.0;9763.78;10601.43;;;;;;;;;Moyennes bibliographie;
+Cosmarium phaseolus;Phytoplancton;Genre espèce;Desmidiaceae;;;;BRÉBISSON ex RALFS;1848;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5352.0;COSPHA;90415.0;COS.PHA;;;;cellule;ok;3691.4;25.0;23.5;12.0;ell;1.0;1.0;4477.6;3689.5;1.0;4477.6;3689.5;;;;;;;;;;
+Cosmarium phaseolus var. minus;Phytoplancton;Genre espèce;Desmidiaceae;;;;(Boldt) Krieger & Gerloff;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90435.0;;;;;cellule;ok;1256.0;20.0;15.0;10.0;trel;0.8;0.8;3098.81;1256.0;1.0;3098.81;1256.0;;;;;;;;;;
+Cosmarium polygonum var. hexagonum;Phytoplancton;Genre espèce;Desmidiaceae;;;;Gronbl.;;;Ruper Lenzenberg, Bibliotheca Phycologica band 104. p175;;;Zygophycées;20100.0;COSPHX;90437.0;;;;;cellule;ok;288.0;10.0;9.0;4.0;box;0.8;0.8;415.0;288.0;1.0;415.0;288.0;;;;;;;;;Moyennes bibliographie;
+Cosmarium protractum;Phytoplancton;Genre espèce;Desmidiaceae;;;;(NÄGELI) DE BARY;1858;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5356.0;COSPRO;90460.0;COS.PRO;Cosmarium protractum;R1222;;cellule;ok;13948.7;40.0;37.0;20.0;ell;0.9;0.9;12697.9;13941.6;1.0;12697.9;13941.6;;;;;;;;;;
+Cosmarium pseudonitidulum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5357.0;COSPSN;90416.0;COS.PSN;;;;cellule;ok;7523.0;33.0;22.0;22.0;ell;0.9;0.9;7881.96;7522.81;1.0;7881.96;7522.81;;;;;;;;;;
+Cosmarium pseudoornatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;20101.0;COSPSO;90409.0;;;;;cellule;ok;7294.6123;31.5;29.5;15.0;trel;1.0;1.0;7066.72;7294.61;1.0;7066.72;7294.61;;;;;;;;;Moyennes bibliographie;
+Cosmarium pseudopyramidum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90418.0;;;;;cellule;ok;24598.0;51.0;32.0;32.0;ell;0.9;0.9;17697.53;24597.5;1.0;17697.53;24597.5;;;;;;;;;;
+Cosmarium punctulatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5362.0;COSPUN;90490.0;COS.PUN;;;;cellule;ok;14660.8;40.0;35.0;20.0;ell;1.0;1.0;10980.48;14653.33;1.0;10980.48;14653.33;;;;;;;;;;
+Cosmarium pusillum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5364.0;COSPUS;90493.0;COS.PUS;Cosmarium;R1233;;cellule;ok;313.6;11.0;11.0;5.5;ell;0.9;0.9;1029.21;313.45;1.0;1029.21;313.45;;;;;;;;;;
+Cosmarium pygmaeum;Phytoplancton;Genre espèce;Desmidiaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5363.0;COSPYG;90402.0;;;;;cellule;ok;752.2917;11.5;12.5;10.0;trel;1.0;1.0;1281.7;752.29;1.0;1281.7;752.29;;;;;;;;;Moyennes bibliographie;
+Cosmarium pygmaeum var. heimerlii;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Ruper Lenzenberg, Bibliotheca Phycologica band 104. p62;Cosmarium minutissimum;;Zygophycées;;;90438.0;;;;;cellule;ok;118.692;8.0;9.0;3.5;trel;0.9;0.9;585.56;118.69;1.0;585.56;118.69;;;;;;;;;;
+Cosmarium regnellii;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5369.0;COSREG;90424.0;;;;;cellule;ok;628.0;16.0;15.0;5.0;trel;1.0;1.0;1688.01;628.0;1.0;1688.01;628.0;;;;;;;;;Moyennes bibliographie;
+Cosmarium reniforme;Phytoplancton;Genre espèce;Desmidiaceae;;;;(RALFS) ARCHER;1874;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5371.0;COSREN;90495.0;COS.REN;Cosmarium reniforme;R1231;;cellule;ok;31256.0;52.0;50.0;30.0;ell;0.7;0.7;29541.45;28574.0;1.0;29541.45;28574.0;;;;;;;;;;
+Cosmarium sexangulare var. minus;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5365.0;COSMIS;90419.0;COS.MIS;;;;cellule;ok;1114.4;14.0;13.0;13.0;ell;0.9;0.9;1989.36;1114.39;1.0;1989.36;1114.39;;;;;;;;;;
+Cosmarium skujae;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;20103.0;COSSKU;90426.0;;;;;cellule;ok;383.08;12.0;12.2;5.0;trel;1.0;1.0;1070.93;383.08;1.0;1070.93;383.08;;;;;;;;;Moyennes bibliographie;
+Cosmarium sp.;Phytoplancton;Genre espèce;Desmidiaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;COSSPX;90400.0;COS.SPX;Cosmarium;R1233;;cellule;ok;7037.2;40.0;40.0;12.0;ell;0.7;0.7;15756.72;7033.6;1.0;15756.72;7033.6;;;;;;;;;;
+Cosmarium sp1;Phytoplancton;Genre espèce;Desmidiaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90421.0;;;;;cellule;ok;14224.1;47.0;34.0;17.0;ell;1.0;1.0;12087.05;14216.87;1.0;12087.05;14216.87;;;;;;;;;;
+Cosmarium spp.;Phytoplancton;Genre espèce;Desmidiaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90427.0;;;;;cellule;ok;2093.3333;20.0;20.0;10.0;trel;1.0;1.0;3037.18;2093.33;1.0;3037.18;2093.33;;;;;;;;;Moyennes bibliographie;
+Cosmarium subcostatum var. minus;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;20105.0;COSSMI;90428.0;;;;;cellule;ok;2194.075;21.5;19.5;10.0;trel;1.0;1.0;3201.91;2194.08;1.0;3201.91;2194.08;;;;;;;;;Moyennes bibliographie;
+Cosmarium subcostatum var. subcostatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90429.0;;;;;cellule;ok;4396.0;30.0;28.0;10.0;trel;1.0;1.0;5943.46;4396.0;1.0;5943.46;4396.0;;;;;;;;;Moyennes bibliographie;
+Cosmarium subcremulatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90425.0;;;;;cellule;ok;4135.1;27.0;25.0;13.0;ell;0.9;0.9;5740.45;4133.03;1.0;5740.45;4133.03;;;;;;;;;;
+Cosmarium subcrenatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;HANTZSCH in RABENHORST;1868;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5380.0;COSSUC;90422.0;COS.SUC;;;;cellule;ok;9233.5;29.0;26.0;26.0;ell;0.9;0.9;8190.3;9233.48;1.0;8190.3;9233.48;;;;;;;;;;
+Cosmarium subgranatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;20106.0;COSSUG;90496.0;;;;;cellule;ok;4866.0;31.0;22.0;11.0;ell;0.8;0.8;6456.23;3140.84;1.0;6456.23;3140.84;;;;;;;;;;
+Cosmarium subprotumidum;Phytoplancton;Genre espèce;Desmidiaceae;;;;NORDSTEDT;1876;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5381.0;COSSUP;90450.0;COS.SUP;Cosmarium subtumitum;R1240;;cellule;ok;4516.0;25.0;23.0;15.0;ell;1.0;1.0;4708.92;4513.75;1.0;4708.92;4513.75;;;;;;;;;;
+Cosmarium subprotumidum var. gregorii;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;20107.0;COSSGR;90431.0;;;;;cellule;ok;3136.075;25.5;23.5;10.0;trel;1.0;1.0;4380.65;3136.08;1.0;4380.65;3136.08;;;;;;;;;Moyennes bibliographie;
+Cosmarium subsalsum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90432.0;;;;;cellule;ok;1542.682;17.0;17.0;12.0;trel;0.85;0.85;2871.33;1542.68;1.0;2871.33;1542.68;;;;;;;;;Moyennes bibliographie;
+Cosmarium tenue;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5384.0;COSTEN;90481.0;COS.TEN;Cosmarium tenue;R1241;;cellule;ok;424.0;10.0;9.0;9.0;ell;0.9;0.9;990.07;381.51;1.0;990.07;381.51;;;;;;;;;;
+Cosmarium tumidum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;20109.0;COSTUM;90433.0;;;;;cellule;ok;5037.0835;35.0;27.5;10.0;trel;1.0;1.0;6826.28;5037.08;1.0;6826.28;5037.08;;;;;;;;;Moyennes bibliographie;
+Cosmarium turpinii;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5386.0;COSTUR;90491.0;COS.TUR;;;;cellule;ok;95295.0;70.0;65.0;40.0;ell;1.0;1.0;36458.55;95246.67;1.0;36458.55;95246.67;;;;;;;;;;
+Cosmarium undulatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5387.0;COSUND;90423.0;COS.UND;;;;cellule;ok;42754.5;54.0;41.0;41.0;ell;0.9;0.9;24006.36;42754.55;1.0;24006.36;42754.55;;;;;;;;;;
+Cosmarium undulatum var. minutum;Phytoplancton;Genre espèce;Desmidiaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;9113.0;COSUNM;90403.0;;;;;cellule;ok;3490.6333;29.0;23.0;10.0;trel;1.0;1.0;4894.37;3490.63;1.0;4894.37;3490.63;;;;;;;;;Moyennes bibliographie;
+Cosmarium venustum;Phytoplancton;Genre espèce;Desmidiaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5389.0;COSVEN;90404.0;;;;;cellule;ok;8095.3125;37.5;27.5;15.0;trel;1.0;1.0;7984.21;8095.31;1.0;7984.21;8095.31;;;;;;;;;Moyennes bibliographie;
+Cosmarium venustum var. minus;Phytoplancton;Genre espèce;Desmidiaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;20110.0;COSVMI;90492.0;;;;;cellule;ok;1727.88;22.0;20.0;7.5;ell;1.0;1.0;3144.12;1727.0;1.0;3144.12;1727.0;;;;;;;;;;
+Crucigenia fenestrata;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5629.0;CRUFEN;82411.0;;;;;colonie;ok;213.52;4.0;8.5;3.0;trel;1.0;1.0;255.44;53.38;4.0;1021.74;213.52;8.0;19.0;3.0;box;0.9;1.1;423.64;410.4;Moyennes bibliographie;
+Crucigenia lauterbornii;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5630.0;CRULAU;82410.0;CRU.LAU;Crucigenia lauterbornii;R0543;;colonie;ok;2714.3;9.0;6.0;6.0;ell;1.0;1.0;536.14;169.56;16.0;8578.25;2712.96;36.0;18.0;6.0;box;0.9;1.1;1767.27;3499.2;;
+Crucigenia mucronata;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9175.0;CRUMUC;82412.0;;;;;colonie;ok;588.75;5.0;7.5;4.0;ell;1.0;1.0;301.54;78.5;4.0;1206.17;314.0;10.0;15.0;4.0;box;0.9;1.1;454.55;540.0;Moyennes bibliographie;
+Crucigenia quadrata;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5631.0;CRUQUA;82413.0;;;;;colonie;ok;376.8;6.0;10.0;3.0;trel;1.0;1.0;427.44;94.2;4.0;1709.74;376.8;12.0;10.0;3.0;box;0.9;1.1;338.18;324.0;Moyennes bibliographie;
+Crucigenia tetrapedia;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5633.0;CRUTET;82420.0;;Crucigenia tetrapedia;R0550;;colonie;ok;408.6;7.0;7.0;3.0;ell;1.0;1.0;367.32;76.93;4.0;1469.27;307.72;17.0;17.0;3.0;box;1.0;1.0;782.0;867.0;;
+Crucigeniella apiculata;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5635.0;CRCAPI;83821.0;;;;;colonie;ok;296.73;7.0;4.5;4.5;trel;1.0;1.0;315.53;74.18;4.0;1262.14;296.73;14.0;9.0;4.5;box;0.9;1.1;417.27;510.3;Moyennes bibliographie;
+Crucigeniella crucifera;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(WOLLE) KOMÁREK;1974;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5636.0;CRCCRU;83820.0;CRC.CRU;Crucigeniella crucifera;R0553;;colonie;ok;301.6;9.0;4.0;4.0;ell;1.0;1.0;357.43;75.36;4.0;1429.71;301.44;16.0;8.0;4.0;box;0.9;1.1;407.27;460.8;;
+Crucigeniella irregularis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Crucigeniella lunaris;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20112.0;CRCLUN;83822.0;;;;;colonie;ok;359.00665;14.0;3.5;3.5;ell;1.0;1.0;482.04;89.75;4.0;1928.14;359.01;28.0;7.0;3.5;box;0.9;1.1;579.09;617.4;Moyennes bibliographie;
+Crucigeniella neglecta;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(Fott Ettl) Kom.;1974;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9179.0;CRCNEG;83823.0;;;;;colonie;ok;145.1936;6.0;3.4;3.4;ell;1.0;1.0;205.86;36.3;4.0;823.45;145.19;12.0;10.0;3.4;box;0.9;1.1;354.18;367.2;Moyennes bibliographie;
+Crucigeniella pulchra;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(W. & G.S.WEST) KOMÁREK;1974;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;CRCPUL;83830.0;CRC.PUL;Crucigeniella pulchra;R0554;;colonie;ok;418.9;8.0;5.0;5.0;ell;1.0;1.0;398.63;104.67;4.0;1594.5;418.67;16.0;10.0;5.0;box;0.9;1.1;527.27;720.0;;
+Crucigeniella rectangularis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(NÄGELI) KOMÁREK;1974;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5638.0;CRCREC;83810.0;CRC.REC;Crucigeniella rectangularis;R0555;;colonie;ok;938.3;7.0;4.0;4.0;ell;1.0;1.0;280.48;58.61;16.0;4487.61;937.81;28.0;16.0;4.0;box;0.9;1.1;1134.55;1612.8;;
+Cryptista;Phytoplancton;Règne;Chromista;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptomonadaceae;Phytoplancton;Famille;Cryptomonadales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptomonadales;Phytoplancton;Ordre;Cryptophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptomonas cf. brevis;Phytoplancton;Genre espèce;Cryptomonadaceae;;;;;;;Kugrens, P. & Clay, B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds), pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;;;30130.0;;Cryptomonas;R1394;;cellule;ok;1696.5;24.0;15.0;10.0;ell;1.0;1.0;2970.99;1884.0;1.0;2970.99;1884.0;;;;;;;;;;
+Cryptomonas cf. lucens;Phytoplancton;Genre espèce;Cryptomonadaceae;;;;;;;Kugrens, P. & Clay, B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds), pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;;;30170.0;;Cryptomonas lucens;R1381;;cellule;ok;381.2;13.0;8.0;7.0;ell;1.0;1.0;961.52;380.99;1.0;961.52;380.99;;;;;;;;;;
+Cryptomonas cf. pyrenoïdifera;Phytoplancton;Genre espèce;Cryptomonadaceae;;;;;;;Kugrens, P. & Clay, B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds), pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;;;30160.0;;;;;cellule;ok;837.7;16.0;10.0;10.0;ell;1.0;1.0;1571.26;837.33;1.0;1571.26;837.33;;;;;;;;;;
+Cryptomonas marsonii;Phytoplancton;Genre espèce;Cryptomonadaceae;;;;;;;Kugrens, P. & Clay, B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds), pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;;;30120.0;;Cryptomonas marssonii;R1382;;cellule;ok;1187.5;28.0;9.0;9.0;ell;1.0;1.0;2464.01;1186.92;1.0;2464.01;1186.92;;;;;;;;;;
+Cryptomonas ovata;Phytoplancton;Genre espèce;Cryptomonadaceae;;;;EHRENBERG;1838;;Kugrens, P. & Clay, B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds), pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;6274.0;CRYOVA;30105.0;CRY.OVA;;;;cellule;ok;3911.9167;50.0;13.0;11.5;trel;1.0;1.0;5984.74;3911.92;1.0;5984.74;3911.92;;;;;;;;;calcul avec tailles moyennes d'après Starmach 1974;
+Cryptomonas rostrata;Phytoplancton;Genre espèce;Cryptomonadaceae;;;;Troitzkaja emend. Kiselev;1931;;Kugrens, P. & Clay, B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds), pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;;CRYROT;30111.0;;;;;cellule;ok;5143.32;42.0;18.0;13.0;trel;1.0;1.0;6405.77;5143.32;1.0;6405.77;5143.32;;;;;;;;;calcul avec tailles moyennes d'après Starmach 1974;
+Cryptomonas rostratiformis;Phytoplancton;Genre espèce;Cryptomonadaceae;;;;SKUJA;1948;;Kugrens, P. & Clay, B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds), pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;6272.0;CRYROS;30110.0;CRY.ROS;Cryptomonas rostratiformis;R1393;;cellule;ok;2573.0;39.0;14.0;9.0;ell;1.0;1.0;4441.9;2571.66;1.0;4441.9;2571.66;;;;;;;;;;
+Cryptomonas sp.;Phytoplancton;Genre espèce;Cryptomonadaceae;;;espèce;;;;Kugrens, P. & Clay, B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds), pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;6269.0;CRYSPX;30100.0;CRY.SPX;Cryptomonas;R1394;;cellule;ok;1368.5;22.0;11.0;9.0;ell;1.0;1.0;2160.63;1139.82;1.0;2160.63;1139.82;;;;;;;;;;
+Cryptophyceae;Phytoplancton;Classe;Cryptophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptophyta;Phytoplancton;Embranchement;Cryptista;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cyanobacteria;Phytoplancton;Embranchement;Negibacteria;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cyanobacteries;Phytoplancton;Classe;Cyanobacteria;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cyanobactéries indéterminées Ø inf 2,5µm;Phytoplancton;Classe;Cyanobacteria;;;classe;;;;;;;Cyanobactéries;;;10002.0;;;;;cellule;ok;33.493332;4.0;4.0;4.0;ell;1.0;1.0;166.38;33.49;1.0;166.38;33.49;;;;;;;;;Moyennes bibliographie;
+Cyanobactéries indéterminées Ø sup 2,5µm;Phytoplancton;Classe;Cyanobacteria;;;classe;;;;;;;Cyanobactéries;;;10003.0;;;;;cellule;ok;4.1866665;2.0;2.0;2.0;ell;1.0;1.0;46.6;4.19;1.0;46.6;4.19;;;;;;;;;Moyennes bibliographie;
+Cyanobium sp.;Phytoplancton;Genre espèce;Synechococcaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;CBISPX;11945.0;;;;;cellule;ok;43.0;3.5;3.5;3.5;ell;1.0;1.0;129.23;22.44;1.0;129.23;22.44;;;;;;;;;;
+Cyanodictyon planctonicum;Phytoplancton;Genre espèce;Synechococcaceae;;;;B. Meyer;1994;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;9709.0;CDIPLA;11946.0;CYA.PLA;;;;colonie;ok;39.25;1.5;1.0;1.0;trel;1.0;1.0;19.02;0.79;500.0;9508.85;392.5;60.0;60.0;60.0;trel;0.1;1.0;35125.51;11304.0;Mesure sur le Léman n16 2008;
+cyanodictyon planctonicum colonie 10 µm;Phytoplancton;Genre espèce;Synechococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;9709.0;CDIPLA;11949.0;;;;;colonie;ok;15.7;1.5;1.0;1.0;trel;1.0;1.0;19.02;0.79;20.0;380.35;15.7;10.0;10.0;1.0;ell;0.1;1.0;652.01;5.23;Mesure sur le Léman 2018;
+cyanodictyon reticulatum;Phytoplancton;Genre espèce;Synechococcaceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cyanosarcina chroococcoides;Phytoplancton;Genre espèce;Chroococcaceae;;;;(Geitler) Kovacik;1988;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;11947.0;CYA.CHR;;;;colonie;ok;1526.04;9.0;9.0;9.0;sphe;1.0;1.0;254.34;381.51;4.0;1017.36;1526.04;20.0;10.0;10.0;box;0.8;1.0;1000.0;1600.0;moyenne Susswasserflora;
+Cyclostephanos dubius;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;(HUSTEDT) ROUND;1988;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8599.0;CYSDUB;70301.0;CYS.DUB;Cyclostephanos dubius;R0038;CDUB;cellule;ok;1073.3;14.5;14.5;6.5;tub;1.0;1.0;726.52;2393.17;1.0;726.52;2393.17;;;;;;;;;;
+Cyclostephanos invisitatus;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Thalassiosira invisitatus;;Diatomées;8600.0;CYSINV;70302.0;;;;CINV;cellule;ok;235.5;10.0;10.0;3.0;tub;1.0;1.0;328.13;785.0;1.0;328.13;785.0;;;;;;;;;Valeurs OMNIDIA;
+Cyclotella atomus;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8603.0;CYCATO;70269.0;;;;CATO;cellule;ok;39.25;5.0;5.0;2.0;tub;1.0;1.0;84.78;98.13;1.0;84.78;98.13;;;;;;;;;;
+Cyclotella atomus var. gracilis;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;Genkal & Kiss;1993;;Genkal, S.I. and Kiss, K.T. 1993. Morphological variability of the diatom Cyclotella atomus Hustedt var. atomus and C. atomus var. gracilis var. nov. In: H. van Dam (ed.), Proceedings of the Twelfth International Diatom Symposium, Renesse, The Netherlands, 30 August - 5 September, 1992. Hydrobiologia 269/270:39-47.;;;Diatomées;11415.0;;70272.0;;;;CAGR;cellule;ok;39.25;5.0;5.0;2.0;tub;1.0;1.0;84.78;98.13;1.0;84.78;98.13;;;;;;;;;;
+Cyclotella bodanica var. bodanica;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;CYCBOB;70271.0;;;;CBOD;cellule;ok;16000.0;40.0;40.0;10.0;tub;1.0;1.0;5181.0;50240.0;1.0;5181.0;50240.0;;;;;;;;;;
+Cyclotella bodanica var. lemanensis;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70270.0;;Cyclotella bodanica;R0040;CBOL;cellule;ok;12566.4;40.0;40.0;10.0;tub;1.0;1.0;5181.0;50240.0;1.0;5181.0;50240.0;;;;;;;;;;
+Cyclotella cf. distinguenda var. unipunctata;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70292.0;;Cyclotella;R0053;CDUN;cellule;ok;88.1;6.7;6.7;2.5;tub;1.0;1.0;150.77;236.1;1.0;150.77;236.1;;;;;;;;;;
+Cyclotella cf. quadrijuncta;Phytoplancton;Genre espèce;Stephanodiscaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70293.0;CYC.QUA;Cyclotella;R0053;CQDJ;cellule;ok;2862.8;27.0;27.0;5.0;tub;1.0;1.0;2328.31;15451.16;1.0;2328.31;15451.16;;;;;;;;;;
+Cyclotella cf. rossii;Phytoplancton;Genre espèce;Stephanodiscaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70245.0;CYC.ROS;Cyclotella rossii;R0052;CROS;cellule;ok;748.4;16.5;16.5;3.5;tub;1.0;1.0;874.1;3526.32;1.0;874.1;3526.32;;;;;;;;;;
+Cyclotella comensis;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;GRUNOW;1882;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8609.0;CYCCOM;70260.0;CYC.COM;Cyclotella comensis;R0042;CCMS;cellule;ok;153.86;7.0;7.0;4.0;tub;1.0;1.0;178.98;269.26;1.0;178.98;269.26;;;;;;;;;;
+Cyclotella costei;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8615.0;CYCCOS;70204.0;CYC.CYC;Cyclotella;R0053;CCOS;cellule;ok;254.34;9.0;9.0;4.0;tub;1.0;1.0;279.46;572.27;1.0;279.46;572.27;;;;;;;;;;
+Cyclotella costei f. petite aire centrale;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70199.0;;;;;cellule;ok;254.34;9.0;9.0;4.0;tub;1.0;1.0;279.46;572.27;1.0;279.46;572.27;;;;;;;;;;
+Cyclotella cyclopuncta;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8617.0;CYCCYC;70201.0;CYC.CYC;Cyclotella;R0053;CCCP;cellule;ok;254.34;9.0;9.0;4.0;tub;1.0;1.0;279.46;572.27;1.0;279.46;572.27;;;;;;;;;;
+Cyclotella delicatula;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;Hustedt;1952;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;Cyclotella costei, Cyclotella cyclopuncta, Cyclotella wuetrichiana (D'après K Kiss, Diatom Research);Diatomées;12414.0;;70207.0;CYC.DEL;Cyclotella;;;cellule;ok;56.52;6.0;6.0;2.0;tub;1.0;1.0;119.32;169.56;1.0;119.32;169.56;;;;;;;;;valeurs moyennes sur Bourget. Léman 2010. Il s'agit de petites formes de C costei. mais avec des stries très courtes. voire quasi inexistantes;
+Cyclotella distinguenda;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9507.0;CYCDIS;70203.0;;;;CDTG;cellule;ok;990.0;20.5;20.5;3.0;tub;1.0;1.0;1333.72;6762.87;1.0;1333.72;6762.87;;;;;;;;;Valeurs OMNIDIA;
+Cyclotella glabriuscula;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;CYCGLA;70250.0;CYC.GLA;;;CGLA;cellule;ok;1570.8;20.0;20.0;5.0;tub;1.0;1.0;1295.25;6280.0;1.0;1295.25;6280.0;;;;;;;;;;
+Cyclotella kuetzingiana;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8627.0;CYCKUE;70202.0;CYC.KUE;;;CKUT;cellule;ok;2260.8;24.0;24.0;5.0;tub;1.0;1.0;1847.89;10851.84;1.0;1847.89;10851.84;;;;;;;;;Mesure prise sur Annecy 2007;
+Cyclotella meduanae;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8631.0;CYCMED;70291.0;;;;CMED;cellule;ok;1570.8;20.0;20.0;5.0;tub;1.0;1.0;1295.25;6280.0;1.0;1295.25;6280.0;;;;;;;;;;
+Cyclotella meneghiniana;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;KÜTZING;1844;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8633.0;CYCMEN;70290.0;CYC.MEN;Cyclotella meneghiniana;R0047;CMEN;cellule;ok;1570.8;20.0;20.0;5.0;tub;1.0;1.0;1295.25;6280.0;1.0;1295.25;6280.0;;;;;;;;;;
+Cyclotella ocellata;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;PANTOCSEK;1901;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8635.0;CYCOCE;70295.0;CYC.OCE;Cyclotella ocellata;R0048;COCE;cellule;ok;314.2;10.0;10.0;4.0;tub;1.0;1.0;339.12;785.0;1.0;339.12;785.0;;;;;;;;;;
+Cyclotella operculata;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8637.0;CYCOPE;70210.0;CYC.OPE;Cyclotella;R0053;COPE;cellule;ok;169.6;6.0;6.0;6.0;tub;1.0;1.0;169.56;169.56;1.0;169.56;169.56;;;;;;;;;;
+Cyclotella planctonica;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;10545.0;CYCPLA;70296.0;;;;CPLT;cellule;ok;12566.0;40.0;40.0;10.0;tub;1.0;1.0;5181.0;50240.0;1.0;5181.0;50240.0;;;;;;;;;;
+Cyclotella polymorpha;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;12101.0;CYCPOL;70297.0;;;;CPOL;cellule;ok;1570.0;20.0;20.0;5.0;tub;1.0;1.0;1295.25;6280.0;1.0;1295.25;6280.0;;;;;;;;;Mesure sur le Bourget n13;
+Cyclotella pseudostelligera;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8641.0;CYCPSS;70266.0;;Cyclotella pseudostelligera;R0050;CPST;cellule;ok;115.4;7.0;7.0;3.0;tub;1.0;1.0;167.99;269.26;1.0;167.99;269.26;;;;;;;;;;
+Cyclotella radiosa;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;(GRUNOW) LEMMERMANN;1900;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Cyclotella comta;Puncticulata radiosa;Diatomées;8643.0;CYCRAD;70240.0;CYC.RAD;Cyclotella radiosa;R0051;CRAD;cellule;ok;1570.8;20.0;20.0;5.0;tub;1.0;1.0;1295.25;6280.0;1.0;1295.25;6280.0;;;;;;;;;;
+Cyclotella sp.;Phytoplancton;Genre espèce;Stephanodiscaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;CYCSPX;70200.0;CYC.SPX;Cyclotella;R0053;CYLS;cellule;ok;49.1;5.0;5.0;2.5;tub;1.0;1.0;88.31;98.13;1.0;88.31;98.13;;;;;;;;;;
+Cyclotella spp<9µm /Stephanodiscus minutulus inf 7µm;Phytoplancton;Genre espèce;Stephanodiscaceae;;;genre;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70205.0;;Cyclotella;R0053;;cellule;ok;154.0;7.0;7.0;4.0;tub;1.0;1.0;178.98;269.26;1.0;178.98;269.26;;;;;;;;;;
+Cyclotella spp>9µm /Stephanodiscus minutulus sup 7µm;Phytoplancton;Genre espèce;Stephanodiscaceae;;;genre;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70206.0;;Cyclotella sp.;R0053;;cellule;ok;255.0;9.0;9.0;4.0;tub;1.0;1.0;279.46;572.27;1.0;279.46;572.27;;;;;;;;;;
+Cyclotella stelligera;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;CLEVE & GRUNOW;1881;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8648.0;CYCSTE;70265.0;CYC.STE;;;CSTE;cellule;ok;203.6;9.0;9.0;3.2;tub;1.0;1.0;270.42;572.27;1.0;270.42;572.27;;;;;;;;;;
+Cyclotella wuethrichiana;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8654.0;CYCWUE;70294.0;CYC.WUE;;;CWUE;cellule;ok;39.3;5.0;5.0;2.0;tub;1.0;1.0;84.78;98.13;1.0;84.78;98.13;;;;;;;;;;
+Cylindrospermum Bourget03;Phytoplancton;Genre espèce;Nostocaceae;;;;;;;Komarek J, Anagnostidis K, 1989, Modern approach to the classification system of Cyanophytes 4-Nostocales. Arch. Hydrobiol. Suppl., 82: 247-345,;;;Cyanobactéries;;;11950.0;;;;;filament;ok;1795.9;3.5;3.5;3.5;tub;1.0;1.0;57.7;33.66;80.0;4615.8;2692.55;280.0;3.5;3.5;tub;1.0;1.0;3096.43;2692.55;;
+Cymatopleura elliptica;Phytoplancton;Genre espèce;Surirellaceae;;;;(BRÉBISSON) W.SMITH;1851;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9462.0;CYTELL;72020.0;CYT.ELL;;;CELL;cellule;ok;72000.0;160.0;50.0;15.0;box;0.6;0.6;37166.67;72000.0;1.0;37166.67;72000.0;;;;;;;;;;
+Cymatopleura solea;Phytoplancton;Genre espèce;Surirellaceae;;;;(BRÉBISSON) W.SMITH;1851;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9463.0;CYTSOL;72010.0;CYT.SOL;Cymatopleura solea;R0162;CSOL;cellule;ok;34020.0;90.0;35.0;18.0;box;0.6;0.6;18000.0;34020.0;1.0;18000.0;34020.0;;;;;;;;;;
+Cymatopleura solea var. regula;Phytoplancton;Genre espèce;Surirellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7255.0;CYTREG;72030.0;CYT.REG;;;CSRE;cellule;ok;44880.0;110.0;40.0;17.0;box;0.6;0.6;23166.67;44880.0;1.0;23166.67;44880.0;;;;;;;;;;
+Cymbella affinis;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7258.0;CYMAFF;71790.0;CYM.AFF;Cymbella;R0177;CAFF;cellule;ok;760.0;40.0;8.0;3.0;box;0.8;0.8;1160.0;768.0;1.0;1160.0;768.0;;;;;;;;;;
+Cymbella amphicephala;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7260.0;CYMAMP;71791.0;CYM.AMP;Cymbella sp;R0177;CAPH;cellule;ok;470.0;28.0;6.0;3.5;box;0.8;0.8;717.5;470.4;1.0;717.5;470.4;;;;;;;;;;
+Cymbella caespitosa;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7277.0;CYMCAE;71720.0;CYM.CAE;Cymbella caespitosa;R0166;CCAE;cellule;ok;437.5;25.0;10.0;2.5;box;0.7;0.7;964.29;437.5;1.0;964.29;437.5;;;;;;;;;;
+Cymbellaceae;Phytoplancton;Famille;Cymbellales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cymbella cistula;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7280.0;CYMCIS;71722.0;;;;CCIS;cellule;ok;6626.0;77.5;19.0;6.0;box;0.7;0.7;5861.43;6184.5;1.0;5861.43;6184.5;;;;;;;;;Valeurs OMNIDIA;
+Cymbella compacta;Phytoplancton;Genre espèce;Cymbellaceae;;;;Ostrup;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;11662.0;CYMCOP;71726.0;CYM.COM;;;CCMP;cellule;ok;1201.0;52.0;13.0;4.0;box;0.5;0.5;3744.0;1352.0;1.0;3744.0;1352.0;;;;;;;;;Valeurs OMNIDIA;
+Cymbella cuspidata;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7283.0;CYMCUS;71723.0;;;;CCUS;cellule;ok;2094.4;44.0;17.0;4.0;box;0.7;0.7;2834.29;2094.4;1.0;2834.29;2094.4;;;;;;;;;Moyennes bibliographie;
+Cymbella cymbiformis;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7285.0;CYMCYM;71725.0;CYM.CYM;;;CCYM;cellule;ok;350.0;25.0;8.0;2.5;box;0.7;0.7;807.14;350.0;1.0;807.14;350.0;;;;;;;;;;
+Cymbella delicatula;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7288.0;CYMDEL;71740.0;CYM.DEL;Cymbella;R0177;CDEL;cellule;ok;105.0;15.0;5.0;2.0;box;0.7;0.7;328.57;105.0;1.0;328.57;105.0;;;;;;;;;;
+Cymbella ehrenbergii;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7293.0;CYMEHR;71780.0;CYM.EHR;Cymbella ehrenbergii;R0169;CEHR;cellule;ok;11858.0;70.0;22.0;11.0;box;0.7;0.7;7291.43;11858.0;1.0;7291.43;11858.0;;;;;;;;;;
+Cymbella excisa;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7295.0;CYMEXC;71781.0;CYM.EXC;;;CAEX;cellule;ok;604.8;27.0;8.0;4.0;box;0.7;0.7;1017.14;604.8;1.0;1017.14;604.8;;;;;;;;;Moyennes bibliographie;
+Cymbella helvetica var. curta;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7306.0;CYMCUR;71770.0;CYM.CUR;;;CHCU;cellule;ok;2839.2;48.0;13.0;6.5;box;0.7;0.7;2915.71;2839.2;1.0;2915.71;2839.2;;;;;;;;;;
+Cymbella laevis;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7325.0;CYMLAE;71721.0;CYM.LAE;;;CLAE;cellule;ok;262.5;25.0;6.0;2.5;box;0.7;0.7;650.0;262.5;1.0;650.0;262.5;;;;;;;;;;
+Cymbella lanceolata;Phytoplancton;Genre espèce;Cymbellaceae;;;;(C.AGARDH) C.AGARDH;1830;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7326.0;CYMLAN;71775.0;CYM.LAN;;;CLAN;cellule;ok;24500.0;140.0;28.0;9.0;box;0.7;0.7;15520.0;24696.0;1.0;15520.0;24696.0;;;;;;;;;;
+Cymbella lata;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7328.0;CYMLAT;71776.0;;;;CLAT;cellule;ok;14349.0;62.0;20.5;16.0;box;0.7;0.7;7402.86;14235.2;1.0;7402.86;14235.2;;;;;;;;;Valeurs OMNIDIA;
+Cymbella leptoceros;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7330.0;CYMLEP;71777.0;;;;CLEP;cellule;ok;1162.0;37.5;10.0;4.5;box;0.7;0.7;1682.14;1181.25;1.0;1682.14;1181.25;;;;;;;;;Valeurs OMNIDIA;
+Cymbellales;Phytoplancton;Ordre;Bacillariophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cymbella microcephala;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;Encyonopsis microcephala;Diatomées;;CYMMIC;71750.0;CYM.MIC;Cymbella prostrata;R0175;CMIC;cellule;ok;210.0;24.0;5.0;2.5;box;0.7;0.7;550.0;210.0;1.0;550.0;210.0;;;;;;;;;;
+Cymbella minuta;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;Encyonema minutum;Diatomées;;CYMMIN;71381.0;CYM.MIN;;;CMIN;cellule;ok;110.0;21.0;5.0;1.5;box;0.7;0.7;411.43;110.25;1.0;411.43;110.25;;;;;;;;;;
+Cymbella naviculiformis;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7339.0;CYMNAF;71760.0;CYM.NAF;Cymbella;R0177;CNAV;cellule;ok;833.0;34.0;10.0;3.5;box;0.7;0.7;1411.43;833.0;1.0;1411.43;833.0;;;;;;;;;;
+Cymbella parva;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7346.0;CYMPAR;71761.0;CYM.PAR;;;CPAR;cellule;ok;645.575;31.0;8.5;3.5;box;0.7;0.7;1147.86;645.58;1.0;1147.86;645.58;;;;;;;;;;
+Cymbella prostrata;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;CYMPRO;71730.0;;Cymbella prostrata;R0175;CPRO;cellule;ok;6720.0;60.0;16.0;10.0;box;0.7;0.7;4914.29;6720.0;1.0;4914.29;6720.0;;;;;;;;;;
+Cymbella sp.;Phytoplancton;Genre espèce;Cymbellaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;CYMSPX;71700.0;CYM.SPX;Cymbella;R0177;CYMS;cellule;ok;3024.0;40.0;18.0;6.0;box;0.7;0.7;3051.43;3024.0;1.0;3051.43;3024.0;;;;;;;;;;
+Cymbella ventricosa;Phytoplancton;Genre espèce;Cymbellaceae;;;;(KÜTZING) KÜTZING, nom. inval.,  non (C.AGARDH) C.AGARDH 1830;1848;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;Encyonema ventricosum;Diatomées;7381.0;CYMVEN;71710.0;CYM.VEN;Cymbella ventricosa;R0179;CVEN;cellule;ok;210.0;20.0;7.0;2.5;box;0.6;0.6;691.67;210.0;1.0;691.67;210.0;;;;;;;;;;
+Cymbopleura lata;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;71801.0;;;;CYBL;cellule;ok;3784.2;53.0;17.0;6.0;box;0.7;0.7;3774.29;3784.2;1.0;3774.29;3784.2;;;;;;;;;;
+Cymbopleura similiformis;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;20118.0;CYBSIM;71802.0;;;;CSFM;cellule;ok;1029.0;35.0;7.0;6.0;box;0.7;0.7;1420.0;1029.0;1.0;1420.0;1029.0;;;;;;;;;;
+Cyste 1 de Chrysophycée;Phytoplancton;Genre espèce;Chrysophyceae;;;classe;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50001.0;;;;;cellule;ok;321.5;8.5;8.5;8.5;ell;1.0;1.0;718.58;321.39;1.0;718.58;321.39;;;;;;;;;;
+Cyste 2 de Chrysophycée;Phytoplancton;Genre espèce;Chrysophyceae;;;classe;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50002.0;;;;;cellule;ok;1560.0;11.6;11.6;11.6;ell;1.0;1.0;1327.92;816.87;1.0;1327.92;816.87;;;;;;;;;;
+Cyste de Ceratium hirundinella;Phytoplancton;Genre espèce;Ceratiaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20490.0;;Ceratium hirundinella;R1672;;cellule;ok;20000.0;50.0;27.0;15.0;ell;1.0;1.0;10498.16;10597.5;1.0;10498.16;10597.5;;;;;;;;;;
+Denticula tenuis;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8794.0;DENTEN;73040.0;DEN.TEN;Pennales;R0422;DTEN;cellule;ok;450.0;30.0;5.0;5.0;box;0.6;0.6;1083.33;450.0;1.0;1083.33;450.0;;;;;;;;;;
+Desmarella brachycalyx;Phytoplancton;Genre espèce;Codonosigidae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;20121.0;DEMBRA;51000.0;;Desmarella;R1356;;cellule;ok;63.6;6.0;4.5;4.5;ell;1.0;1.0;272.47;63.59;1.0;272.47;63.59;;;;;;;;;;
+Desmatractum indutum;Phytoplancton;Genre espèce;Treubariaceae;;;;;;;John, D.M. & Tsarenko, P.M. (2002). Order Chlorococcales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 327-409. Cambridge: Cambridge University Press.;;;Chlorophycées;9183.0;DEAIND;83800.0;;;;;cellule;ok;1130.4;30.0;12.0;8.0;doco;1.0;1.0;2967.55;753.6;1.0;2967.55;753.6;;;;;;;;;Moyennes bibliographie;
+Desmidiaceae;Phytoplancton;Famille;Zygnematales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Desmodesmus granulatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;Tsarenko;1973;;Tsarenko, P. (2000). Chlorococcales. In: Wasser, S.P. & Tsarenko, P. Diversity of algae in Ukraine. Algologia 10(4): 1-309.;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Desmodesmus opoliensis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Diatoma ehrenbergii;Phytoplancton;Genre espèce;Fragilariaceae;;;;KÜTZING;1848;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Diatoma vulgare v ehren;;Diatomées;6615.0;DIAEHR;70430.0;DIA.EHR;Diatoma ehrenbergii;R0184;DEHR;cellule;ok;7200.0;80.0;10.0;10.0;box;0.9;0.9;3777.78;7200.0;1.0;3777.78;7200.0;;;;;;;;;;
+Diatoma elongatum;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;DIAELO;70431.0;;;;DELO;cellule;ok;615.0;71.0;3.5;2.75;box;0.9;0.9;1007.5;615.04;1.0;1007.5;615.04;;;;;;;;;Valeurs OMNIDIA;
+Diatoma mesodon;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6624.0;DIAMES;70450.0;DIA.MES;;;DMES;cellule;ok;900.0;30.0;10.0;3.0;box;1.0;1.0;840.0;900.0;1.0;840.0;900.0;;;;;;;;;;
+Diatoma moniliformis;Phytoplancton;Genre espèce;Fragilariaceae;;;;KÜTZING;1833;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6625.0;DIAMON;70440.0;DIA.MON;Diatoma moniliformis;R0186;DMON;cellule;ok;524.9;18.0;5.4;5.4;box;1.0;1.0;447.12;524.88;1.0;447.12;524.88;;;;;;;;;;
+Diatoma tenuis;Phytoplancton;Genre espèce;Fragilariaceae;;;;C.AGARDH;1812;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Diatoma elongatum;;Diatomées;20336.0;DIATEN;70410.0;DIA.TEN;Diatoma tenuis v. elongatum;R0190;DITE;cellule;ok;1035.0;115.0;3.0;3.0;box;1.0;1.0;1398.0;1035.0;1.0;1398.0;1035.0;;;;;;;;;;
+Diatoma vulgaris;Phytoplancton;Genre espèce;Fragilariaceae;;;;BORY DE SAINT VINCENT;1824;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6631.0;DIAVUL;70420.0;DIA.VUL;Diatoma vulgaris;R0191;DVUL;cellule;ok;3600.0;45.0;10.0;10.0;box;0.8;0.8;2500.0;3600.0;1.0;2500.0;3600.0;;;;;;;;;;
+Diatomée morte;Phytoplancton;Genre espèce;Bacillariophyta;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;79002.0;;;;;cellule;ok;;15.0;10.0;5.0;box;1.0;1.0;550.0;750.0;1.0;550.0;750.0;;;;;;;;;;
+Diatomées sp.;Phytoplancton;Genre espèce;Bacillariophyta;;;classe;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;79000.0;;;;;cellule;ok;1323.0;35.0;12.0;3.5;box;0.9;0.9;1298.89;1323.0;1.0;1298.89;1323.0;;;;;;;;;;
+Diatomée vivante;Phytoplancton;Genre espèce;Bacillariophyta;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;79001.0;;;;;cellule;ok;;15.0;10.0;5.0;box;1.0;1.0;550.0;750.0;1.0;550.0;750.0;;;;;;;;;;
+Dictyochlorella reniformis;Phytoplancton;Genre espèce;Radiococcaceae;;;;;;;;;;Chlorophycées;20125.0;DCLREN;84312.0;;;;;colonie;ok;535.8933;8.0;4.0;4.0;ell;1.0;1.0;318.9;66.99;8.0;2551.21;535.89;;;;;;;;;Moyennes bibliographie;
+Dictyochophyceae;Phytoplancton;Classe;Ochrophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Dictyosphaerioideae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Dictyosphaerium cf subsolitarium;Phytoplancton;Genre espèce;Dictyosphaerioideae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;82011.0;DIC.SUB;Dictyosphaerium subsolitarium;R0575;;colonie;ok;45.0;2.2;2.2;2.2;ell;1.0;1.0;55.14;5.57;8.0;441.12;44.58;13.2;13.2;13.2;sphe;0.1;1.0;547.11;120.36;;
+Dictyosphaerium cf tetrachotomum;Phytoplancton;Genre espèce;Dictyosphaerioideae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;82020.0;DIC.TET;;;;colonie;ok;4188.8;10.0;5.0;5.0;ell;1.0;1.0;495.04;130.83;32.0;15841.14;4186.67;60.0;60.0;60.0;sphe;0.1;1.0;11304.0;11304.0;;
+Dictyosphaerium ehrenbergianum;Phytoplancton;Genre espèce;Dictyosphaerioideae;;;;;;;;;;Chlorophycées;5646.0;DICEHR;82021.0;;;;;colonie;ok;2051.4666;5.0;7.0;7.0;ell;1.0;1.0;357.21;128.22;16.0;5715.31;2051.47;30.0;30.0;30.0;sphe;0.1;1.0;2826.0;1413.0;Moyennes bibliographie;
+Dictyosphaerium elongatum;Phytoplancton;Genre espèce;Dictyosphaerioideae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5647.0;DICELO;82015.0;DIC.ELO;;;;colonie;ok;3248.2;6.0;6.0;6.0;ell;1.0;1.0;363.29;113.04;32.0;11625.22;3617.28;36.0;36.0;36.0;sphe;0.1;1.0;4069.44;2441.66;;
+Dictyosphaerium pulchellum;Phytoplancton;Genre espèce;Dictyosphaerioideae;;;;WOOD;1872;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5648.0;DICPUL;82010.0;DIC.PUL;Dictyosphaerium pulchellum;R0571;;colonie;ok;5747.0;7.0;7.0;7.0;ell;1.0;1.0;490.83;179.5;32.0;15706.62;5744.11;42.0;42.0;42.0;sphe;0.1;1.0;5538.96;3877.27;;
+Dictyosphaerium subsolitarium;Phytoplancton;Genre espèce;Dictyosphaerioideae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9192.0;DICSUB;82012.0;;;;;colonie;ok;45.0;2.2;2.2;2.2;ell;1.0;1.0;55.14;5.57;8.0;441.12;44.58;13.2;13.2;13.2;sphe;0.1;1.0;547.11;120.36;;
+dictyosphaerium subsolitarium cellule isolee;Phytoplancton;Genre espèce;Dictyosphaerioideae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;82013.0;;;;;cellule;;55.13992;2.2;2.2;2.2;ell;1.0;1.0;55.13992;5.5724535;1.0;55.13992;5.5724535;;;;;;;;;Moyennes bibliographie;
+Didymocystis bicellularis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(CHODAT) KOMÁREK;1973;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5654.0;DIDBIC;85710.0;DID.BIC;Didymocystis bicellularis;R0578;;colonie;ok;218.9;13.0;3.0;3.0;ell;1.0;1.0;384.1;61.23;2.0;768.19;122.46;13.0;6.0;3.0;box;0.9;1.0;270.0;210.6;;
+Didymocystis fina;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9193.0;DIDFIN;85711.0;DID.FIN;;;;colonie;ok;28.622147;5.65;2.2;2.2;ell;1.0;1.0;125.86;14.31;2.0;251.72;28.62;5.65;4.4;2.2;box;0.9;1.0;93.94;49.22;Mesures moyennes selon Huber Pestalozzi;
+Didymocystis planctonica;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;DIDPLA;85720.0;;Didymocystis planktonica;R0581;;colonie;ok;99.5;11.0;2.4;2.4;ell;1.0;1.0;260.81;33.16;2.0;521.62;66.32;11.0;4.8;2.4;box;0.9;1.0;181.44;114.05;;
+Didymocystis sp.;Phytoplancton;Genre espèce;Scenedesmaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;DIDSPX;85730.0;DID.SPX;;;;colonie;ok;148.9;12.0;2.5;2.5;ell;1.0;1.0;295.87;39.25;2.0;591.74;78.5;12.0;5.0;2.5;box;0.9;1.0;205.0;135.0;;
+Dimorphococcus cordatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;85732.0;DIM.COR;;;;colonie;ok;828.96;11.0;6.0;6.0;ell;1.0;1.0;652.03;207.24;4.0;2608.12;828.96;15.0;15.0;15.0;trel;0.3;1.0;2211.34;529.88;Moyennes bibliographie;
+Dimorphococcus lunatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;6030.0;DIMLUN;85731.0;;;;;colonie;ok;6423.3936;17.0;9.5;4.0;ell;1.0;1.0;1181.83;338.07;8.0;9454.67;2704.59;25.0;60.0;25.0;trel;0.3;1.0;10920.38;5887.5;Moyennes bibliographie;
+Dinobryaceae;Phytoplancton;Famille;Chromulinales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Dinobryon anneciense;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6125.0;DINANN;50301.0;DIN.ANN;Dinobryon anneciense;R1086;;cellule;ok;1215.0;43.0;6.0;6.0;ell;0.8;0.8;3148.64;648.1;1.0;3148.64;648.1;;;;;;;;;;
+dinobryon balticum plein;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50400.0;;;;;cellule;;200.96;30.0;4.0;4.0;ell;0.8;0.6;1954.95;200.96;1.0;1954.95;200.96;;;;;;;;;;
+dinobryon balticum vide;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50401.0;;;;;cellule;;200.96;30.0;4.0;4.0;ell;0.8;0.6;1954.95;200.96;1.0;1954.95;200.96;;;;;;;;;;
+Dinobryon bavaricum;Phytoplancton;Genre espèce;Dinobryaceae;;;;IMHOF;1890;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6127.0;DINBAV;50395.0;DIN.BAV;Dinobryon bavaricum;R1066;;cellule;ok;150.8;30.0;4.0;4.0;ell;0.6;0.6;1954.95;150.72;1.0;1954.95;150.72;;;;;;;;;;
+Dinobryon bavaricum plein;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50396.0;;;;;cellule;ok;150.8;30.0;4.0;4.0;ell;0.6;0.6;1954.95;150.72;1.0;1954.95;150.72;;;;;;;;;;
+Dinobryon bavaricum vide;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50397.0;;;;;cellule;ok;150.8;30.0;4.0;4.0;ell;0.6;0.6;1954.95;150.72;1.0;1954.95;150.72;;;;;;;;;;
+Dinobryon calyciforme plein;Phytoplancton;Genre espèce;Dinobryaceae;;;;Bachman;;;Starmach, page 321;;;Chrysophycées;;;50398.0;;;;;cellule;ok;341.28;30.0;6.0;6.0;ell;0.6;0.6;2932.43;339.12;1.0;2932.43;339.12;;;;;;;;;moyenne starmach;
+Dinobryon cf stokesii var. neustonicum;Phytoplancton;Genre espèce;Dinobryaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50375.0;;Dinobryon pediforme;R1079;;cellule;ok;201.6;22.0;5.0;5.0;ell;0.7;0.7;1538.69;201.48;1.0;1538.69;201.48;;;;;;;;;;
+Dinobryon crenulatum;Phytoplancton;Genre espèce;Dinobryaceae;;;;WEST;1907;;;;;Chrysophycées;9577.0;DINCRE;;;;;;;;205.0;;;;;;;;;;;;;;;;;;;;;
+Dinobryon cylindricum;Phytoplancton;Genre espèce;Dinobryaceae;;;;IMHOF;1890;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6129.0;DINCYL;50320.0;DIN.CYL;Dinobryon cylindricum;R1070;;cellule;ok;805.8;38.0;9.0;9.0;ell;0.5;0.5;6680.25;805.41;1.0;6680.25;805.41;;;;;;;;;;
+Dinobryon cylindricum plein;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50321.0;DIN.CY1;;;;cellule;ok;805.8;38.0;9.0;9.0;ell;0.5;0.5;6680.25;805.41;1.0;6680.25;805.41;;;;;;;;;;
+Dinobryon cylindricum var. alpinum plein;Phytoplancton;Genre espèce;Dinobryaceae;;;;(Imhof) Bachmann;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50323.0;;;;;cellule;ok;1369.3334;52.0;10.0;10.0;trel;0.5;0.5;10149.7;1360.67;1.0;10149.7;1360.67;;;;;;;;;moyenne starmach;
+Dinobryon cylindricum var. alpinum vide;Phytoplancton;Genre espèce;Dinobryaceae;;;;(Imhof) Bachmann;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50324.0;;;;;cellule;ok;1369.3334;52.0;10.0;10.0;trel;0.5;0.5;10149.7;1360.67;1.0;10149.7;1360.67;;;;;;;;;moyenne starmach;
+Dinobryon cylindricum vide;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50322.0;DIN.CY2;;;;cellule;ok;805.8;38.0;9.0;9.0;ell;0.5;0.5;6680.25;805.41;1.0;6680.25;805.41;;;;;;;;;;
+Dinobryon divergens;Phytoplancton;Genre espèce;Dinobryaceae;;;;IMHOF;1890;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6130.0;DINDIV;50330.0;DIN.DIV;Dinobryon divergens;R1073;;cellule;ok;805.8;38.0;9.0;9.0;ell;0.5;0.5;6680.25;805.41;1.0;6680.25;805.41;;;;;;;;;;
+Dinobryon divergens plein;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50331.0;DIN.DI1;;;;cellule;ok;805.8;38.0;9.0;9.0;ell;0.5;0.5;6680.25;805.41;1.0;6680.25;805.41;;;;;;;;;;
+Dinobryon divergens vide;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50332.0;DIN.DI2;;;;cellule;ok;805.8;38.0;9.0;9.0;ell;0.5;0.5;6680.25;805.41;1.0;6680.25;805.41;;;;;;;;;;
+Dinobryon elegantissimum;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6131.0;DINELE;50390.0;DIN.ELE;Dinobryon;R1086;;cellule;ok;742.2;35.0;9.0;9.0;ell;0.5;0.5;6154.46;741.83;1.0;6154.46;741.83;;;;;;;;;;
+Dinobryon elegantissimum plein;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50393.0;;;;;cellule;ok;742.2;35.0;9.0;9.0;ell;0.5;0.5;6154.46;741.83;1.0;6154.46;741.83;;;;;;;;;;
+Dinobryon elegantissimum vide;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50394.0;;;;;cellule;ok;742.2;35.0;9.0;9.0;ell;0.5;0.5;6154.46;741.83;1.0;6154.46;741.83;;;;;;;;;;
+Dinobryon eurystoma;Phytoplancton;Genre espèce;Dinobryaceae;;;;(Stokes) Lemmermann;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50391.0;DIN.EUR;;;;cellule;ok;508.68;27.0;8.0;9.0;con;1.0;1.0;2246.74;508.68;1.0;2246.74;508.68;;;;;;;;;;
+Dinobryon pediforme;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6133.0;DINPED;50392.0;DIN.PED;;;;cellule;ok;1808.64;40.0;9.0;8.0;tub;0.8;0.8;1256.0;2034.72;1.0;1256.0;2034.72;;;;;;;;;moyenne starmach;
+Dinobryon petiolatum;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;DINPET;50371.0;;Dinobryon petiolatum;R1080;;cellule;ok;104.7;25.0;4.0;4.0;ell;0.5;0.5;1956.73;104.67;1.0;1956.73;104.67;;;;;;;;;;
+Dinobryon petiolatum f.?;Phytoplancton;Genre espèce;Dinobryaceae;;;forme;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50370.0;;Dinobryon petiolatum;R1080;;cellule;ok;104.7;25.0;4.0;4.0;ell;0.5;0.5;1956.73;104.67;1.0;1956.73;104.67;;;;;;;;;;
+Dinobryon sertularia;Phytoplancton;Genre espèce;Dinobryaceae;;;;EHRENBERG;1835;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6134.0;DINSER;50340.0;DIN.SER;Dinobryon sertularia;R1081;;cellule;ok;916.3;35.0;10.0;10.0;ell;0.5;0.5;6838.29;915.83;1.0;6838.29;915.83;;;;;;;;;;
+Dinobryon sertularia plein;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50341.0;;;;;cellule;ok;916.3;35.0;10.0;10.0;ell;0.5;0.5;6838.29;915.83;1.0;6838.29;915.83;;;;;;;;;;
+Dinobryon sertularia var. protractum;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50341.0;;Dinobryon sertularia v. protuberans;R1082;;cellule;ok;135.7;27.0;4.0;4.0;ell;0.6;0.6;1760.33;135.65;1.0;1760.33;135.65;;;;;;;;;;
+Dinobryon sertularia var. protuberans;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;20130.0;DINSPR;50342.0;;;;;cellule;ok;1108.1583;35.0;11.0;11.0;con;0.6;0.6;6268.44;664.9;1.0;6268.44;664.9;;;;;;;;;;
+Dinobryon sertularia vide;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50342.0;;;;;cellule;ok;916.3;35.0;10.0;10.0;ell;0.5;0.5;6838.29;915.83;1.0;6838.29;915.83;;;;;;;;;;
+Dinobryon sociale var. americanum;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6137.0;DINAME;50350.0;;Dinobryon sociale v. americanum;R1084;;cellule;ok;805.8;38.0;9.0;9.0;ell;0.5;0.5;6680.25;805.41;1.0;6680.25;805.41;;;;;;;;;;
+Dinobryon sociale var. americanum plein;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50351.0;;;;;cellule;ok;805.8;38.0;9.0;9.0;ell;0.5;0.5;6680.25;805.41;1.0;6680.25;805.41;;;;;;;;;;
+Dinobryon sociale var. americanum vide;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50352.0;;;;;cellule;ok;805.8;38.0;9.0;9.0;ell;0.5;0.5;6680.25;805.41;1.0;6680.25;805.41;;;;;;;;;;
+Dinobryon sociale var. stipitatum;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6135.0;DINSTI;50360.0;DIN.STI;Dinobryon sociale v. stipitatum;R1085;;cellule;ok;805.8;38.0;9.0;9.0;ell;0.5;0.5;6680.25;805.41;1.0;6680.25;805.41;;;;;;;;;;
+Dinobryon sociale var. stipitatum plein;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50361.0;;;;;cellule;ok;805.8;38.0;9.0;9.0;ell;0.5;0.5;6680.25;805.41;1.0;6680.25;805.41;;;;;;;;;;
+Dinobryon sociale var. stipitatum vide;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50362.0;;;;;cellule;ok;805.8;38.0;9.0;9.0;ell;0.5;0.5;6680.25;805.41;1.0;6680.25;805.41;;;;;;;;;;
+Dinophyceae;Phytoplancton;Classe;Myzozoa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Dinosphaeraceae;Phytoplancton;Famille;Peridiniales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Dinosphaera palustris;Phytoplancton;Genre espèce;Dinosphaeraceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20040.0;DIN.PAL;;;;cellule;ok;10300.77;27.0;27.0;27.0;sphe;1.0;1.0;2289.06;10300.77;1.0;2289.06;10300.77;;;;;;;;;;
+Diplochloris ;Phytoplancton;Genre;Scotiellocystoidaceae ;;;genre;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Diplochloris sp.;Phytoplancton;Genre espèce;Scotiellocystoidaceae ;;;espèce;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Diploneidaceae;Phytoplancton;Famille;Naviculales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Diploneis elliptica;Phytoplancton;Genre espèce;Diploneidaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7398.0;DIPELL;70815.0;DIP.ELL;;;DELL;cellule;ok;684.3;26.4;10.8;3.0;box;0.8;0.8;991.8;684.29;1.0;991.8;684.29;;;;;;;;;;
+Diploneis maulerii;Phytoplancton;Genre espèce;Diploneidaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7403.0;DIPMAU;72811.0;DIP.MAU;Diploneis;R0195;DMAU;cellule;ok;1664.0;32.0;13.0;5.0;box;0.8;0.8;1602.5;1664.0;1.0;1602.5;1664.0;;;;;;;;;;
+Diploneis minuta;Phytoplancton;Genre espèce;Diploneidaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7404.0;DIPMIN;72814.0;DIP.MIN;;;DMIN;cellule;ok;84.0;12.0;3.5;2.0;box;1.0;1.0;146.0;84.0;1.0;146.0;84.0;;;;;;;;;;
+Diploneis oblongella;Phytoplancton;Genre espèce;Diploneidaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7406.0;DIPOBL;72813.0;DIP.OBL;;;DOBL;cellule;ok;192.0;16.0;6.0;2.5;box;0.8;0.8;377.5;192.0;1.0;377.5;192.0;;;;;;;;;;
+Diploneis oculata;Phytoplancton;Genre espèce;Diploneidaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7408.0;DIPOCU;72812.0;DIP.OCU;Diploneis;R0195;DOCU;cellule;ok;307.2;16.0;6.0;4.0;box;0.8;0.8;460.0;307.2;1.0;460.0;307.2;;;;;;;;;;
+Diploneis ovalis;Phytoplancton;Genre espèce;Diploneidaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7409.0;DIPOVA;72810.0;DIP.OVA;Diploneis;R0195;DOVA;cellule;ok;955.5;30.0;13.0;3.5;box;0.7;0.7;1544.29;955.5;1.0;1544.29;955.5;;;;;;;;;;
+Diploneis sp.;Phytoplancton;Genre espèce;Diploneidaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;DIPSPX;72800.0;DIP.SPX;Diploneis;R0195;DIPS;cellule;ok;4320.0;36.0;15.0;10.0;box;0.8;0.8;2625.0;4320.0;1.0;2625.0;4320.0;;;;;;;;;;
+Diplopsalis acuta;Phytoplancton;Genre espèce;Protoperidiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6565.0;DPLACU;20710.0;DPL.ACU;Chrysophyceae;R1171;;cellule;ok;32986.7;50.0;40.0;35.0;ell;0.9;0.9;20360.51;32970.0;1.0;20360.51;32970.0;;;;;;;;;;
+Discostella stelligera;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;(Cleve et Grunow) Houk & Klee;2004;;Houk, V. and Klee, R. 2004 [ref. 012607]. The stelligeroid taxa of the genus Cyclotella (Kützing) Brébisson (Bacillariophyceae) and their transfer into the new genus Discostella gen. nov. Diatom Research 19(2):203-228.;;;Diatomées;8657.0;DISSTE;72851.0;;;;;cellule;ok;255.0;9.0;9.0;4.0;tub;1.0;1.0;279.46;572.265;1.0;279.46;572.265;;;;;;;;;;
+Discostella woltereckii;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;(Hustedt) Houk & Klee;2004;Hustedt, F. 1942 [ref. 000517]. Süßwasser-Diatomeen des indomalayischen Archipels und der Hawaii-Inslen. Internationale Revue der gesamten Hydrobiologie und Hydrographie 42(1/3):1-252.;Houk, V. and Klee, R. 2004 [ref. 012607]. The stelligeroid taxa of the genus Cyclotella (Kützing) Brébisson (Bacillariophyceae) and their transfer into the new genus Discostella gen. nov. Diatom Research 19(2):203-228.;Cyclotella woltereckii;;Diatomées;12608.0;DISWOL;72850.0;;;;DWOL;cellule;ok;785.0;10.0;10.0;5.0;;1.0;1.0;353.25;785.0;1.0;353.25;785.0;;;;;;;;;;
+Dunaliellaceae;Phytoplancton;Famille;Volvocales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Echinosphaerella limnetica;Phytoplancton;Genre espèce;Treubariaceae;;;;G.M. Smith;1920;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;ECHLIM;85733.0;;;;;cellule;;605.82;10.5;10.5;10.5;sphe;1.0;0.5;692.37;605.82;1.0;692.37;605.82;;;;;;;;;Mesures moyennes selon Huber Pestalozzi;présence de 6 épines
+Elakatothrix gelatinosa;Phytoplancton;Genre espèce;Chlorellaceae;;;;WILLE;1898;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5664.0;ELAGEL;82810.0;ELA.GEL;Elakathotrix gelatinosa;R0594;;colonie;ok;1005.2;30.0;4.0;4.0;ell;1.0;1.0;1172.97;251.2;4.0;4691.88;1004.8;90.0;8.0;8.0;trel;0.3;1.0;7022.11;904.32;;
+Elakatothrix sp.;Phytoplancton;Genre espèce;Chlorellaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;ELASPX;82800.0;ELA.SPX;Elakatothrix;R0598;;colonie;ok;1005.2;30.0;4.0;4.0;ell;1.0;1.0;1172.97;251.2;4.0;4691.88;1004.8;90.0;8.0;8.0;trel;0.3;1.0;7022.11;904.32;;
+Elakatothrix viridis;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5665.0;ELAVIR;82801.0;ELA.VIR;;;;colonie;ok;1130.4;30.0;6.0;6.0;trel;1.0;1.0;1759.46;565.2;4.0;7037.82;2260.8;45.0;8.0;8.0;trel;0.3;1.0;3514.38;452.16;Moyennes bibliographie;
+Encyonema minutum;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7435.0;ENCMIN;71382.0;ENC.MIN;;;ENMI;cellule;ok;110.0;21.0;5.0;1.5;box;0.7;0.7;411.43;110.25;1.0;411.43;110.25;;;;;;;;;;
+Encyonema prostratum;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Cymbella prostata;;Diatomées;13227.0;ENCPRO;71383.0;;;;EPRO;cellule;ok;8278.0;66.0;20.5;8.7;box;0.7;0.7;6015.86;8239.77;1.0;6015.86;8239.77;;;;;;;;;Valeurs OMNIDIA;
+Encyonema reichardtii;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Cymbella reichardtii;;Diatomées;7442.0;ENCREI;71387.0;ENC.REI;;;ENRE;cellule;ok;102.0;10.5;3.5;4.0;box;0.7;0.7;265.0;102.9;1.0;265.0;102.9;;;;;;;;;Valeurs OMNIDIA;
+Encyonema silesiacum;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Cymbella silesiaca;;Diatomées;7443.0;ENCSIL;71384.0;;;;ESLE;cellule;ok;821.0;29.0;8.0;5.0;box;0.7;0.7;1191.43;812.0;1.0;1191.43;812.0;;;;;;;;;Valeurs OMNIDIA;
+Encyonema triangulum;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7445.0;ENCTRI;71385.0;;;;ENTR;cellule;ok;5165.0;49.5;16.5;9.0;box;0.7;0.7;4030.71;5145.53;1.0;4030.71;5145.53;;;;;;;;;Valeurs OMNIDIA;
+Encyonopsis microcephala;Phytoplancton;Genre espèce;Cymbellaceae;;;;;;;;;;Diatomées;7448.0;ENYMIC;71386.0;;;;ENCM;cellule;ok;210.0;24.0;5.0;2.5;box;0.7;0.7;550.0;210.0;1.0;550.0;210.0;;;;;;;;;;
+Eolimna minima;Phytoplancton;Genre espèce;Naviculaceae;;;;GRUNOW;1880;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;EOLMIN;71388.0;NAV.MIN;;;EOMI;cellule;ok;75.0;8.3;4.5;2.0;box;1.0;1.0;125.9;74.7;1.0;125.9;74.7;;;;;;;;;;
+Epipyxis condensata;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;41051.0;;51319.0;EPP.CON;;;;cellule;ok;196.1715;17.0;5.25;5.25;ell;0.8;0.8;1094.8442;196.1715;1.0;1094.8442;196.1715;;;;;;;;;;
+Epipyxis cylindrica;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6145.0;EPPCYL;51320.0;EPP.CYL;Epipyxis;R1093;;cellule;ok;530.9;30.0;6.5;6.5;ell;0.8;0.8;2382.6;530.66;1.0;2382.6;530.66;;;;;;;;;;
+Epipyxis gracilis;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6146.0;EPPGRA;51310.0;EPP.GRA;;;;cellule;ok;132.5;25.0;4.5;4.5;ell;0.5;0.5;2201.33;132.47;1.0;2201.33;132.47;;;;;;;;;;
+Epipyxis planctonica;Phytoplancton;Genre espèce;Dinobryaceae;;;;D.K. Hilliard & B.C. Asmund;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51312.0;EPP.PLA;;;;cellule;ok;1006.056;44.5;6.0;6.0;tub;0.8;0.8;909.03;1006.06;1.0;909.03;1006.06;;;;;;;;;Moyennes bibliographie;
+Epipyxis polymorpha;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;20302.0;;51311.0;;;;;cellule;ok;805.41;28.5;6.0;6.0;tub;0.7;0.7;617.68;563.79;1.0;617.68;563.79;;;;;;;;;;
+Epipyxis sp.;Phytoplancton;Genre espèce;Dinobryaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;EPPSPX;51316.0;;;;;cellule;ok;28.3;18.0;6.0;6.0;tub;0.6;0.6;433.32;305.21;1.0;433.32;305.21;;;;;;;;;Mesures Bourget 14 2009;
+Epipyxis tabellariae;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6147.0;EPPTAB;51315.0;EPP.TAB;;;;cellule;ok;600.0;22.6;7.1;7.1;ell;0.6;0.6;2618.13;357.73;1.0;2618.13;357.73;;;;;;;;;;
+Epithemia adnata;Phytoplancton;Genre espèce;Rhopalodiaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7457.0;EPIADN;73500.0;EPI.ADN;;;EADN;cellule;ok;3200.0;50.0;20.0;4.0;box;0.8;0.8;3200.0;3200.0;1.0;3200.0;3200.0;;;;;;;;;;
+Epithemia sp.;Phytoplancton;Genre espèce;Rhopalodiaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;EPISPX;73510.0;EPI.SPX;;;EPIS;cellule;ok;32463.3;63.0;22.7;22.7;box;1.0;1.0;6750.98;32463.27;1.0;6750.98;32463.27;;;;;;;;;;
+Erkenia subaequiciliata;Phytoplancton;Genre espèce;Prymnesiaceae;;;;SKUJA;1948;;Systema Naturae (2000) - Taxonomicon;Chrysochromulina;;Chrysophycées;6149.0;ERKSUB;51200.0;ERK.SUB;Erkenia subaequiciliata;R1095;;cellule;ok;35.0;4.5;4.5;3.0;ell;1.1;1.1;159.73;34.97;1.0;159.73;34.97;;;;;;;;;;
+euastrum subalpinum;Phytoplancton;Genre espèce;Desmidiaceae;;;;Messikommer;1935;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90436.0;;;;;cellule;ok;15000.0;50.0;30.0;20.0;rhp;1.0;1.0;3280.0;15000.0;1.0;3280.0;15000.0;;;;;;;;;Moyennes bibliographie;
+Eudorina elegans;Phytoplancton;Genre espèce;Volvocaceae;;;;EHRENBERG;1831;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;6034.0;EUDELE;80410.0;EUD.ELE;Eudorina elegans;R0963;;colonie;ok;28274.8;15.0;15.0;15.0;sphe;1.0;1.0;706.5;1766.25;16.0;11304.0;28260.0;90.0;90.0;90.0;sphe;0.2;1.0;25434.0;76302.0;;
+Eudorina elegans cellule isolée;Phytoplancton;Genre espèce;Volvocaceae;;;;EHRENBERG;1830;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;;;80416.0;;;;;cellule;ok;523.33;10.0;10.0;10.0;sphe;1.0;1.0;314.0;523.33;1.0;314.0;523.33;;;;;;;;;;
+Euglena acus;Phytoplancton;Genre espèce;Euglenaceae;;;;EHRENBERG;1830;;Rosowski, J.R. (2003). Photosynthetic Euglenoids. In: Freshwater Algae of North Amerca, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 383-422. San Diego: Academic Press.;;;Euglenophycées;6480.0;EUGACU;40210.0;EUG.ACU;;;;cellule;ok;5915.76;157.0;12.0;12.0;doco;0.5;0.5;36738.95;2957.88;1.0;36738.95;2957.88;;;;;;;;;calcul avec tailles moyennes d'après Starmach 1983;
+Euglenaceae;Phytoplancton;Famille;Euglenales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Euglena gaumei;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;20135.0;EUGGAU;40211.0;;;;;cellule;ok;2058.0083;65.0;11.0;10.0;ell;0.5;0.5;13326.05;1870.92;1.0;13326.05;1870.92;;;;;;;;;Moyennes bibliographie;
+Euglena korsikovii;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;20136.0;EUGKOR;40212.0;;;;;cellule;ok;1430.6625;30.0;13.5;10.0;ell;0.5;0.5;6937.01;1059.75;1.0;6937.01;1059.75;;;;;;;;;Moyennes bibliographie;
+Euglenales;Phytoplancton;Ordre;Euglenophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Euglena oxyuris;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;6483.0;EUGOXY;40213.0;;;;;cellule;ok;37453.92;248.5;24.0;15.0;ell;0.5;0.5;95991.29;23408.7;1.0;95991.29;23408.7;;;;;;;;;Moyennes bibliographie;
+Euglena proxima;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;9741.0;EUGPRO;40214.0;;;;;cellule;ok;4701.7573;66.0;16.5;15.0;ell;0.5;0.5;20296.22;4274.33;1.0;20296.22;4274.33;;;;;;;;;Moyennes bibliographie;
+Euglena rubra;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;;;40215.0;;;;;cellule;ok;63585.0;120.0;45.0;15.0;ell;0.5;0.5;75425.68;21195.0;1.0;75425.68;21195.0;;;;;;;;;Moyennes bibliographie;
+Euglena sp.;Phytoplancton;Genre espèce;Euglenaceae;;;espèce;;;;Rosowski, J.R. (2003). Photosynthetic Euglenoids. In: Freshwater Algae of North Amerca, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 383-422. San Diego: Academic Press.;;;Euglenophycées;;EUGSPX;40200.0;EUG.SPX;Euglena;R1726;;cellule;ok;1026.3;40.0;7.0;7.0;ell;1.0;1.0;2734.21;1025.73;1.0;2734.21;1025.73;;;;;;;;;;
+Euglena tripteris;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;Euglena torta;;Euglenophycées;6488.0;EUGTRI;40216.0;;;;;cellule;ok;13611.9;180.0;17.0;10.0;ell;0.5;0.5;48337.25;8007.0;1.0;48337.25;8007.0;;;;;;;;;Moyennes bibliographie;
+Euglena viridis;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;Rosowski, J.R. (2003). Photosynthetic Euglenoids. In: Freshwater Algae of North Amerca, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 383-422. San Diego: Academic Press.;;;Euglenophycées;20138.0;EUGVIR;40220.0;;;;;cellule;ok;13613.6;65.0;20.0;20.0;ell;1.0;1.0;12682.85;13606.67;1.0;12682.85;13606.67;;;;;;;;;;
+Euglenophyceae;Phytoplancton;Classe;Euglenozoa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Euglenozoa;Phytoplancton;Embranchement;Excavata;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Eukaryota;Phytoplancton;Domaine;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Eunotia arcus;Phytoplancton;Genre espèce;Eunotiaceae;;;;EHRENBERG;1837;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7492.0;EUNARU;74030.0;EUN.ARU;Eunotia arcus;R0203;EARC;cellule;ok;476.0;34.0;7.0;2.5;box;0.8;0.8;851.25;476.0;1.0;851.25;476.0;;;;;;;;;;
+Eunotia bilunaris;Phytoplancton;Genre espèce;Eunotiaceae;;;;(EHRENBERG) SCHAARSCHMIDT;1880;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;28308.0;EUNBIL;74040.0;;Eunotia bilunaris;R0204;EBIL;cellule;ok;576.0;60.0;4.0;3.0;box;0.8;0.8;1080.0;576.0;1.0;1080.0;576.0;;;;;;;;;;
+Eunotiaceae;Phytoplancton;Famille;Eunotiales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Eunotia exigua;Phytoplancton;Genre espèce;Eunotiaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7507.0;EUNEXI;74000.0;EUN.EXI;Eunotia exigua;R0205;EEXI;cellule;ok;130.0;18.0;4.0;2.2;box;0.8;0.8;301.0;126.72;1.0;301.0;126.72;;;;;;;;;;
+Eunotiales;Phytoplancton;Ordre;Bacillariophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Eunotia minor;Phytoplancton;Genre espèce;Eunotiaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7535.0;EUNMIN;74001.0;;;;EMIN;cellule;ok;755.0;40.0;6.5;3.6;box;0.8;0.8;1068.5;748.8;1.0;1068.5;748.8;;;;;;;;;Valeurs OMNIDIA;
+Eunotia naegelii;Phytoplancton;Genre espèce;Eunotiaceae;;;;Migula in Thomé;1907;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;74002.0;EUN.NAE;;;ENAE;cellule;ok;880.0;200.0;2.5;2.2;box;0.8;0.8;2363.75;880.0;1.0;2363.75;880.0;;;;;;;;;;
+Eunotia praerupta;Phytoplancton;Genre espèce;Eunotiaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;20139.0;EUNPRA;74010.0;;;;EPRA;cellule;ok;1332.8;34.0;7.0;7.0;box;0.8;0.8;1312.5;1332.8;1.0;1312.5;1332.8;;;;;;;;;;
+Eunotia serra var. tetraodon;Phytoplancton;Genre espèce;Eunotiaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7567.0;EUNTER;74020.0;EUN.TER;;;ESTE;cellule;ok;18181.0;65.8;30.7;15.0;box;0.6;0.6;11558.53;18180.54;1.0;11558.53;18180.54;;;;;;;;;;
+Eunotia sp.;Phytoplancton;Genre espèce;Eunotiaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;EUNSPX;74050.0;EUN.SPX;;;EUNS;cellule;ok;1137.4;47.0;5.5;5.5;box;0.8;0.8;1368.13;1137.4;1.0;1368.13;1137.4;;;;;;;;;;
+Eustigmataceae;Phytoplancton;Famille;Eustigmatales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Eustigmatales;Phytoplancton;Ordre;Eustigmatophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Eustigmatophyceae;Phytoplancton;Classe;Ochrophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Eutetramorus fottii;Phytoplancton;Genre espèce;Radiococcaceae;;;;(Hind.) Kom.;1979;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9203.0;EUTFOT;80414.0;;;;;colonie;ok;718.0133;7.0;7.0;7.0;sphe;1.0;1.0;153.86;179.50333;4.0;615.44;718.0133;15.0;15.0;15.0;sphe;0.5;1.0;706.5;883.125;Moyennes bibliographie;
+Eutetramorus globosus;Phytoplancton;Genre espèce;Radiococcaceae;;;;Walton;1919;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20140.0;EUTGLO;80411.0;;;;;colonie;ok;22449.3;10.0;10.0;10.0;sphe;1.0;1.0;314.0;523.33;4.0;1256.0;2093.33;35.0;35.0;35.0;box;0.5;1.0;7350.0;21437.5;Moyennes bibliographie;
+Eutetramorus nygaardii;Phytoplancton;Genre espèce;Radiococcaceae;;;;Kom;1979;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Coenococcus planctonicus;;Chlorophycées;;;80413.0;;;;;colonie;ok;535.8933;4.0;4.0;4.0;sphe;1.0;1.0;50.24;33.49;16.0;803.84;535.89;22.0;22.0;22.0;box;0.5;1.0;2904.0;5324.0;Moyennes bibliographie;
+Eutetramorus sp.;Phytoplancton;Genre espèce;Radiococcaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;EUTSPX;80412.0;;;;;colonie;ok;267.94666;4.0;4.0;4.0;sphe;1.0;1.0;50.24;33.49;8.0;401.92;267.95;30.0;30.0;30.0;box;0.5;1.0;5400.0;13500.0;Moyennes bibliographie;
+Excavata;Phytoplancton;Infra-règne;Biciliata;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Flagellé allongé (zoospores de chlorophycée);Phytoplancton;Genre espèce;Chlorophyta;;;classe;;;;;;;Chlorophycées;;;85612.0;;Chlorophyceae sp.;R0905;;cellule;ok;18.1;10.0;1.7;1.7;trel;1.0;1.0;168.31;15.12;1.0;168.31;15.12;;;;;;;;;;
+flagellé diam 10µm;Phytoplancton;Genre espèce;Chlorophyta;;;classe;;;;;;;Chlorophycées;;;85611.0;;Chlorophyceae sp.;R0905;;cellule;ok;523.6;10.0;10.0;10.0;trel;1.0;1.0;990.07;523.33;1.0;990.07;523.33;;;;;;;;;;
+flagellé diam 2µm;Phytoplancton;Genre espèce;Chlorophyta;;;classe;;;;;;;Chlorophycées;;;85609.0;;Chlorophyceae sp.;R0905;;cellule;ok;4.2;2.0;2.0;2.0;trel;1.0;1.0;46.6;4.19;1.0;46.6;4.19;;;;;;;;;;
+flagellé diam 5µm;Phytoplancton;Genre espèce;Chlorophyta;;;classe;;;;;;;Chlorophycées;;;85610.0;;Chlorophyceae sp.;R0905;;cellule;ok;41.9;5.0;4.0;4.0;trel;1.0;1.0;204.12;41.87;1.0;204.12;41.87;;;;;;;;;;
+Flagellés sp.;Phytoplancton;Genre espèce;Chromista;;;classe;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50003.0;;;;;cellule;ok;65.416664;5.0;5.0;5.0;ell;1.0;1.0;255.15;65.42;1.0;255.15;65.42;;;;;;;;;Moyennes bibliographie;
+Fotterella tetrachlorella;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;;;;Chlorophycées;;;85521.0;;;;;colonie;ok;1895.4;15.0;9.0;9.0;trel;1.0;1.0;1326.8;635.85;12.0;15921.66;7630.2;60.0;20.0;9.0;trel;0.9;1.0;8852.96;5086.8;;
+Fragilaria arcus;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Ceratoneis arcus;;Diatomées;9527.0;FRAARC;72910.0;FRA.ARC;;;FARC;cellule;ok;720.0;80.0;5.0;3.0;box;0.6;0.6;2183.33;720.0;1.0;2183.33;720.0;;;;;;;;;;
+Fragilaria berolinensis;Phytoplancton;Genre espèce;Fragilariaceae;;;;(LEMMERMANN) LANGE-BERTALOT;1993;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;FRABER;70670.0;FRA.BER;;;FBER;cellule;ok;2822.0;72.0;7.0;7.0;box;0.8;0.8;2642.5;2822.4;1.0;2642.5;2822.4;;;;;;;;;;
+Fragilaria brevistriata;Phytoplancton;Genre espèce;Fragilariaceae;;;;GRUNOW;1881;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;FRABRE;70660.0;FRA.BRE;;;FBRE;cellule;ok;525.0;17.5;7.5;5.0;box;0.8;0.8;640.63;525.0;1.0;640.63;525.0;;;;;;;;;;
+Fragilaria capucina;Phytoplancton;Genre espèce;Fragilariaceae;;;;DESMAZIERES;1825;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9529.0;FRACAU;70610.0;FRA.CAU;Fragilaria capucina;R0218;FCAP;cellule;ok;172.8;32.0;3.0;3.0;box;0.6;0.6;670.0;172.8;1.0;670.0;172.8;;;;;;;;;;
+Fragilaria capucina var. gracilis;Phytoplancton;Genre espèce;Fragilariaceae;;;;(Oestrup) Hudstedt;1950;;Krammer & Lange-Bertalot 1991, susswasser von Mitteleuropa, Freshwater Flora of Central Europe, 3. Teil/ Part 3: Centrales, Fragilariaceae, Eunotiaceae;;Fragilaria gracilis;Diatomées;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Fragilaria capucina var. radians;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Synedra radians;;Diatomées;9530.0;FRACRA;70840.0;FRA.CRA;Fragilaria capucina;R0218;FCRA;cellule;ok;360.0;100.0;3.0;2.0;box;0.6;0.6;1686.67;360.0;1.0;1686.67;360.0;;;;;;;;;;
+Fragilaria capucina var. vaucheriae;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6658.0;FRAVAC;70611.0;FRA.VAC;;;FCVA;cellule;ok;283.5;30.0;4.5;3.0;box;0.7;0.7;681.43;283.5;1.0;681.43;283.5;;;;;;;;;Valeurs OMNIDIA;
+Fragilariaceae;Phytoplancton;Famille;Fragilariales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Fragilaria construens;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9531.0;FRACTR;70614.0;;;;FCON;cellule;ok;441.0;19.5;7.0;4.5;box;0.7;0.7;730.71;429.98;1.0;730.71;429.98;;;;;;;;;Valeurs OMNIDIA;
+Fragilaria construens f. binodis;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;FRACBI;70640.0;;Fragilaria construens;R0222;FCBI;cellule;ok;182.4;19.0;4.0;3.0;box;0.8;0.8;362.5;182.4;1.0;362.5;182.4;;;;;;;;;;
+Fragilaria construens f. venter;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;FRAVEN;70616.0;;;;FCVE;cellule;ok;315.0;19.5;7.0;3.5;box;0.7;0.7;655.0;334.43;1.0;655.0;334.43;;;;;;;;;Valeurs OMNIDIA;
+Fragilaria construens var. binodis;Phytoplancton;Genre espèce;Fragilariaceae;;;;(Ehrenberg) Hamilton;1992;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Fragilaria crotonensis;Phytoplancton;Genre espèce;Fragilariaceae;;;;KITTON;1869;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6666.0;FRACRO;70620.0;FRA.CRO;Fragilaria crotonensis;R0223;FCRO;cellule;ok;432.0;90.0;3.0;2.0;box;0.8;0.8;1140.0;432.0;1.0;1140.0;432.0;;;;;;;;;;
+Fragilaria cyclopum;Phytoplancton;Genre espèce;Fragilariaceae;;;;(BRUTSCHY) LANGE-BERTALOT;1981;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;13451.0;FRACYC;70625.0;;;;FCYC;cellule;ok;235.0;31.7;4.1;2.0;box;0.9;0.9;447.93;233.95;1.0;447.93;233.95;;;;;;;;;;
+Fragilaria dilatata;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Synedra capitata;;Diatomées;6668.0;FRADIL;70880.0;FRA.DIL;;;FDIL;cellule;ok;8208.0;190.0;9.0;6.0;box;0.8;0.8;7260.0;8208.0;1.0;7260.0;8208.0;;;;;;;;;;
+Fragilaria lanceolata;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Synedra ulna var. oxyrhynchus;;Diatomées;;FRALAL;70850.0;;;;FLAN;cellule;ok;2240.0;100.0;7.0;4.0;box;0.8;0.8;2820.0;2240.0;1.0;2820.0;2240.0;;;;;;;;;;
+Fragilariales;Phytoplancton;Ordre;Fragilariophycidae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Fragilaria longifusiformis;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;13580.0;FRALON;70612.0;;;;FLFU;cellule;ok;420.0;100.0;3.0;2.0;box;0.7;0.7;1445.71;420.0;1.0;1445.71;420.0;;;;;;;;;Moyennes bibliographie;
+Fragilaria nanana;Phytoplancton;Genre espèce;Fragilariaceae;;;;LANGE-BERTALOT;1993;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6690.0;FRANAN;70855.0;FRA.NAN;;;FNAN;cellule;ok;138.9;43.4;2.0;2.0;box;0.8;0.8;444.0;138.88;1.0;444.0;138.88;;;;;;;;;;
+Fragilaria parasitica;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Synedra parasitica;;Diatomées;;FRAPAR;70870.0;FRA.PAR;;;FPAR;cellule;ok;122.4;17.0;4.0;2.0;box;0.9;0.9;244.44;122.4;1.0;244.44;122.4;;;;;;;;;;
+Fragilaria perminuta;Phytoplancton;Genre espèce;Fragilariaceae;;;;(Grunow) Lange-Bertalot;2000;;Krammer & Lange-Bertalot 1991;;;Diatomées;13639.0;;70617.0;;;;;cellule;ok;172.725;23.5;3.5;3.0;box;0.7;0.7;466.43;172.73;1.0;466.43;172.73;;;;;;;;;;
+Fragilaria pinnata;Phytoplancton;Genre espèce;Fragilariaceae;;;;EHRENBERG;1843;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;Staurosirella pinnata;Diatomées;;FRAPIN;70650.0;;;;FPIN;cellule;ok;80.0;10.0;4.0;2.5;box;0.8;0.8;187.5;80.0;1.0;187.5;80.0;;;;;;;;;;
+Fragilaria planctonica;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;20142.0;FRAPLT;70613.0;;;;;cellule;ok;92.4;15.0;4.0;2.2;box;0.7;0.7;290.86;92.4;1.0;290.86;92.4;;;;;;;;;Moyennes bibliographie;
+Fragilaria radians;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Synedra radians;;Diatomées;6704.0;FRARAD;70652.0;;;;FRAD;cellule;ok;504.0;45.0;4.0;4.0;box;0.7;0.7;1074.29;504.0;1.0;1074.29;504.0;;;;;;;;;Moyennes bibliographie;
+Fragilaria rumpens;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6706.0;FRARUM;70615.0;FRA.RUM;;;FRUM;cellule;ok;486.0;40.0;4.5;3.0;box;0.9;0.9;696.67;486.0;1.0;696.67;486.0;;;;;;;;;;
+Fragilaria sp.;Phytoplancton;Genre espèce;Fragilariaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;FRASPX;70600.0;FRA.SPX;Fragilaria;R0238;FRAS;cellule;ok;90.0;15.0;4.0;2.5;box;0.6;0.6;358.33;90.0;1.0;358.33;90.0;;;;;;;;;;
+Fragilaria tenera;Phytoplancton;Genre espèce;Fragilariaceae;;;;(W.SMITH) LANGE-BERTALOT;1981;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6713.0;FRATEN;70817.0;FRA.TEN;;;FTEN;cellule;ok;212.60417;65.0;2.5;2.5;trel;0.7;0.7;2264.8;148.82;1.0;2264.8;148.82;;;;;;;;;valeurs moyennes selon KLB 2/3 1991;
+Fragilaria tenera var. lemanensis;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;13755.0;FRATLE;70816.0;;Fragilaria tenera;R0246;FTLE;cellule;ok;220.0;45.0;3.5;3.5;box;0.7;0.7;935.0;385.88;1.0;935.0;385.88;;;;;;;;;;
+Fragilaria ulna;Phytoplancton;Genre espèce;Fragilariaceae;;;;(NITZSCH) LANGE-BERTALOT;1981;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Synedra ulna;Ulnaria ulna;Diatomées;;FRAULN;70820.0;FRA.ULN;Fragilaria ulna;R0247;FULN;cellule;ok;5040.0;180.0;8.0;5.0;box;0.7;0.7;6800.0;5040.0;1.0;6800.0;5040.0;;;;;;;;;;
+Fragilaria ulna var. acus;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Synedra  cf acus;;Diatomées;;FRAULA;70800.0;FRA.ULA;Fragilaria ulna v. acus;R0248;FUAC;cellule;ok;560.0;35.0;4.0;4.0;box;1.0;1.0;592.0;560.0;1.0;592.0;560.0;;;;;;;;;;
+Fragilaria ulna var. angustissima;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Synedra acus var. angustissima;;Diatomées;6717.0;;70810.0;;Fragilaria ulna v. angustissima;R0249;FUAN;cellule;ok;2400.0;200.0;5.0;4.0;box;0.6;0.6;6066.67;2400.0;1.0;6066.67;2400.0;;;;;;;;;;
+Fragilaria virescens;Phytoplancton;Genre espèce;Fragilariaceae;;;;RALFS;1843;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6724.0;FRAVIR;70630.0;FRA.VIR;Fragilaria virescens;R0252;FVIR;cellule;ok;172.8;32.0;3.0;3.0;box;0.6;0.6;670.0;172.8;1.0;670.0;172.8;;;;;;;;;;
+Fragilariophyceae;Phytoplancton;Classe;Bacillariophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Fragilariophycidae;Phytoplancton;Sous-classe;Bacillariophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Franceia amphitricha;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;;;;Chlorophycées;20143.0;FRNAMP;85524.0;;;;;cellule;ok;130.83333;10.0;5.0;4.0;trel;1.0;1.0;447.18;104.67;1.0;447.18;104.67;;;;;;;;;Moyennes bibliographie;
+Franceia ovalis;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;;;;Chlorophycées;5672.0;FRNOVA;85525.0;;;;;cellule;ok;785.0;15.0;10.0;4.0;trel;1.0;1.0;1088.42;314.0;1.0;1088.42;314.0;;;;;;;;;Moyennes bibliographie;
+Frustulia rhomboides;Phytoplancton;Genre espèce;Amphipleuraceae;;;;De Toni;1843;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7592.0;FRURHO;70901.0;FRU.RHO;;;FRHO;cellule;ok;4785.0;100.0;20.0;2.4;box;0.9;0.9;5084.44;4320.0;1.0;5084.44;4320.0;;;;;;;;;Omnidia;
+Frustulia sp.;Phytoplancton;Genre espèce;Amphipleuraceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;FRUSPX;70900.0;FRU.SPX;;;FRSP;cellule;ok;1944.0;45.0;12.0;4.0;box;0.9;0.9;1706.67;1944.0;1.0;1706.67;1944.0;;;;;;;;;;
+Geissleria acceptata;Phytoplancton;Genre espèce;Naviculaceae;;;;Lange-Bertalot & Metzeltin;1996;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Navicula ignota var. acceptata;;Diatomées;9421.0;GESACC;70902.0;GES.ACC;;;GACC;cellule;ok;112.0;10.0;5.0;2.2;box;0.7;0.7;237.14;77.0;1.0;237.14;77.0;;;;;;;;;Omnidia;
+Geissleria decussis;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7606.0;GESDEC;70903.0;GES.DEC;;;GDEC;cellule;ok;420.0;20.0;6.0;5.0;box;0.7;0.7;714.29;420.0;1.0;714.29;420.0;;;;;;;;;;
+Geitlerinema acutissimum;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;Oscillatoria acutissima;;Cyanobactéries;6452.0;GEIACU;10930.0;GEI.ACU;Oscillatoria acutissima;R1584;;filament;ok;314.2;5.0;2.0;2.0;ell;1.0;1.0;102.06;10.47;25.0;2551.48;261.67;100.0;2.0;2.0;tub;1.0;1.0;634.28;314.0;;
+geitlerinema amphibium;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;;9692.0;GEIAMP;10931.0;;;;;filament;ok;461.0;6.0;2.4;2.4;tub;1.0;1.0;54.26;27.13;17.0;922.41;461.2;100.0;3.5;3.5;tub;1.0;1.0;1118.23;961.63;;
+Geminella interrupta;Phytoplancton;Genre espèce;Ulotrichaceae;;;;;;;;;;Chlorophycées;5993.0;GEMINT;86101.0;;;;;filament;ok;1767.0;10.0;5.0;5.0;trel;1.0;1.0;495.04;130.83;10.0;4950.36;1308.33;100.0;5.0;5.0;tub;0.5;1.0;1609.25;981.25;;
+Geminella subtillissima;Phytoplancton;Genre espèce;Ulotrichaceae;;;;;;;John, D.M. (2002). Orders Chaetophorales, Klebshormidiales, Microsporales, Ulotrichales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 433-468. Cambridge: Cambridge University Press.;;;Chlorophycées;;;86100.0;;;;;filament;ok;1767.0;10.0;5.0;5.0;trel;1.0;1.0;495.04;130.83;10.0;4950.36;1308.33;100.0;5.0;5.0;tub;0.5;1.0;1609.25;981.25;;
+Glenodinium sp.;Phytoplancton;Genre espèce;Peridiniaceae;;;espèce;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;GLESPX;20600.0;GLE.SPX;Glenodinium;R1642;;cellule;ok;14137.2;30.0;30.0;30.0;ell;1.0;1.0;8797.28;14130.0;1.0;8797.28;14130.0;;;;;;;;;;
+Gloeocapsa granosa;Phytoplancton;Genre espèce;Chroococcaceae;;;;(Berkeley) Kützing;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10451.0;;;;;colonie;;;4.5;4.5;4.5;sphe;1.0;1.0;63.59;47.69;2.0;127.17;95.38;25.0;25.0;25.0;sphe;1.0;1.0;1962.5;8177.08;Moyennes bibliographie;
+Gloeocapsopsis sp.;Phytoplancton;Genre espèce;Chroococcaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10450.0;GLP.SPX;;;;colonie;ok;211.95;3.0;3.0;3.0;sphe;1.0;1.0;28.26;14.13;15.0;423.9;211.95;9.0;9.0;9.0;box;0.9;1.0;486.0;656.1;Mesures sur rivières Morcille hiver 2007-2008;
+Gloeocystis sp.;Phytoplancton;Genre espèce;Radiococcaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;GLOSPX;89801.0;GLO.SPX;Gloeocystis planktonica;R0890;;colonie;ok;2679.4;10.0;8.0;8.0;trel;1.0;1.0;792.06;334.93;8.0;6336.46;2679.47;80.0;80.0;80.0;trel;0.25;1.0;62424.81;66986.67;;
+Gloeocystis vesiculosa;Phytoplancton;Genre espèce;Radiococcaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9314.0;GLOVES;89800.0;;;;;colonie;ok;44680.0;7.0;7.0;7.0;ell;1.0;;;179.5;8.0;;1436.03;40.0;40.0;40.0;trel;0.5;1.0;15624.05;16746.67;;
+Gloeotilaceae;Phytoplancton;Famille;Volvocales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Gloeotila spiralis;Phytoplancton;Genre espèce;Gloeotilaceae;;;;;;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;5998.0;GLTSPI;85511.0;GLO.SPI;;;;cellule;ok;12.36375;7.0;1.5;1.5;tub;1.0;1.0;36.5;12.36;1.0;36.5;12.36;;;;;;;;;;
+Golenkiniaceae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Golenkinia radiata;Phytoplancton;Genre espèce;Golenkiniaceae;;;;CHODAT;1894;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5676.0;GOLRAD;89810.0;GOL.RAD;;;;cellule;ok;2458.2;15.0;15.0;15.0;sphe;1.0;1.0;706.5;1766.25;1.0;706.5;1766.25;;;;;;;;;;
+Golenkinia viridis;Phytoplancton;Genre espèce;Golenkiniaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5677.0;GOLVIR;89815.0;GOL.VIR;;;;cellule;ok;982.3;12.0;12.0;12.0;sphe;1.0;1.0;452.16;904.32;1.0;452.16;904.32;;;;;;;;;;
+Golenkiniopsis chlorelloides;Phytoplancton;Genre espèce;Golenkiniaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9210.0;GOKCHL;89816.0;;;;;cellule;ok;;7.0;7.0;7.0;sphe;1.0;1.0;153.86;179.5;1.0;153.86;179.5;;;;;;;;;Moyennes bibliographie;
+Golenkiniopsis longispina;Phytoplancton;Genre espèce;Micractiniaceae;;;;;;;;;;Chlorophycées;9211.0;GOKLON;81811.0;;;;;cellule;ok;267.94666;8.0;8.0;4.0;sphe;1.0;1.0;200.96;133.97;1.0;200.96;133.97;;;;;;;;;Moyennes bibliographie;
+Golenkiniopsis parvula;Phytoplancton;Genre espèce;Micractiniaceae;;;;Kors.;1953;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;24416.0;;81814.0;GOL.PAR;;;;cellule;ok;179.50333;7.0;7.0;7.0;sphe;1.0;1.0;153.86;179.5;1.0;153.86;179.5;;;;;;;;;Moyennes bibliographie;
+Golenkiniopsis solitaria;Phytoplancton;Genre espèce;Micractiniaceae;;;;;;;;;;Chlorophycées;9212.0;GOKSOL;81812.0;;;;;cellule;ok;381.51;9.0;9.0;4.0;sphe;1.0;1.0;254.34;169.56;1.0;254.34;169.56;;;;;;;;;Moyennes bibliographie;
+Golenkiniopsis sp.;Phytoplancton;Genre espèce;Micractiniaceae;;;espèce;;;;;;;Chlorophycées;;GOKSPX;81813.0;;;;;cellule;ok;267.94666;8.0;8.0;8.0;sphe;1.0;1.0;200.96;267.95;1.0;200.96;267.95;;;;;;;;;Moyennes bibliographie;
+Gomphonema acuminatum;Phytoplancton;Genre espèce;Gomphonemataceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7618.0;GOMACU;71850.0;GOM.ACU;;;GACU;cellule;ok;520.8;31.0;7.0;3.0;box;0.8;0.8;827.5;520.8;1.0;827.5;520.8;;;;;;;;;;
+Gomphonema angustatum;Phytoplancton;Genre espèce;Gomphonemataceae;;;;;;;;;;Diatomées;7626.0;GOMANG;71851.0;;;;GANG;cellule;ok;488.0;33.5;7.5;2.7;box;0.7;0.7;1034.14;474.86;1.0;1034.14;474.86;;;;;;;;;Omnidia;
+Gomphonema augur;Phytoplancton;Genre espèce;Gomphonemataceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7633.0;GOMAUG;71810.0;GOM.AUG;;;GAUG;cellule;ok;1575.0;35.0;10.0;6.0;box;0.75;0.75;1653.33;1575.0;1.0;1653.33;1575.0;;;;;;;;;;
+Gomphonema carolinense;Phytoplancton;Genre espèce;Gomphonemataceae;;;;Hagelstein;1939;Hagelstein, R. 1939 [ref. 000454]. The Diatomaceae of Porto Rico and the Virgin Islands. Scientific Survey of Porto Rico and Virgin Islands, New York Academy of Sciences 8(3):313-450, pls 3-9.;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;Gomphonema augur;Diatomées;7641.0;GOMCAR;71812.0;GOM.CAR;;;GCAR;cellule;ok;2450.0;70.0;14.0;5.0;box;0.5;0.5;5600.0;2450.0;1.0;5600.0;2450.0;;;;;;;;;Moyennes bibliographie;
+Gomphonema clavatum;Phytoplancton;Genre espèce;Gomphonemataceae;;;;EHRENBERG;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7642.0;GOMCLA;71813.0;GOM.CLA;;;GCLA;cellule;ok;1384.0;57.0;10.0;4.0;box;0.6;0.6;2793.33;1368.0;1.0;2793.33;1368.0;;;;;;;;;Omnidia;
+Gomphonema constrictum;Phytoplancton;Genre espèce;Gomphonemataceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;Gomphonema truncatum;Diatomées;;GOMCOS;71811.0;;;;GCON;cellule;ok;1750.0;35.0;10.0;5.0;box;0.8;0.8;1437.5;1400.0;1.0;1437.5;1400.0;;;;;;;;;;
+Gomphonema intricatum var. pumila;Phytoplancton;Genre espèce;Gomphonemataceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;GOMPUI;71840.0;;;;GIPU;cellule;ok;52.0;13.0;2.5;2.0;box;0.8;0.8;158.75;52.0;1.0;158.75;52.0;;;;;;;;;;
+Gomphonema lanceolatum;Phytoplancton;Genre espèce;Gomphonemataceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;GOMLAN;71830.0;GOM.LAN;;;GLAN;cellule;ok;1200.0;40.0;8.0;5.0;box;0.75;0.75;1493.33;1200.0;1.0;1493.33;1200.0;;;;;;;;;;
+Gomphonema minutum;Phytoplancton;Genre espèce;Gomphonemataceae;;;;(C.AGARDH) C.AGARDH;1831;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7692.0;GOMMIU;71870.0;GOM.MIU;;;GMIN;cellule;ok;450.0;25.0;9.0;2.5;box;0.8;0.8;775.0;450.0;1.0;775.0;450.0;;;;;;;;;;
+Gomphonema olivaceum;Phytoplancton;Genre espèce;Gomphonemataceae;;;;(HORNEMANN) BRÉBISSON;1838;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7698.0;GOMOLI;71820.0;GOM.OLI;Gomphonema olivaceum;R0265;GOLI;cellule;ok;630.0;30.0;7.0;4.0;box;0.75;0.75;954.67;630.0;1.0;954.67;630.0;;;;;;;;;;
+Gomphonema parvulum;Phytoplancton;Genre espèce;Gomphonemataceae;;;;(KÜTZING) KÜTZING;1849;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7704.0;GOMPAR;71825.0;GOM.PAR;;;GPAR;cellule;ok;480.0;20.0;7.5;4.0;box;0.8;0.8;650.0;480.0;1.0;650.0;480.0;;;;;;;;;;
+Gomphonema parvulum var. exilissimum;Phytoplancton;Genre espèce;Gomphonemataceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;20693.0;GOMPEX;71827.0;GOM.PEX;;;GPXS;cellule;ok;431.0;30.0;6.0;3.0;box;0.8;0.8;720.0;432.0;1.0;720.0;432.0;;;;;;;;;Omnidia;
+Gomphonema pumilum;Phytoplancton;Genre espèce;Gomphonemataceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7719.0;GOMPUM;71826.0;GOM.PUM;;;GPUM;cellule;ok;270.0;25.0;4.5;3.0;box;0.8;0.8;502.5;270.0;1.0;502.5;270.0;;;;;;;;;Omnidia;
+Gomphonema sp.;Phytoplancton;Genre espèce;Gomphonemataceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8781.0;GOMSPX;71800.0;GOM.SPX;Gomphonema;R0271;GOMS;cellule;ok;972.0;27.0;8.0;6.0;box;0.75;0.75;1136.0;972.0;1.0;1136.0;972.0;;;;;;;;;;
+Gomphonemataceae;Phytoplancton;Famille;Cymbellales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Gomphonema truncatum;Phytoplancton;Genre espèce;Gomphonemataceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7732.0;GOMTRU;71860.0;GOM.TRU;;;GTRU;cellule;ok;1262.0;28.5;12.3;4.5;box;0.8;0.8;1335.38;1261.98;1.0;1335.38;1261.98;;;;;;;;;;
+Gomphosphaeria compacta;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;Woronichinia compacta;Cyanobactéries;6377.0;GOPCOM;10640.0;GOP.COM;;;;colonie;ok;53878.3;4.5;3.5;3.5;ell;1.0;1.0;162.05;28.85;1800.0;291681.66;51927.75;70.0;70.0;70.0;ell;0.3;1.0;47800.4;53851.0;;
+Gomphosphaeria lacustris;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;Snowella lacustris;Cyanobactéries;6375.0;GOPLAC;10610.0;GOP.LAC;Gomphosphaeria;R1464;;colonie;ok;804.2;2.0;2.0;3.0;ell;1.0;1.0;58.95;6.28;128.0;7545.13;803.84;40.0;40.0;40.0;ell;0.5;1.0;15624.05;16746.67;;
+Gomphosphaeria pusilla;Phytoplancton;Genre espèce;Merismopediaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;GOPPUS;10630.0;;;;;colonie;ok;6545.0;10.0;5.0;5.0;ell;1.0;1.0;495.04;130.83;50.0;24751.78;6541.67;25.0;25.0;25.0;ell;0.8;1.0;6114.8;6541.67;;
+Gomphosphaeria rosea;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6378.0;GOPROS;10620.0;GOP.ROS;Gomphosphaeria;R1464;;colonie;ok;7238.2;3.0;3.0;3.0;ell;1.0;1.0;96.91;14.13;512.0;49616.23;7234.56;50.0;50.0;50.0;ell;0.5;1.0;24400.08;32708.33;;
+Gomphosphaeria sp.;Phytoplancton;Genre espèce;Merismopediaceae;;;espèce;;;;;;;Cyanobactéries;;GOPSPX;10621.0;;;;;colonie;ok;2009.6;8.0;4.0;4.0;ell;1.0;1.0;318.9;66.99;30.0;9567.02;2009.6;12.0;12.0;12.0;ell;0.5;1.0;1420.17;452.16;Moyennes bibliographie;
+Goniaceae;Phytoplancton;Famille;Volvocales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Goniochloris cf. smithii;Phytoplancton;Genre espèce;Pleurochloridaceae;;;espèce;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;;;63101.0;;;;;cellule;ok;1058.75;27.5;27.5;4.0;prisme;0.7;0.7;849.55;1058.75;1.0;849.55;1058.75;;;;;;;;;Moyennes bibliographie;
+Goniochloris fallax;Phytoplancton;Genre espèce;Pleurochloridaceae;;;;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;9606.0;GOCFAL;63102.0;;;;;cellule;ok;806.4;24.0;24.0;4.0;prisme;0.7;0.7;699.43;806.4;1.0;699.43;806.4;;;;;;;;;Moyennes bibliographie;
+Goniochloris mutica;Phytoplancton;Genre espèce;Pleurochloridaceae;;;;(A.BRAUN) FOTT;1960;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;6237.0;GOCMUT;63100.0;GOC.MUT;;;;cellule;ok;180.9;12.0;12.0;4.0;ell;0.6;0.6;1695.21;180.86;1.0;1695.21;180.86;;;;;;;;;;
+Goniochloris pulchra;Phytoplancton;Genre espèce;Pleurochloridaceae;;;;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;20149.0;GOCPUL;63103.0;;;;;cellule;ok;295.75;13.0;13.0;5.0;prisme;0.7;0.7;363.07;295.75;1.0;363.07;295.75;;;;;;;;;Moyennes bibliographie;
+Goniochloris sp.;Phytoplancton;Genre espèce;Pleurochloridaceae;;;espèce;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;;GOCSPX;63104.0;;;;;cellule;ok;560.0;20.0;20.0;4.0;prisme;0.7;0.7;542.86;560.0;1.0;542.86;560.0;;;;;;;;;Moyennes bibliographie;
+Gonium pectorale;Phytoplancton;Genre espèce;Goniaceae;;;;O.F.MÜLLER;1773;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;6036.0;GONPEC;80500.0;GON.PEC;Gonium pectorale;R0966;;colonie;ok;4289.3;8.0;8.0;8.0;sphe;1.0;1.0;200.96;267.95;16.0;3215.36;4287.15;55.0;55.0;8.0;box;0.8;1.0;7810.0;19360.0;;
+Gonyaulacaceae;Phytoplancton;Famille;Peridiniales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Gonyaulax apiculata;Phytoplancton;Genre espèce;Gonyaulacaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6568.0;GOAAPI;20310.0;GOA.API;Peridinales;R1705;;cellule;ok;20525.1;40.0;35.0;35.0;ell;0.8;0.8;17088.8;20514.67;1.0;17088.8;20514.67;;;;;;;;;;
+Grain de pollen;Phytoplancton;Sous-règne;Plantae;;;;;;;;;;Non algue;;;;;;;;grain de pollen;ok;;;;;;;;;;1.0;;;;;;;;;;;Non algue;
+Granulocystis helenae;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;;;;Chlorophycées;9215.0;GCYHEL;85550.0;;;;;cellule;ok;188.4;10.0;6.0;4.0;trel;1.0;1.0;500.97;125.6;1.0;500.97;125.6;;;;;;;;;Moyennes bibliographie;
+Granulocystopsis coronata;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;;;;Chlorophycées;5681.0;GRCCOR;85551.0;;;;;cellule;ok;157.0;12.0;5.0;4.0;trel;1.0;1.0;534.54;125.6;1.0;534.54;125.6;;;;;;;;;Moyennes bibliographie;
+Granulocystopsis pseudocoronata;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;;;;Chlorophycées;9218.0;GRCPSE;85552.0;;;;;cellule;ok;307.72;12.0;7.0;4.0;trel;1.0;1.0;665.39;175.84;1.0;665.39;175.84;;;;;;;;;Moyennes bibliographie;
+Gymnodiniaceae;Phytoplancton;Famille;Gymnodiniales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Gymnodiniales;Phytoplancton;Ordre;Dinophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Gymnodinium eurytopum;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;GYMEUR;20175.0;;;;;cellule;ok;2250.0;15.0;15.0;10.0;ell;1.0;1.0;1864.86;1177.5;1.0;1864.86;1177.5;;;;;;;;;;
+Gymnodinium excavatum;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;25786.0;GYMEXC;20130.0;;Gymnodinium;R1654;;cellule;ok;10995.6;35.0;30.0;20.0;ell;1.0;1.0;8650.27;10990.0;1.0;8650.27;10990.0;;;;;;;;;;
+Gymnodinium helveticum;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;PENARD;1891;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6558.0;GYMHEL;20120.0;GYM.HEL;Gymnodinium helveticum;R1647;;cellule;ok;6230.8;35.0;25.0;17.0;ell;0.8;0.8;9072.8;6227.67;1.0;9072.8;6227.67;;;;;;;;;;
+Gymnodinium lantzschii;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;UTERMOEHL;1925;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6559.0;GYMLAN;20200.0;GYM.LAN;Gymnodinium lantzschii;R1650;;cellule;ok;212.1;9.0;7.5;6.0;ell;1.0;1.0;605.39;211.95;1.0;605.39;211.95;;;;;;;;;;
+Gymnodinium lantzschii f. major;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20201.0;;;;;cellule;ok;2268.65;17.0;17.0;15.0;trel;1.0;1.0;2672.46;2268.65;1.0;2672.46;2268.65;;;;;;;;;Mesures effectuées sur Annecy GL le 9/5/7. pas de correspondance taxo. forme crée pour la circonstance;
+Gymnodinium limitatum;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;Skuja;1956;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20202.0;GYM.LIM;;;;cellule;ok;8352.4;30.0;28.0;20.0;trel;0.95;1.0;7096.4;8352.4;1.0;7096.4;8352.4;;;;;;;;;Moyenne bibliographie;
+Gymnodinium limitatum kyste;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;Skuja;1956;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20202.0;GYM.LIM;;;;cellule;ok;8352.4;30.0;28.0;20.0;trel;0.95;1.0;7096.4;8352.4;1.0;7096.4;8352.4;;;;;;;;;Moyenne bibliographie;
+Gymnodinium mitratum;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6556.0;GYMMIT;20160.0;GYM.MIT;Gymnodinium;R1654;;cellule;ok;2403.3;30.0;15.0;12.0;ell;0.85;0.9;4414.92;2402.1;1.0;4414.92;2402.1;;;;;;;;;;
+Gymnodinium oligoplacatum;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;Skuja;1956;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20161.0;GYM.OLI;;;;cellule;ok;1507.2;18.0;16.0;10.0;trel;0.95;1.0;2331.66;1431.84;1.0;2331.66;1431.84;;;;;;;;;Mesures moyennes selon Starmach 1974;
+Gymnodinium pallidum;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;20168.0;GYMPAL;20165.0;;;;;cellule;ok;1173.575;15.0;13.0;11.5;trel;0.7;0.7;2582.8;821.5;1.0;2582.8;821.5;;;;;;;;;Mesures moyennes selon Starmach 1974;
+Gymnodinium palustre;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;Schilling;1891;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20166.0;;;;;cellule;ok;14653.333;28.0;50.0;25.0;trel;0.8;0.8;13259.243;14653.333;1.0;13259.243;14653.333;;;;;;;;;Mesures moyennes selon Starmach 1974;
+Gymnodinium purpureum;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;20169.0;GYMPUR;20131.0;;;;;cellule;ok;4605.3335;22.0;20.0;20.0;trel;1.0;1.0;4308.34;4605.33;1.0;4308.34;4605.33;;;;;;;;;;
+Gymnodinium simile;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;GYMSIM;20110.0;;;;;cellule;ok;1267.0;15.5;11.0;8.0;ell;0.9;0.9;1619.34;642.44;1.0;1619.34;642.44;;;;;;;;;Mesures effectuées sur le Léman Mars 2008;
+Gymnodinium sp.;Phytoplancton;Genre espèce;Gymnodiniaceae;;;espèce;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;GYMSPX;20100.0;GYM.SPX;Gymnodinium;R1654;;cellule;ok;989.6;20.0;10.0;7.0;ell;0.9;0.9;1868.15;659.4;1.0;1868.15;659.4;;;;;;;;;;
+Gymnodinium sp. 116;Phytoplancton;Genre espèce;Gymnodiniaceae;;;espèce;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20140.0;;Gymnodinium;R1654;;cellule;ok;296.9;9.0;9.0;7.0;ell;1.0;1.0;718.2;296.73;1.0;718.2;296.73;;;;;;;;;;
+Gymnodinium sp 20/23;Phytoplancton;Genre espèce;Gymnodiniaceae;;;espèce;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20180.0;;;;;cellule;ok;3611.0;23.0;20.0;20.0;trel;0.75;0.8;5628.5;3611.0;1.0;5628.5;3611.0;;;;;;;;;JCD;
+Gymnodinium sp. 240;Phytoplancton;Genre espèce;Gymnodiniaceae;;;espèce;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20150.0;;;;;cellule;ok;241.9;12.0;7.0;5.5;ell;1.0;1.0;742.87;241.78;1.0;742.87;241.78;;;;;;;;;;
+Gymnodinium sp 60/55;Phytoplancton;Genre espèce;Gymnodiniaceae;;;espèce;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20190.0;;;;;cellule;ok;69339.05;60.0;55.0;55.0;trel;0.73;0.7;45997.69;69339.05;1.0;45997.69;69339.05;;;;;;;;;JCD;
+Gymnodinium umberrinum;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6561.0;GYMUMB;20170.0;GYM.UMB;Gymnodinium uberrimum;R1660;;cellule;ok;29688.1;45.0;40.0;35.0;ell;0.9;0.9;18328.47;29673.0;1.0;18328.47;29673.0;;;;;;;;;;
+Gyrosigma acuminatum;Phytoplancton;Genre espèce;Pleurosigmataceae;;;;(KÜTZING) RABENHORST;1853;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7745.0;GYRACU;71320.0;GYR.ACU;Gyrosigma acuminatum;R0273;GYAC;cellule;ok;88200.0;210.0;30.0;20.0;box;0.7;0.7;31714.29;88200.0;1.0;31714.29;88200.0;;;;;;;;;;
+Gyrosigma attenuatum;Phytoplancton;Genre espèce;Pleurosigmataceae;;;;(KÜTZING) RABENHORST;1853;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7748.0;GYRATT;71310.0;GYR.ATT;Gyrosigma attenuatum;R0274;GYAT;cellule;ok;76832.0;196.0;28.0;20.0;box;0.7;0.7;28480.0;76832.0;1.0;28480.0;76832.0;;;;;;;;;;
+Gyrosigma nodiferum;Phytoplancton;Genre espèce;Pleurosigmataceae;;;;(GRUNOW) REIMER;1966;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7760.0;GYRNOD;71321.0;GYR.NOD;;;GNOD;cellule;ok;2520.0;100.0;12.0;3.0;box;0.7;0.7;4388.57;2520.0;1.0;4388.57;2520.0;;;;;;;;;;
+Gyrosigma scalproides;Phytoplancton;Genre espèce;Pleurosigmataceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;GYRSCA;71330.0;GYR.SCA;;;GSCA;cellule;ok;1437.8;79.0;6.5;4.0;box;0.7;0.7;2444.29;1437.8;1.0;2444.29;1437.8;;;;;;;;;;
+Gyrosigma sp.;Phytoplancton;Genre espèce;Pleurosigmataceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;GYRSPX;71300.0;GYR.SPX;Gyrosigma;R0279;GYRS;cellule;ok;53550.0;170.0;25.0;18.0;box;0.7;0.7;22171.43;53550.0;1.0;22171.43;53550.0;;;;;;;;;;
+Hantzschia amphioxys;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8797.0;HANAMP;72710.0;;Hantzschia amphioxys;R0281;HAMP;cellule;ok;1344.0;80.0;7.0;4.0;box;0.6;0.6;3026.67;1344.0;1.0;3026.67;1344.0;;;;;;;;;;
+Heimansia pusilla;Phytoplancton;Genre espèce;Desmidiaceae;;;;Hilse;1993;;;;;Zygophycées;24342.0;HEIPUS;;;;;;cellule;;310.0;;;;;;;;;;;;;;;;;;;;;
+Heleochloris pallida;Phytoplancton;Genre espèce;Palmellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20171.0;HELPAL;80510.0;;;;;cellule;ok;113.1;6.0;6.0;6.0;sphe;1.0;1.0;113.04;113.04;1.0;113.04;113.04;;;;;;;;;;
+Heterokonta;Phytoplancton;Infra-règne;Chromobiota;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+heterothrix constricta;Phytoplancton;Genre espèce;Tribonemataceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Heterothrix sp.;Phytoplancton;Genre espèce;Tribonemataceae;;;espèce;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;;HTTSPX;65100.0;;Xanthophyceae sp.;R1861;;filament;ok;1060.3;6.0;4.5;4.5;trel;1.0;1.0;272.47;63.59;16.7;4550.18;1061.87;100.0;4.5;4.5;tub;1.0;1.0;1444.79;1589.63;;
+Hibberdiales;Phytoplancton;Ordre;Chrysophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Hyaloraphidium contortum;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5684.0;HYACON;81710.0;HYA.CON;Hyaloraphidium contortum;R1804;;cellule;ok;148.4;35.0;3.0;3.0;trel;0.6;0.6;1709.57;98.91;1.0;1709.57;98.91;;;;;;;;;;
+Hydrodictyaceae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Isthmochloron trispinatum;Phytoplancton;Genre espèce;Pleurochloridaceae;;;;(W. West & G.S. West) Skuja;;;;;;Xantophycées;24444.0;;63105.0;IST.TRI;;;;cellule;ok;677.6;11.0;11.0;7.0;box;0.8;0.8;687.5;677.6;1.0;687.5;677.6;;;;;;;;;Moyennes bibliographie;
+Jaaginema geminatum;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;Oscillatoria geminata;;Cyanobactéries;6443.0;JAAGEM;10975.0;JAA.GEM;Oscillatoria geminata;R1589;;filament;ok;907.9;7.0;3.4;3.4;tub;1.0;1.0;92.88;63.52;14.285714;1326.87;907.46;100.0;3.4;3.4;tub;1.0;1.0;1085.75;907.46;;
+Katodinium fungiforme;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;9765.0;KATFUN;20205.0;KAT.FUN;;;;cellule;ok;816.44904;13.5;10.75;10.75;trel;1.0;1.0;1428.44;816.45;1.0;1428.44;816.45;;;;;;;;;Mesures moyennes selon Starmach 1974;
+Katodinium hiemale;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;24945.0;;20206.0;KAT.HIE;;;;cellule;ok;983.448;14.5;12.0;12.0;trel;0.9;0.9;1900.97;983.45;1.0;1900.97;983.45;;;;;;;;;Mesures moyennes selon Starmach 1974;
+Katodinium simile;Phytoplancton;Genre espèce;Gymnodiniaceae;;;;Christen;1961;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20207.0;;;;;cellule;ok;1653.21;18.0;15.0;13.0;trel;0.9;0.9;2750.45;1653.21;1.0;2750.45;1653.21;;;;;;;;;Mesures moyennes selon Starmach 1974;
+Kephyrion cordata;Phytoplancton;Genre espèce;Dinobryaceae;;;;(Hilliard) Starmach;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;54103.0;;;;;cellule;ok;140.9546;6.0;6.7;6.7;ell;1.0;1.0;405.67;140.95;1.0;405.67;140.95;;;;;;;;;Moyennes bibliographie;
+Kephyrion littorale;Phytoplancton;Genre espèce;Dinobryaceae;;;;lund;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6151.0;KEPLIT;54102.0;;;;;cellule;ok;107.17867;5.0;6.4;6.4;ell;1.0;1.0;326.59;107.18;1.0;326.59;107.18;;;;;;;;;Moyennes bibliographie;
+Kephyrion moniliferum;Phytoplancton;Genre espèce;Dinobryaceae;;;;(Schmid) Bourrelly;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;54104.0;;;;;cellule;ok;198.9975;9.0;6.5;6.5;ell;1.0;1.0;580.82;199.0;1.0;580.82;199.0;;;;;;;;;;
+Kephyrion ovum;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Kephyrion petasatum;Phytoplancton;Genre espèce;Dinobryaceae;;;genre;Conrad;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;20174.0;KEPPET;54100.0;;Kephyrion petasatum;R1034;;cellule;ok;268.1;8.0;8.0;8.0;ell;1.0;1.0;637.8;267.95;1.0;637.8;267.95;;;;;;;;;;
+Kephyrion rubri-claustri;Phytoplancton;Genre espèce;Dinobryaceae;;;;Conrad;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6152.0;KEPRUB;54004.0;;;;;cellule;ok;78.5;6.0;5.0;5.0;ell;1.0;1.0;302.74;78.5;1.0;302.74;78.5;;;;;;;;;Moyennes bibliographie;
+Kephyrion skujae;Phytoplancton;Genre espèce;Dinobryaceae;;;;;1965;Ettl, H. (1965). Die algenflora des Schonhengstes und seiner Umgebung, II.. Nova Hedwigia 10: 121-159.;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Kephyrion sp.;Phytoplancton;Genre espèce;Dinobryaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;KEPSPX;54000.0;KEP.SPX;Kephyrion;R1037;;cellule;ok;104.7;8.0;5.0;5.0;ell;1.0;1.0;398.63;104.67;1.0;398.63;104.67;;;;;;;;;;
+Kephyrion sp1;Phytoplancton;Genre espèce;Dinobryaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;54001.0;KEP.SP1;;;;cellule;ok;165.83125;7.5;6.5;6.5;ell;1.0;1.0;486.97;165.83;1.0;486.97;165.83;;;;;;;;;Mesures sur Annecy 2007;
+Kephyrion sp2;Phytoplancton;Genre espèce;Dinobryaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;54002.0;KEP.SP2;;;;cellule;ok;205.14667;8.0;7.0;7.0;ell;1.0;1.0;558.08;205.15;1.0;558.08;205.15;;;;;;;;;Mesures sur Annecy 2007;
+Kephyrion sp3;Phytoplancton;Genre espèce;Dinobryaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;54003.0;KEP.SP3;;;;cellule;ok;23.55;5.0;3.0;3.0;ell;1.0;1.0;153.09;23.55;1.0;153.09;23.55;;;;;;;;;Mesures sur Annecy 2008;
+Kephyrion spirale;Phytoplancton;Genre espèce;Dinobryaceae;;;;(LACKEY) W.CONRAD;1939;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;20175.0;KEPSPI;54101.0;;;;;cellule;ok;58.613335;7.0;4.0;4.0;ell;1.0;1.0;280.48;58.61;1.0;280.48;58.61;;;;;;;;;Mesures sur Annecy 2007;
+Kirchneriella contorta;Phytoplancton;Genre espèce;Chlorellaceae;;;;(SCHMIDLE) BOHLIN;1897;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;KIRCON;81440.0;KIR.CON;Kirchneriella contorta;R0626;;cellule;ok;58.9;15.0;2.5;2.5;trel;0.8;0.8;460.7;39.25;1.0;460.7;39.25;;;;;;;;;;
+Kirchneriella dianae;Phytoplancton;Genre espèce;Chlorellaceae;;;;(BOHLIN) COMAS;1980;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5695.0;KIRDIA;81430.0;KIR.DIA;Kirchneriella dianae;R0627;;cellule;ok;718.4;14.0;3.5;3.5;trel;1.0;1.0;482.04;89.75;8.0;3856.29;718.01;50.0;50.0;50.0;trel;0.5;1.0;24400.08;32708.33;;
+Kirchneriella dichotomococcoides;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;81431.0;;;;;colonie;ok;1100.0;13.0;4.5;4.5;ell;1.0;1.0;576.15;137.77;8.0;4609.17;1102.14;50.0;50.0;50.0;trel;0.5;1.0;24400.08;32708.33;Moyennes bibliographie;
+Kirchneriella incurvata;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20177.0;KIRINC;81432.0;;;;;cellule;ok;83.73333;20.0;4.0;4.0;doco;1.0;1.0;783.9;83.73;1.0;783.9;83.73;;;;;;;;;Moyennes bibliographie;
+Kirchneriella irregularis;Phytoplancton;Genre espèce;Chlorellaceae;;;;(G.M.SMITH) KORSHIKOV;1953;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5699.0;KIRIRR;81450.0;KIR.IRR;;;;colonie;ok;1102.7;13.0;4.5;4.5;trel;1.0;1.0;576.15;137.77;8.0;4609.17;1102.14;50.0;50.0;50.0;trel;0.5;1.0;24400.08;32708.33;;
+Kirchneriella lunaris;Phytoplancton;Genre espèce;Chlorellaceae;;;;(KIRCHNER) MOEBIUS;1894;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5701.0;KIRLUN;81420.0;KIR.LUN;Kirchneriella lunaris;R0629;;colonie;ok;1047.2;20.0;5.0;5.0;trel;1.0;1.0;979.88;261.67;8.0;7839.03;2093.33;70.0;70.0;70.0;trel;0.5;1.0;47800.4;89751.67;;
+Kirchneriella mayori;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Ankistrodesmus mayori;;Chlorophycées;20178.0;KIRMAY;81433.0;;;;;cellule;ok;2.7213333;6.5;1.0;1.0;trel;1.0;1.0;65.33;3.4;1.0;65.33;3.4;;;;;;;;;Moyennes bibliographie;
+Kirchneriella microscopica;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5700.0;KIRMIC;81460.0;KIR.MIC;;;;cellule;ok;2.09;4.0;1.0;1.0;trel;1.0;1.0;41.59;2.09;1.0;41.59;2.09;;;;;;;;;;
+Kirchneriella obesa;Phytoplancton;Genre espèce;Chlorellaceae;;;;(W.WEST) SCHMIDLE;1893;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5702.0;KIROBE;81410.0;KIR.OBE;Kirchneriella obesa;R0631;;colonie;ok;9160.9;27.0;9.0;9.0;trel;1.0;1.0;2376.44;1144.53;8.0;19011.52;9156.24;80.0;80.0;80.0;trel;0.5;1.0;62424.81;133973.33;;
+Kirchneriella subcapitata;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;KIRSUC;81434.0;;;;;cellule;ok;23.026667;11.0;2.0;2.0;trel;1.0;1.0;217.34;23.03;1.0;217.34;23.03;;;;;;;;;Moyennes bibliographie;
+Koliellaceae;Phytoplancton;Famille;Prasiolales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Komvophoron cf. skujae;Phytoplancton;Genre espèce;Boriziaceae;;;espèce;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;;11751.0;;;;;filament;ok;560.0;5.0;2.5;2.5;ell;1.0;1.0;127.57;16.35;20.0;2551.48;327.08;100.0;2.8;2.5;tub;0.8;0.8;891.47;492.35;;
+Komvophoron constrictum;Phytoplancton;Genre espèce;Boriziaceae;;;;(Szafer) Anagnostidis & Komárek;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;6398.0;KOMCON;11752.0;;;;;filament;ok;1570.0;5.0;5.0;5.0;ell;1.0;1.0;255.15;65.42;20.0;5102.96;1308.33;100.0;5.0;5.0;tub;0.8;0.8;1619.06;1570.0;moyenne Susswasserflora;
+komvophoron minutum;Phytoplancton;Genre espèce;Boriziaceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Komvophoron schmidlei;Phytoplancton;Genre espèce;Boriziaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;Pseudanabaena schmidlei;;Cyanobactéries;6401.0;KOMSCH;11040.0;KOM.SCH;;;;filament;ok;2513.3;10.0;8.0;8.0;ell;1.0;1.0;792.06;334.93;5.0;3960.29;1674.67;50.0;8.0;8.0;tub;1.0;1.0;1356.48;2512.0;;
+Komvophoron sp.;Phytoplancton;Genre espèce;Boriziaceae;;;espèce;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;KOMSPX;11750.0;KOM.SPX;Cyanophyceae;R1638;;filament;ok;78.5;1.0;1.0;1.0;ell;1.0;1.0;15.03;0.52;100.0;1503.41;52.33;100.0;1.0;1.0;tub;1.0;1.0;315.57;78.5;;
+Komvophoron sp. 3 µm;Phytoplancton;Genre espèce;Boriziaceae;;;espèce;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;;11751.0;KOM.SP3;;;;filament;ok;565.2;3.0;3.0;3.0;ell;1.0;1.0;96.91;14.13;33.333332;3230.22;471.0;100.0;3.0;3.0;tub;1.0;1.0;956.13;706.5;Moyennes sur Annecy 2009 n 3;
+Korshikoviella gracilipes;Phytoplancton;Genre espèce;Characiaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Characium gracilipes;;Chlorophycées;5707.0;KORGRA;87013.0;;;;;cellule;ok;5934.6;280.0;9.0;4.0;doco;1.0;1.0;18526.2;2637.6;1.0;18526.2;2637.6;;;;;;;;;Moyennes bibliographie;
+Korshikoviella limnetica;Phytoplancton;Genre espèce;Characiaceae;;;;(LEMMERMANN) P.C.SILVA;1959;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20181.0;KORLIM;87011.0;;;;;cellule;ok;699.9583;53.5;5.0;5.0;ell;1.0;1.0;2610.49;699.96;1.0;2610.49;699.96;;;;;;;;;Mesures moyennes selon Huber Pestalozzi;
+Korshikoviella michailovskoensis;Phytoplancton;Genre espèce;Characiaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5708.0;KORMIC;87010.0;KOR.MIC;;;;cellule;ok;1463.0;100.0;5.6;5.6;ell;1.0;1.0;5461.25;1641.17;1.0;5461.25;1641.17;;;;;;;;;;
+Korshikoviella sp.;Phytoplancton;Genre espèce;Characiaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;KORSPX;87012.0;;;;;cellule;ok;565.2;60.0;6.0;6.0;doco;1.0;1.0;3512.55;565.2;1.0;3512.55;565.2;;;;;;;;;Moyennes bibliographie;
+kyste Chrysophycee N°1;Phytoplancton;Genre espèce;Chrysophyceae;;;classe;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51810.0;;Chrysophyceae sp.;R1171;;cellule;ok;523.6;10.0;10.0;10.0;ell;1.0;1.0;990.07;523.33;1.0;990.07;523.33;;;;;;;;;;
+Kyste de chrysophycées N°2 (diam. 17,5µm);Phytoplancton;Genre espèce;Chrysophyceae;;;classe;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51811.0;;Chrysophyceae sp.;R1171;;cellule;ok;2806.2;17.5;17.5;17.5;ell;1.0;1.0;3004.55;2804.74;1.0;3004.55;2804.74;;;;;;;;;;
+Kyste de Dinobryon;Phytoplancton;Genre espèce;Chrysophyceae;;;genre;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51812.0;;;;;cellule;ok;1150.0;13.0;13.0;13.0;ell;1.0;1.0;1664.42;1149.76;1.0;1664.42;1149.76;;;;;;;;;;
+Kyste de péridinien;Phytoplancton;Famille;Peridiniales;;;famille;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20050.0;;;;;cellule;ok;11309.0;30.0;30.0;30.0;ell;0.8;0.8;10996.59;11304.0;1.0;10996.59;11304.0;;;;;;;;;;
+Kystes de chrysophycées (14µ);Phytoplancton;Genre espèce;Chrysophyceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51825.0;;;;;cellule;ok;1436.0266;14.0;14.0;14.0;ell;1.0;1.0;1928.14;1436.03;1.0;1928.14;1436.03;;;;;;;;;;
+Kystes de chrysophycées (30µ);Phytoplancton;Genre espèce;Chrysophyceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51826.0;;;;;cellule;ok;14130.0;30.0;30.0;30.0;ell;1.0;1.0;8797.28;14130.0;1.0;8797.28;14130.0;;;;;;;;;;
+Lagerheimia balatonica;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5711.0;LAGBAL;83614.0;;;;;cellule;ok;71.17333;8.5;4.0;4.0;ell;1.0;1.0;338.15;71.17;1.0;338.15;71.17;;;;;;;;;Moyennes bibliographie;
+Lagerheimia chodatii;Phytoplancton;Genre espèce;Oocystaceae;;;;Bern;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5710.0;LAGCHO;83671.0;;;;;cellule;ok;183.16667;14.0;5.0;5.0;trel;1.0;1.0;688.62;183.17;1.0;688.62;183.17;;;;;;;;;;
+Lagerheimia chodatii colonie;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;83670.0;LAG.CHO;;;;colonie;ok;1099.6;14.0;5.0;5.0;ell;1.0;1.0;688.62;183.17;4.0;2754.49;732.67;30.0;8.0;8.0;trel;0.5;1.0;2345.94;502.4;;
+Lagerheimia ciliata;Phytoplancton;Genre espèce;Oocystaceae;;;;(LAGERHEIM) CHODAT;1895;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5713.0;LAGCIL;83620.0;LAG.CIL;Lagerheimia ciliata;R0647;;cellule;ok;2591.8;22.0;15.0;15.0;ell;1.0;1.0;3231.25;2590.5;1.0;3231.25;2590.5;;;;;;;;;;
+Lagerheimia citriformis;Phytoplancton;Genre espèce;Oocystaceae;;;;(SNOW) COLLINS;1909;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5712.0;LAGCIT;83660.0;LAG.CIT;Lagerheimia citriformis;R0648;;cellule;ok;17907.1;38.0;30.0;30.0;ell;1.0;1.0;11133.75;17898.0;1.0;11133.75;17898.0;;;;;;;;;;
+Lagerheimia genevensis;Phytoplancton;Genre espèce;Oocystaceae;;;;CHODAT;1895;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5714.0;LAGGEN;83630.0;LAG.GEN;Lagerheimia genevensis;R0649;;cellule;ok;130.9;10.0;5.0;5.0;ell;1.0;1.0;495.04;130.83;1.0;495.04;130.83;;;;;;;;;;
+Lagerheimia longiseta;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5716.0;LAGLON;83610.0;LAG.LON;Lagerheimia;R0653;;cellule;ok;402.1;12.0;8.0;8.0;ell;1.0;1.0;946.78;401.92;1.0;946.78;401.92;;;;;;;;;;
+Lagerheimia marsonii;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;83611.0;;;;;cellule;ok;160.14;8.5;6.0;6.0;trel;1.0;1.0;507.23;160.14;1.0;507.23;160.14;;;;;;;;;Moyennes bibliographie;
+Lagerheimia quadriseta;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;LAGQUA;83640.0;;Lagerheimia quadriseta;R0652;;cellule;ok;130.9;10.0;5.0;5.0;ell;1.0;1.0;495.04;130.83;1.0;495.04;130.83;;;;;;;;;;
+Lagerheimia sp.;Phytoplancton;Genre espèce;Oocystaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;LAGSPX;83612.0;;;;;cellule;ok;334.93332;10.0;8.0;8.0;trel;1.0;1.0;792.06;334.93;1.0;792.06;334.93;;;;;;;;;Moyennes bibliographie;
+Lagerheimia subsalsa;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5717.0;LAGSUB;83613.0;;;;;cellule;ok;232.16376;10.5;6.5;6.5;trel;1.0;1.0;674.95;232.16;1.0;674.95;232.16;;;;;;;;;Moyennes bibliographie;
+Lagerheimia wratislaviensis;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5718.0;LAGWRA;83680.0;LAG.WRA;;;;colonie;ok;490.1;13.0;6.0;6.0;ell;1.0;1.0;768.19;244.92;1.0;768.19;244.92;;;;;;;;;;
+Lemmermanniella pallida;Phytoplancton;Genre espèce;Synechococcaceae;;;;(Lemmermann) Geitler;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;9712.0;LEMPAL;11754.0;;;;;colonie;ok;1177.5;1.5;1.0;1.0;tub;1.0;1.0;6.28;1.18;1000.0;6280.0;1177.5;50.0;50.0;50.0;sphe;0.05;1.0;7850.0;3270.83;moyenne Susswasserflora;
+Lemmermanniella parva;Phytoplancton;Genre espèce;Synechococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6323.0;LEMPAR;11520.0;LEM.PAR;;;;colonie;ok;4460.0;1.5;1.0;1.0;trel;1.0;1.0;19.02;0.79;5681.529;108049.65;4460.0;44.0;44.0;44.0;sphe;0.1;1.0;6079.04;4457.96;Moyennes sur Léman. Aiguebellette;
+Lemmermanniella sp.;Phytoplancton;Genre espèce;Synechococcaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;LEMSPX;11521.0;LEM.SPX;;;;colonie;ok;52046.547;1.5;1.0;1.0;trel;1.0;1.0;19.02;0.79;66301.336;1260899.4;52046.55;46.0;46.0;46.0;sphe;0.1;1.0;6644.24;5093.92;Observé sur Annecy en 1999;
+Lepocinclis ovum;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;6492.0;LEPOVU;40501.0;;;;;cellule;ok;4908.8667;33.5;20.0;15.0;ell;0.7;0.7;8232.84;3681.65;1.0;8232.84;3681.65;;;;;;;;;Moyennes bibliographie;
+Leptolyngbya lagerheimii;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;20184.0;LELLAG;11303.0;;;;;filament;ok;90.746;1.7;1.7;1.7;tub;1.0;1.0;13.61;3.86;23.529411;320.28;90.75;40.0;1.7;1.7;tub;1.0;1.0;218.06;90.75;1 individu sur Annecy n 3-2007. de longeur 40 um;
+Leptolyngbya sp.;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;espèce;;;;;;;Cyanobactéries;;LELSPX;11307.0;;;;;filament;ok;314.0;2.0;2.0;2.0;tub;1.0;1.0;18.84;6.28;50.0;942.0;314.0;100.0;2.0;2.0;tub;1.0;1.0;634.28;314.0;Moyennes bibliographie;
+Leptolyngbya sp. 1;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;espèce;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;;11304.0;;;;;filament;ok;78.5;1.0;1.0;1.0;tub;1.0;1.0;4.71;0.79;100.0;471.0;78.5;100.0;1.0;1.0;tub;1.0;1.0;315.57;78.5;Mesures sur Morcille été 2007 (ecotox Aurelie Villeneuve);
+Leptolyngbya sp. 2;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;espèce;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;;11306.0;;;;;filament;ok;1256.0;4.0;4.0;4.0;tub;1.0;1.0;75.36;50.24;25.0;1884.0;1256.0;100.0;4.0;4.0;tub;1.0;1.0;1281.12;1256.0;Mesures sur Morcille été 2007 (ecotox Aurelie Villeneuve);
+Leptolyngbya valderiana;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;20185.0;LELVAL;11305.0;;;;;filament;ok;314.0;2.0;2.0;2.0;tub;1.0;1.0;18.84;6.28;50.0;942.0;314.0;100.0;2.0;2.0;tub;1.0;1.0;634.28;314.0;Mesures sur Morcille été 2007 (ecotox Aurelie Villeneuve);
+Limnothrix guttulata;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;9687.0;LIMGUT;11314.0;;;;;filament;ok;706.5;6.0;3.0;3.0;tub;1.0;1.0;70.65;42.39;16.666666;1177.5;706.5;100.0;3.0;3.0;tub;1.0;1.0;956.13;706.5;Moyennes bibliographie;
+Limnothrix obliqueacuminata;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;;10959.0;;;;;filament;ok;;10.0;1.8;1.8;tub;1.0;1.0;61.61;25.43;10.0;616.07;254.34;100.0;1.8;1.8;tub;1.0;1.0;570.29;254.34;Moyennes bibliographie;
+Limnothrix planctonica;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;Oscillatoria planctonica;;Cyanobactéries;6447.0;LIMPLA;10961.0;LIM.PLA;;;;filament;ok;314.0;8.0;2.0;2.0;tub;1.0;1.0;56.52;25.12;12.5;706.5;314.0;100.0;2.0;2.0;tub;1.0;1.0;634.28;314.0;Mesure canaux Thonon 5 2009;
+Limnothrix redeckei;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;Oscillatoria redeckei;;Cyanobactéries;;;10960.0;;Limnothrix redekei;R1582;;filament;ok;176.7;6.0;1.5;1.5;tub;1.0;1.0;31.79;10.6;16.666666;529.88;176.63;100.0;1.5;1.5;tub;1.0;1.0;474.53;176.63;;
+Limnothrix sp.;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;espèce;;;;;;;Cyanobactéries;;LIMSPX;10962.0;;;;;filament;ok;314.0;8.0;2.0;2.0;tub;1.0;1.0;56.52;25.12;12.5;706.5;314.0;100.0;2.0;2.0;tub;1.0;1.0;634.28;314.0;Moyennes bibliographie;
+Limnotrix cf. planctonica;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;espèce;;;;;;;Cyanobactéries;;;10963.0;;;;;filament;ok;314.0;8.0;2.0;2.0;tub;1.0;1.0;56.52;25.12;12.5;706.5;314.0;100.0;2.0;2.0;tub;1.0;1.0;634.28;314.0;Moyennes bibliographie;
+Lobocystis sp.;Phytoplancton;Genre espèce;Botryococcaceae;;;espèce;;;;;;;Chlorophycées;;LOCSPX;83690.0;;;;;colonie;ok;884.43335;10.0;6.5;6.5;ell;1.0;1.0;643.55;221.11;4.0;2574.19;884.43;30.0;13.0;13.0;box;0.8;1.0;1898.0;4056.0;Moyennes bibliographie;
+Lophodiniaceae;Phytoplancton;Famille;Lophodiniales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Lophodiniales;Phytoplancton;Ordre;Dinophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Luticola cohnii;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7779.0;LUTCOH;71401.0;;;;LCOH;cellule;ok;407.0;20.0;9.0;3.2;box;0.7;0.7;779.43;403.2;1.0;779.43;403.2;;;;;;;;;Valeurs OMNIDIA;
+Luticola mutica;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Navicula mutica;;Diatomées;7783.0;LUTMUT;71402.0;;;;LMUT;cellule;ok;270.0;18.0;6.5;3.3;box;0.7;0.7;565.29;270.27;1.0;565.29;270.27;;;;;;;;;Valeurs OMNIDIA;
+Lyngbya sp.;Phytoplancton;Genre espèce;Oscillatoriaceae;;;espèce;;;;;;;Cyanobactéries;;LYNSPX;10964.0;;;;;filament;ok;5024.0;5.0;8.0;8.0;tub;1.0;1.0;226.08;251.2;20.0;4521.6;5024.0;100.0;8.0;8.0;tub;1.0;1.0;2612.48;5024.0;Moyennes bibliographie;
+Lyngbya sp. 116;Phytoplancton;Genre espèce;Oscillatoriaceae;;;espèce;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;;11300.0;;Lyngbya;R1570;;filament;ok;2827.4;2.0;6.0;6.0;tub;1.0;1.0;94.2;56.52;50.0;4710.0;2826.0;100.0;6.0;6.0;tub;1.0;1.0;1940.52;2826.0;;
+Lyngbya truncicola;Phytoplancton;Genre espèce;Oscillatoriaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;6404.0;LYNTRU;11301.0;LYN.TRU;;;;filament;ok;17671.0;5.0;15.0;15.0;tub;1.0;1.0;588.75;883.13;20.0;11775.0;17662.5;100.0;15.0;15.0;tub;1.0;1.0;5063.25;17662.5;;
+Mallomonadaceae;Phytoplancton;Famille;Synurales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Mallomonas acaroides;Phytoplancton;Genre espèce;Mallomonadaceae;;;;PERTY em. IVANOV;1851;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6210.0;MALACA;50510.0;MAL.ACA;Mallomonas acaroides;R1096;;cellule;ok;3652.1;31.0;15.0;15.0;ell;1.0;1.0;4544.63;3650.25;1.0;4544.63;3650.25;;;;;;;;;;
+Mallomonas acrokomos;Phytoplancton;Genre espèce;Mallomonadaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50520.0;;Mallomonas akrokomos;R1097;;cellule;ok;314.2;40.0;5.0;5.0;ell;0.6;0.6;3255.01;314.0;1.0;3255.01;314.0;;;;;;;;;;
+Mallomonas caudata;Phytoplancton;Genre espèce;Mallomonadaceae;;;;IVANOV em. WILLI KRIEGER;1899 em.1930;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6212.0;MALCAU;50580.0;MAL.CAU;;;;cellule;ok;2154.04;35.0;14.0;14.0;con;1.0;1.0;4786.81;1795.03;1.0;4786.81;1795.03;;;;;;;;;;
+Mallomonas cf. genevensis;Phytoplancton;Genre espèce;Mallomonadaceae;;;espèce;Chodat;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50555.0;;;;;cellule;ok;6274.18;33.0;19.0;19.0;trel;1.0;1.0;6126.43;6234.47;1.0;6126.43;6234.47;;;;;;;;;Mesure Aiguebelette 20-12-2011;
+Mallomonas cf. minima;Phytoplancton;Genre espèce;Mallomonadaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50550.0;;Mallomonas;R1109;;cellule;ok;1592.8;18.0;13.0;13.0;ell;1.0;1.0;2295.08;1591.98;1.0;2295.08;1591.98;;;;;;;;;;
+Mallomonas cf. minuta;Phytoplancton;Genre espèce;Mallomonadaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50570.0;;;;;cellule;ok;453.9;12.0;8.5;8.5;ell;0.7;0.7;1437.08;317.61;1.0;1437.08;317.61;;;;;;;;;;
+Mallomonas elongata;Phytoplancton;Genre espèce;Mallomonadaceae;;;;REVERDIN;1919;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6213.0;MALELO;50530.0;MAL.ELO;Mallomonas elongata;R1103;;cellule;ok;5309.3;60.0;13.0;13.0;ell;1.0;1.0;7610.53;5306.6;1.0;7610.53;5306.6;;;;;;;;;;
+Mallomonas globasa;Phytoplancton;Genre espèce;Mallomonadaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50560.0;;;;;cellule;ok;1436.0;14.0;14.0;14.0;ell;1.0;1.0;1928.14;1436.03;1.0;1928.14;1436.03;;;;;;;;;;
+Mallomonas lefevriana;Phytoplancton;Genre espèce;Mallomonadaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;20191.0;MALLEF;50540.0;;Mallomonas;R1109;;cellule;ok;226.2;12.0;6.0;6.0;ell;1.0;1.0;710.09;226.08;1.0;710.09;226.08;;;;;;;;;;
+Mallomonas sp.;Phytoplancton;Genre espèce;Mallomonadaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;MALSPX;50500.0;MAL.SPX;Mallomonas;R1109;;cellule;ok;785.4;15.0;10.0;10.0;ell;1.0;1.0;1474.23;785.0;1.0;1474.23;785.0;;;;;;;;;;
+Mallomonas sp. 1;Phytoplancton;Genre espèce;Mallomonadaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50501.0;MAL.SP1;;;;cellule;ok;3827.2866;43.0;13.0;13.0;trel;1.0;1.0;5457.63;3803.06;1.0;5457.63;3803.06;;;;;;;;;Mesure sur Léman 2009 - n 14;
+Mallomonas sp. 2;Phytoplancton;Genre espèce;Mallomonadaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6217.0;MALSPX;50502.0;;;;;cellule;;179.5;7.0;7.0;7.0;sphe;1.0;0.3;512.87;179.5;1.0;512.87;179.5;;;;;;;;;Mesure Bourget 2012 - 12;
+Meloseirales;Phytoplancton;Ordre;Coscinodiscophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Melosiraceae;Phytoplancton;Famille;Meloseirales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Melosira varians;Phytoplancton;Genre espèce;Melosiraceae;;;;C.AGARDH;1827;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8719.0;MELVAR;70140.0;MEL.VAR;Melosira varians;R0062;MVAR;cellule;ok;3694.5;24.0;14.0;14.0;box;1.0;1.0;1736.0;4704.0;1.0;1736.0;4704.0;;;;;;;;;;
+Meridion circulare;Phytoplancton;Genre espèce;Fragilariaceae;;;;(GREVILLE) C.AGARDH;1831;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6736.0;MEDCIR;70510.0;MED.CIR;Meridion circulare;R0283;MCIR;cellule;ok;1260.0;50.0;6.0;6.0;box;0.7;0.7;1817.14;1260.0;1.0;1817.14;1260.0;;;;;;;;;;
+Merismopediaceae;Phytoplancton;Famille;Chroococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Merismopedia cf. hyalina;Phytoplancton;Genre espèce;Merismopediaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10130.0;;;;;colonie;ok;226.0;3.0;3.0;3.0;ell;1.0;1.0;96.91;14.13;16.0;1550.51;226.08;60.0;60.0;9.0;box;0.4;1.0;9360.0;12960.0;;
+Merismopedia cf. minima;Phytoplancton;Genre espèce;Merismopediaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10120.0;MER.MIN;Merismopedia minima;R1476;;colonie;ok;9.0;0.8;0.8;0.8;ell;1.0;1.0;10.86;0.27;32.0;347.67;8.57;35.0;17.0;4.0;box;0.4;1.0;1606.0;952.0;;
+Merismopedia cf. punctata;Phytoplancton;Genre espèce;Merismopediaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10116.0;MER.PUN;;;;colonie;ok;450.0;3.0;3.0;3.0;ell;1.0;1.0;96.91;14.13;8.0;775.25;113.04;12.0;12.0;12.0;box;1.0;1.0;864.0;1728.0;;
+Merismopedia duplex;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10117.0;;;;;colonie;;179.50333;3.5;3.5;3.5;ell;1.0;1.0;129.23;22.44;8.0;1033.88;179.5;15.0;15.0;5.0;box;1.0;1.0;750.0;1125.0;Moyennes bibliographie;
+Merismopedia elegans;Phytoplancton;Genre espèce;Merismopediaceae;;;;A.BRAUN in KÜTZING;1849;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6325.0;MERELE;10115.0;MER.ELE;;;;colonie;ok;5500.0;7.0;6.0;6.0;ell;1.0;1.0;420.71;131.88;128.0;53851.26;16880.64;35.0;35.0;6.0;box;0.75;1.0;3290.0;5512.5;;
+Merismopedia glauca;Phytoplancton;Genre espèce;Merismopediaceae;;;;(EHRENBERG) KÜTZING;1845;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6327.0;MERGLA;10110.0;MER.GLA;;;;colonie;ok;1526.8;4.5;4.5;4.5;ell;1.0;1.0;208.34;47.69;32.0;6667.01;1526.04;35.0;35.0;4.5;box;0.4;1.0;3080.0;2205.0;;
+Merismopedia punctata;Phytoplancton;Genre espèce;Merismopediaceae;;;;Meyen;1839;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6328.0;MERPUN;10111.0;MER.PUN;;;;colonie;ok;452.16;3.0;3.0;3.0;ell;1.0;1.0;96.91;14.13;32.0;3101.01;452.16;35.0;35.0;3.0;box;0.4;1.0;2870.0;1470.0;Moyenne bibliographie;
+Merismopedia sp.;Phytoplancton;Genre espèce;Merismopediaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;MERSPX;10100.0;MER.SPX;Merismopedia;R1478;;colonie;ok;134.0;2.0;2.0;2.0;ell;1.0;1.0;46.6;4.19;32.0;1491.16;133.97;30.0;30.0;2.0;box;0.4;1.0;2040.0;720.0;;
+Merismopedia tenuissima;Phytoplancton;Genre espèce;Merismopediaceae;;;;LEMMERMANN;1898;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6330.0;MERTEN;10140.0;MER.TEN;Merismopedia tenuissima;R1479;;colonie;ok;16.746666;1.0;1.0;1.0;ell;1.0;1.0;15.03;0.52;32.0;481.09;16.75;20.0;20.0;1.0;box;0.4;1.0;880.0;160.0;Mesures sur Bayssou - 06-2008;
+Micractiniaceae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Micractinium crassisetum;Phytoplancton;Genre espèce;Micractiniaceae;;;;Hortob.;1973;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5725.0;MITCRA;81815.0;;;;;colonie;ok;4088.0;12.5;12.5;12.5;ell;1.0;1.0;1539.8633;1022.13544;4.0;6159.453;4088.5417;50.0;50.0;50.0;ell;0.3;0.5;48800.164;19625.0;;
+Micractinium pusillum;Phytoplancton;Genre espèce;Micractiniaceae;;;;FRESENIUS;1858;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5726.0;MITPUS;81810.0;MIT.PUS;Micractinium pusillum;R0660;;colonie;ok;5747.0;7.0;7.0;7.0;ell;1.0;1.0;490.83;179.5;32.0;15706.62;5744.11;40.0;40.0;40.0;trel;0.3;1.0;15624.05;10048.0;;
+micractinium pusillum colonie 4 cellules;Phytoplancton;Genre espèce;Micractiniaceae;;;;Hortob.;1973;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5725.0;MITCRA;81815.0;;;;;colonie;ok;4088.0;12.5;12.5;12.5;ell;1.0;1.0;1539.86;1022.14;4.0;6159.45;4088.54;50.0;50.0;50.0;ell;0.3;0.5;48800.16;19625.0;Moyennes bibliographie;
+Microbille bleu;Phytoplancton;Inconnu;;;;;;;;;;;Non algue;;;;;;;;bille;ok;1087.2526;12.76;12.76;12.76;sphe;1.0;1.0;511.25;1087.25;1.0;511.25;1087.25;;;;;;;;;intercalibration 2009;
+Microbille rouge;Phytoplancton;Inconnu;;;;;;;;;;;Non algue;;;;;;;;bille;ok;26.940598;3.72;3.72;3.72;sphe;1.0;1.0;43.45;26.94;1.0;43.45;26.94;;;;;;;;;intercalibration 2009;
+micro chlorophycées;Phytoplancton;Classe;Chlorophyta;;;classe;;;;;;;Chlorophycées;;;85613.0;;;;;cellule;ok;2400.0;20.0;20.0;10.0;ell;0.6;0.6;5061.97;1256.0;1.0;5061.97;1256.0;;;;;;;;;;
+Microcystaceae;Phytoplancton;Famille;Chroococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Microcystis aeruginosa;Phytoplancton;Genre espèce;Microcystaceae;;;;KÜTZING;1845;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6380.0;MIOAER;10210.0;MIO.AER;Microcystis aeruginosa;R1482;;filament;ok;5236.0;5.0;5.0;5.0;sphe;1.0;1.0;78.5;65.42;80.040764;6283.2;5236.0;100.0;100.0;100.0;sphe;0.01;1.0;31400.0;5233.33;;
+Microcystis aeruginosa (cellules isolées);Phytoplancton;Genre espèce;Microcystaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10211.0;;;;;cellule;ok;65.45;5.0;5.0;5.0;sphe;1.0;1.0;78.5;65.42;1.0;78.5;65.42;;;;;;;;;;
+Microcystis cf. flos-aquae;Phytoplancton;Genre espèce;Microcystaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;10265.0;;;;;colonie;ok;23140.0;4.0;4.0;4.0;sphe;1.0;1.0;50.24;33.49;690.8837;34710.0;23140.0;170.0;65.0;40.0;trel;0.1;1.0;88495.39;23131.33;;
+Microcystis ichthyoblabe;Phytoplancton;Genre espèce;Microcystaceae;;;;;;;;;;Cyanobactéries;9659.0;MIOICH;10266.0;;;;;colonie;ok;408.85416;2.5;2.5;2.5;sphe;1.0;1.0;19.63;8.18;50.0;981.25;408.85;30.0;30.0;20.0;trel;0.2;1.0;7418.89;1884.0;Moyennes bibliographie;
+Microcystis sp.;Phytoplancton;Genre espèce;Microcystaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;MIOSPX;10200.0;MIO.SPX;Microcystis;R1496;;colonie;ok;5236.0;2.5;2.5;2.5;sphe;1.0;1.0;19.63;8.18;640.3261;12566.4;5236.0;100.0;100.0;100.0;trel;0.01;1.0;97522.27;5233.33;;
+Microcystis wesenbergii;Phytoplancton;Genre espèce;Microcystaceae;;;;;;;;;;Cyanobactéries;6384.0;MIOWES;10201.0;;;;;colonie;ok;3270.8333;5.0;5.0;5.0;sphe;1.0;1.0;78.5;65.42;50.0;3925.0;3270.83;15.0;15.0;15.0;trel;0.2;1.0;2211.34;353.25;Moyennes bibliographie;
+Microspora abbreviata;Phytoplancton;Genre espèce;Microsporaceae;;;;;;;;;;Chlorophycées;20196.0;MICABB;85614.0;;;;;cellule;ok;2861.325;20.0;13.5;13.5;tub;1.0;1.0;1133.93;2861.33;1.0;1133.93;2861.33;;;;;;;;;Moyennes bibliographie;
+Microsporaceae;Phytoplancton;Famille;Microsporales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Microsporales;Phytoplancton;Ordre;Chlorophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Mischococcales;Phytoplancton;Ordre;Xanthophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Monallantus sp.;Phytoplancton;Genre espèce;Pleurochloridaceae;;;espèce;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;;MOASPX;64200.0;;;;;cellule;ok;130.83333;10.0;5.0;5.0;trel;1.0;1.0;495.04;130.83;1.0;495.04;130.83;;;;;;;;;Moyennes bibliographie;
+Monoraphidium arcuatum;Phytoplancton;Genre espèce;Chlorellaceae;;;;(KORSHIKOV) HINDÁK;1970;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5729.0;MONARC;81754.0;MON.ARC;Monoraphidium arcuatum;R0663;;cellule;ok;33.8;32.0;2.4;2.4;ell;0.7;0.7;1072.15;67.52;1.0;1072.15;67.52;;;;;;;;;;
+Monoraphidium circinale;Phytoplancton;Genre espèce;Chlorellaceae;;;;(NYGAARD) NYGAARD;1979;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5730.0;MONCIR;81790.0;MON.CIR;Monoraphidium circinale;R0664;;cellule;ok;25.0;8.0;1.9;1.9;ell;0.9;0.9;168.31;13.6;1.0;168.31;13.6;;;;;;;;;;
+Monoraphidium contortum;Phytoplancton;Genre espèce;Chlorellaceae;;;;(THURET) KOMÁRKOVÁ-LEGNEROVÁ;1969;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5731.0;MONCON;81791.0;MON.CON;;;;cellule;ok;59.09349;23.5;3.1;3.1;doco;0.9;0.9;792.23;53.18;1.0;792.23;53.18;;;;;;;;;valeurs moyennes selon Komarek & Fott 1983;
+Monoraphidium convolutum;Phytoplancton;Genre espèce;Chlorellaceae;;;;(CORDA) KOMÁRKOVÁ-LEGNEROVÁ;1969;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5733.0;MONCOV;81795.0;MON.COV;Monoraphidium convolutum;R0666;;cellule;ok;66.5;21.0;2.4;2.4;ell;0.7;0.7;705.24;44.31;1.0;705.24;44.31;;;;;;;;;;
+Monoraphidium dybowskii;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;10249.0;MONDYB;81797.0;;;;;cellule;ok;71.958336;11.0;5.0;5.0;doco;1.0;1.0;543.36;71.96;1.0;543.36;71.96;;;;;;;;;Moyennes bibliographie;
+Monoraphidium fontinale;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20197.0;MONHIN;81798.0;;;;;cellule;ok;112.18958;35.0;3.5;3.5;doco;1.0;1.0;1196.7;112.19;1.0;1196.7;112.19;;;;;;;;;Moyennes bibliographie;
+Monoraphidium griffithii;Phytoplancton;Genre espèce;Chlorellaceae;;;;(M.J.BERKELEY) KOMÁRKOVÁ-LEGNEROVÁ;1969;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5734.0;MONGRI;81750.0;MON.GRI;;;;cellule;ok;298.5;70.0;3.0;3.0;ell;0.6;0.6;3414.31;197.82;1.0;3414.31;197.82;;;;;;;;;;
+Monoraphidium indicum;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5732.0;MONIND;81796.0;MON.IND;;;;cellule;ok;1470.0;150.0;3.5;3.5;ell;0.8;0.8;6398.7;769.3;1.0;6398.7;769.3;;;;;;;;;;
+Monoraphidium irregulare;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9232.0;MONIRR;81799.0;;;;;cellule;ok;129.525;55.0;3.0;3.0;doco;1.0;1.0;1610.13;129.53;1.0;1610.13;129.53;;;;;;;;;Moyennes bibliographie;
+Monoraphidium komarkovae;Phytoplancton;Genre espèce;Chlorellaceae;;;;NYGAARD;1979;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5735.0;MONKOM;81770.0;MON.KOM;Monoraphidium komarkovae;R0673;;cellule;ok;160.3;70.0;2.7;2.7;ell;1.2;1.2;1536.44;320.47;1.0;1536.44;320.47;;;;;;;;;;
+Monoraphidium minutum;Phytoplancton;Genre espèce;Chlorellaceae;;;;(NÄGELI) KOMÁRKOVÁ-LEGNEROVÁ;1969;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5736.0;MONMIN;81720.0;MON.MIN;Monoraphidium minutum;R0675;;cellule;ok;131.9;15.0;4.0;4.0;ell;0.7;0.7;842.42;87.92;1.0;842.42;87.92;;;;;;;;;;
+Monoraphidium mirabile;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5737.0;MONMIR;81760.0;MON.MIR;;;;cellule;ok;879.6;100.0;4.0;4.0;ell;0.7;0.7;5572.7;586.13;1.0;5572.7;586.13;;;;;;;;;;
+Monoraphidium nanum;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Ankistrodesmus nanus;;Chlorophycées;9234.0;MONNAN;81761.0;;;;;cellule;ok;2.6467583;3.5;1.7;1.7;doco;1.0;1.0;62.77;2.65;1.0;62.77;2.65;;;;;;;;;Moyennes bibliographie;
+Monoraphidium pusillum;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5739.0;MONPUS;81762.0;;;;;cellule;ok;100.67625;19.0;4.5;4.5;doco;1.0;1.0;838.16;100.68;1.0;838.16;100.68;;;;;;;;;Moyennes bibliographie;
+Monoraphidium skujae;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5738.0;MONSKU;81780.0;MON.SKU;Monoraphidium;R0682;;cellule;ok;24.1;15.0;1.6;1.6;ell;0.8;0.8;294.85;16.08;1.0;294.85;16.08;;;;;;;;;;
+Monoraphidium sp.;Phytoplancton;Genre espèce;Chlorellaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;MONSPX;81700.0;MON.SPX;Monoraphidium;R0682;;cellule;ok;49.1;25.0;2.5;2.5;ell;1.2;1.0;611.48;98.13;1.0;611.48;98.13;;;;;;;;;;
+Monoraphidium subclavatum;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;MONSUB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Monoraphidium tortile;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5741.0;MONTOR;81701.0;;;;;cellule;ok;5.3641667;20.5;1.0;1.0;doco;1.0;1.0;200.84;5.36;1.0;200.84;5.36;;;;;;;;;Moyennes bibliographie;
+Monosiga varians;Phytoplancton;Genre espèce;Codonosigidae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;6155.0;MOSVAR;51410.0;MOS.VAR;Monosiga;R1358;;cellule;ok;220.9;7.5;7.5;7.5;ell;1.0;1.0;561.89;220.78;1.0;561.89;220.78;;;;;;;;;;
+Mougeotia gracillima;Phytoplancton;Genre espèce;Zygnemataceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5288.0;MOUGRA;90200.0;MOU.GRA;Mougeotia;R1003;;cellule;ok;1539.4;40.0;7.0;7.0;tub;1.0;1.0;956.13;1538.6;1.0;956.13;1538.6;;;;;;;;;;
+Mougeotia sp.;Phytoplancton;Genre espèce;Zygnemataceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;MOUSPX;90210.0;MOU.SPX;Mougeotia;R1003;;cellule;ok;2544.7;40.0;9.0;9.0;tub;1.0;1.0;1257.57;2543.4;1.0;1257.57;2543.4;;;;;;;;;;
+Mougeotia sp. bourget03;Phytoplancton;Genre espèce;Zygnemataceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90211.0;;;;;filament;ok;23399.2;21.0;12.0;12.0;tub;1.0;1.0;1017.36;2373.84;10.0;10173.6;23738.4;207.0;12.0;12.0;tub;1.0;1.0;8025.84;23399.28;;
+Mougeotia sp. grande cell;Phytoplancton;Genre espèce;Zygnemataceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90220.0;;Mougeotia;R1003;;filament;ok;5464.8;14.0;7.0;7.0;tub;1.0;1.0;384.65;538.51;10.0;3846.5;5385.1;142.0;7.0;7.0;tub;1.0;1.0;3198.09;5462.03;;
+Mougeotia sp. grosse cellule;Phytoplancton;Genre espèce;Zygnemataceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90230.0;;Mougeotia;R1003;;filament;ok;200395.0;50.0;27.0;27.0;tub;1.0;1.0;5383.53;28613.25;7.0;37684.71;200292.75;350.0;27.0;27.0;tub;1.0;1.0;30817.53;200292.75;;
+Myrmecia sp.;Phytoplancton;Genre espèce;Trebouxiaceae;;;espèce;;;;;;;;32628.0;MYRSPX;;;;;;;;232.0;;;;;;;;;;;;;;;;;;;;;
+Myzozoa;Phytoplancton;Embranchement;Alveolata;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Navicula accomoda;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;Craticula accomoda;Diatomées;7791.0;NAVACO;71450.0;NAV.ACO;Navicula;R0335;NACO;cellule;ok;196.0;20.0;7.0;2.0;box;0.7;0.7;554.29;196.0;1.0;554.29;196.0;;;;;;;;;;
+Navicula capitata;Phytoplancton;Genre espèce;Naviculaceae;;;;EHRENBERG;1838;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;Hippodonta capitata;Diatomées;7839.0;NAVCAP;71483.0;NAV.CAP;Navicula capitata;R0287;NCAP;cellule;ok;252.0;20.0;6.0;3.0;box;0.7;0.7;565.71;252.0;1.0;565.71;252.0;;;;;;;;;;
+Navicula capitatoradiata;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7843.0;NAVCAO;71481.0;NAV.CAO;;;NCPR;cellule;ok;518.4;36.0;8.0;3.0;box;0.6;0.6;1400.0;518.4;1.0;1400.0;518.4;;;;;;;;;;
+Naviculaceae;Phytoplancton;Famille;Naviculales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Navicula clementis;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7858.0;NAVCLE;71482.0;;;;NCLE;cellule;ok;2079.0;40.0;13.5;5.5;box;0.7;0.7;2383.57;2079.0;1.0;2383.57;2079.0;;;;;;;;;;
+Navicula clementis f. minor;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;71494.0;;Navicula;R0335;NCLE;cellule;ok;538.7;19.0;9.0;4.5;box;0.7;0.7;848.57;538.65;1.0;848.57;538.65;;;;;;;;;;
+Navicula cryptotenella;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;;;;Diatomées;7881.0;NAVCRT;71487.0;;;;NCTE;cellule;ok;270.2;27.0;6.0;2.382716;box;0.7;0.7;687.51;270.2;1.0;687.51;270.2;;;;;;;;;Dimensions OMNIDIA. calcul du biovolume selon nos formules;
+Navicula cuspidata;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;NAVCUS;71485.0;NAV.CUS;;;NCUS;cellule;ok;22050.0;105.0;35.0;10.0;box;0.6;0.6;16916.67;22050.0;1.0;16916.67;22050.0;;;;;;;;;;
+Navicula decussis;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;NAVDEC;71492.0;NAV.DEC;;;NDEC;cellule;ok;420.0;20.0;6.0;5.0;box;0.7;0.7;714.29;420.0;1.0;714.29;420.0;;;;;;;;;;
+Navicula dicephala;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7896.0;NAVDIC;71460.0;NAV.DIC;;;NDIC;cellule;ok;600.0;30.0;10.0;4.0;box;0.5;0.5;1840.0;600.0;1.0;1840.0;600.0;;;;;;;;;;
+Navicula exigua;Phytoplancton;Genre espèce;Naviculaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7919.0;NAVEXI;71466.0;NAV.EXI;;;NEXG;cellule;ok;650.5;17.6;8.8;6.0;box;0.7;0.7;895.09;650.5;1.0;895.09;650.5;;;;;;;;;;
+Navicula gregaria;Phytoplancton;Genre espèce;Naviculaceae;;;;DONKIN;1861;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7948.0;NAVGRE;71486.0;NAV.GRE;;;NGRE;cellule;ok;202.5;27.0;7.5;2.0;rhp;0.6;0.6;172.5;202.5;1.0;172.5;202.5;;;;;;;;;;
+Navicula halophila;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7953.0;NAVHAL;71403.0;;;;NHAL;cellule;ok;2042.0;73.5;11.5;3.5;box;0.7;0.7;3265.0;2070.86;1.0;3265.0;2070.86;;;;;;;;;Moyennes bibliographie;
+Navicula lanceolata;Phytoplancton;Genre espèce;Naviculaceae;;;;EHRENBERG;1838;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;7995.0;NAVLAN;71484.0;NAV.LAN;Navicula lanceolata;R0309;NLAN;cellule;ok;4186.0;92.0;13.0;5.0;box;0.7;0.7;4917.14;4186.0;1.0;4917.14;4186.0;;;;;;;;;;
+Naviculales;Phytoplancton;Ordre;Bacillariophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Navicula menisculus;Phytoplancton;Genre espèce;Naviculaceae;;;;SCHUMANN;1867;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9426.0;NAVMCU;71495.0;NAV.MCU;Navicula menisculus;R0312;NMEN;cellule;ok;765.5;27.0;9.0;4.5;box;0.7;0.7;1157.14;765.45;1.0;1157.14;765.45;;;;;;;;;;
+Navicula minima;Phytoplancton;Genre espèce;Naviculaceae;;;;GRUNOW;1880;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;NAVMIN;71496.0;NAV.MIN;;;NMIN;cellule;ok;75.0;8.3;4.5;2.0;box;1.0;1.0;125.9;74.7;1.0;125.9;74.7;;;;;;;;;;
+Navicula placentula;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8067.0;NAVPLA;71480.0;NAV.PLA;Navicula placentula;R0319;NPLA;cellule;ok;2750.0;55.0;20.0;5.0;box;0.5;0.5;5900.0;2750.0;1.0;5900.0;2750.0;;;;;;;;;;
+Navicula pseudanglica;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;Placoneis elliptica;Diatomées;20038.0;NAVPSA;71467.0;;Navicula pseudanglica;R0320;NAPG;cellule;ok;821.7;21.5;9.1;6.0;box;0.7;0.7;1083.57;821.73;1.0;1083.57;821.73;;;;;;;;;;
+Navicula pupula;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;Sellaphora pupulla;Diatomées;;NAVPUP;71470.0;;Navicula pupula;R0322;NPUP;cellule;ok;540.0;40.0;9.0;3.0;box;0.5;0.5;2028.0;540.0;1.0;2028.0;540.0;;;;;;;;;;
+Navicula radiosa;Phytoplancton;Genre espèce;Naviculaceae;;;;KÜTZING;1844;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8106.0;NAVRAD;71440.0;NAV.RAD;Navicula radiosa;R0324;NRAD;cellule;ok;2940.0;70.0;15.0;4.0;box;0.7;0.7;3971.43;2940.0;1.0;3971.43;2940.0;;;;;;;;;;
+Navicula reinhardtii;Phytoplancton;Genre espèce;Naviculaceae;;;;(GRUNOW) GRUNOW;1880;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8115.0;NAVREN;71430.0;NAV.REN;Navicula reinhardtii;R0328;NREI;cellule;ok;1568.0;40.0;14.0;4.0;box;0.7;0.7;2217.14;1568.0;1.0;2217.14;1568.0;;;;;;;;;;
+Navicula rhynchocephala;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8119.0;NAVRHC;71404.0;;;;NRHY;cellule;ok;1582.0;57.5;11.5;4.0;box;0.6;0.6;3124.17;1587.0;1.0;3124.17;1587.0;;;;;;;;;Valeurs OMNIDIA;
+Navicula scutelloides;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;NAVSCT;71493.0;;;;NSCD;cellule;ok;436.8;16.0;13.0;3.0;box;0.7;0.7;842.86;436.8;1.0;842.86;436.8;;;;;;;;;;
+Navicula sp.;Phytoplancton;Genre espèce;Naviculaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;NAVSPX;71400.0;NAV.SPX;Navicula;R0335;NASP;cellule;ok;336.0;30.0;8.0;2.0;box;0.7;0.7;902.86;336.0;1.0;902.86;336.0;;;;;;;;;;
+Navicula spp.;Phytoplancton;Genre espèce;Naviculaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;71405.0;;;;NASP;cellule;ok;336.0;30.0;8.0;2.0;box;0.7;0.7;902.86;336.0;1.0;902.86;336.0;;;;;;;;;Valeurs OMNIDIA;
+Navicula subhamulata;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;NAVSUH;71435.0;NAV.SUH;;;NSBH;cellule;ok;279.0;19.0;7.0;3.0;box;0.7;0.7;602.86;279.3;1.0;602.86;279.3;;;;;;;;;;
+Navicula tripunctata;Phytoplancton;Genre espèce;Naviculaceae;;;;(O.F.MÜLLER) BORY DE SAINT VINCENT;1827;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8190.0;NAVTRP;71491.0;NAV.TRP;Navicula tripunctata;R0338;NTPT;cellule;ok;720.0;50.0;8.0;3.0;box;0.6;0.6;1913.33;720.0;1.0;1913.33;720.0;;;;;;;;;;
+Navicula tuscula;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8195.0;NAVTUS;71465.0;NAV.TUS;;;NTUS;cellule;ok;670.0;31.0;12.0;3.0;box;0.6;0.6;1670.0;669.6;1.0;1670.0;669.6;;;;;;;;;;
+Negibacteria;Phytoplancton;Sous-règne;Bacteria;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Neidiaceae;Phytoplancton;Famille;Naviculales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Neidium affine;Phytoplancton;Genre espèce;Neidiaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8224.0;NEIAFF;73035.0;NEI.AFF;;;NEAF;cellule;ok;3100.0;37.0;21.0;5.0;box;0.8;0.8;2667.5;3108.0;1.0;2667.5;3108.0;;;;;;;;;;
+Neidium binodeforme;Phytoplancton;Genre espèce;Neidiaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;NEIBIF;73036.0;;;;NBNF;cellule;ok;239.0;23.0;6.5;2.0;box;0.8;0.8;521.25;239.2;1.0;521.25;239.2;;;;;;;;;;
+Neidium dubium;Phytoplancton;Genre espèce;Neidiaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8237.0;NEIDUB;73020.0;NEI.DUB;Neidium;R0342;NEDU;cellule;ok;3920.0;35.0;14.0;10.0;box;0.8;0.8;2450.0;3920.0;1.0;2450.0;3920.0;;;;;;;;;;
+Neidium iridis;Phytoplancton;Genre espèce;Neidiaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8242.0;NEIIRI;73030.0;NEI.IRI;;;NIRI;cellule;ok;3030.3;37.0;13.0;9.0;box;0.7;0.7;2660.0;3030.3;1.0;2660.0;3030.3;;;;;;;;;;
+Neidium sp.;Phytoplancton;Genre espèce;Neidiaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;NEISPX;73000.0;NEI.SPX;;;NESP;cellule;ok;1904.0;40.0;17.0;4.0;box;0.7;0.7;2594.29;1904.0;1.0;2594.29;1904.0;;;;;;;;;;
+Nephrochlamys allanthoidea;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;;;;Chlorophycées;20198.0;NECALL;81702.0;;;;;colonie;ok;75.36;2.0;2.0;2.0;trel;1.0;1.0;46.6;4.19;4.0;186.4;16.75;9.0;2.0;2.0;trel;0.8;0.8;223.39;15.07;Moyennes bibliographie;
+Nephrochlamys danica;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;;;;Chlorophycées;10250.0;NECDAN;81703.0;;;;;colonie;ok;23.026667;5.5;2.0;2.0;ell;1.0;1.0;111.56;11.51;2.0;223.12;23.03;11.0;2.0;2.0;trel;0.8;0.8;271.68;18.42;Moyennes bibliographie;
+Nephrochlamys subsolitaria;Phytoplancton;Genre espèce;Oocystaceae;;;;(G.S.WEST) KORSHIKOV;1953;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;NECSUB;81311.0;;Nephrochlamys subsolitaria;R0688;;colonie;ok;52.4;8.0;2.5;2.5;trel;1.0;1.0;199.31;26.17;2.0;398.63;52.33;12.0;2.5;2.5;trel;0.8;0.8;369.84;31.4;;
+Nephrocytium agardhianum;Phytoplancton;Genre espèce;Oocystaceae;;;;NÄGELI;1849;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5747.0;NEPAGA;81315.0;;;;;colonie;ok;10048.0;20.0;5.0;5.0;trel;1.0;1.0;979.88;261.67;4.0;3919.52;1046.67;40.0;40.0;40.0;trel;0.3;1.0;15624.05;10048.0;;
+Nephrocytium agardhianum erreur;Phytoplancton;Genre espèce;Oocystaceae;;;;NÄGELI;1849;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;81310.0;NEP.AGA;Nephrocytium agardhianum;R0690;;colonie;erreur;33510.3;20.0;5.0;5.0;trel;1.0;1.0;979.88;261.67;4.0;3919.52;1046.67;40.0;40.0;40.0;trel;0.3;1.0;15624.05;10048.0;;
+Nephrocytium agardhianum (petite forme) erreur;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;81312.0;;;;;colonie;erreur;5000.0;20.0;5.0;5.0;trel;1.0;1.0;979.88;261.67;2.0;1959.76;523.33;14.0;20.0;20.0;trel;0.3;1.0;2754.49;879.2;;
+Nephrocytium limneticum;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5748.0;NEPLIM;81313.0;NEP.LIM;;;;colonie;ok;1795.0333;17.5;7.0;7.0;trel;1.0;1.0;1201.82;448.76;4.0;4807.28;1795.03;40.0;40.0;40.0;trel;0.3;1.0;15624.05;10048.0;Mesures moyennes selon Huber Pestalozzi;
+Nephrocytium sp.;Phytoplancton;Genre espèce;Oocystaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;NEPSPX;81314.0;;;;;colonie;ok;502.4;15.0;4.0;4.0;trel;1.0;1.0;589.69;125.6;4.0;2358.76;502.4;40.0;40.0;40.0;trel;0.3;1.0;15624.05;10048.0;Moyennes bibliographie;
+Nephrodiella;Phytoplancton;Genre espèce;Pleurochloridaceae;;;espèce;;;;;;;Xantophycées;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Nephrodiella lunaris;Phytoplancton;Genre espèce;Pleurochloridaceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Nitzschia acicularis;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8809.0;NIZACI;71910.0;NIZ.ACI;Nitzschia acicularis;R0343;NACI;cellule;ok;283.5;45.0;3.0;3.0;box;0.7;0.7;797.14;283.5;1.0;797.14;283.5;;;;;;;;;;
+Nitzschia angustatula;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8830.0;NIZANT;71955.0;NIZ.ANT;Nitzschia angustatula;R0348;NZAG;cellule;ok;152.0;19.0;4.0;2.5;box;0.8;0.8;333.75;152.0;1.0;333.75;152.0;;;;;;;;;;
+Nitzschia archibaldii;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8833.0;NIZARC;71956.0;;;;NIAR;cellule;ok;165.0;27.5;3.0;2.5;box;0.8;0.8;396.875;165.0;1.0;396.875;165.0;;;;;;;;;;
+Nitzschia cf. linearis;Phytoplancton;Genre espèce;Bacillariaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;71961.0;;Nitzschia linearis;R0380;NLIN;cellule;ok;7634.2;145.0;13.0;4.5;box;0.9;0.9;5768.89;7634.25;1.0;5768.89;7634.25;;;;;;;;;;
+Nitzschia cf. tryblionella;Phytoplancton;Genre espèce;Bacillariaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;71990.0;NIZ.TRY;;;NTRY;cellule;ok;15136.0;86.0;22.0;10.0;box;0.8;0.8;7430.0;15136.0;1.0;7430.0;15136.0;;;;;;;;;;
+Nitzschia constricta;Phytoplancton;Genre espèce;Bacillariaceae;;;;(KÜTZING) RALFS;1861;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8862.0;NIZCOS;71965.0;NIZ.COS;;;NCOT;cellule;ok;882.0;42.0;7.5;3.5;box;0.8;0.8;1220.63;882.0;1.0;1220.63;882.0;;;;;;;;;;
+Nitzschia debilis;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;NIZDEB;71966.0;;;;NDEB;cellule;ok;376.0;19.5;8.5;2.8;box;0.8;0.8;610.38;371.28;1.0;610.38;371.28;;;;;;;;;Valeurs OMNIDIA;
+Nitzschia dissipata;Phytoplancton;Genre espèce;Bacillariaceae;;;;(KÜTZING) RABENHORST;1860;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9367.0;NIZDPT;71970.0;NIZ.DPT;Nitzschia dissipata;R0360;NDIS;cellule;ok;930.0;62.0;5.0;4.0;box;0.75;0.75;1541.33;930.0;1.0;1541.33;930.0;;;;;;;;;;
+Nitzschia flexa;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8889.0;NIZFLE;71901.0;NIZ.FLE;;;NFLE;cellule;ok;2200.0;110.0;5.0;5.0;box;0.8;0.8;2812.5;2200.0;1.0;2812.5;2200.0;;;;;;;;;;
+Nitzschia fonticola;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8891.0;NIZFON;71903.0;NIZ.FON;;;NFON;cellule;ok;344.0;37.5;4.0;2.3;box;0.8;0.8;613.63;276.0;1.0;613.63;276.0;;;;;;;;;Omnidia;
+Nitzschia fruticosa;Phytoplancton;Genre espèce;Bacillariaceae;;;;HUSTEDT;1957;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8906.0;NIZFRU;71980.0;NIZ.FRU;Nitzschia fruticosa;R0368;NIFT;cellule;ok;219.4;45.0;2.6;2.5;box;0.75;0.75;629.33;219.38;1.0;629.33;219.38;;;;;;;;;;
+Nitzschia gracilis;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8914.0;NIZGRA;71981.0;;;;NIGR;cellule;ok;477.75;65.0;3.5;2.8;box;0.75;0.75;1118.13;477.75;1.0;1118.13;477.75;;;;;;;;;Moyennes bibliographie;
+Nitzschia graciloides;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8915.0;NIZGRL;71913.0;NIZ.GRL;;;NZGR;cellule;ok;68.85;51.0;2.7;1.0;rhp;0.7;0.7;161.1;68.85;1.0;161.1;68.85;;;;;;;;;valeurs prises sur photo 11. tafel 66 susswasserflora;
+Nitzschia hantzschiana;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;;;;Diatomées;8919.0;NIZHAN;71916.0;;;;NHAN;cellule;ok;211.0;29.0;4.0;2.5;box;0.7;0.7;567.14;203.0;1.0;567.14;203.0;;;;;;;;;Omnidia;
+Nitzschia inconspicua;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;;;;Diatomées;8934.0;NIZINC;71917.0;;;;NINC;cellule;ok;89.0;12.5;3.5;2.5;box;0.8;0.8;209.38;87.5;1.0;209.38;87.5;;;;;;;;;Omnidia;
+Nitzschia lacuum;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8944.0;NIZLAC;71912.0;NIZ.LAC;;;NILA;cellule;ok;18.75;15.0;2.5;1.0;rhp;0.7;0.7;52.5;18.75;1.0;52.5;18.75;;;;;;;;;valeurs moyennes susswasserflora;
+Nitzschia lanceolata;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;16869.0;NIZLAL;71914.0;;;;NZLA;cellule;ok;1982.5;42.5;9.5;6.0;box;0.7;0.7;2045.0;1695.75;1.0;2045.0;1695.75;;;;;;;;;Valeurs OMNIDIA;
+Nitzschia levidensis;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;NIZLEV;71915.0;;;;NLEV;cellule;ok;1479.0;41.5;9.5;5.0;box;0.7;0.7;1855.0;1379.88;1.0;1855.0;1379.88;;;;;;;;;Moyennes bibliographie;
+Nitzschia linearis;Phytoplancton;Genre espèce;Bacillariaceae;;;;W.SMITH;1853;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;20199.0;NIZLIN;71960.0;;Nitzschia linearis;R0380;NLIN;cellule;ok;1575.0;105.0;5.0;4.0;box;0.75;0.75;2573.33;1575.0;1.0;2573.33;1575.0;;;;;;;;;;
+Nitzschia palea;Phytoplancton;Genre espèce;Bacillariaceae;;;;(KÜTZING) W.SMITH;1856;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8987.0;NIZPAL;71920.0;NIZ.PAL;Nitzschia palea;R0382;NPAL;cellule;ok;378.0;42.0;4.0;3.0;box;0.75;0.75;816.0;378.0;1.0;816.0;378.0;;;;;;;;;;
+Nitzschia paleacea;Phytoplancton;Genre espèce;Bacillariaceae;;;;(GRUNOW) GRUNOW;1881;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8992.0;NIZPAA;71940.0;NIZ.PAA;Nitzschia paleacea;R0383;NPAE;cellule;ok;242.8;37.0;3.5;2.5;box;0.75;0.75;615.33;242.81;1.0;615.33;242.81;;;;;;;;;;
+Nitzschia recta;Phytoplancton;Genre espèce;Bacillariaceae;;;;HANTZSCH;1862;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9016.0;NIZREC;71941.0;NIZ.REC;;;NREC;cellule;ok;630.0;56.0;5.0;3.0;box;0.75;0.75;1234.67;630.0;1.0;1234.67;630.0;;;;;;;;;;
+Nitzschia romana;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9021.0;NIZROM;71950.0;NIZ.ROM;;;NROM;cellule;ok;135.0;18.0;4.0;2.5;box;0.75;0.75;338.67;135.0;1.0;338.67;135.0;;;;;;;;;;
+Nitzschia sigma;Phytoplancton;Genre espèce;Bacillariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9028.0;NIZSIG;71951.0;;;;NSIG;cellule;ok;2250.0;100.0;9.0;4.0;box;0.6;0.6;4453.33;2160.0;1.0;4453.33;2160.0;;;;;;;;;Valeurs OMNIDIA;
+Nitzschia sigmoidea;Phytoplancton;Genre espèce;Bacillariaceae;;;;(NITZSCH) W.SMITH;1853;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9029.0;NIZSID;71930.0;NIZ.SID;Nitzschia sigmoidea;R0392;NSIO;cellule;ok;15840.0;320.0;11.0;6.0;box;0.75;0.75;14682.67;15840.0;1.0;14682.67;15840.0;;;;;;;;;;
+Nitzschia sp.;Phytoplancton;Genre espèce;Bacillariaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;NIZSPX;71900.0;NIZ.SPX;Nitzschia;R0394;NZSS;cellule;ok;784.0;49.0;5.0;4.0;box;0.8;0.8;1152.5;784.0;1.0;1152.5;784.0;;;;;;;;;;
+Nitzschia spp.;Phytoplancton;Genre espèce;Bacillariaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;71902.0;;;;NZSS;cellule;ok;784.0;50.0;5.0;2.0;box;0.7;0.7;1028.57;350.0;1.0;1028.57;350.0;;;;;;;;;Valeurs OMNIDIA;
+Nitzschia vermicularis;Phytoplancton;Genre espèce;Bacillariaceae;;;;(KÜTZING) HANTZSCH;1859;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9072.0;NIZVER;71911.0;NIZ.VER;;;NVER;cellule;ok;2500.0;160.0;6.0;4.0;box;0.7;0.7;4640.0;2688.0;1.0;4640.0;2688.0;;;;;;;;;;
+Nostocaceae;Phytoplancton;Famille;Nostocales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Nostocales;Phytoplancton;Ordre;Cyanobacteries;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Ochromonas cf. variabilis;Phytoplancton;Genre espèce;Chromulinaceae;;;espèce;H. Meyer;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;52002.0;OCH.VAR;;;;cellule;ok;166.8875;7.5;6.5;6.5;trel;1.0;1.0;486.97;165.83;1.0;486.97;165.83;;;;;;;;;Moyenne bibliographie;
+Ochromonas nannos;Phytoplancton;Genre espèce;Chromulinaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;20200.0;OCHNAN;52155.0;;;;;cellule;ok;120.0;7.0;4.5;4.5;ell;1.0;1.0;315.53;74.18;1.0;315.53;74.18;;;;;;;;;;
+Ochromonas ovalis;Phytoplancton;Genre espèce;Chromulinaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;52157.0;;;;;cellule;ok;51.286667;8.0;3.5;3.5;ell;1.0;1.0;279.04;51.29;1.0;279.04;51.29;;;;;;;;;;
+Ochromonas pyriformis;Phytoplancton;Genre espèce;Chromulinaceae;;;;Matvienko;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;52156.0;;;;;cellule;ok;269.232;14.2;6.0;6.0;trel;1.0;1.0;837.98;267.53;1.0;837.98;267.53;;;;;;;;;moyennes bibliographie;
+Ochromonas sp.;Phytoplancton;Genre espèce;Chromulinaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;OCHSPX;52000.0;OCH.SPX;Ochromonas sp;R1120;;cellule;ok;65.4;5.0;5.0;5.0;ell;1.0;1.0;255.15;65.42;1.0;255.15;65.42;;;;;;;;;;
+Ochromonas sp. 10 µm;Phytoplancton;Genre espèce;Chromulinaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;52001.0;OCH.SP1;;;;cellule;ok;523.3333;10.0;10.0;10.0;ell;1.0;1.0;990.07;523.33;1.0;990.07;523.33;;;;;;;;;;
+ochromonas tenera;Phytoplancton;Genre espèce;Chromulinaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Ochromonas verrucosa;Phytoplancton;Genre espèce;Chromulinaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6160.0;OCHVER;52150.0;OCH.VER;;;;cellule;ok;5480.0;29.0;19.0;19.0;ell;1.0;1.0;5386.7;5478.78;1.0;5386.7;5478.78;;;;;;;;;;
+Ochrophyta;Phytoplancton;Embranchement;Heterokonta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Oedogoniaceae;Phytoplancton;Famille;Oedogoniales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Oedogoniales;Phytoplancton;Ordre;Chlorophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Oedogonium grosse cellule Bourget03;Phytoplancton;Genre espèce;Oedogoniaceae;;;espèce;;;;Huxley, R. & Pentecost, A. (2002). Order Oedogoniales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 409-432. Cambridge: Cambridge University Press.;;;Chlorophycées;;;83523.0;;;;;filament;ok;2827.4;12.0;6.0;6.0;tub;1.0;1.0;282.6;339.12;8.0;2260.8;2712.96;100.0;6.0;6.0;tub;1.0;1.0;1940.52;2826.0;;
+Oedogonium sp.;Phytoplancton;Genre espèce;Oedogoniaceae;;;espèce;;;;Huxley, R. & Pentecost, A. (2002). Order Oedogoniales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 409-432. Cambridge: Cambridge University Press.;Ulothrix long cel appelé Tribonema avant;;Chlorophycées;;OEDSPX;83521.0;OED.SPX;Ulothrix;R0913;;filament;ok;1590.4;9.0;4.5;4.5;tub;1.0;1.0;158.96;143.07;11.0;1748.59;1573.73;100.0;4.5;4.5;tub;1.0;1.0;1444.79;1589.63;;
+Oestrupia bicontracta;Phytoplancton;Genre espèce;Pinnulariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8260.0;OESBIC;76010.0;OES.BIC;;;OBIC;cellule;ok;704.0;22.0;8.0;5.0;box;0.8;0.8;815.0;704.0;1.0;815.0;704.0;;;;;;;;;;
+Oocystaceae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Oocystis borgei;Phytoplancton;Genre espèce;Oocystaceae;;;;Snow;1903;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5753.0;OOCBOR;83527.0;OOC.BOR;;;;colonie;ok;5660.3735;16.0;13.0;13.0;trel;1.0;1.0;2042.64;1415.09;4.0;8170.55;5660.37;40.0;30.0;30.0;trel;0.4;1.0;11718.03;7536.0;Moyennes bibliographie;
+Oocystis cf. bispora;Phytoplancton;Genre espèce;Oocystaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;81250.0;;;;;colonie;ok;86.0;6.7;3.5;3.5;trel;1.0;1.0;235.35;42.95;2.0;470.7;85.91;12.0;4.0;4.0;trel;0.8;1.0;473.39;80.38;;
+Oocystis lacustris;Phytoplancton;Genre espèce;Oocystaceae;;;;CHODAT;1897;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5757.0;OOCLAC;81210.0;OOC.LAC;Oocystis lacustris;R0697;;colonie;ok;284.6;8.5;4.0;4.0;trel;1.0;1.0;338.15;71.17;4.0;1352.61;284.69;30.0;8.0;8.0;trel;0.7;1.0;2345.94;703.36;;
+Oocystis marsonii;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;81211.0;;;;;colonie;ok;678.24;16.0;9.0;9.0;trel;1.0;1.0;1414.13;678.24;4.0;5656.53;2712.96;32.0;20.0;20.0;trel;0.7;1.0;6254.19;4689.07;Moyennes bibliographie;
+Oocystis naegelii;Phytoplancton;Genre espèce;Oocystaceae;;;;A. Br.;1855;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20656.0;OOCNAE;81212.0;OOC.NAE;;;;colonie;ok;8469.627;28.0;17.0;17.0;trel;1.0;1.0;4654.24;4234.81;2.0;9308.49;8469.63;50.0;30.0;30.0;trel;0.7;1.0;14640.05;16485.0;Moyennes bibliographie;
+Oocystis parva;Phytoplancton;Genre espèce;Oocystaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5758.0;OOCPAR;81240.0;OOC.PAR;;;;colonie;ok;527.8;7.0;3.0;3.0;trel;1.0;1.0;210.36;32.97;4.0;841.43;131.88;12.0;7.0;7.0;trel;0.7;1.0;828.43;215.4;;
+Oocystis polymorpha;Phytoplancton;Genre espèce;Oocystaceae;;;;Groover & Bold;1968;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;81213.0;OOC.POL;;;;cellule;ok;2051.4666;20.0;14.0;14.0;trel;1.0;1.0;2743.66;2051.47;1.0;2743.66;2051.47;;;;;;;;;Moyennes bibliographie;
+Oocystis rhomboidea;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5755.0;OOCRHO;81230.0;OOC.RHO;;;;cellule;ok;122.5;6.5;3.0;3.0;trel;1.0;1.0;195.98;30.62;4.0;783.94;122.46;12.0;6.0;6.0;trel;0.7;1.0;710.09;158.26;;
+Oocystis solitaria;Phytoplancton;Genre espèce;Oocystaceae;;;;WITTROCK in WITTROCK & NORDSTEDT;1879;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5759.0;OOCSOL;81220.0;OOC.SOL;Oocystis solitaria;R0704;;cellule;ok;1047.2;20.0;10.0;10.0;trel;1.0;1.0;1959.76;1046.67;1.0;1959.76;1046.67;;;;;;;;;;
+Oocystis sp.;Phytoplancton;Genre espèce;Oocystaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;OOCSPX;81200.0;OOC.SPX;Oocystis;R0705;;cellule;ok;131.9;9.0;7.0;4.0;trel;1.0;1.0;502.39;131.88;1.0;502.39;131.88;;;;;;;;;;
+Opalozoa;Phytoplancton;Embranchement;Heterokonta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Ophiocytiaceae;Phytoplancton;Famille;Mischococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Ophiocytium lagerheimii;Phytoplancton;Genre espèce;Ophiocytiaceae;;;;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;6243.0;OPHLAG;64100.0;OPH.LAG;;;;cellule;ok;519.2;40.0;4.0;4.0;ell;1.0;1.0;1562.4;334.93;1.0;1562.4;334.93;;;;;;;;;;
+Oscillatoria bourrellyi;Phytoplancton;Genre espèce;Oscillatoriaceae;;;;Lund;1955;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;Tychonema bourellyi;Cyanobactéries;;OSCBOU;10920.0;;Oscillatoria;R1597;;filament;ok;2827.4;5.0;6.0;6.0;tub;1.0;1.0;150.72;141.3;20.0;3014.4;2826.0;100.0;5.0;5.0;tub;1.0;1.0;1609.25;1962.5;;
+Oscillatoriaceae;Phytoplancton;Famille;Oscillatoriales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Oscillatoria cf. janus;Phytoplancton;Genre espèce;Oscillatoriaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;;10825.0;;Oscillatoria;R1597;;filament;ok;346.4;6.0;2.1;2.1;tub;1.0;1.0;46.49;20.77;16.7;776.34;346.88;100.0;2.1;2.1;tub;1.0;1.0;666.32;346.19;;
+Oscillatoria cf. limnetica;Phytoplancton;Genre espèce;Oscillatoriaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;;10942.0;;;;;filament;ok;314.1;2.0;2.0;2.0;tub;1.0;1.0;18.84;6.28;50.0;942.0;314.0;100.0;2.0;2.0;tub;100.0;1.0;634.28;31400.0;;
+Oscillatoria cf. major;Phytoplancton;Genre espèce;Oscillatoriaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;;10970.0;;;;;filament;ok;2827.4;4.0;6.0;6.0;tub;1.0;1.0;131.88;113.04;25.0;3297.0;2826.0;100.0;6.0;6.0;tub;1.0;1.0;1940.52;2826.0;;
+Oscillatoria cf. tenuis;Phytoplancton;Genre espèce;Oscillatoriaceae;;;;;;;;;;Cyanobactéries;;;10971.0;;;;;filament;ok;5671.625;5.0;8.5;8.5;tub;1.0;1.0;246.88;283.58;20.0;4937.65;5671.63;100.0;8.5;8.5;tub;1.0;1.0;2782.43;5671.63;Moyennes bibliographie;
+Oscillatoriales;Phytoplancton;Ordre;Cyanobacteries;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Oscillatoria limosa;Phytoplancton;Genre espèce;Oscillatoriaceae;;;;C.AGARDH ex GOMONT;1892;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;6408.0;OSCLIM;10950.0;OSC.LIM;Oscillatoria limosa;R1592;;colonie;ok;22698.0;3.5;17.0;17.0;tub;1.0;1.0;640.56;794.03;28.6;18320.02;22709.19;100.0;17.0;17.0;tub;1.0;1.0;5791.73;22686.5;;
+Oscillatoria sp.;Phytoplancton;Genre espèce;Oscillatoriaceae;;;espèce;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;OSCSPX;10900.0;OSC.SPX;Oscillatoria;R1597;;filament;ok;2827.4;3.0;6.0;6.0;tub;1.0;1.0;113.04;84.78;33.33;3767.62;2825.72;100.0;6.0;6.0;tub;1.0;1.0;1940.52;2826.0;;
+Palmeacea sp.;Phytoplancton;Genre espèce;Palmellaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;89600.0;;;;;cellule;ok;523.6;10.0;10.0;10.0;ell;1.0;1.0;990.07;523.33;1.0;990.07;523.33;;;;;;;;;;
+Palmellaceae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Palmellaceae sp.;Phytoplancton;Genre espèce;Palmellaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;(Korschpalmella microscopica??);;Chlorophycées;;;89601.0;;;;;colonie;ok;1767.0;15.0;15.0;15.0;ell;1.0;1.0;2211.34;1766.25;1.0;2211.34;1766.25;;;;;;;;;;
+Palmella sp.;Phytoplancton;Genre espèce;Palmellaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;89602.0;;;;;cellule;ok;65.416664;5.0;5.0;5.0;ell;1.0;1.0;255.15;65.42;10.0;2551.48;654.17;25.0;25.0;25.0;ell;0.4;1.0;6114.8;3270.83;Aiguebelette 15-10-2012;
+Palmellopsidaceae;Phytoplancton;Famille;Tetrasporales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pandorina morum;Phytoplancton;Genre espèce;Volvocaceae;;;;(O.F.MÜLLER) BORY DE SAINT VINCENT;1824;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;6046.0;PADMOR;80610.0;PAD.MOR;Pandorina morum;R0971;;colonie;ok;28274.3;15.0;15.0;15.0;ell;1.0;1.0;2211.34;1766.25;16.0;35381.46;28260.0;70.0;70.0;70.0;sphe;0.7;1.0;15386.0;125652.33;;
+Pandorina morum var. major;Phytoplancton;Genre espèce;Volvocaceae;;;;Jyengar;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 5;;;Chlorophycées;;;80611.0;PAD.MOJ;;;;colonie;ok;17662.5;15.0;15.0;15.0;con;1.0;1.0;2211.34;883.13;20.0;44226.83;17662.5;80.0;80.0;80.0;sphe;0.7;1.0;20096.0;187562.67;Moyenne sur échantillons lac Babeni Roumanie - 2009;
+Pandorina sp.;Phytoplancton;Genre espèce;Volvocaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 5;;;Chlorophycées;;PADSPX;80612.0;PAD.SPX;;;;colonie;ok;678.24;6.0;6.0;6.0;trel;1.0;1.0;363.29;113.04;6.0;2179.73;678.24;18.0;18.0;18.0;sphe;0.7;1.0;1017.36;2136.46;Mesure Léman SHL2 n 14;
+Pannus spumosus;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6332.0;PANSPU;11510.0;PAN.SPU;Chroococcales;R1514;;colonie;ok;5400.0;1.0;1.0;1.0;ell;1.0;1.0;15.03;0.52;6500.0;97721.41;3401.67;100.0;100.0;100.0;box;0.05;1.0;60000.0;50000.0;;
+Papenfussiomonas cordata;Phytoplancton;Genre espèce;Dunaliellaceae;;;;;;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;6032.0;PAPCOR;85510.0;PAP.COR;Volvocales;R0989;;cellule;ok;1131.0;15.0;12.0;12.0;ell;1.0;1.0;1769.07;1130.4;1.0;1769.07;1130.4;;;;;;;;;;
+Paradoxia multiseta;Phytoplancton;Genre espèce;Characiaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5764.0;PAAMUL;82110.0;PAA.MUL;Chlorophyceae;R0905;;cellule;ok;665.2;60.0;5.5;5.5;ell;0.7;0.7;4599.77;664.9;1.0;4599.77;664.9;;;;;;;;;;
+Paradoxia pelletieri;Phytoplancton;Genre espèce;Characiaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5765.0;PAAPEL;82120.0;PAA.PEL;;;;cellule;ok;104.7;25.0;4.0;4.0;ell;1.0;1.0;978.37;209.33;1.0;978.37;209.33;;;;;;;;;;
+Paulschulzia pseudovolvox;Phytoplancton;Genre espèce;Tetrasporaceae;;;;;;;;;;Chlorophycées;5974.0;PAUPSE;84110.0;;Paulschulzia pseudovolvox;R0906;;colonie;ok;2873.5;7.0;7.0;7.0;ell;1.0;1.0;490.83;179.5;1.0;490.83;179.5;140.0;140.0;140.0;sphe;0.2;1.0;61544.0;287205.34;;
+Pediastrum biradiatum;Phytoplancton;Genre espèce;Hydrodictyaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5768.0;PEDBIR;82712.0;;;;;colonie;ok;8741.76;14.5;18.0;4.0;ell;0.4;0.4;4390.66;218.54;16.0;70250.51;3496.7;72.0;72.0;4.0;tub;0.3;1.0;16302.88;87899.9;Moyennes bibliographie;
+Pediastrum boryanum;Phytoplancton;Genre espèce;Hydrodictyaceae;;;;(TURPIN) MENEGHINI;1840;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5769.0;PEDBOR;82710.0;PED.BOR;Pediastrum boryanum;R0713;;colonie;ok;6430.72;8.0;6.0;4.0;ell;0.4;0.4;1008.5;40.19;64.0;64544.19;2572.29;150.0;150.0;4.0;tub;0.3;1.0;70675.12;794812.5;;
+Pediastrum boryanum var. longicorne;Phytoplancton;Genre espèce;Hydrodictyaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5771.0;PEDLON;82711.0;PED.LON;Pediastrum boryanum v. longicorne;R0715;;colonie;ok;6430.72;8.0;6.0;4.0;ell;0.4;0.4;1008.5;40.19;64.0;64544.19;2572.29;200.0;200.0;4.0;tub;0.3;1.0;125625.12;1884000.0;;
+Pediastrum duplex;Phytoplancton;Genre espèce;Hydrodictyaceae;;;;MEYEN;1829;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5772.0;PEDDUP;82720.0;PED.DUP;Pediastrum duplex;R0716;;colonie;ok;23550.0;100.0;100.0;15.0;ell;0.4;0.4;162794.73;31400.0;64.0;1.04E7;2009600.0;100.0;100.0;15.0;tub;0.3;1.0;31753.25;235500.0;;
+Pediastrum duplex var. gracillimum;Phytoplancton;Genre espèce;Hydrodictyaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5773.0;PEDGRA;82721.0;;;;;colonie;ok;21779.04;17.0;17.0;4.0;ell;0.4;0.4;4876.32;241.99;36.0;175547.56;8711.62;102.0;102.0;4.0;tub;0.3;1.0;32693.68;249914.48;Moyennes bibliographie;
+Pediastrum simplex;Phytoplancton;Genre espèce;Hydrodictyaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5777.0;PEDSIM;82740.0;;Pediastrum simplex;R0722;;colonie;ok;23550.0;15.0;10.0;4.0;ell;0.4;0.4;2721.04;125.6;64.0;174146.6;8038.4;100.0;100.0;4.0;tub;0.3;1.0;31425.12;235500.0;;
+Pediastrum simplex var. sturmii;Phytoplancton;Genre espèce;Hydrodictyaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;PEDSTU;82741.0;;;;;colonie;ok;16177.28;23.0;21.0;4.0;ell;0.4;0.4;7997.27;404.43;16.0;127956.37;6470.91;92.0;92.0;4.0;tub;0.3;1.0;26602.08;183381.02;Moyennes bibliographie;
+Pediastrum tetras;Phytoplancton;Genre espèce;Hydrodictyaceae;;;;(EHRENBERG) RALFS;1844;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5780.0;PEDTET;82730.0;PED.TET;Pediastrum tetras;R0725;;colonie;ok;732.6667;20.0;20.0;5.0;ell;0.4;0.4;6777.45;418.67;8.0;54219.63;3349.33;20.0;20.0;5.0;tub;0.3;1.0;1295.25;1884.0;;
+Pedinellaceae;Phytoplancton;Famille;Pedinellales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pedinellales;Phytoplancton;Ordre;Dictyochophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Peniaceae;Phytoplancton;Famille;Zygnematales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Penium spinospermum;Phytoplancton;Genre espèce;Peniaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;PENSPI;94201.0;;;;;cellule;ok;1492.0;19.0;10.0;10.0;ell;1.0;1.0;1862.59;994.33;1.0;1862.59;994.33;;;;;;;;;;
+Peridiniaceae;Phytoplancton;Famille;Peridiniales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Peridiniales;Phytoplancton;Ordre;Dinophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Peridiniopsis cunningtonii;Phytoplancton;Genre espèce;Peridiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6572.0;PEPCUN;20520.0;PEP.CUN;Peridiniopsis;R1683;;cellule;ok;8835.7;30.0;25.0;25.0;ell;0.9;0.9;8145.63;8831.25;1.0;8145.63;8831.25;;;;;;;;;;
+Peridiniopsis cunningtonii tab. contactum;Phytoplancton;Genre espèce;Peridiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20510.0;;;;;cellule;ok;8835.7;30.0;25.0;25.0;ell;0.9;0.9;8145.63;8831.25;1.0;8145.63;8831.25;;;;;;;;;;
+Peridiniopsis elpatiewski;Phytoplancton;Genre espèce;Peridiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20560.0;;Peridiniopsis elpatiewskyi;R1679;;cellule;ok;13338.4;37.0;30.0;27.0;ell;0.85;0.9;11453.46;13331.66;1.0;11453.46;13331.66;;;;;;;;;;
+Peridiniopsis penardiforme;Phytoplancton;Genre espèce;Peridiniaceae;;;;(LINDEMANN) BOURRELLY;1968;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6574.0;PEPPEN;20530.0;PEP.PEN;;;;cellule;ok;12180.0;30.0;29.0;20.0;ell;0.7;0.7;10367.21;6374.2;1.0;10367.21;6374.2;;;;;;;;;;
+Peridiniopsis polonicum;Phytoplancton;Genre espèce;Peridiniaceae;;;;(Woloszynska) Bourrelly;2007;;;;;;6575.0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Peridiniopsis quadridens;Phytoplancton;Genre espèce;Peridiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;20209.0;PEPQUA;20550.0;;;;;cellule;ok;7623.6;35.0;26.0;20.0;ell;0.8;0.8;9880.18;7619.73;1.0;9880.18;7619.73;;;;;;;;;;
+Peridiniopsis umbonatum;Phytoplancton;Genre espèce;Peridiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20565.0;;;;;cellule;ok;5280.0;22.0;20.0;15.0;ell;0.8;0.8;4741.07;2763.2;1.0;4741.07;2763.2;;;;;;;;;;
+Peridinium aciculiferum;Phytoplancton;Genre espèce;Peridiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6578.0;PERACI;20260.0;PER.ACI;Peridinium aciculiferum;R1684;;cellule;ok;31415.9;50.0;40.0;30.0;ell;1.0;1.0;17184.54;31400.0;1.0;17184.54;31400.0;;;;;;;;;;
+Peridinium cinctum;Phytoplancton;Genre espèce;Peridiniaceae;;;;(O.F.MÜLLER) EHRENBERG;1838;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6581.0;PERCIN;20210.0;PER.CIN;Peridinium cinctum;R1687;;cellule;ok;32986.7;45.0;40.0;35.0;ell;1.0;1.0;16495.62;32970.0;1.0;16495.62;32970.0;;;;;;;;;;
+Peridinium goslaviense;Phytoplancton;Genre espèce;Peridiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6579.0;PERGOS;20280.0;PER.GOS;Peridinium goslaviense;R1690;;cellule;ok;3204.4;25.0;17.0;16.0;ell;0.9;0.9;4485.42;3202.8;1.0;4485.42;3202.8;;;;;;;;;;
+Peridinium inconspicuum;Phytoplancton;Genre espèce;Peridiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;PERINC;20220.0;PER.INC;Peridinium inconspicuum;R1691;;cellule;ok;3769.9;25.0;20.0;16.0;ell;0.9;0.9;4909.94;3768.0;1.0;4909.94;3768.0;;;;;;;;;;
+Peridinium inconspicuum var. contactum;Phytoplancton;Genre espèce;Peridiniaceae;;;;;;;Starmach - Tom 4;;;Dinophycées;;;20222.0;PER.ICC;;;;cellule;ok;3769.9;25.0;20.0;16.0;ell;0.9;0.9;4909.94;3768.0;1.0;4909.94;3768.0;;;;;;;;;;
+Peridinium inconspicuum var. remotum;Phytoplancton;Genre espèce;Peridiniaceae;;;;(Lindem.) Lef.;1932;;Starmach - Tom 4;;;Dinophycées;;;20221.0;PER.INT;;;;cellule;ok;169.56;18.0;5.0;4.0;trel;0.9;0.9;885.99;169.56;1.0;885.99;169.56;;;;;;;;;moyenne lac du Bréven - 2005 - F. Rimet;
+Peridinium sp.;Phytoplancton;Genre espèce;Peridiniaceae;;;espèce;;;;Starmach - Tom 4;;;Dinophycées;;PERSPX;20271.0;;;;;cellule;ok;9188.032;27.0;25.5;22.0;ell;1.0;1.0;6281.37;7926.93;1.0;6281.37;7926.93;;;;;;;;;Moyennes bibliographie;
+Peridinium sp. (petit);Phytoplancton;Genre espèce;Peridiniaceae;;;espèce;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;;;20270.0;;Peridinium;R1699;;cellule;ok;377.0;12.0;10.0;6.0;ell;1.0;1.0;964.49;376.8;1.0;964.49;376.8;;;;;;;;;;
+Peridinium umbonatum;Phytoplancton;Genre espèce;Peridiniaceae;;;;F. Stein;1883;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;Peridinium inconspicuum f. spiniferum;;Dinophycées;6587.0;PERUMB;20230.0;PER.UMB;Peridinium;R1699;;cellule;ok;10362.0;30.0;22.0;20.0;ell;1.0;1.0;6162.28;6908.0;1.0;6162.28;6908.0;;;;;;;;;Moyennes bibliographie;
+Peridinium umbonatum var. conjectum f. spiniferum;Phytoplancton;Genre espèce;Peridiniaceae;;;;(Lindem.) Lef.;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;Peridinium ambiguum, Peridinium linzium;;Dinophycées;;;20232.0;PER.UCS;;;;cellule;ok;10362.0;30.0;22.0;20.0;ell;1.0;1.0;6162.28;6908.0;1.0;6162.28;6908.0;;;;;;;;;Moyennes bibliographie;
+Peridinium volzii;Phytoplancton;Genre espèce;Peridiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6588.0;PERVOL;20231.0;;;;;cellule;ok;47688.75;45.0;45.0;45.0;ell;1.0;1.0;19768.4;47688.75;1.0;19768.4;47688.75;;;;;;;;;Moyennes bibliographie;
+Peridinium willei;Phytoplancton;Genre espèce;Peridiniaceae;;;;HUITFELDT-KAAS;1900;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6589.0;PERWIL;20240.0;PER.WIL;Peridinium willei;R1704;;cellule;ok;32986.7;45.0;40.0;35.0;ell;1.0;1.0;16495.62;32970.0;1.0;16495.62;32970.0;;;;;;;;;;
+Phacotaceae;Phytoplancton;Famille;Volvocales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Phacotus lendneri;Phytoplancton;Genre espèce;Phacotaceae;;;;CHODAT;1902;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;Phacotus lenticularis;;Chlorophycées;19395.0;PHTLED;80310.0;;Phacotus lenticularis;R0975;;cellule;ok;412.3;15.0;15.0;7.0;ell;0.5;0.5;3371.28;412.13;1.0;3371.28;412.13;;;;;;;;;;
+Phacotus lenticularis;Phytoplancton;Genre espèce;Phacotaceae;;;;(Ehrenberg) Stein;1878;;Susswaserflora van Mitteleuropa 9;;;Chlorophycées;6048.0;PHTLEN;80311.0;;;;;cellule;ok;1058.7034;17.0;17.0;7.0;trel;1.0;1.0;2105.56;1058.7;1.0;2105.56;1058.7;;;;;;;;;Moyennes bibliographie;
+Phacus acuminatum;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;Rosowski, J.R. (2003). Photosynthetic Euglenoids. In: Freshwater Algae of North Amerca, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 383-422. San Diego: Academic Press.;;;Euglenophycées;;;40420.0;;;;;cellule;ok;9180.0;34.0;30.0;15.0;ell;0.6;0.6;12870.06;4804.2;1.0;12870.06;4804.2;;;;;;;;;;
+Phacus cf. pusillus;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;;;40421.0;;;;;cellule;ok;445.46133;19.0;8.0;8.0;ell;0.7;0.7;2128.67;445.46;1.0;2128.67;445.46;;;;;;;;;Moyennes bibliographie;
+Phacus granulatus;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;;PHAGRN;40422.0;;;;;cellule;ok;750.98334;20.5;10.0;10.0;ell;0.7;0.7;2869.07;750.98;1.0;2869.07;750.98;;;;;;;;;Moyennes bibliographie;
+Phacus longicauda;Phytoplancton;Genre espèce;Euglenaceae;;;;(EHRENBERG) DUJARDIN;1841;;Rosowski, J.R. (2003). Photosynthetic Euglenoids. In: Freshwater Algae of North Amerca, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 383-422. San Diego: Academic Press.;;;Euglenophycées;6511.0;PHALON;40410.0;PHA.LON;Phacus longicauda;R1741;;cellule;ok;105000.0;120.0;50.0;35.0;ell;0.5;0.5;100390.8;54950.0;1.0;100390.8;54950.0;;;;;;;;;;
+Phacus monilatus;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;20212.0;PHAMON;40423.0;;;;;cellule;ok;4762.3335;32.5;20.0;15.0;ell;0.7;0.7;7987.98;3571.75;1.0;7987.98;3571.75;;;;;;;;;Moyennes bibliographie;
+Phacus orbicularis;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;6512.0;PHAORB;40424.0;;;;;cellule;ok;98828.49;77.5;59.0;20.0;ell;0.7;0.7;45747.41;33501.18;1.0;45747.41;33501.18;;;;;;;;;Moyennes bibliographie;
+Phacus pleuronectes var. pleuronectes;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;;;40425.0;;;;;cellule;ok;6588.871;34.0;23.0;20.0;ell;0.7;0.7;10217.53;5729.45;1.0;10217.53;5729.45;;;;;;;;;Moyennes bibliographie;
+Phacus sp.;Phytoplancton;Genre espèce;Euglenaceae;;;espèce;;;;;;;Euglenophycées;;PHASPX;40426.0;;;;;cellule;ok;109900.0;120.0;50.0;35.0;ell;0.7;0.7;71707.72;76930.0;1.0;71707.72;76930.0;;;;;;;;;Données Jean-Claude Druart;
+Phacus tortus;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;6521.0;PHATOR;40427.0;;;;;cellule;ok;34301.99;81.0;34.0;20.0;ell;0.7;0.7;31086.32;20177.64;1.0;31086.32;20177.64;;;;;;;;;Moyennes bibliographie;
+Phaeothamniaceae;Phytoplancton;Famille;Phaeothamniales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Phaeothamniales;Phytoplancton;Ordre;Phaeothamniophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Phaeothamniophyceae;Phytoplancton;Classe;Ochrophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Phormidiaceae;Phytoplancton;Famille;Oscillatoriales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Phormidium amoenum;Phytoplancton;Genre espèce;Phormidiaceae;;;;;;;;Oscillatoria amoena;;Cyanobactéries;6415.0;PHOAMO;12101.0;;;;;filament;ok;1256.0;3.5;4.0;4.0;ell;1.0;1.0;147.7;29.31;28.6;4224.12;838.17;100.0;4.0;4.0;tub;1.0;1.0;1281.12;1256.0;Moyennes bibliographie;
+Phormidium sp.;Phytoplancton;Genre espèce;Phormidiaceae;;;espèce;;;;;;;Cyanobactéries;;PHOSPX;12100.0;;;;;filament;ok;1962.5;5.0;5.0;5.0;tub;1.0;1.0;117.75;98.13;20.0;2355.0;1962.5;100.0;5.0;5.0;tub;1.0;1.0;1609.25;1962.5;Moyennes bibliographie;
+Pinnularia acrosphaeria;Phytoplancton;Genre espèce;Pinnulariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8276.0;PINACR;71510.0;;;;PACR;cellule;ok;60800.0;190.0;20.0;20.0;box;0.8;0.8;20000.0;60800.0;1.0;20000.0;60800.0;;;;;;;;;;
+Pinnularia biceps;Phytoplancton;Genre espèce;Pinnulariaceae;;;;Gregory;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8285.0;PINBIC;71502.0;PIN.BIC;;;PBIC;cellule;ok;5043.5;66.5;12.0;5.0;box;0.8;0.8;2976.25;3192.0;1.0;2976.25;3192.0;;;;;;;;;Valeurs OMNIDIA;
+Pinnulariaceae;Phytoplancton;Famille;Naviculales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pinnularia gibba;Phytoplancton;Genre espèce;Pinnulariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8312.0;PINGIB;71501.0;;;;PGIB;cellule;ok;2321.0;60.0;10.0;5.0;box;0.8;0.8;2375.0;2400.0;1.0;2375.0;2400.0;;;;;;;;;Moyennes bibliographie;
+Pinnularia major;Phytoplancton;Genre espèce;Pinnulariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;20040.0;PINMAJ;71520.0;;;;PMAJ;cellule;ok;32640.0;170.0;24.0;10.0;box;0.8;0.8;15050.0;32640.0;1.0;15050.0;32640.0;;;;;;;;;;
+Pinnularia sp.;Phytoplancton;Genre espèce;Pinnulariaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;PINSPX;71500.0;PIN.SPX;Pinnularia sp.;R0414;PINS;cellule;ok;15735.2;89.0;13.0;17.0;box;0.8;0.8;7227.5;15735.2;1.0;7227.5;15735.2;;;;;;;;;;
+Pinnularia viridis;Phytoplancton;Genre espèce;Pinnulariaceae;;;;(NITZSCH) EHRENBERG;1843;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8378.0;PINVIR;71530.0;PIN.VIR;;;PVIR;cellule;ok;4032.0;70.0;12.0;6.0;box;0.8;0.8;3330.0;4032.0;1.0;3330.0;4032.0;;;;;;;;;;
+Placoneis clementis;Phytoplancton;Genre espèce;Naviculaceae;;;espèce;(Grun.) Cox;;1987 Diat.Res.2(2) Miho&LB06in 18IDSp311 fig.64;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8385.0;PLCCLE;71531.0;PLC.CLE;;;PCLT;cellule;ok;829.0;32.5;11.0;3.0;box;0.8;0.8;1220.0;858.0;1.0;1220.0;858.0;;;;;;;;;Omnidia;
+Plagioselmis lacustris;Phytoplancton;Genre espèce;Pyrenomonadaceae;;;;;;;P. Javornicky. Taxonomic notes on some freshwater planktonic Cryptophyceae based on light microscopy. Hydrobiologia 502 (1-3):271-283, 2003.;;;Cryptophycées;9633.0;PLGLAC;30222.0;;;;;cellule;ok;527.8;14.0;10.0;8.0;ell;1.0;1.0;1244.11;586.13;1.0;1244.11;586.13;14.0;17417.54;8205.87;;;;;;;
+Plagioselmis nannoplanctica;Phytoplancton;Genre espèce;Pyrenomonadaceae;;;;;;;P. Javornicky. Taxonomic notes on some freshwater planktonic Cryptophyceae based on light microscopy. Hydrobiologia 502 (1-3):271-283, 2003.;;;Cryptophycées;9634.0;PLGNAN;30221.0;;;;;cellule;ok;70.9;9.0;4.7;4.0;ell;1.0;1.0;389.46;88.55;1.0;389.46;88.55;14.0;10.0;8.0;ell;;;;;;
+Planktolyngbya limnetica;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;(LEMMERMANN) KOMÁRKOVÁ-LEGNEROVÁ & CRONBERG;1992;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;Lyngbya limnetica;;Cyanobactéries;6467.0;PLLLIM;11302.0;PLL.LIM;Lyngbya;R1570;;filament;ok;132.665;5.0;1.3;1.3;tub;1.0;1.0;23.06;6.63;20.0;461.27;132.67;100.0;1.3;1.3;tub;1.0;1.0;410.85;132.67;Mesure sur Léman 2008;
+Planktolyngbya sp.;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;espèce;;;;;;;Cyanobactéries;;PLLSPX;11308.0;;;;;filament;ok;176.625;5.0;1.5;1.5;tub;1.0;1.0;27.08;8.83;20.0;541.65;176.63;100.0;1.5;1.5;tub;1.0;1.0;474.53;176.63;Moyennes bibliographie;
+Planktonema lauterbornii;Phytoplancton;Genre espèce;Ulotrichaceae;;;;;;;John, D.M. (2002). Orders Chaetophorales, Klebshormidiales, Microsporales, Ulotrichales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 433-468. Cambridge: Cambridge University Press.;;;Chlorophycées;;;86600.0;;Planktonema lauterbornii;R0919;;filament;ok;402.0;6.0;3.2;3.2;tub;1.0;1.0;76.36;48.23;8.0;610.92;385.84;50.0;3.2;3.2;;;;;;moyenne lacs ORE;
+Planktosphaeria gelatinosa;Phytoplancton;Genre espèce;Palmellaceae;;;;G.M.SMITH;1918;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages, page 100, tafel 25;;;Chlorophycées;5782.0;PLKGEL;85420.0;PLK.GEL;Planktosphaeria gelatinosa;R0727;;cellule;ok;523.6;10.0;10.0;10.0;ell;1.0;1.0;990.07;523.33;1.0;990.07;523.33;;;;;;;;;;
+Planktothrix agardhii;Phytoplancton;Genre espèce;Phormidiaceae;;;;(GOMONT) ANAGNOSTIDIS & KOMÁREK;1988;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;Oscillatoria agardhii;;Cyanobactéries;6430.0;PLAAGA;10931.0;PLA.AGA;;;;filament;ok;2827.4;3.0;6.0;6.0;tub;1.0;1.0;113.04;84.78;33.33;3767.62;2825.72;100.0;6.0;6.0;tub;1.0;1.0;1940.52;2826.0;;
+Planktothrix rubescens;Phytoplancton;Genre espèce;Phormidiaceae;;;;(deCANDOLLE ex GOMONT) ANAGNOSTIDIS & KOMÁREK;1988;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;Oscillatoria rubescens;;Cyanobactéries;6433.0;PLARUB;10910.0;PLA.RUB;Planktothrix rubescens;R1617;;filament;ok;2827.4;3.0;6.0;6.0;tub;1.0;1.0;113.04;84.78;33.33;3767.62;2825.72;100.0;6.0;6.0;tub;1.0;1.0;1940.52;2826.0;;
+Planktothrix sp.;Phytoplancton;Genre espèce;Phormidiaceae;;;espèce;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;PLASPX;10911.0;;Planktothrix sp.;;;filament;ok;1962.5;3.0;5.0;5.0;tub;1.0;1.0;86.35;58.88;33.33;2878.05;1962.3;100.0;5.0;5.0;tub;1.0;1.0;1609.25;1962.5;;
+Planothidium calcar;Phytoplancton;Genre espèce;Achnanthaceae;;;;(Cleve) Round & Bukhtiyarova;;1996DR11(2)p353;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;17898.0;PLTCAL;71108.0;PTL.CAL;;;PTCA;cellule;ok;546.0;15.0;9.5;3.0;box;0.8;0.8;540.0;342.0;1.0;540.0;342.0;;;;;;;;;Omnidia;
+Planothidium lanceolatum;Phytoplancton;Genre espèce;Achnanthaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;PLTLAN;71109.0;PTL.LAN;;;PTLA;cellule;ok;475.0;23.0;7.5;3.0;box;0.9;0.9;586.67;465.75;1.0;586.67;465.75;;;;;;;;;Moyennes bibliographie;
+Planothidium sp.;Phytoplancton;Genre espèce;Achnanthaceae;;;espèce;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Plantae;Phytoplancton;Règne;Eukaryota;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pleurochloridaceae;Phytoplancton;Famille;Mischococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pleurosigmataceae;Phytoplancton;Famille;Naviculales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Polyblepharidaceae;Phytoplancton;Famille;Pyramimonadales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Polyedriopsis bitridens;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;;;;Chlorophycées;;POLBIT;81301.0;;;;;cellule;ok;;9.5;9.5;9.5;box;1.0;1.0;541.5;857.38;1.0;541.5;857.38;;;;;;;;;Moyennes bibliographie;
+Prasinophyceae;Phytoplancton;Classe;Chlorophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prasiolaceae;Phytoplancton;Famille;Prasiolales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prasiolales;Phytoplancton;Ordre;Trebouxiophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prokaryota;Phytoplancton;Domaine;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Protoperidiniaceae;Phytoplancton;Famille;Peridiniales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Protozoa;Phytoplancton;Règne;Eukaryota;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prymnesiaceae;Phytoplancton;Famille;Prymnesiales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prymnesiales;Phytoplancton;Ordre;Prymnesiophycidae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prymnesiophyceae;Phytoplancton;Classe;Opalozoa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prymnesiophycidae;Phytoplancton;Sous-classe;Prymnesiophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pseudanabaena acicularis;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;Oscillatoria limnetica v acicularis;;Cyanobactéries;6454.0;PSEACI;10941.0;PSE.ACI;Oscillatoria limnetica;R1591;;filament;ok;283.5;10.0;1.9;1.9;tub;1.0;1.0;65.33;28.34;10.0;653.28;283.39;100.0;1.9;1.9;tub;1.0;1.0;602.27;283.39;;
+Pseudanabaena arcuata;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;Phormidium arcuatum;;Cyanobactéries;6455.0;PSEARC;11111.0;PSE.ARC;Phormidium;R1606;;filament;ok;61.9;7.0;1.5;1.5;tub;1.0;1.0;36.5;12.36;5.0;182.51;61.82;35.0;1.5;1.5;tub;1.0;1.0;168.38;61.82;;
+Pseudanabaena articulata;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;;11112.0;PSE.ARC;;;;filament;ok;132.665;7.0;1.3;1.3;tub;1.0;1.0;31.23;9.29;14.3;446.55;132.8;100.0;1.3;1.3;tub;1.0;1.0;410.85;132.67;Moyenne bibliographie;
+Pseudanabaena catenata;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;LAUTERBORN;1915;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;6456.0;PSECAT;11035.0;PSE.CAT;;;;filament;ok;201.0;4.0;1.6;1.6;tub;1.0;1.0;24.12;8.04;25.0;602.88;200.96;100.0;1.6;1.6;tub;1.0;1.0;506.42;200.96;;
+Pseudanabaena catenata filament 20 µm;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;;11036.0;;;;;filament;ok;40.192;4.0;1.6;1.6;tub;1.0;1.0;24.12;8.04;5.0;120.58;40.19;20.0;1.6;1.6;tub;1.0;1.0;104.5;40.19;;
+Pseudanabaenaceae;Phytoplancton;Famille;Oscillatoriales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pseudanabaena cf. tenuis;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;;11045.0;PSE.TEN;;;;filament;ok;260.0;5.0;1.3;2.0;tub;1.0;1.0;26.69;6.63;20.0;533.8;132.67;100.0;1.3;2.0;tub;1.0;1.0;414.48;132.67;;
+Pseudanabaena galeata;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;6458.0;PSEGAL;11010.0;;Pseudanabaena;R1623;;filament;ok;283.5;4.0;1.9;1.9;tub;1.0;1.0;29.53;11.34;25.0;738.29;283.39;100.0;1.9;1.9;tub;1.0;1.0;602.27;283.39;;
+Pseudanabaena limnetica;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;(LEMMERMANN) KOMÁREK;1974;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;6459.0;PSELIM;10940.0;PSE.LIM;Oscillatoria limnetica;R1591;;filament;ok;283.5;7.0;1.9;1.9;tub;1.0;1.0;47.43;19.84;14.3;678.24;283.67;100.0;1.9;1.9;tub;1.0;1.0;602.27;283.39;;
+Pseudanabaena minuta;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;Komvophoron minutum;Cyanobactéries;;PSEMIU;11020.0;;Pseudanabaena;R1623;;filament;ok;492.6;2.8;2.8;2.8;tub;1.0;1.0;36.93;17.23;35.7;1318.27;615.19;100.0;2.8;2.8;tub;0.8;1.0;891.51;492.35;;
+Pseudanabaena mucicola;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;(NAUMANN & HUBER-PESTALOZZI) BOURRELLY;1985;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;Phormidium mucicola;;Cyanobactéries;6460.0;PSEMUC;11110.0;PSE.MUC;Phormidium mucicola;R1605;;filament;ok;110.0;3.0;2.0;2.0;tub;1.0;1.0;25.12;9.42;11.7;293.9;110.21;35.0;2.0;2.0;tub;1.0;1.0;226.08;109.9;;
+Pseudanabaena sp.;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;espèce;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;PSESPX;11000.0;PSE.SPX;Pseudanabaena;R1623;;filament;ok;314.2;3.0;2.0;2.0;tub;1.0;1.0;25.12;9.42;33.3;836.5;313.69;100.0;2.0;2.0;tub;1.0;1.0;634.28;314.0;;
+pseudochlorella pyrenoidosa;Phytoplancton;Genre espèce;Koliellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages, page 100, tafel 25;;;Chlorophycées;;;81302.0;;;;;cellule;ok;267.94666;8.0;8.0;8.0;sphe;1.0;1.0;200.96;267.95;1.0;200.96;267.95;;;;;;;;;;
+Pseudococcomyxa sp.;Phytoplancton;Genre espèce;Oocystaceae;;;espèce;(Mainx) Fott;;;Fott, B. (1981). Nomenklatorische änderungen bei einigen chlorokokkalalgen. Preslia, Praha 53: 1-7.;Pseudococcomyxa adhaerens;;Chlorophycées;;;85526.0;PCO.SPX;;;;cellule;ok;32.97;7.0;3.0;3.0;ell;1.0;1.0;210.36;32.97;1.0;210.36;32.97;;;;;;;;;Moyenne échantillons eaux minérales Iran Damavand (2010);
+Pseudodidymocystis fina;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(Komárek) Hegewald & Deason ;2013;;;;;;32028.0;PSDFIN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pseudogoniochloris tripus;Phytoplancton;Genre espèce;Pleurochloridaceae;;;;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;20326.0;PGCTRI;65001.0;;;;;cellule;ok;812.25;28.5;28.5;4.0;prisme;1.0;1.0;748.13;1624.5;1.0;748.13;1624.5;;;;;;;;;Moyennes bibliographie;
+Pseudokephyrion blatnense;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;57101.0;;;;;cellule;ok;3136.075;10.0;9.0;9.0;trel;1.0;1.0;891.06;423.9;1.0;891.06;423.9;;;;;;;;;Obs sur Bourget ech 1 - 2008 - FR;
+Pseudokephyrion conicum;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;20635.0;PSKCON;57104.0;PKP.CON;;;;cellule;ok;104.28;5.5;6.0;6.0;trel;1.0;1.0;334.68;103.62;1.0;334.68;103.62;;;;;;;;;Moyennes bibliographie;
+Pseudokephyrion ellipsoideum;Phytoplancton;Genre espèce;Dinobryaceae;;;;(Pascher) Schmid;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;Kephyriopsis ellipsoidea;;Chrysophycées;20340.0;PSKELL;57106.0;PKP.ELP;;;;cellule;ok;208.56;11.0;6.0;6.0;trel;1.0;1.0;652.03;207.24;1.0;652.03;207.24;;;;;;;;;;
+Pseudokephyrion entzii;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6164.0;PSKENT;57102.0;;;;;cellule;ok;323.8125;11.0;7.5;5.0;ell;1.0;1.0;687.34;215.88;1.0;687.34;215.88;;;;;;;;;Moyennes bibliographie;
+Pseudokephyrion latum;Phytoplancton;Genre espèce;Dinobryaceae;;;;(Schiller) Schmid;;;Kovacs;Kephyriopsis lata;;Chrysophycées;;;57107.0;;;;;cellule;ok;526.6667;10.0;10.0;10.0;trel;1.0;1.0;990.07;523.33;1.0;990.07;523.33;;;;;;;;;Moyennes bibliographie;obs sur annecy 2 2011
+Pseudokephyrion pseudospiralis;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;57100.0;;;;;cellule;ok;147.0;7.5;5.0;5.0;ell;1.0;1.0;374.59;98.13;1.0;374.59;98.13;;;;;;;;;;
+Pseudokephyrion sp.;Phytoplancton;Genre espèce;Dinobryaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;PSKSPX;57103.0;;;;;cellule;ok;50.24;6.0;4.0;4.0;ell;1.0;1.0;242.19;50.24;1.0;242.19;50.24;;;;;;;;;Moyennes bibliographie;
+Pseudokephyrion striatum;Phytoplancton;Genre espèce;Dinobryaceae;;;;Hill.;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;57105.0;;;;;cellule;ok;40.623356;6.6;4.85;4.85;con;1.0;1.0;321.48;40.62;1.0;321.48;40.62;;;;;;;;;Moyennes bibliographie;
+Pseudokephyrion tatricum;Phytoplancton;Genre espèce;Dinobryaceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pseudopedinella sp.;Phytoplancton;Genre espèce;Pedinellaceae;;;genre;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;PDPSPX;54500.0;;;;;cellule;ok;8.177083;2.5;2.5;2.5;ell;1.0;1.0;69.37;8.18;6.0;416.23;49.06;8.0;8.0;8.0;tub;0.8;0.8;326.56;321.54;Probablement pas Pseudopedinella. Mesures prises sur plusieurs colonies D'Annecy. Le biovol est mesuré sur 6 cellules de 2.5 um de diamètres;
+Pseudosphaerocystis lundii;Phytoplancton;Genre espèce;Palmellopsidaceae;;;;;;;Pentecost, A. (2002). Order Tetrasporales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 299-303. Cambridge: Cambridge University Press.;;;Chlorophycées;20218.0;PSPLUN;80710.0;;Pseudosphaerocystis;R0738;;colonie;ok;12214.5;9.0;9.0;9.0;sphe;1.0;1.0;254.34;381.51;32.0;8138.88;12208.32;80.0;80.0;80.0;sphe;0.1;1.0;20096.0;26794.67;;
+Pseudostaurastrum alternans;Phytoplancton;Genre espèce;Eustigmataceae;;;;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;;;65002.0;;;;;cellule;ok;787.5;15.0;15.0;7.0;box;1.0;1.0;870.0;1575.0;1.0;870.0;1575.0;;;;;;;;;Données Jean-Claude Druart;
+Pseudostaurastrum hastatum;Phytoplancton;Genre espèce;Eustigmataceae;;;;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;6190.0;PSTHAS;65003.0;;;;;cellule;ok;1860.5;30.5;30.5;4.0;box;1.0;1.0;2348.5;3721.0;1.0;2348.5;3721.0;;;;;;;;;Moyennes bibliographie;
+Pseudostaurastrum hastatum var. palatinum;Phytoplancton;Genre espèce;Eustigmataceae;;;;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;20219.0;PSTHPA;65004.0;;;;;cellule;ok;840.0;15.0;14.0;8.0;box;1.0;1.0;884.0;1680.0;1.0;884.0;1680.0;;;;;;;;;Données Jean-Claude Druart;
+Pseudostaurastrum limneticum;Phytoplancton;Genre espèce;Eustigmataceae;;;;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;6191.0;PSTLIM;65005.0;;;;;cellule;ok;5512.5;52.5;52.5;4.0;box;1.0;1.0;6352.5;11025.0;1.0;6352.5;11025.0;;;;;;;;;Moyennes bibliographie;
+Pseudostaurosira parasitica;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6752.0;PSSPAR;70659.0;;;;PPRS;cellule;ok;122.4;17.0;4.0;2.0;box;0.9;0.9;244.44;122.4;1.0;244.44;122.4;;;;;;;;;;
+Pseudostaurosira robusta;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70656.0;STA.ROB;;;PRBS;cellule;ok;174.0;15.0;5.0;2.3;box;0.8;0.8;302.5;138.0;1.0;302.5;138.0;;;;;;;;;Valeurs OMNIDIA;
+Pseudotetraedriella kamillae;Phytoplancton;Genre espèce;Eustigmataceae;;;;;;;;;;Xantophycées;20343.0;;65006.0;;;;;cellule;ok;40.0;5.0;5.0;2.0;box;1.0;1.0;90.0;50.0;1.0;90.0;50.0;;;;;;;;;;
+Pteromonas aculeata;Phytoplancton;Genre espèce;Phacotaceae;;;;;;;;;;Chlorophycées;6050.0;PTEACU;80315.0;;;;;cellule;ok;5187.28;29.5;28.0;12.0;trel;1.0;1.0;6042.62;5187.28;1.0;6042.62;5187.28;;;;;;;;;Moyennes bibliographie;
+Pteromonas angulosa;Phytoplancton;Genre espèce;Phacotaceae;;;;;;;;;;Chlorophycées;6052.0;PTEANG;80316.0;;;;;cellule;ok;824.25;15.0;15.0;7.0;trel;1.0;1.0;1685.64;824.25;1.0;1685.64;824.25;;;;;;;;;Moyennes bibliographie;
+Pteromonas cordiformis;Phytoplancton;Genre espèce;Phacotaceae;;;;;;;;;;Chlorophycées;20222.0;PTECOR;80317.0;;;;;cellule;ok;467.72916;12.5;11.0;6.5;trel;1.0;1.0;1099.23;467.73;1.0;1099.23;467.73;;;;;;;;;Moyennes bibliographie;
+Pteromonas pseudoangulosa;Phytoplancton;Genre espèce;Phacotaceae;;;;;;;;;;Chlorophycées;20223.0;PTEPSE;80318.0;;;;;cellule;ok;439.6;12.0;10.0;7.0;trel;1.0;1.0;1015.34;439.6;1.0;1015.34;439.6;;;;;;;;;Moyennes bibliographie;
+Puncticulata bodanica;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;(Grunow in Schneider) Håkansson;;;Håkansson, H. 2002 [ref. 009521]. A compilation and evaluation of species in the general [sic] Stephanodiscus, Cyclostephanos and Cyclotella with a new genus in the family Stephanodiscaceae. Diatom Research 17(1):1-139.;;;Diatomées;9506.0;PUNBOD;70273.0;;;;;cellule;ok;;40.0;40.0;10.0;tub;1.0;1.0;5181.0;50240.0;1.0;5181.0;50240.0;;;;;;;;;;
+Puncticulata radiosa;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;(Lemmermann) Håkansson;1900;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Cyclotella radiosa, Cyclotella comta;;Diatomées;;PUNRAD;70241.0;PUN.RAD;Cyclotella radiosa;R0051;PRAD;cellule;ok;1570.8;20.0;20.0;5.0;box;1.0;1.0;1200.0;2000.0;1.0;1200.0;2000.0;;;;;;;;;;
+Pyramimonadaceae;Phytoplancton;Famille;Pyramimonadales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pyramimonadales;Phytoplancton;Ordre;Prasinophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pyramimonas inconstans;Phytoplancton;Genre espèce;Pyramimonadaceae;;;;Hodgett;1920;;Susswaserflora van Mitteleuropa 9;;;Chlorophycées;;;80320.0;;;;;cellule;ok;321.536;12.0;8.0;8.0;trel;0.8;0.8;1183.48;321.54;1.0;1183.48;321.54;;;;;;;;;;
+Pyramimonas micron;Phytoplancton;Genre espèce;Pyramimonadaceae;;;;W. Conrad & H. Kufferath;;;Susswaserflora van Mitteleuropa 9;;;Chlorophycées;;;80319.0;PYR.MIC;;;;cellule;ok;58.875;5.0;5.0;5.0;trel;0.9;0.9;283.5;58.88;1.0;283.5;58.88;;;;;;;;;Moyenne Leman et Bourget 2009;
+Pyrenomonadaceae;Phytoplancton;Famille;Pyrenomonadales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pyrenomonadales;Phytoplancton;Ordre;Cryptophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Quadrichloris carterioides;Phytoplancton;Genre espèce;Dunaliellaceae;;;;(Pascher et Jahoda) Fott;;;Susswaserflora van Mitteleuropa 9;Tetrachloris carterioides;;Chlorophycées;;;80321.0;;;;;cellule;ok;472.30832;10.0;9.5;9.5;trel;1.0;1.0;940.57;472.31;1.0;940.57;472.31;;;;;;;;;Moyennes bibliographie;
+Quadricoccus ellipticus;Phytoplancton;Genre espèce;Dictyosphaerioideae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages. Page 343, tafel 104;;;Chlorophycées;5795.0;QUDELL;89101.0;;;;;colonie;ok;267.94666;8.0;4.0;4.0;trel;1.0;1.0;318.9;66.99;4.0;1275.6;267.95;18.0;18.0;4.0;box;0.2;1.0;936.0;259.2;;
+Quadricoccus ellipticus erreur;Phytoplancton;Genre espèce;Dictyosphaerioideae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;89100.0;QUD.ELL;;;;colonie;erreur;9498.5;;;;;;;;;;;;;;;;;;;;;
+Quadrigula cf. closterioides;Phytoplancton;Genre espèce;Oocystaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;81621.0;;;;;colonie;ok;274.75;21.0;2.5;2.5;trel;1.0;1.0;514.24;68.69;4.0;2056.95;274.75;42.0;30.0;30.0;trel;0.2;1.0;12302.36;3956.4;Moyennes bibliographie;
+Quadrigula lacustris;Phytoplancton;Genre espèce;Oocystaceae;;;;(CHODAT) G.M.SMITH;1920;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5791.0;QUALAC;81620.0;QUA.LAC;Quadrigula lacustris;R0743;;colonie;ok;376.8;20.0;3.0;3.0;trel;1.0;1.0;587.93;94.2;4.0;2351.71;376.8;40.0;30.0;30.0;trel;0.2;1.0;11718.03;3768.0;;
+Quadrigula quaternata;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5799.0;QUAQUA;81622.0;;;;;colonie;ok;2767.125;23.5;7.5;7.5;trel;1.0;1.0;1725.02;691.78;4.0;6900.07;2767.13;50.0;35.0;35.0;trel;0.2;1.0;17080.06;6410.83;Moyennes bibliographie;
+Radiococacceae;Phytoplancton;Famille;Chroococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Radiococaccés;Phytoplancton;Genre espèce;Radiococacceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;11850.0;;;;;colonie;ok;1795.6;3.5;3.5;3.5;ell;1.0;1.0;129.23;22.44;80.0;10338.76;1795.03;100.0;100.0;100.0;trel;0.1;1.0;97522.27;52333.33;;
+Radiococcaceae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Radiococcus planktonicus;Phytoplancton;Genre espèce;Radiococcaceae;;;;Lund;1956;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9263.0;RACPLA;85311.0;;;;;colonie;ok;452.16;6.0;6.0;6.0;sphe;1.0;1.0;113.04;113.04;4.0;452.16;452.16;30.0;30.0;30.0;sphe;0.2;1.0;2826.0;2826.0;Moyennes bibliographie;
+Radiocystis aphaniticoïdea;Phytoplancton;Genre espèce;Synechococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;11411.0;;;;;colonie;ok;5484.206;2.5;2.5;2.5;ell;1.0;1.0;69.37;8.18;20.0;1387.45;163.54;30.0;30.0;30.0;ell;0.1;1.0;8797.28;1413.0;;
+Radiocystis geminata;Phytoplancton;Genre espèce;Synechococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6387.0;RAIGEM;11410.0;;Radiocystis aphanithecoidea;R1514;;colonie;ok;5484.206;4.5;2.5;2.5;ell;1.0;1.0;115.75;14.72;115.0;13310.87;1692.66;30.0;30.0;30.0;ell;0.1;1.0;8797.28;1413.0;;
+Rayssiella hemisphaerica;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5793.0;RAYHEM;85310.0;RAY.HEM;Chlorococcales;R0832;;colonie;ok;4825.5;18.0;8.0;8.0;trel;1.0;1.0;1412.36;602.88;8.0;11298.85;4823.04;36.0;50.0;8.0;box;0.5;0.5;9952.0;7200.0;;
+Rhabdoderma lineare;Phytoplancton;Genre espèce;Synechococcaceae;;;;SCHMIDLER & LAUTERBORN;1900;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6334.0;RHALIN;11322.0;RHA.LIN;;;;cellule;ok;6.6234374;2.5;2.25;2.25;trel;1.0;1.0;62.44;6.62;1.0;62.44;6.62;;;;;;;;;Mesure moyennes selon Komarek & Anagnostidis 1998;
+Rhabdoderma tenuissimum;Phytoplancton;Genre espèce;Synechococcaceae;;;;Komarek etKling;1991;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;11326.0;;;;;colonie;ok;9.42;3.0;1.0;1.0;tub;1.0;1.0;10.99;2.36;;;;20.0;5.0;5.0;tub;0.8;1.0;353.25;314.0;Mesure moyennes selon Komarek & Anagnostidis 1998;
+Rhizosoleniaceae;Phytoplancton;Famille;Rhizosoleniales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Rhizosolenia eriensis;Phytoplancton;Genre espèce;Rhizosoleniaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8732.0;RHZERI;70298.0;;;;UERI;cellule;ok;1406.25;75.0;12.5;3.0;box;0.5;0.5;4800.0;1406.25;1.0;4800.0;1406.25;;;;;;;;;Moyennes bibliographie;
+Rhizosoleniales;Phytoplancton;Ordre;Coscinodiscophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Rhizosolenia longiseta;Phytoplancton;Genre espèce;Rhizosoleniaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8734.0;RHZLON;70299.0;;;;RLON;cellule;ok;4615.8;120.0;7.0;7.0;tub;1.0;1.0;2714.53;4615.8;1.0;2714.53;4615.8;;;;;;;;;Moyennes bibliographie;
+Rhodomonas minuta;Phytoplancton;Genre espèce;Pyrenomonadaceae;;;;;;;Kugrens, P. & Clay, B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds), pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;;RHDMIN;30210.0;;Rhodomonas;R1409;;cellule;ok;527.8;14.0;10.0;8.0;ell;1.0;1.0;1244.11;586.13;1.0;1244.11;586.13;;;;;;;;;;
+Rhodomonas minuta var. nannoplanctica;Phytoplancton;Genre espèce;Pyrenomonadaceae;;;;;;;Kugrens, P. & Clay, B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds), pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;;RHDMNA;30220.0;;Rhodomonas;R1409;;cellule;ok;70.9;9.0;4.7;4.0;ell;1.0;1.0;389.46;88.55;1.0;389.46;88.55;;;;;;;;;;
+Rhoicosphenia abbreviata;Phytoplancton;Genre espèce;Rhoicospheniaceae;;;;(C.AGARDH) LANGE-BERTALOT;1980;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;R. curvata;;Diatomées;8420.0;RHCABB;72610.0;RHC.ABB;Rhoicosphenia curvata;R0419;RABB;cellule;ok;1200.0;20.0;10.0;10.0;box;0.6;0.6;1666.67;1200.0;1.0;1666.67;1200.0;;;;;;;;;;
+Rhoicospheniaceae;Phytoplancton;Famille;Cymbellales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Rhopalodiaceae;Phytoplancton;Famille;Rhopalodiales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Rhopalodia gibba;Phytoplancton;Genre espèce;Rhopalodiaceae;;;;(EHRENBERG) O.MÜLLER;1895;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;9456.0;RHOGIA;72615.0;RHO.GIA;;;RGIB;cellule;ok;9180.0;102.0;15.0;7.5;box;0.8;0.8;6018.75;9180.0;1.0;6018.75;9180.0;;;;;;;;;;
+Rhopalodiales;Phytoplancton;Ordre;Bacillariophycidae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+romeria chlorina;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;Böcher;1949;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;12202.0;;;;;filament;ok;26.49;2.5;1.5;1.5;tub;1.0;1.0;15.31;4.42;6.0;91.85;26.49;15.0;1.5;1.5;tub;0.9;1.2;73.59;23.84;Moyennes bibliographie;
+Romeria gracilis;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;;;;;;;Cyanobactéries;20228.0;ROMGRA;12201.0;;;;;filament;ok;39.25;5.0;1.0;1.0;tub;1.0;1.0;17.27;3.93;10.0;172.7;39.25;50.0;1.0;1.0;tub;0.9;1.2;158.31;35.33;Moyennes bibliographie;
+Salpingoeca bütschli;Phytoplancton;Genre espèce;Salpingoecidae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;50631.0;;;;;cellule;ok;805.41;19.0;9.0;5.0;ell;1.0;1.0;1335.63;447.45;1.0;1335.63;447.45;;;;;;;;;Moyennes bibliographie;
+Salpingoeca frequentissima;Phytoplancton;Genre espèce;Salpingoecidae;;;;(O.ZACHARIAS) LEMMERMANN;0;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;6170.0;SALFRE;50630.0;SAL.FRE;Salpingoeca frequentissima;R1359;;cellule;ok;117.8;9.0;5.0;5.0;ell;1.0;1.0;446.78;117.75;1.0;446.78;117.75;;;;;;;;;;
+Salpingoeca globulosa;Phytoplancton;Genre espèce;Salpingoecidae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;20232.0;SALGLB;50650.0;;;;;cellule;ok;65.4;5.0;5.0;5.0;ell;1.0;1.0;255.15;65.42;1.0;255.15;65.42;;;;;;;;;;
+Salpingoeca gracilis;Phytoplancton;Genre espèce;Salpingoecidae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;6171.0;SALGRA;50620.0;SAL.GRA;Salpingoeca;R1361;;cellule;ok;785.4;30.0;10.0;10.0;ell;0.5;0.5;5864.85;785.0;1.0;5864.85;785.0;;;;;;;;;;
+Salpingoeca minor;Phytoplancton;Genre espèce;Salpingoecidae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;20233.0;SALMIN;50640.0;;Salpingoeca;R1361;;cellule;ok;523.6;10.0;10.0;10.0;ell;1.0;1.0;990.07;523.33;1.0;990.07;523.33;;;;;;;;;;
+Salpingoeca sp.;Phytoplancton;Genre espèce;Salpingoecidae;;;espèce;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;;SALSPX;50600.0;SAL.SPX;Salpingoeca;R1361;;cellule;ok;523.6;10.0;10.0;10.0;ell;1.0;1.0;990.07;523.33;1.0;990.07;523.33;;;;;;;;;;
+Salpingoecidae;Phytoplancton;Famille;Choanoflagellida;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Sarcomastigota;Phytoplancton;Sous-règne;Protozoa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Scenedesmaceae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Scenedesmus aculeolatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5803.0;SCEACU;82551.0;;;;;colonie;ok;401.92;12.0;4.0;4.0;trel;1.0;1.0;473.39;100.48;4.0;1893.56;401.92;12.0;16.0;4.0;box;0.9;0.9;675.56;691.2;Moyennes bibliographie;
+Scenedesmus acuminatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(LAGERHEIM) CHODAT;1902;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5804.0;SCEACM;82550.0;SCE.ACM;Scenedesmus acuminatus;R0754;;colonie;ok;1099.6;14.0;5.0;5.0;trel;1.0;1.0;688.62;183.17;4.0;2754.49;732.67;14.0;20.0;5.0;box;0.7;0.7;1285.71;980.0;;
+Scenedesmus acunae;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5805.0;SCEACN;82599.0;SCE.ACN;Scenedesmus;R0811;;colonie;ok;1583.4;14.0;6.0;6.0;trel;1.0;1.0;826.35;263.76;4.0;3305.39;1055.04;14.0;24.0;6.0;box;0.9;0.9;1253.33;1814.4;;
+Scenedesmus acutiformis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9269.0;SCEACF;82552.0;;;;;colonie;ok;837.3333;16.0;5.0;5.0;trel;1.0;1.0;785.63;209.33;4.0;3142.52;837.33;16.0;20.0;5.0;box;0.9;0.9;1111.11;1440.0;Moyennes bibliographie;
+Scenedesmus acutus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;MEYEN;1829;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;SCEACT;82570.0;SCE.ACT;Scenedesmus acutus;R0756;;colonie;ok;653.5;13.0;4.0;4.0;trel;1.0;1.0;512.13;108.85;4.0;2048.52;435.41;13.0;16.0;4.0;box;0.7;0.7;925.71;582.4;;
+Scenedesmus acutus une cellule;Phytoplancton;Genre espèce;Scenedesmaceae;;;forme;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20236.0;;82569.0;;;;;cellule;ok;108.85333;13.0;4.0;4.0;trel;1.0;1.0;512.13;108.85;1.0;512.13;108.85;;4.0;;;;;;;Moyennes bibliographie;
+Scenedesmus acutus var. acutus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20236.0;SCEAAC;82571.0;;;;;colonie;ok;435.41333;13.0;4.0;4.0;trel;1.0;1.0;512.13;108.85;4.0;2048.52;435.41;13.0;16.0;4.0;box;0.7;0.7;925.71;582.4;Moyennes bibliographie;
+Scenedesmus acutus var. alternans;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;82572.0;;;;;colonie;ok;1171.4817;18.5;5.5;5.5;trel;1.0;1.0;997.71;292.87;4.0;3990.83;1171.48;18.5;26.0;5.5;box;0.6;0.6;2419.17;1587.3;Moyennes bibliographie;
+Scenedesmus apiculatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5806.0;SCEAPI;82480.0;SCE.API;Scenedesmus apiculatus;R0759;;colonie;ok;706.9;9.0;5.0;5.0;trel;1.0;1.0;446.78;117.75;4.0;1787.14;471.0;9.0;20.0;5.0;box;0.6;0.6;1083.33;540.0;;
+Scenedesmus arcuatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5807.0;SCEARC;82580.0;SCE.ARC;Scenedesmus;R0811;;colonie;ok;653.5;13.0;4.0;4.0;trel;1.0;1.0;512.13;108.85;4.0;2048.52;435.41;13.0;16.0;4.0;box;0.9;0.9;720.0;748.8;;
+Scenedesmus armatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;CHODAT;1913;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5808.0;SCEARM;82581.0;SCE.ARM;;;;colonie;ok;1146.0;18.1;5.5;5.5;trel;1.0;1.0;976.34;286.54;4.0;3905.35;1146.15;18.1;22.0;5.5;box;0.7;0.7;1767.86;1533.07;;
+Scenedesmus bernardii;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5811.0;SCEBER;82582.0;;;;;colonie;;1505.0;21.5;5.0;5.0;trel;1.0;1.0;1052.78;281.29;4.0;4211.11;1125.17;21.5;20.0;5.0;box;0.7;0.7;1821.43;1505.0;Moyennes bibliographie;
+Scenedesmus bicaudatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;DEDUSENKO;1925;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5812.0;SCEBIC;82592.0;SCE.BIC;Scenedesmus bicaudatus;R0763;;colonie;ok;653.2;13.0;4.0;4.0;trel;1.0;1.0;512.13;108.85;4.0;2048.52;435.41;13.0;16.0;4.0;box;0.8;0.8;810.0;665.6;;
+Scenedesmus bicaudatus var. brevicaudatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20237.0;SCEBBR;82594.0;;Scenedesmus bicaudatus;R0763;;colonie;ok;502.7;10.0;4.0;4.0;trel;1.0;1.0;396.03;83.73;4.0;1584.11;334.93;10.0;16.0;4.0;box;0.8;0.8;660.0;512.0;;
+Scenedesmus bicaudatus var. fenestratus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;SCEBFE;82451.0;;;;;colonie;ok;418.66666;8.0;5.0;5.0;trel;1.0;1.0;398.63;104.67;4.0;1594.5;418.67;8.0;20.0;5.0;box;0.8;0.8;750.0;640.0;Non trouvé dans biblio - arbitraire;
+Scenedesmus denticulatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5821.0;SCEDEN;82456.0;;;;;colonie;ok;1077.02;10.5;7.0;5.0;trel;1.0;1.0;628.21;192.33;4.0;2512.85;769.3;15.0;28.0;5.0;box;0.6;0.6;2116.67;1260.0;Moyennes bibliographie;
+Scenedesmus denticulatus var. fenestratus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20239.0;SCEDFE;82457.0;;;;;colonie;ok;471.0;9.0;5.0;5.0;trel;1.0;1.0;446.78;117.75;4.0;1787.14;471.0;13.0;20.0;5.0;box;0.6;0.6;1416.67;780.0;Moyennes bibliographie;
+Scenedesmus dimorphus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;SCEDIM;82458.0;;;;;colonie;ok;1099.0;21.0;5.0;5.0;trel;1.0;1.0;1028.48;274.75;4.0;4113.9;1099.0;26.0;20.0;5.0;box;0.6;0.6;2500.0;1560.0;Moyennes bibliographie;
+Scenedesmus disciformis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9277.0;SCEDIC;82459.0;;;;;colonie;ok;1203.6666;11.5;5.0;5.0;trel;1.0;1.0;567.54;150.46;8.0;4540.34;1203.67;11.5;40.0;5.0;box;0.6;0.6;2391.67;1380.0;Moyennes bibliographie;
+Scenedesmus disciformis erreur;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(CHODAT) FOTT & KOMÁREK;1960;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;82561.0;SCE.DIC;Scenedesmus disciformis;R0778;;colonie;erreur;2199.1;14.0;5.0;5.0;trel;1.0;1.0;688.62;183.17;8.0;5508.98;1465.33;14.0;40.0;5.0;box;0.6;0.6;2766.67;1680.0;;
+Scenedesmus disciformis f. disciformis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Scenedesmus ecornis var. disciformis;;Chlorophycées;;SCEDID;82461.0;;;;;colonie;ok;601.8333;11.5;5.0;5.0;trel;1.0;1.0;567.54;150.46;4.0;2270.17;601.83;11.5;20.0;5.0;box;0.8;0.8;968.75;920.0;Moyennes bibliographie;
+Scenedesmus dispar;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(BRÉBISSON) RABENHORST;1868;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5823.0;SCEDIS;82460.0;SCE.DIS;Scenedesmus dispar;R0779;;colonie;ok;311.0;11.0;3.0;3.0;trel;1.0;1.0;326.02;51.81;4.0;1304.06;207.24;11.0;12.0;3.0;box;0.6;0.6;670.0;237.6;;
+Scenedesmus ecornis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(EHRENBERG) CHODAT;1926;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5824.0;SCEECO;82520.0;SCE.ECO;Scenedesmus ecornis;R0781;;colonie;ok;1099.6;14.0;5.0;5.0;trel;1.0;1.0;688.62;183.17;4.0;2754.49;732.67;14.0;20.0;5.0;box;0.8;0.8;1125.0;1120.0;;
+Scenedesmus ecornis cellule isolée;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;82521.0;;;;;cellule;ok;183.16667;14.0;5.0;5.0;trel;1.0;1.0;688.62;183.17;1.0;688.62;183.17;;;;;;;;;;
+Scenedesmus ecornis var. polymorphus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20241.0;SCEECP;82462.0;;;;;colonie;ok;381.51;9.0;4.5;4.5;trel;1.0;1.0;402.11;95.38;4.0;1608.42;381.51;9.0;18.0;4.5;box;0.8;0.8;708.75;583.2;Moyennes bibliographie;
+Scenedesmus fusiformis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20242.0;SCEFUS;82452.0;;;;;colonie;ok;937.81335;7.0;8.0;4.0;trel;1.0;1.0;434.67;117.23;4.0;1738.69;468.91;7.0;32.0;4.0;box;0.8;0.8;950.0;716.8;Moyennes bibliographie;
+Scenedesmus grahneisii;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5828.0;SCEGRA;82450.0;SCE.GRA;Scenedesmus;R0811;;colonie;ok;490.1;13.0;6.0;6.0;trel;1.0;1.0;768.19;244.92;2.0;1536.39;489.84;13.0;12.0;6.0;box;0.8;0.8;765.0;748.8;;
+Scenedesmus granulatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5829.0;SCEGRL;82463.0;;;;;colonie;ok;551.07;13.0;4.5;4.5;trel;1.0;1.0;576.15;137.77;4.0;2304.58;551.07;13.0;18.0;4.5;box;0.8;0.8;933.75;842.4;Moyennes bibliographie;
+Scenedesmus gutwinskii;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;SCEGUT;82530.0;;;;;colonie;ok;1512.0;12.5;5.5;5.5;trel;1.0;1.0;677.54;197.89;4.0;2710.16;791.54;12.5;22.0;5.5;box;0.8;0.8;1161.88;1210.0;;
+Scenedesmus insignis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5833.0;SCEINS;82596.0;SCE.INS;Scenedesmus insignis;R0788;;colonie;ok;930.7;14.0;4.6;4.6;trel;1.0;1.0;633.53;155.03;4.0;2534.13;620.13;14.0;18.4;4.6;box;0.8;0.8;1016.6;947.97;;
+Scenedesmus intermedius var. acaudatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5834.0;SCEACA;82593.0;;Scenedesmus intermedius;R0789;;colonie;ok;254.5;9.0;3.0;3.0;trel;1.0;1.0;268.07;42.39;4.0;1072.28;169.56;9.0;12.0;3.0;box;0.8;0.8;427.5;259.2;;
+Scenedesmus intermedius var. bicaudatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;SCEIBI;82464.0;;;;;colonie;ok;267.94666;8.0;4.0;4.0;trel;1.0;1.0;318.9;66.99;4.0;1275.6;267.95;8.0;16.0;4.0;box;0.8;0.8;560.0;409.6;Moyennes bibliographie;
+Scenedesmus intermedius var. intermedius;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;SCEIIN;82465.0;;;;;colonie;ok;1139.82;18.0;5.5;4.0;trel;1.0;1.0;844.85;207.24;4.0;3379.41;828.96;18.0;22.0;4.0;box;0.8;0.8;1390.0;1267.2;Moyennes bibliographie;
+Scenedesmus lefevrii;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5837.0;SCELEF;82466.0;;;;;colonie;ok;334.93332;10.0;4.0;4.0;trel;1.0;1.0;396.03;83.73;4.0;1584.11;334.93;10.0;16.0;4.0;box;0.8;0.8;660.0;512.0;Moyennes bibliographie;
+Scenedesmus lefevrii var. manguinii;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Scenedesmus lefevrii var. semiserratus;;Chlorophycées;20243.0;SCELEM;82467.0;;;;;colonie;ok;487.485;11.5;4.5;4.5;trel;1.0;1.0;510.79;121.87;4.0;2043.15;487.49;11.5;18.0;4.5;box;0.8;0.8;849.38;745.2;Moyennes bibliographie;
+Scenedesmus linearis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;KOMÁREK;1974;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;SCELIN;82591.0;SCE.LIN;Scenedesmus linearis;R0792;;colonie;ok;1885.0;12.0;5.0;5.0;trel;1.0;1.0;591.74;157.0;8.0;4733.91;1256.0;12.0;40.0;5.0;box;0.8;0.8;1850.0;1920.0;;
+Scenedesmus lunatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5839.0;SCELUN;82468.0;;;;;colonie;ok;197.82;10.5;3.0;3.0;trel;1.0;1.0;311.51;49.46;4.0;1246.05;197.82;10.5;12.0;3.0;box;0.7;0.7;552.86;264.6;Moyennes bibliographie;
+Scenedesmus magnus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5840.0;SCEMAG;82469.0;;;;;colonie;ok;4069.44;24.0;9.0;5.0;trel;1.0;1.0;1684.18;565.2;4.0;6736.73;2260.8;24.0;36.0;5.0;box;0.8;0.8;2910.0;3456.0;Moyennes bibliographie;
+Scenedesmus magnus erreur;Phytoplancton;Genre espèce;Scenedesmaceae;;;;MEYEN;1829;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;82470.0;SCE.MAG;Scenedesmus magnus;R0794;;colonie;erreur;7562.4;24.0;9.0;9.0;trel;1.0;1.0;2113.79;1017.36;4.0;8455.15;4069.44;24.0;36.0;9.0;box;0.7;0.7;4011.43;5443.2;;
+Scenedesmus oahuensis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9283.0;SCEOAH;82475.0;SCE.OAH;;;;colonie;ok;521.2;11.0;4.0;4.0;trel;1.0;1.0;434.69;92.11;4.0;1738.75;368.43;11.0;16.0;4.0;box;0.8;0.8;710.0;563.2;;
+Scenedesmus obliquus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(TURPIN) KÜTZING;1834;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5843.0;SCEOBL;82598.0;SCE.OBL;;;;colonie;ok;387.3;10.0;4.3;4.3;trel;1.0;1.0;425.73;96.76;4.0;1702.92;387.06;10.0;17.2;4.3;box;0.8;0.8;722.4;591.68;;
+Scenedesmus obtusus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5844.0;SCEOBT;82471.0;;;;;colonie;ok;1657.92;11.0;6.0;6.0;trel;1.0;1.0;652.03;207.24;8.0;5216.25;1657.92;11.0;48.0;6.0;box;0.8;0.8;2205.0;2534.4;Moyennes bibliographie;
+Scenedesmus obtusus f. alternans;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;SCEOAL;82472.0;;;;;colonie;ok;1657.92;11.0;6.0;6.0;trel;1.0;1.0;652.03;207.24;8.0;5216.25;1657.92;11.0;48.0;6.0;box;0.8;0.8;2205.0;2534.4;Moyennes bibliographie;
+Scenedesmus opoliensis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;P.G.RICHTER;1896;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5845.0;SCEOPO;82575.0;SCE.OPO;;;;colonie;ok;4021.0;20.0;8.0;8.0;trel;1.0;1.0;1567.81;669.87;4.0;6271.23;2679.47;20.0;32.0;8.0;box;0.7;0.7;3017.14;3584.0;;
+Scenedesmus opoliensis var. carinatus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Scenedesmus carinatus;;Chlorophycées;5846.0;SCECAR;82473.0;;;;;colonie;ok;758.8333;14.5;5.0;5.0;trel;1.0;1.0;712.86;189.71;4.0;2851.46;758.83;14.5;20.0;5.0;box;0.7;0.7;1321.43;1015.0;Moyennes bibliographie;
+Scenedesmus ovalternus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;CHODAT;1926;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;SCEOVA;82476.0;;;;;colonie;ok;972.87665;11.0;6.5;6.5;trel;1.0;1.0;706.37;243.22;4.0;2825.47;972.88;11.0;26.0;6.5;box;0.7;0.7;1504.29;1301.3;;
+Scenedesmus pannonicus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5847.0;SCEPAN;82453.0;;;;;colonie;ok;2797.74;16.5;9.0;4.0;trel;1.0;1.0;1099.31;310.86;4.0;4397.26;1243.44;16.5;36.0;4.0;box;0.8;0.8;2010.0;1900.8;Moyennes bibliographie;
+Scenedesmus parisiensis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5848.0;SCEPAR;82476.0;SCE.PAR;;;;colonie;ok;746.2;11.0;4.5;4.5;trel;1.0;1.0;489.02;116.57;4.0;1956.09;466.29;11.0;18.0;4.5;box;0.8;0.8;821.25;712.8;;
+Scenedesmus pecsensis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20244.0;SCEPEC;82474.0;;;;;colonie;ok;113.04;6.0;3.0;3.0;trel;1.0;1.0;181.64;28.26;4.0;726.58;113.04;6.0;12.0;3.0;box;0.8;0.8;315.0;172.8;Moyennes bibliographie;
+scenedesmus praetervisus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;Chodat;1926;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5852.0;SCEPRA;82483.0;SCE.PRA;;;;colonie;ok;801.99524;13.9;5.25;5.25;trel;1.0;1.0;717.9643;200.49881;4.0;2871.8572;801.99524;13.9;21.0;5.25;box;0.8;0.8;1187.8125;1225.98;Moyennes bibliographie;
+Scenedesmus protuberans;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5853.0;SCEPRO;82477.0;;;;;colonie;ok;1733.28;23.0;6.0;6.0;trel;1.0;1.0;1350.84;433.32;4.0;5403.36;1733.28;23.0;24.0;6.0;box;0.6;0.6;2780.0;1987.2;Moyennes bibliographie;
+Scenedesmus pulloideus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;10193.0;SCEPUL;82595.0;SCE.PUL;Scenedesmus;R0811;;colonie;ok;157.1;12.0;2.5;2.5;trel;1.0;1.0;295.87;39.25;4.0;1183.48;157.0;12.0;10.0;2.5;box;0.8;0.8;437.5;240.0;;
+Scenedesmus quadricauda;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(TURPIN) BRÉBISSON sensu CHODAT;1913;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;4757.0;SCEQUA;82510.0;SCE.QUA;Scenedesmus quadricauda;R0806;;colonie;ok;1922.7;17.0;6.0;6.0;trel;1.0;1.0;1001.0;320.28;4.0;4004.0;1281.12;17.0;24.0;6.0;box;0.7;0.7;1868.57;1713.6;;
+Scenedesmus semipulcher;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5857.0;SCESEM;82597.0;SCE.SEM;;;;colonie;ok;890.6;14.0;4.5;4.5;trel;1.0;1.0;619.76;148.37;4.0;2479.04;593.46;14.0;18.0;4.5;box;0.8;0.8;990.0;907.2;;
+Scenedesmus serratus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5858.0;SCESER;82454.0;;;;;colonie;ok;732.6667;14.0;5.0;4.0;trel;1.0;1.0;622.05;146.53;4.0;2488.22;586.13;14.0;20.0;4.0;box;0.9;0.9;924.44;1008.0;Moyennes bibliographie;
+Scenedesmus smithii;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5860.0;SCESMI;82478.0;;;;;colonie;ok;1473.7067;11.0;8.0;5.0;trel;1.0;1.0;717.63;230.27;4.0;2870.51;921.07;11.0;32.0;5.0;box;0.7;0.7;1620.0;1232.0;Moyennes bibliographie;
+Scenedesmus sp.;Phytoplancton;Genre espèce;Scenedesmaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;SCESPX;82500.0;SCE.SPX;Scenedesmus;R0811;;colonie;ok;311.0;11.0;3.0;3.0;trel;1.0;1.0;326.02;51.81;4.0;1304.06;207.24;11.0;12.0;3.0;box;0.8;0.8;502.5;316.8;;
+Scenedesmus spinosus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;CHODAT;1913;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9286.0;SCESPI;82540.0;SCE.SPI;Scenedesmus;R0811;;colonie;ok;1099.6;14.0;5.0;5.0;trel;1.0;1.0;688.62;183.17;4.0;2754.49;732.67;14.0;20.0;5.0;box;0.8;0.8;1125.0;1120.0;;
+Scenedesmus tibiscensis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20246.0;SCETIB;82455.0;;;;;colonie;ok;2571.1367;17.0;8.5;4.0;trel;1.0;1.0;1083.04;302.49;4.0;4332.15;1209.95;17.0;34.0;4.0;box;0.8;0.8;1955.0;1849.6;Moyennes bibliographie;
+Scenedesmus verrucosus;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Scenedesmus arcuatus var. granulatus;;Chlorophycées;5863.0;SCEVER;82479.0;;;;;colonie;ok;402.705;9.5;4.5;4.0;trel;1.0;1.0;400.68;89.49;4.0;1602.72;357.96;9.5;18.0;4.0;box;0.8;0.8;702.5;547.2;Moyennes bibliographie;
+Schroederia antillarum;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;;;;Chlorophycées;20247.0;SCRANT;86212.0;;;;;cellule;ok;9.42;9.0;2.0;2.0;doco;1.0;1.0;178.71;9.42;1.0;178.71;9.42;;2.0;;;;;;;Moyennes bibliographie;
+Schroederia indica;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;;;;Chlorophycées;5865.0;SCRIND;86213.0;;;;;cellule;ok;334.93332;20.0;8.0;5.0;doco;1.0;1.0;1294.15;209.33;1.0;1294.15;209.33;;;;;;;;;Moyennes bibliographie;
+Schroederia setigera;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(SCHRÖDER) LEMMERMANN;1898;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5867.0;SCRSET;86210.0;SCR.SET;Schroederia setigera;R0820;;cellule;ok;261.66666;40.0;5.0;5.0;doco;1.0;1.0;1953.01;261.67;1.0;1953.01;261.67;;;;;;;;;;
+Scotiellocystoidaceae ;Phytoplancton;Famille;Chlamydomonadales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Selenastrum capricornutum;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5870.0;SELCAP;86410.0;SEL.CAP;;;;cellule;ok;17.0;5.85;1.9;1.9;ell;1.0;1.0;112.32;11.05;1.0;112.32;11.05;;;;;;;;;;
+Selenochloris quadriloba;Phytoplancton;Genre espèce;Polyblepharidaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5984.0;SECQUA;86211.0;SEC.QUA;Chlorophyceae sp.;R0905;;cellule;ok;110.0;14.0;4.0;2.2;ell;0.9;0.9;486.34;58.03;1.0;486.34;58.03;;;;;;;;;;
+Sellaphora bacillum;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Navicula bacillum;;Diatomées;8440.0;SEABAC;71411.0;SEA.BAC;;;SEBA;cellule;ok;2129.0;60.0;15.0;2.5;box;0.9;0.9;2416.67;2025.0;1.0;2416.67;2025.0;;;;;;;;;Valeurs OMNIDIA;
+Sellaphora pupula;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Navicula pupula;;Diatomées;8444.0;SEAPUP;71410.0;;;;SPUP;cellule;ok;1183.0;50.0;12.5;2.0;box;0.9;0.9;1666.67;1125.0;1.0;1666.67;1125.0;;;;;;;;;Valeurs OMNIDIA;
+Sellaphora rostrata;Phytoplancton;Genre espèce;Naviculaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Navicula pupula;;Diatomées;28430.0;;71412.0;SEA.ROS;;;SRTR;cellule;ok;1183.0;50.0;12.5;2.0;box;0.9;0.9;1666.67;1125.0;1.0;1666.67;1125.0;;;;;;;;;Valeurs OMNIDIA;
+Siderocelis minor;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;;;;Chlorophycées;20248.0;SIDMIN;81623.0;;;;;cellule;ok;65.416664;5.0;5.0;5.0;ell;1.0;1.0;255.15;65.42;1.0;255.15;65.42;;;;;;;;;Moyennes bibliographie;
+Siderocelis oblonga;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;;;;Chlorophycées;20249.0;SIDOBL;81624.0;;;;;cellule;ok;23.55;5.0;3.0;3.0;ell;1.0;1.0;153.09;23.55;1.0;153.09;23.55;;;;;;;;;Moyennes bibliographie;
+Siderocelis ornata;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;;;;Chlorophycées;5873.0;SIDORN;81625.0;;;;;cellule;ok;188.4;10.0;6.0;6.0;ell;1.0;1.0;594.04;188.4;1.0;594.04;188.4;;;;;;;;;Moyennes bibliographie;
+Siderocelis sp.;Phytoplancton;Genre espèce;Oocystaceae;;;espèce;;;;;;;Chlorophycées;;SIDSPX;81626.0;;;;;cellule;ok;50.24;6.0;4.0;4.0;ell;1.0;1.0;242.19;50.24;1.0;242.19;50.24;;;;;;;;;Moyennes bibliographie;
+Skeletonemaceae;Phytoplancton;Famille;Thalassiosirales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Skeletonema cf subsalsum;Phytoplancton;Genre espèce;Skeletonemaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70010.0;SKE.SUB;;;SKSS;filament;ok;169.6;12.0;3.0;3.0;tub;1.0;1.0;127.17;84.78;2.0;254.34;169.56;24.0;3.0;3.0;tub;1.0;1.0;240.21;169.56;;
+Snowella arachnoidea;Phytoplancton;Genre espèce;Merismopediaceae;;;;Komárek & Hindák;2007;;;;;;9721.0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Snowella lacustris;Phytoplancton;Genre espèce;Merismopediaceae;;;;(CHODAT) KOMÁREK & HINDÁK;1988;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;Gomphosphaeria lacustris;;Cyanobactéries;6336.0;SNOLAC;11601.0;SNO.LAC;Snowella lacustris;R1510;;filament;ok;282.6;3.5;3.0;3.0;trel;1.0;1.0;110.77;16.49;50.0;5538.62;824.25;40.0;40.0;40.0;ell;1.0;1.0;15624.05;33493.33;;
+Snowella rosea;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;Gomphosphaeria rosea;;Cyanobactéries;20250.0;SNOROS;11602.0;;;;;colonie;ok;7200.0;3.5;3.0;3.0;trel;1.0;1.0;110.77;16.49;20.0;2215.45;329.7;40.0;40.0;40.0;sphe;1.0;1.0;5024.0;33493.33;Moyennes bibliographie;
+Snowella septentrionalis;Phytoplancton;Genre espèce;Merismopediaceae;;;;Komarek et Hindak;1988;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;9724.0;SNOSEP;11603.0;;;;;colonie;ok;16.746666;2.0;2.0;2.0;sphe;1.0;1.0;12.56;4.19;4.0;50.24;16.75;10.0;10.0;10.0;sphe;0.5;1.0;314.0;261.67;Moyennes bibliographie;
+Snowella sp.;Phytoplancton;Genre espèce;Merismopediaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;SNOSPX;11600.0;SNO.SPX;Pannus spumosus;R1514;;colonie;ok;452.16;2.0;2.0;2.0;trel;1.0;1.0;46.6;4.19;100.0;4659.88;418.67;12.0;12.0;12.0;ell;0.5;1.0;1420.17;452.16;;
+Sphaerellopsis aulata;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;;;;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;6056.0;SPHAUL;89700.0;SPH.AUL;;;;cellule;ok;890.2;21.0;9.0;9.0;ell;1.0;1.0;1851.26;890.19;1.0;1851.26;890.19;;;;;;;;;;
+Sphaerocystis planctonica;Phytoplancton;Genre espèce;Palmellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5879.0;SPEPLA;81112.0;;;;;colonie;ok;261.66666;5.0;5.0;5.0;ell;1.0;1.0;255.15;65.42;4.0;1020.59;261.67;25.0;25.0;25.0;sphe;0.2;0.2;9812.5;1635.42;Aiguebelette 28-09-09;
+Sphaerocystis schroeteri;Phytoplancton;Genre espèce;Palmellaceae;;;;CHODAT;1897;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5880.0;SPESCH;81110.0;SPE.SCH;Sphaerocystis schroeteri;R0993;;colonie;ok;1047.2;5.0;5.0;5.0;ell;1.0;1.0;255.15;65.42;16.0;4082.37;1046.67;60.0;60.0;60.0;sphe;0.1;0.1;113040.0;11304.0;;
+Sphaerocystis schroeteri cellule isolée;Phytoplancton;Genre espèce;Palmellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;81111.0;;Sphaerocystis schroeteri;R0993;;cellule;ok;512.0;8.0;8.0;8.0;ell;1.0;1.0;637.8;267.95;1.0;637.8;267.95;;;;;;;;;;
+Sphaeroeca volvox;Phytoplancton;Genre espèce;Ochrophyta;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;20252.0;SRCVOL;53100.0;;;;;cellule;ok;157080.0;10.0;10.0;10.0;ell;1.0;1.0;990.07;523.33;300.0;297021.4;157000.0;100.0;100.0;100.0;sphe;0.2;1.0;31400.0;104666.67;;
+Sphaeropleales;Phytoplancton;Ordre;Chlorophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Spirogyra sp.;Phytoplancton;Genre espèce;Zygnemataceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;SPISPX;90700.0;SPI.SPX;Spirogyra;R1343;;cellule;ok;42411.5;60.0;30.0;30.0;tub;1.0;1.0;7065.0;42390.0;1.0;7065.0;42390.0;;;;;;;;;;
+Spirogyra sp1;Phytoplancton;Genre espèce;Zygnemataceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90701.0;;;;;cellule;ok;35325.0;200.0;15.0;15.0;tub;1.0;1.0;9773.25;35325.0;13.0;127052.25;459225.0;200.0;15.0;15.0;tub;1.0;1.0;9773.25;35325.0;;
+Spirogyra sp2;Phytoplancton;Genre espèce;Zygnemataceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90702.0;;;;;cellule;ok;6898.6;52.0;13.0;13.0;tub;1.0;1.0;2387.97;6898.58;1.0;2387.97;6898.58;;;;;;;;;;
+Spondylosium clepsydra;Phytoplancton;Genre espèce;Desmidiaceae;;;;G. Beck;1926;;Bibliotheca phycologica 102;;;Zygophycées;20254.0;SPOCLE;94200.0;SPO.CLE;;;;cellule;ok;270.0;9.0;8.0;5.0;box;0.75;0.75;418.67;270.0;1.0;418.67;270.0;;;;;;;;;;
+Spondylosium pygmaeum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Bibliotheca phycologica 102;;;Zygophycées;20255.0;SPOPYG;94210.0;SPO.PYG;;;;cellule;ok;74.25;2.5;5.5;6.0;box;0.9;0.9;137.22;74.25;1.0;137.22;74.25;;;;;;;;;Moyennes bibliographie;
+Spondylosium secedens;Phytoplancton;Genre espèce;Desmidiaceae;;;;Archer;1861;;;;;Zygophycées;5444.0;SPOSEC;;;;;;cellule;;365.0;;;;;;;;;;;;;;;;;;;;;
+Spondylosium tetragonum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Bibliotheca phycologica 102;;;Zygophycées;;;94200.0;;;;;cellule;ok;245.7;14.0;6.5;3.0;box;0.9;0.9;338.89;245.7;1.0;338.89;245.7;;;;;;;;;Moyennes bibliographie;
+Staurastrum avicula;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5451.0;STAAVI;90670.0;STA.AVI;Staurastrum avicula;R1278;;cellule;ok;5000.0;23.0;23.0;23.0;ell;1.0;1.0;5178.22;6367.4;1.0;5178.22;6367.4;;;;;;;;;;
+Staurastrum cingulum;Phytoplancton;Genre espèce;Desmidiaceae;;;;(W. & G.S.WEST) G.M.SMITH;1922;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5455.0;STACIN;90600.0;STA.CIN;Staurastrum cingulum;R1283;;cellule;ok;14476.5;24.0;24.0;24.0;ell;2.0;2.0;2818.38;14469.12;1.0;2818.38;14469.12;;;;;;;;;;
+Staurastrum dejectum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;STADEJ;90673.0;;;;;cellule;ok;10935.0;30.0;27.0;27.0;box;0.5;0.5;9396.0;10935.0;1.0;9396.0;10935.0;;;;;;;;;;
+Staurastrum furcatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5463.0;STAFUR;90615.0;STA.FUR;;;;cellule;ok;3697.7;23.0;16.0;16.0;ell;1.2;1.2;3001.87;3697.66;1.0;3001.87;3697.66;;;;;;;;;;
+Staurastrum furcigerum;Phytoplancton;Genre espèce;Desmidiaceae;;;;(BRÉBISSON in MENEGHINI) ARCHER;1861;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5464.0;STAFUC;90650.0;STA.FUC;;;;cellule;ok;16362.5;25.0;25.0;25.0;ell;2.0;2.0;3057.4;16354.17;1.0;3057.4;16354.17;;;;;;;;;;
+Staurastrum hexacerum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5466.0;STAHEX;90616.0;STA.HEX;;;;cellule;ok;7218.8;19.0;22.0;22.0;ell;1.5;1.5;2731.8;7218.86;1.0;2731.8;7218.86;;;;;;;;;;
+Staurastrum johnsoni var. triradiatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;Staurastrum longiradiatus;;Zygophycées;;;90690.0;;Staurastrum;R1309;;cellule;ok;8377.6;20.0;20.0;20.0;ell;2.0;2.0;1959.76;8373.33;1.0;1959.76;8373.33;;;;;;;;;;
+Staurastrum messikomerii f. planctonicum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90660.0;;Staurastrum;R1309;;cellule;ok;8377.6;20.0;20.0;20.0;ell;2.0;2.0;1959.76;8373.33;1.0;1959.76;8373.33;;;;;;;;;;
+Staurastrum paradoxum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5481.0;STAPAR;90661.0;;;;;cellule;ok;2512.0;12.5;16.0;5.0;ell;1.5;1.5;932.59;785.0;1.0;932.59;785.0;;;;;;;;;Moyennes bibliographie;
+Staurastrum pingue;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;;;;Zygophycées;5482.0;STAPIN;90664.0;;;;;cellule;ok;14372.042;65.0;65.0;65.0;ell;0.1;0.1;412192.7;14372.04;1.0;412192.7;14372.04;;;;;;;;;Moyennes bibliographie;
+Staurastrum planctonicum var. bulbosum;Phytoplancton;Genre espèce;Desmidiaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;20260.0;STAPLB;90671.0;;;;;cellule;ok;71533.125;45.0;45.0;25.0;ell;1.5;1.5;10500.46;39740.63;1.0;10500.46;39740.63;;;;;;;;;Moyennes bibliographie;
+Staurastrum proboscideum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5484.0;STAPRO;90662.0;;;;;cellule;ok;43523.934;40.5;37.0;15.0;ell;1.5;1.5;7220.34;17644.84;1.0;7220.34;17644.84;;;;;;;;;Moyennes bibliographie;
+Staurastrum pseudotetracerum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;20261.0;STAPSE;90663.0;;;;;cellule;ok;6280.0;20.0;20.0;10.0;ell;1.5;1.5;2024.79;3140.0;1.0;2024.79;3140.0;;;;;;;;;Moyennes bibliographie;
+Staurastrum punctulatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5485.0;STAPUN;90630.0;STA.PUN;;;;cellule;ok;2488.1;33.0;12.0;12.0;ell;1.0;1.0;3869.33;2486.88;1.0;3869.33;2486.88;;;;;;;;;;
+Staurastrum sebaldii;Phytoplancton;Genre espèce;Desmidiaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90672.0;;;;;cellule;ok;22666.875;75.0;82.5;35.0;ell;0.2;0.2;225371.44;22666.88;1.0;225371.44;22666.88;;;;;;;;;Moyennes bibliographie;
+Staurastrum sebaldii var. ornatum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90610.0;;Staurastrum sebaldii;R1307;;cellule;ok;14476.5;24.0;24.0;24.0;ell;2.0;2.0;2818.38;14469.12;1.0;2818.38;14469.12;;;;;;;;;;
+Staurastrum sebaldii var. ornatum f quadriradiata;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90620.0;;Staurastrum sebaldii;R1307;;cellule;ok;14476.5;24.0;24.0;24.0;ell;2.0;2.0;2818.38;14469.12;1.0;2818.38;14469.12;;;;;;;;;;
+Staurastrum sp. Annecy 2004;Phytoplancton;Genre espèce;Desmidiaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90631.0;;;;;cellule;ok;2552.5;25.0;15.0;13.0;ell;1.0;1.0;3429.53;2551.25;1.0;3429.53;2551.25;;;;;;;;;;
+Staurastrum sp. (petit);Phytoplancton;Genre espèce;Desmidiaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;;90680.0;;;;;cellule;ok;4289.3;16.0;16.0;16.0;ell;2.0;2.0;1257.01;4287.15;1.0;1257.01;4287.15;;;;;;;;;;
+Staurastrum teliferum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5494.0;STATEL;90617.0;STA.TEL;;;;cellule;ok;21875.5;34.0;32.0;32.0;ell;1.2;1.2;8858.1;21864.45;1.0;8858.1;21864.45;;;;;;;;;;
+Staurodesmus cuspidatus;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5501.0;STDCUS;94102.0;;;;;cellule;ok;6716.6562;25.0;18.5;5.0;ell;1.5;1.5;2103.45;1815.31;1.0;2103.45;1815.31;;;;;;;;;Moyennes bibliographie;
+Staurodesmus dejectus;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5502.0;STDDEJ;94101.0;STD.DEJ;;;;cellule;ok;1047.2;20.0;20.0;5.0;ell;1.0;1.0;2710.98;1046.67;1.0;2710.98;1046.67;;;;;;;;;;
+Staurodesmus incus;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Staurodesmus incus f. minor;Phytoplancton;Genre espèce;Desmidiaceae;;;;West & West;;;Ruper Lenzenberg, Bibliotheca Phycologica band 102. p163;;;Zygophycées;;;90619.0;;;;;cellule;ok;252.0;12.0;10.0;3.0;box;0.7;0.7;531.43;252.0;1.0;531.43;252.0;;;;;;;;;Moyenne sur Lac Cornu 2010;
+Staurodesmus patens;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5507.0;STDPAT;90618.0;STD.PAT;;;;cellule;ok;7803.7;23.0;18.0;18.0;ell;2.0;2.0;2026.26;7799.76;1.0;2026.26;7799.76;;;;;;;;;;
+Staurodesmus sp.;Phytoplancton;Genre espèce;Desmidiaceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;STDSPX;94100.0;;;;;cellule;ok;14718.75;30.0;25.0;10.0;ell;1.5;1.5;3608.33;5887.5;1.0;3608.33;5887.5;;;;;;;;;Données Jean-Claude Druart;
+Staurodesmus spencerianus;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;20264.0;STDSPE;94103.0;;;;;cellule;ok;5100.93;18.0;19.0;5.0;ell;1.5;1.5;1554.82;1342.35;1.0;1554.82;1342.35;;;;;;;;;Moyennes bibliographie;
+Stauroneidaceae;Phytoplancton;Famille;Naviculales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Stauroneis anceps;Phytoplancton;Genre espèce;Stauroneidaceae;;;;EHRENBERG;1843;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8451.0;STOANC;75010.0;STO.ANC;;;STAN;cellule;ok;2515.5;43.0;13.0;5.0;box;0.9;0.9;1864.44;2515.5;1.0;1864.44;2515.5;;;;;;;;;;
+Staurosira brevistriata;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;28498.0;;70658.0;STA.BRE;;;SBRV;cellule;ok;525.0;17.5;7.5;5.0;box;0.8;0.8;640.63;525.0;1.0;640.63;525.0;;;;;;;;;;
+Staurosira construens;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6761.0;STSCON;70657.0;;;;SCON;cellule;ok;441.0;19.5;7.0;3.2307692;box;0.7;0.7;634.62;308.7;1.0;634.62;308.7;;;;;;;;;Valeurs OMNIDIA;
+Staurosira leptostauron;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;18700.0;STSLEP;72151.0;;;;SSLE;cellule;ok;562.5;15.0;12.5;5.0;box;0.6;0.6;1083.33;562.5;1.0;1083.33;562.5;;;;;;;;;Valeurs OMNIDIA;
+Staurosira mutabilis;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;24475.0;;70654.0;STA.MUT;;;SSMU;cellule;ok;80.0;10.0;4.0;2.5;box;0.8;0.8;187.5;80.0;1.0;187.5;80.0;;;;;;;;;;
+Staurosira pinnata;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;STSPIN;70655.0;STA.PIN;;;SRPI;cellule;ok;80.0;10.0;4.0;2.5;box;0.8;0.8;187.5;80.0;1.0;187.5;80.0;;;;;;;;;;
+Staurosira sp.;Phytoplancton;Genre espèce;Fragilariaceae;;;espèce;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Staurosirella pinnata;Phytoplancton;Genre espèce;Fragilariaceae;;;;EHRENBERG;1843;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;STUPIN;70651.0;;;;SPIN;cellule;ok;80.0;10.0;4.0;2.5;box;0.8;0.8;187.5;80.0;1.0;187.5;80.0;;;;;;;;;;
+Stelexomonas dichotomus;Phytoplancton;Genre espèce;Salpingoecidae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;;;55001.0;;Stelexomonas dichotomus;R1365;;cellule;ok;56.0;20.0;3.0;3.0;ell;1.0;1.0;587.93;94.2;1.0;587.93;94.2;;;;;;;;;;
+Stephanodiscaceae;Phytoplancton;Famille;Thalassiosirales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Stephanodiscus alpinus;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;HUSTEDT;1942;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8738.0;STEALP;70330.0;STE.ALP;Stephanodiscus alpinus;R0076;SALP;cellule;ok;883.6;15.0;15.0;5.0;box;1.0;1.0;750.0;1125.0;1.0;750.0;1125.0;;;;;;;;;;
+Stephanodiscus binderanus;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;(KÜTZING) WILLI KRIEGER;1927;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8741.0;STEBIN;70130.0;STE.BIN;Stephanodiscus binderanus;R0078;SBIN;cellule;ok;505.4;8.7;8.6;8.6;box;1.0;1.0;447.2;643.45;1.0;447.2;643.45;;;;;;;;;;
+Stephanodiscus hantzschii;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;GRUNOW;1880;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8746.0;STEHAN;70131.0;STE.HAN;;;SHAN;cellule;ok;601.0156;17.5;17.5;2.5;tub;1.0;1.0;971.44;4207.11;1.0;971.44;4207.11;;;;;;;;;Mesures Omnidia;
+Stephanodiscus hantzschii f. tenuis;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;STETEU;70132.0;;;;SHTE;cellule;ok;567.0;17.5;17.5;2.5;tub;1.0;1.0;971.44;4207.11;1.0;971.44;4207.11;;;;;;;;;Valeurs OMNIDIA;
+Stephanodiscus irregulare;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;70360.0;;;;STIR;cellule;ok;883.6;15.0;15.0;5.0;box;1.0;1.0;750.0;1125.0;1.0;750.0;1125.0;;;;;;;;;;
+Stephanodiscus minutulus;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;(KÜTZING) CLEVE & MOELLER;1882;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8753.0;STEMIN;70350.0;STE.MIN;Stephanodiscus minutulus;R0082;STMI;cellule;ok;49.1;5.0;5.0;2.5;box;1.0;1.0;100.0;62.5;1.0;100.0;62.5;;;;;;;;;;
+Stephanodiscus neoastrae;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8754.0;STENEO;70310.0;;Stephanodiscus neoastraea;R0083;SNEO;cellule;ok;6773.3;28.0;28.0;11.0;box;1.0;1.0;2800.0;8624.0;1.0;2800.0;8624.0;;;;;;;;;;
+Stephanodiscus neoastraea;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8754.0;STENEO;70310.0;;Stephanodiscus neoastraea;R0083;SNEO;cellule;ok;6773.3;28.0;28.0;11.0;box;1.0;1.0;2800.0;8624.0;1.0;2800.0;8624.0;;;;;;;;;;
+Stephanodiscus parvus;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;;;;Diatomées;8756.0;STEPAR;70351.0;;;;SPAV;cellule;ok;49.1;5.0;5.0;2.5;box;1.0;1.0;100.0;62.5;1.0;100.0;62.5;;;;;;;;;;
+Stephanodiscus sp.;Phytoplancton;Genre espèce;Stephanodiscaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;STESPX;70300.0;STE.SPX;Stephanodiscus;R0086;STSP;cellule;ok;4908.7;25.0;25.0;10.0;box;1.0;1.0;2250.0;6250.0;1.0;2250.0;6250.0;;;;;;;;;;
+Stephanodiscus tenuis;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Stephanodiscus hantzschii var. tenuis;;Diatomées;8761.0;STETEN;70370.0;STE.TEN;;;STTU;cellule;ok;452.4;12.0;12.0;4.0;box;1.0;1.0;480.0;576.0;1.0;480.0;576.0;;;;;;;;;;
+Stichococcus bacillaris;Phytoplancton;Genre espèce;Prasiolaceae;;;;(NÄGELI) NÄGELI;1849;;John, D.M. (2002). Orders Chaetophorales, Klebshormidiales, Microsporales, Ulotrichales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 433-468. Cambridge: Cambridge University Press.;;;Chlorophycées;6004.0;STCBAC;89900.0;STC.BAC;;;;cellule;ok;47.0;12.0;2.5;2.5;tub;1.0;1.0;104.01;58.88;1.0;104.01;58.88;;;;;;;;;détermination dans le Bourget et Léman pas certaine;
+Stichococcus mirabilis;Phytoplancton;Genre espèce;Prasiolaceae;;;;Lagerheim;1893;;Starmach Ulotrichales;;;Chlorophycées;;STCMIR;89901.0;;;;;cellule;;78.5;25.0;2.0;2.0;tub;1.0;1.0;489.18362;52.333332;30.0;14675.509;423.9;100.0;3.0;3.0;tub;1.0;1.0;956.13;706.5;;
+Stichogloea olivacea;Phytoplancton;Genre espèce;Phaeothamniaceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Stichogloea olivacea var. sphaerica;Phytoplancton;Genre espèce;Phaeothamniaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6202.0;STGSPH;56100.0;STG.SPH;Stichogloea olivacea;R1058;;colonie;ok;1050.0;6.0;6.0;6.0;ell;1.0;1.0;363.29;113.04;12.0;4359.46;1356.48;24.0;24.0;6.0;trel;0.7;1.0;3898.74;1266.05;;
+stichogloea olivacea var. sphaerica cellule isolee;Phytoplancton;Genre espèce;Phaeothamniaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;56102.0;;Stichogloea olivacea;;;cellule;ok;113.04;6.0;6.0;6.0;ell;1.0;1.0;363.28802;113.04;1.0;363.28802;113.04;;;;;;;;;;
+Stokesiella epipyxis;Phytoplancton;Genre espèce;Dinobryaceae;;;;Pascher;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;56101.0;;;;;cellule;ok;389.64908;16.0;6.8;6.8;trel;0.9;0.9;1187.17;348.46;1.0;1187.17;348.46;;;;;;;;;;
+Stomatocyste 114;Phytoplancton;Genre espèce;Chrysophyceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51816.0;;;;;cellule;ok;96.9;5.7;5.7;5.7;ell;1.0;1.0;328.81;96.92;1.0;328.81;96.92;;;;;;;;;;
+Stomatocyste 130;Phytoplancton;Genre espèce;Chrysophyceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51827.0;;;;;cellule;ok;65.175;5.0;5.0;5.0;ell;0.99;1.0;255.15;64.76;1.0;255.15;64.76;;;;;;;;;;
+Stomatocyste 153;Phytoplancton;Genre espèce;Chrysophyceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51817.0;;Chrysophyceae;R1171;;cellule;ok;1950.0;12.5;12.5;12.5;ell;1.0;1.0;1539.86;1022.14;1.0;1539.86;1022.14;;;;;;;;;;
+Stomatocyste 219;Phytoplancton;Genre espèce;Chrysophyceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51818.0;;Chrysophyceae;R1171;;cellule;ok;2740.0;14.0;14.0;14.0;ell;1.0;1.0;1928.14;1436.03;1.0;1928.14;1436.03;;;;;;;;;;
+Stomatocyste 2 épines;Phytoplancton;Genre espèce;Chrysophyceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51823.0;;;;;cellule;ok;1266.0;13.43;13.4;13.4;ell;1.0;1.0;1771.47;1262.01;1.0;1771.47;1262.01;;;;;;;;;;
+Stomatocyste 3 épines;Phytoplancton;Genre espèce;Chrysophyceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51824.0;;;;;cellule;ok;1670.0;14.7;14.7;14.7;ell;1.0;1.0;2124.34;1662.38;1.0;2124.34;1662.38;;;;;;;;;;
+Stomatocyste 4 épines;Phytoplancton;Genre espèce;Chrysophyceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51821.0;;;;;cellule;ok;2028.0;15.7;15.7;15.7;ell;1.0;1.0;2421.17;2025.24;1.0;2421.17;2025.24;;;;;;;;;;
+Stomatocyste 5 épines;Phytoplancton;Genre espèce;Chrysophyceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51822.0;;;;;cellule;ok;2195.0;16.13;16.13;16.13;ell;1.0;1.0;2554.79;2196.25;1.0;2554.79;2196.25;;;;;;;;;;
+Stomatocyste 62;Phytoplancton;Genre espèce;Chrysophyceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51814.0;;;;;cellule;ok;1670.0;14.72;14.72;14.72;ell;1.0;1.0;2130.08;1669.17;1.0;2130.08;1669.17;;;;;;;;;;
+Stomatocyste 6 épines;Phytoplancton;Genre espèce;Chrysophyceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51819.0;;;;;cellule;ok;2953.0;17.75;17.75;17.8;ell;1.0;1.0;3094.92;2934.91;1.0;3094.92;2934.91;;;;;;;;;;
+Stomatocyste FR1;Phytoplancton;Genre espèce;Chrysophyceae;;;;;;;Systema Naturae (2000) - Taxonomicon;;;Chrysophycées;;;51816.0;;;;;cellule;ok;138.16;8.0;6.0;5.5;trel;1.0;1.0;458.68;138.16;1.0;458.68;138.16;;;;;;;;;Léman SHL2 2009 - n1;
+Stomatocyste sp.;Phytoplancton;Genre espèce;Chrysophyceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;;51815.0;;;;;cellule;ok;179.5;7.0;7.0;7.0;ell;1.0;1.0;490.83;179.5;1.0;490.83;179.5;;;;;;;;;;
+Strombomonas sp.;Phytoplancton;Genre espèce;Euglenaceae;;;espèce;;;;;;;Euglenophycées;;STRSPX;40600.0;;;;;cellule;ok;18840.0;40.0;30.0;20.0;ell;1.0;1.0;9882.01;12560.0;1.0;9882.01;12560.0;;;;;;;;;Données Jean-Claude Druart;
+Stylococcaceae;Phytoplancton;Famille;Hibberdiales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Surirella amphioxys;Phytoplancton;Genre espèce;Surirellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Surirella moelleriana;;Diatomées;18163.0;SURAMP;72121.0;;;;SAPH;cellule;ok;4320.0;67.5;16.0;5.0;box;0.8;0.8;3743.75;4320.0;1.0;3743.75;4320.0;;;;;;;;;Moyennes bibliographie;
+Surirellaceae;Phytoplancton;Famille;Surirellales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Surirella cf brebissonii;Phytoplancton;Genre espèce;Surirellaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;72125.0;SUR.BRE;;;BBRE;cellule;ok;840.0;24.0;10.0;5.0;box;0.7;0.7;1171.43;840.0;1.0;1171.43;840.0;;;;;;;;;;
+Surirella elegans;Phytoplancton;Genre espèce;Surirellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8502.0;SURELE;72120.0;SUR.ELE;;;SELE;cellule;ok;334080.0;174.0;64.0;50.0;box;0.6;0.6;76786.67;334080.0;1.0;76786.67;334080.0;;;;;;;;;;
+Surirellales;Phytoplancton;Ordre;Bacillariophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Surirella linearis;Phytoplancton;Genre espèce;Surirellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8507.0;SURLIN;72150.0;;;;SLIN;cellule;ok;1024.0;40.0;8.0;4.0;box;0.8;0.8;1280.0;1024.0;1.0;1280.0;1024.0;;;;;;;;;;
+Surirella minuta;Phytoplancton;Genre espèce;Surirellaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8512.0;SURMIN;72140.0;SUR.MIN;Surirella;R0435;SUMI;cellule;ok;1160.0;29.0;10.0;5.0;box;0.8;0.8;1212.5;1160.0;1.0;1212.5;1160.0;;;;;;;;;;
+Surirella ovata;Phytoplancton;Genre espèce;Surirellaceae;;;;KÜTZING;1844;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8516.0;SUROVT;72110.0;SUR.OVT;Surirella ovata;R0433;SOVA;cellule;ok;1008.0;30.0;14.0;4.0;box;0.6;0.6;1986.67;1008.0;1.0;1986.67;1008.0;;;;;;;;;;
+Surirella sp.;Phytoplancton;Genre espèce;Surirellaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;SURSPX;72130.0;SUR.SPX;Surirella;R0435;SURS;cellule;ok;3738.5;85.0;24.0;10.0;box;0.7;0.7;8942.86;14280.0;1.0;8942.86;14280.0;;;;;;;;;;
+Synechococcaceae;Phytoplancton;Famille;Chroococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Synechococcus ambiguus;Phytoplancton;Genre espèce;Synechococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;11313.0;;;;;cellule;ok;28.26;6.0;3.0;3.0;trel;1.0;1.0;181.64;28.26;1.0;181.64;28.26;;;;;;;;;;
+Synechococcus elongatus;Phytoplancton;Genre espèce;Synechococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6340.0;SYCELO;11310.0;SYC.ELO;Synechococcus;R1518;;cellule;ok;63.6;10.0;3.0;3.0;tub;1.0;1.0;108.33;70.65;1.0;108.33;70.65;;;;;;;;;;
+Synechococcus nidulans;Phytoplancton;Genre espèce;Synechococcaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;9726.0;SYCNID;11312.0;SYC.NID;;;;cellule;ok;3.5325;3.0;1.5;1.5;trel;1.0;1.0;48.45;3.53;1.0;48.45;3.53;;;;;;;;;Obs sur Bourget ech 5 - 2008 - FR;
+Synechococcus sp.;Phytoplancton;Genre espèce;Synechococcaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;SYCSPX;11311.0;SYC.SPX;;;;cellule;ok;1.0466666;2.0;1.0;1.0;trel;1.0;1.0;23.3;1.05;1.0;23.3;1.05;;;;;;;;;Mesure sur Annecy 2007;
+Synechocystis aquatilis;Phytoplancton;Genre espèce;Merismopediaceae;;;;SAUVAGEAU;1892;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;SYYAQU;11323.0;;;;;cellule;ok;97.0;5.7;5.7;5.7;sphe;1.0;1.0;102.02;96.92;1.0;102.02;96.92;;;;;;;;;;
+Synechocystis parvula;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;20271.0;SYYPAR;11321.0;;;;;cellule;ok;0.26794666;0.8;0.8;0.8;ell;1.0;1.0;10.86;0.27;1.0;10.86;0.27;;;;;;;;;Mesures effectuées sur lac Montriond 2007;
+Synechocystis septentrionalis;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;;;;Cyanobactéries;20272.0;SYYSEP;11325.0;;;;;cellule;ok;1149.7633;13.0;13.0;5.0;sphe;1.0;1.0;530.66;442.22;1.0;530.66;442.22;;;;;;;;;Moyennes bibliographie;
+Synechocystis sp. 2 µm;Phytoplancton;Genre espèce;Merismopediaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;11324.0;;;;;cellule;ok;4.1866665;2.0;2.0;2.0;sphe;1.0;1.0;12.56;4.19;1.0;12.56;4.19;;;;;;;;;Mesures effectuées sur le Léman fevrier 2008;
+Synechocystis sp. 4 µm;Phytoplancton;Genre espèce;Merismopediaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;11320.0;;;;;cellule;ok;33.493332;4.0;4.0;4.0;sphe;1.0;1.0;50.24;33.49;1.0;50.24;33.49;;;;;;;;;;
+Synedra sp.;Phytoplancton;Genre espèce;Fragilariaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;Ulnaria ulna;Diatomées;;SYNSPX;70653.0;;;;SYNS;cellule;ok;90.0;15.0;4.0;2.0;box;0.75;0.75;261.33;90.0;1.0;261.33;90.0;;;;;;;;;Données Jean-Claude Druart;
+Synurales;Phytoplancton;Ordre;Synurophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Synura sp.;Phytoplancton;Genre espèce;Mallomonadaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;SYUSPX;55000.0;SYU.SPX;;;;colonie;ok;17959.4;9.0;9.0;9.0;sphe;1.0;1.0;254.34;381.51;12.0;3052.08;4578.12;35.0;35.0;35.0;trel;0.8;1.2;9972.51;17950.33;;
+Synurophyceae;Phytoplancton;Classe;Ochrophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Tabellariaceae;Phytoplancton;Famille;Tabellariales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Tabellaria fenestrata;Phytoplancton;Genre espèce;Tabellariaceae;;;;(LYNGBYE) KÜTZING;1844;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6828.0;TABFEN;72230.0;TAB.FEN;;;TFEN;cellule;ok;1323.0;90.0;7.0;3.5;box;0.8;0.8;2423.75;1764.0;1.0;2423.75;1764.0;;;;;;;;;;
+Tabellaria flocculosa;Phytoplancton;Genre espèce;Tabellariaceae;;;;(ROTH) KÜTZING;1844;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6832.0;TABFLO;72220.0;TAB.FLO;Tabellaria flocculosa;R0442;TFLO;cellule;ok;1200.0;30.0;10.0;4.0;box;1.0;1.0;920.0;1200.0;1.0;920.0;1200.0;;;;;;;;;;
+Tabellaria flocculosa (lac);Phytoplancton;Genre espèce;Tabellariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;;72210.0;;Tabellaria flocculosa;R0442;TFLO;cellule;ok;1323.0;90.0;7.0;3.5;box;0.8;0.8;2423.75;1764.0;1.0;2423.75;1764.0;;;;;;;;;;
+Tabellariales;Phytoplancton;Ordre;Fragilariophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Teilingia excavata;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5512.0;TEIEXC;92010.0;TEI.EXC;Conjugatophyceae;R1334;;cellule;ok;534.4;12.0;9.0;9.0;tub;0.7;0.7;520.79;534.11;1.0;520.79;534.11;;;;;;;;;;
+Tetrachlorella alternans;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(G.M.SMITH) KORSHIKOV;1939;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9293.0;TCHALT;83910.0;TCH.ALT;Tetrachlorella alternans;R0840;;colonie;ok;904.8;12.0;6.0;6.0;ell;1.0;1.0;710.09;226.08;4.0;2840.34;904.32;20.0;20.0;6.0;sphe;0.7;0.7;1794.29;879.2;Moyennes bibliographie;
+Tetrachlorella incerta;Phytoplancton;Genre espèce;Scenedesmaceae;;;;Hindak;1977;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20273.0;TCHINC;83912.0;;;;;colonie;ok;113.04;6.0;3.0;3.0;trel;1.0;1.0;181.64;28.26;4.0;726.58;113.04;10.0;10.0;3.0;sphe;0.7;0.7;448.57;109.9;Moyennes bibliographie;
+Tetrachlorella ornata;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20274.0;TCHORN;83911.0;;;;;colonie;ok;828.96;11.0;6.0;6.0;ell;1.0;1.0;652.03;207.24;4.0;2608.12;828.96;18.0;18.0;6.0;sphe;0.7;0.7;1453.37;712.15;Moyennes bibliographie;
+Tetraedron caudatum;Phytoplancton;Genre espèce;Chlorellaceae;;;;(CORDA) HANSGIRG;1888;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5885.0;TEACAU;80840.0;TEA.CAU;Tetraedron caudatum;R0843;;cellule;ok;441.8;15.0;15.0;7.5;ell;0.5;0.5;3427.08;441.56;1.0;3427.08;441.56;;;;;;;;;;
+Tetraedron incus;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Tetraedron regulare var. incus;;Chlorophycées;5886.0;TEAINC;80841.0;;;;;cellule;ok;1988.1302;18.5;18.5;9.0;ell;0.6;0.6;4305.23;967.2;1.0;4305.23;967.2;;;;;;;;;Moyennes bibliographie;
+Tetraedron minimum;Phytoplancton;Genre espèce;Chlorellaceae;;;;(A.BRAUN) HANSGIRG;1888;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5888.0;TEAMIN;80820.0;TEA.MIN;Tetraedron minimum;R0848;;cellule;ok;2400.0;20.0;20.0;10.0;ell;0.6;0.6;5061.97;1256.0;1.0;5061.97;1256.0;;;;;;;;;;
+Tetraedron minimum f. tetralobulatum;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;Hydrobiologia 2007 - 586:107-116;;;Chlorophycées;;;80822.0;TEA.MTE;;;;cellule;ok;100.0;10.0;10.0;2.0;box;0.5;0.5;560.0;100.0;1.0;560.0;100.0;;;;;;;;;Moyennes bibliographie;
+Tetraedron minimum var. scrobiculatum;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5890.0;TEASCR;80821.0;TEA.SCR;Tetraedron minimum;R0848;;cellule;ok;1256.6;20.0;20.0;10.0;ell;0.6;0.6;5061.97;1256.0;1.0;5061.97;1256.0;;;;;;;;;;
+Tetraedron regulare;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5891.0;TEAREG;80842.0;;;;;cellule;ok;192.83525;8.5;8.5;8.5;ell;0.6;0.6;1197.63;192.84;1.0;1197.63;192.84;;;;;;;;;Moyennes bibliographie;
+Tetraedron sp.;Phytoplancton;Genre espèce;Chlorellaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;80890.0;;;;;cellule;ok;1458.0;18.0;18.0;9.0;ell;0.5;0.5;4924.87;763.02;1.0;4924.87;763.02;;;;;;;;;;
+Tetraedron triangulare;Phytoplancton;Genre espèce;Chlorellaceae;;;;KORSHIKOV;1953;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5893.0;TEATRI;80850.0;TEA.TRI;Tetraedron triangulare;R0858;;cellule;ok;190.9;9.0;9.0;9.0;ell;1.0;1.0;804.21;381.51;1.0;804.21;381.51;;;;;;;;;;
+Tetraedron trigonum;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9297.0;TEATRG;80843.0;;;;;cellule;ok;1831.248;18.0;18.0;9.0;ell;0.6;0.6;4104.06;915.62;1.0;4104.06;915.62;;;;;;;;;Moyennes bibliographie;
+Tetraselmis arnoldii;Phytoplancton;Genre espèce;Chlorodendraceae;;;;(Proskina-Lavrenko) Norris et al.;1980;;Susswasserflora 9;Carteria arnoldii;;Chlorophycées;20276.0;TESARN;80211.0;;;;;cellule;ok;854.865;13.5;11.0;11.0;ell;1.0;1.0;1461.65;854.87;1.0;1461.65;854.87;;;;;;;;;Moyennes bibliographie;
+Tetraselmis cordiformis;Phytoplancton;Genre espèce;Chlorodendraceae;;;;(CARTER) F.STEIN;1878;;Moestrup, Ø. (2002). Phylum Prasinophyta. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 281-286. Cambridge: Cambridge University Press.;;;Chlorophycées;5981.0;TESCOR;80210.0;TES.COR;Tetraselmis cordiformis;R0996;;cellule;ok;1131.0;18.0;15.0;8.0;ell;1.0;1.0;2086.46;1130.4;1.0;2086.46;1130.4;;;;;;;;;Moyennes bibliographie;
+Tetrasporaceae;Phytoplancton;Famille;Tetrasporales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Tetrasporales;Phytoplancton;Ordre;Chlorophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Tetrastrum elegans;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9299.0;TERELE;87102.0;;;;;colonie;ok;348.27832;5.5;5.5;4.0;sphe;1.0;1.0;94.99;63.32;4.0;379.94;253.29;11.0;11.0;4.0;box;0.7;0.7;597.14;338.8;Moyennes bibliographie;
+Tetrastrum heteracanthum;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5898.0;TERHET;87103.0;;;;;colonie;ok;718.0133;7.0;7.0;4.0;sphe;1.0;1.0;153.86;102.57;4.0;615.44;410.29;14.0;14.0;4.0;box;0.7;0.7;880.0;548.8;Moyennes bibliographie;
+Tetrastrum komarekii;Phytoplancton;Genre espèce;Scenedesmaceae;;;;HINDÁK;1977;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5900.0;TERKOM;87101.0;TER.KOM;;;;cellule;ok;137.2;8.0;5.0;3.4;ell;1.0;1.0;338.48;71.17;4.0;1353.94;284.69;12.0;12.0;3.4;box;0.7;0.7;644.57;342.72;;
+Tetrastrum punctatum;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5902.0;TERPUN;87104.0;;;;;colonie;ok;261.66666;5.0;5.0;5.0;ell;1.0;1.0;255.15;65.42;4.0;1020.59;261.67;12.0;12.0;5.0;box;0.7;0.7;754.29;504.0;Moyennes bibliographie;
+Tetrastrum staurogeniaeforme;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(SCHRÖDER) LEMMERMANN;1900;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5904.0;TERSTA;87100.0;TER.STA;Tetrastrum staurogeniaeforme;R0871;;filament;ok;261.8;5.0;5.0;5.0;ell;1.0;1.0;255.15;65.42;4.0;1020.59;261.67;20.0;20.0;5.0;box;0.7;0.7;1714.29;1400.0;;
+Tetrastrum triacanthum;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5905.0;TERTRA;87105.0;;;;;colonie;ok;3183.6982;11.5;11.5;4.0;sphe;1.0;1.0;415.27;276.84;4.0;1661.06;1107.37;30.0;30.0;4.0;box;0.7;0.7;3257.14;2520.0;Moyennes bibliographie;
+Tetrastrum triangulare;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;9300.0;TERTRI;87106.0;;;;;colonie;ok;261.66666;5.0;5.0;4.0;sphe;1.0;1.0;78.5;52.33;4.0;314.0;209.33;12.0;12.0;4.0;box;0.7;0.7;685.71;403.2;Moyennes bibliographie;
+Teubariaceae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Thalassiophysales;Phytoplancton;Ordre;Bacillariophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Thalassiosirales;Phytoplancton;Ordre;Coscinodiscophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Thalassiosira pseudonana;Phytoplancton;Genre espèce;Thallassiosiraceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8775.0;THAPSE;70380.0;;;;TPSN;cellule;ok;36.0;6.0;6.0;1.5;tub;1.0;1.0;116.57;169.56;1.0;116.57;169.56;;;;;;;;;Valeurs OMNIDIA;
+Thallassiosiraceae;Phytoplancton;Famille;Thalassiosirales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Thorakochloris nygaardii;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;;;;Chlorophycées;;THRNYG;88101.0;;;;;colonie;ok;348.27832;5.5;5.5;5.0;sphe;1.0;1.0;94.99;79.15;4.0;379.94;316.62;15.0;15.0;15.0;sphe;0.4;0.4;1766.25;706.5;Moyennes bibliographie;
+Thorakochloris tetras;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;;;;Chlorophycées;20278.0;THRTET;88100.0;;Korshikoviella limnetica;R0643;;colonie;ok;9840.0;13.5;13.5;13.5;ell;1.0;1.0;1793.85;1287.6;4.0;7175.4;5150.39;15.0;15.0;15.0;sphe;0.4;0.4;1766.25;706.5;;
+Trachelomonas abrupta;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;20279.0;TRAABR;40301.0;;;;;cellule;ok;1115.4196;29.5;8.5;8.0;ell;1.0;1.0;2379.76;1049.81;1.0;2379.76;1049.81;;;;;;;;;Moyennes bibliographie;
+Trachelomonas crebea;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;9753.0;TRACRE;40302.0;;;;;cellule;ok;3349.3333;25.0;16.0;16.0;ell;1.0;1.0;3913.47;3349.33;1.0;3913.47;3349.33;;;;;;;;;Moyennes bibliographie;
+Trachelomonas elegans;Phytoplancton;Genre espèce;Euglenaceae;;;;Conrad;1932;;Starmach K. Euglenoids;;;Euglenophycées;;;40305.0;;;;;cellule;;402.0;9.5;9.0;9.0;ell;1.0;1.0;847.62;402.71;1.0;847.62;402.71;;;;;;;;;Moyennes bibliographie;
+Trachelomonas globularis;Phytoplancton;Genre espèce;Euglenaceae;;;;(Awerinzew) Lemmermann;1970;;;;;Euglenophycées;;;40304.0;TRA.GLO;;;;cellule;ok;4605.3335;22.0;20.0;20.0;ell;1.0;1.0;4308.34;4605.33;1.0;4308.34;4605.33;;;;;;;;;Moyennes bibliographie;
+Trachelomonas hispida;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;6531.0;TRAHIS;40303.0;;;;;cellule;ok;9895.121;31.5;24.5;15.0;ell;1.0;1.0;6185.13;6058.24;1.0;6185.13;6058.24;;;;;;;;;Moyennes bibliographie;
+Trachelomonas sp.;Phytoplancton;Genre espèce;Euglenaceae;;;espèce;;;;Rosowski, J.R. (2003). Photosynthetic Euglenoids. In: Freshwater Algae of North Amerca, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 383-422. San Diego: Academic Press.;;;Euglenophycées;;TRASPX;40300.0;TRA.SPX;Trachelomonas;R1773;;cellule;ok;904.8;12.0;12.0;12.0;ell;1.0;1.0;1420.17;904.32;1.0;1420.17;904.32;;;;;;;;;;
+Trachelomonas volvocina;Phytoplancton;Genre espèce;Euglenaceae;;;;(EHRENBERG) EHRENBERG;1834;;Rosowski, J.R. (2003). Photosynthetic Euglenoids. In: Freshwater Algae of North Amerca, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 383-422. San Diego: Academic Press.;;;Euglenophycées;6544.0;TRAVOL;40310.0;TRA.VOL;Trachelomonas volvocina;R1776;;cellule;ok;1150.3;13.0;13.0;13.0;ell;1.0;1.0;1664.42;1149.76;1.0;1664.42;1149.76;;;;;;;;;;
+Trachelomonas volvocina var. subglobosa;Phytoplancton;Genre espèce;Euglenaceae;;;;;;;;;;Euglenophycées;20280.0;TRAVOS;40311.0;;;;;cellule;ok;1641.1733;16.0;14.0;14.0;ell;1.0;1.0;2199.76;1641.17;1.0;2199.76;1641.17;;;;;;;;;Moyennes bibliographie;
+Trebouxiaceae;Phytoplancton;Famille;Trebouxiales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Trebouxiales;Phytoplancton;Ordre;Trebouxiophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Trebouxiophyceae;Phytoplancton;Classe;Chlorophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Treubariaceae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Treubaria euryacantha;Phytoplancton;Genre espèce;Teubariaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;TREEUR;83024.0;;;;;cellule;ok;1595.4471;14.5;14.5;14.5;sphe;1.0;1.0;660.19;1595.45;1.0;660.19;1595.45;;;;;;;;;Moyennes bibliographie;
+Treubaria planctonica;Phytoplancton;Genre espèce;Teubariaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5909.0;TREPLA;83025.0;;;;;cellule;ok;523.3333;10.0;10.0;10.0;sphe;1.0;1.0;314.0;523.33;1.0;314.0;523.33;;;;;;;;;Moyennes bibliographie;
+Treubaria quadrispina;Phytoplancton;Genre espèce;Teubariaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5908.0;TREQUA;83021.0;TRE.QUA;;;;cellule;ok;402.0;50.0;3.2;3.2;ell;1.0;1.0;1561.61;267.95;1.0;1561.61;267.95;;;;;;;;;;
+Treubaria schmidlei;Phytoplancton;Genre espèce;Teubariaceae;;;;(SCHRÖDER) FOTT & KOVACIK;1975;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5910.0;TRESCH;83020.0;TRE.SCH;;;;cellule;ok;353.4;15.0;15.0;15.0;ell;0.2;0.2;11056.71;353.25;1.0;11056.71;353.25;;;;;;;;;;
+Treubaria setigera;Phytoplancton;Genre espèce;Teubariaceae;;;;(ARCHER) G.M.SMITH;1933;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5911.0;TRESET;83022.0;TRE.SET;Treubaria setigera;R0878;;cellule;ok;353.4;15.0;15.0;15.0;ell;0.2;0.2;11056.71;353.25;1.0;11056.71;353.25;;;;;;;;;;
+Treubaria triappendiculata;Phytoplancton;Genre espèce;Teubariaceae;;;;BERNARD;1908;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5913.0;TRETRI;83023.0;TRE.TRI;Treubaria triappendiculata;R0880;;cellule;ok;452.1;16.0;16.0;16.0;ell;0.2;0.2;12570.08;428.71;1.0;12570.08;428.71;;;;;;;;;;
+Treubaria varia;Phytoplancton;Genre espèce;Teubariaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20283.0;TREVAR;83010.0;;Treubaria setigera;R0878;;cellule;ok;179.6;7.0;7.0;7.0;ell;1.0;1.0;490.83;179.5;1.0;490.83;179.5;;;;;;;;;;
+Tribonema ambiguum;Phytoplancton;Genre espèce;Tribonemataceae;;;;;;;;;;Xantophycées;;;61101.0;;;;;filament;ok;1590.4;25.0;4.5;4.5;tub;1.0;1.0;385.04;397.41;4.0;1540.17;1589.63;100.0;4.5;4.5;tub;1.0;1.0;1444.79;1589.63;;
+Tribonema cf. ambiguum;Phytoplancton;Genre espèce;Tribonemataceae;;;espèce;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;;;61100.0;;Tribonema;R1868;;filament;ok;1590.4;25.0;4.5;4.5;tub;1.0;1.0;385.04;397.41;4.0;1540.17;1589.63;100.0;4.5;4.5;tub;1.0;1.0;1444.79;1589.63;;
+Tribonema microchloron var. cylindricum;Phytoplancton;Genre espèce;Tribonemataceae;;;;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;20286.0;TRIMCY;61110.0;;Tribonema;R1868;;filament;ok;804.2;8.0;3.2;3.2;tub;1.0;1.0;96.46;64.31;12.5;1205.76;803.84;100.0;3.2;3.2;tub;1.0;1.0;1020.88;803.84;;
+Tribonema minus;Phytoplancton;Genre espèce;Tribonemataceae;;;;Hazen;1902;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;;;61111.0;;;;;filament;ok;1962.5;8.0;5.0;5.0;tub;1.0;1.0;164.85;157.0;12.5;2060.63;1962.5;100.0;5.0;5.0;tub;1.0;1.0;1609.25;1962.5;Moyennes bibliographie;
+Tribonema sp.;Phytoplancton;Genre espèce;Tribonemataceae;;;espèce;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;;TRISPX;61120.0;TRI.SPX;Tribonema;R1868;;filament;ok;1133.5;8.0;3.8;3.8;tub;1.0;1.0;118.13;90.68;12.5;1476.59;1133.54;100.0;3.8;3.8;tub;1.0;1.0;1215.87;1133.54;;
+Tribonemataceae;Phytoplancton;Famille;Tribonematales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Tribonematales;Phytoplancton;Ordre;Xanthophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Trochiscia aciculifera;Phytoplancton;Genre espèce;Oocystaceae;;;;(Lagerh.) Hansg.;1888;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5919.0;TROACI;86502.0;;;;;cellule;ok;395.77084;25.0;5.5;5.5;ell;1.0;1.0;1345.25;395.77;1.0;1345.25;395.77;;;;;;;;;Moyennes bibliographie;
+Trochiscia granulata;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;20287.0;TROGRA;86510.0;;;;;cellule;ok;1767.0;15.0;15.0;15.0;ell;1.0;1.0;2211.34;1766.25;1.0;2211.34;1766.25;;;;;;;;;;
+Trochiscia planctonica;Phytoplancton;Genre espèce;Oocystaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5918.0;TROPLA;86500.0;;Chlorococcales;R0467;;cellule;ok;1767.2;15.0;15.0;15.0;ell;1.0;1.0;2211.34;1766.25;1.0;2211.34;1766.25;;;;;;;;;;
+Trochiscia sp.;Phytoplancton;Genre espèce;Oocystaceae;;;espèce;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;TROSPX;86501.0;;;;;cellule;ok;3052.08;18.0;18.0;18.0;ell;1.0;1.0;3177.8;3052.08;1.0;3177.8;3052.08;;;;;;;;;Données Jean-Claude Druart;
+Tychonema sp.;Phytoplancton;Genre espèce;Phormidiaceae;;;espèce;;;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;;TYCSPX;12000.0;;;;;filament;ok;5024.0;8.0;8.0;8.0;tub;1.0;1.0;301.44;401.92;12.5;3768.0;5024.0;100.0;8.0;8.0;tub;1.0;1.0;2612.48;5024.0;;
+Ulnaria acus;Phytoplancton;Genre espèce;Fragilariaceae;;;;(Kützing) Aboal in Aboal, Alvarez-Cobelas, Cambra & Ector;2003;;Aboal, M., Alvarez-Cobelas, M., Cambra, J. and Ector, L. 2003 [ref. 012666]. Floristic list of non marine diatoms (Bacillariophyceae) of Iberian Peninsula, Balearic Islands, and Canary Islands. Updated taxonomy and bibliography. In: A. Witkowski (ed.), Diatom Monographs. A.R.G. Gantner Verlag K.G., 4:639 pp.;Fragilaria ulna var. acus;;Diatomées;19120.0;ULNACU;70991.0;;;;UUAC;cellule;ok;560.0;35.0;4.0;4.0;box;1.0;1.0;592.0;560.0;1.0;592.0;560.0;;;;;;;;;;
+Ulnaria delicatissima var. angustissima;Phytoplancton;Genre espèce;Fragilariaceae;;;;(Grunow in Van Heurck) Aboal in Aboal, Alvarez-Cobelas, Cambra & Ector;2003;;Aboal, M., Alvarez-Cobelas, M., Cambra, J. and Ector, L. 2003 [ref. 012666]. Floristic list of non marine diatoms (Bacillariophyceae) of Iberian Peninsula, Balearic Islands, and Canary Islands. Updated taxonomy and bibliography. In: A. Witkowski (ed.), Diatom Monographs. A.R.G. Gantner Verlag K.G., 4:639 pp.;Fragilaria ulna var. angustissima;;Diatomées;19116.0;ULNDAN;70992.0;;;;UDEA;cellule;ok;2400.0;200.0;5.0;4.0;box;0.6;0.6;6066.67;2400.0;1.0;6066.67;2400.0;;;;;;;;;;
+ulnaria ulna;Phytoplancton;Genre espèce;Fragilariaceae;;;;(C.L. Nitzsch) Compère;2001;;Compère, P. 2001 [ref. 009463]. Ulnaria (Kützing) Compère, a new genus name for Fragilaria subgen. Alterasynedra Lange-Bertalot with comments on the typification of Synedra Ehrenberg. In: Jahn, R., Kociolek, J.P., Witkowski, A. & Compère, P. (eds), Lange-Bertalot-Festschrift: Studies on Diatoms. Dedicated to Prof. Dr. Dr. h.c. Horst Lange-Bertalot on the occassion of his 65th Birthday. A.R.G. Gantner Verlag. K.G. pp. 97-102.;Fragilaria ulna;;Diatomées;6849.0;ULNULN;70990.0;;;;UULN;cellule;ok;5040.0;180.0;8.0;5.0;box;0.7;0.7;6800.0;5040.0;1.0;6800.0;5040.0;;;;;;;;;;
+Ulothricophycée sp.;Phytoplancton;Famille;Ulotrichales;;;famille;;;;;;;Chlorophycées;;;83529.0;;;;;filament;ok;1585.7;20.0;10.0;10.0;tub;1.0;1.0;785.0;1570.0;1.0;785.0;1570.0;;;;;;;;;Données Jean-Claude Druart;
+Ulothrix cellule courte et filament cassé;Phytoplancton;Genre espèce;Ulotrichaceae;;;espèce;;;;John, D.M. (2002). Orders Chaetophorales, Klebshormidiales, Microsporales, Ulotrichales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 433-468. Cambridge: Cambridge University Press.;;;Chlorophycées;;;83522.0;;Ulothrix;R0913;;filament;ok;1963.5;5.0;5.0;5.0;tub;1.0;1.0;117.75;98.13;20.0;2355.0;1962.5;100.0;5.0;5.0;tub;1.0;1.0;1609.25;1962.5;;
+Ulothrix cellule en tonneau et parfois gelée;Phytoplancton;Genre espèce;Ulotrichaceae;;;espèce;;;;John, D.M. (2002). Orders Chaetophorales, Klebshormidiales, Microsporales, Ulotrichales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 433-468. Cambridge: Cambridge University Press.;;;Chlorophycées;;;81100.0;;Chlorococcales sp.;R0832;;filament;ok;706.9;3.0;3.0;3.0;tub;1.0;1.0;42.39;21.2;33.0;1398.87;699.44;100.0;3.0;3.0;tub;1.0;1.0;956.13;706.5;;
+Ulothrix cellule longue;Phytoplancton;Genre espèce;Ulotrichaceae;;;espèce;;;;John, D.M. (2002). Orders Chaetophorales, Klebshormidiales, Microsporales, Ulotrichales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 433-468. Cambridge: Cambridge University Press.;;;Chlorophycées;;;83525.0;;;;;filament;ok;2827.0;12.0;6.0;6.0;tub;1.0;1.0;282.6;339.12;8.0;2260.8;2712.96;100.0;6.0;6.0;tub;1.0;1.0;1940.52;2826.0;;
+Ulothrix cf. amphigranulata;Phytoplancton;Genre espèce;Ulotrichaceae;;;espèce;;;;John, D.M. (2002). Orders Chaetophorales, Klebshormidiales, Microsporales, Ulotrichales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 433-468. Cambridge: Cambridge University Press.;;;Chlorophycées;;;83524.0;;;;;filament;ok;962.2;17.0;3.5;3.5;tub;1.0;1.0;206.06;163.48;6.0;1236.38;980.86;100.0;3.5;3.5;tub;1.0;1.0;1118.23;961.63;;
+Ulothrix limnetica;Phytoplancton;Genre espèce;Ulotrichaceae;;;;;;;John, D.M. (2002). Orders Chaetophorales, Klebshormidiales, Microsporales, Ulotrichales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 433-468. Cambridge: Cambridge University Press.;;;Chlorophycées;20289.0;ULOLIM;83526.0;;;;;filament;ok;346.185;14.0;2.1;2.1;tub;1.0;1.0;99.24;48.47;7.0;694.68;339.26;100.0;2.1;2.1;tub;1.0;1.0;666.32;346.19;Observée sur le Bourget en 2008 - FR;
+Ulothrix sp.;Phytoplancton;Genre espèce;Ulotrichaceae;;;espèce;;;;John, D.M. (2002). Orders Chaetophorales, Klebshormidiales, Microsporales, Ulotrichales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 433-468. Cambridge: Cambridge University Press.;;;Chlorophycées;;ULOSPX;83520.0;ULO.SPX;Ulothrix;R0913;;filament;ok;1593.2;9.0;4.5;4.5;tub;1.0;1.0;158.96;143.07;11.0;1748.59;1573.73;100.0;4.5;4.5;tub;1.0;1.0;1444.79;1589.63;;
+Ulothrix subtilissima;Phytoplancton;Genre espèce;Ulotrichaceae;;;;;;;John, D.M. (2002). Orders Chaetophorales, Klebshormidiales, Microsporales, Ulotrichales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 433-468. Cambridge: Cambridge University Press.;;;Chlorophycées;;ULOSUB;83500.0;;Ulothrix;R0913;;filament;ok;3848.1;4.0;7.0;7.0;tub;1.0;1.0;164.85;153.86;25.0;4121.25;3846.5;100.0;7.0;7.0;tub;1.0;1.0;2274.93;3846.5;;
+Ulothrix tenuissima;Phytoplancton;Genre espèce;Ulotrichaceae;;;;;;;Dillard G.E. Bibliotheca Phycologia 83;;;Chlorophycées;;;83501.0;;;;;cellule;ok;3297.0;22.0;14.0;15.0;tub;1.0;1.0;1320.37;3384.92;1.0;1320.37;3384.92;20.0;14.0;15.0;tub;1.0;1.0;1232.45;3077.2;;
+Ulothrix variabilis;Phytoplancton;Genre espèce;Ulotrichaceae;;;;;;;John, D.M. (2002). Orders Chaetophorales, Klebshormidiales, Microsporales, Ulotrichales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 433-468. Cambridge: Cambridge University Press.;;;Chlorophycées;;ULOVAR;83510.0;;Ulothrix;R0913;;filament;ok;3848.1;7.0;7.0;7.0;tub;1.0;1.0;230.79;269.26;14.0;3231.06;3769.57;100.0;7.0;7.0;tub;1.0;1.0;2274.93;3846.5;;
+Ulotrichaceae;Phytoplancton;Famille;Ulotrichales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Ulotrichales;Phytoplancton;Ordre;Ulvophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Ulvophyceae;Phytoplancton;Classe;Chlorophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Uroglena americana;Phytoplancton;Genre espèce;Chromulinaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6178.0;UROAME;50210.0;URO.AME;;;;colonie;ok;104719.8;8.0;5.0;5.0;trel;1.0;1.0;398.63;104.67;1000.0;398625.8;104666.67;100.0;100.0;100.0;trel;0.2;1.5;65014.85;104666.67;;
+Uroglena soniaca;Phytoplancton;Genre espèce;Chromulinaceae;;;;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;6179.0;UROSON;50211.0;URO.SON;Uroglena;R1151;;cellule;ok;70.0;9.0;3.0;3.0;trel;1.0;1.0;268.07;42.39;81.0;21713.7;3433.59;50.0;50.0;50.0;trel;0.2;1.5;16266.72;13083.33;;
+Uroglena sp.;Phytoplancton;Genre espèce;Chromulinaceae;;;espèce;;;;Nicholls, K.H. & Wujek, D.E. (2003). Chrysophycean Algae. In: Freshwater Algae of North America. (Wehr, J.D. & Sheath, R.G. Eds), pp. 471-510. San Diego: Academic Press.;;;Chrysophycées;;UROSPX;50200.0;URO.SPX;Uroglena;R1151;;colonie;ok;104719.8;8.0;5.0;5.0;trel;1.0;1.0;398.63;104.67;1000.0;398625.8;104666.67;100.0;100.0;100.0;trel;0.2;1.5;65014.85;104666.67;;
+Viridaeplantae;Phytoplancton;Sous-règne;Plantae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Volvocaceae;Phytoplancton;Famille;Volvocales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+volvocale 4 flagelles;Phytoplancton;Genre espèce;Volvocaceae;;;famille;;;;;;;Chlorophycées;;;85715.0;;;;;cellule;ok;179.6;7.0;7.0;7.0;sphe;1.0;1.0;153.86;179.5;1.0;153.86;179.5;;;;;;;;;;
+Volvocales;Phytoplancton;Ordre;Chlorophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Volvox globator cellule;Phytoplancton;Genre espèce;Volvocaceae;;;;Linné;1758;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;;;85716.0;;;;;cellule;ok;33.493332;4.0;4.0;4.0;trel;1.0;1.0;166.38;33.49;1.0;166.38;33.49;;;;;;;;;;
+Westella botryoides;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(W.WEST) DE WILDEMAN;1897;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;5922.0;WESBOT;83210.0;WES.BOT;Westella botryoides;R0882;;colonie;ok;5747.0;7.0;7.0;7.0;ell;1.0;1.0;490.83;179.5;32.0;15706.62;5744.11;60.0;60.0;60.0;sphe;0.2;0.2;56520.0;22608.0;;
+Willea irregularis;Phytoplancton;Genre espèce;Scenedesmaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Crucigeniella irregularis;;Chlorophycées;;WILIRR;85211.0;;;;;colonie;ok;884.43335;10.0;6.5;5.0;ell;1.0;1.0;572.19;170.08;4.0;2288.78;680.33;20.0;13.0;5.0;box;0.7;0.7;1214.29;910.0;Moyennes bibliographie;
+Willea vilhelmii;Phytoplancton;Genre espèce;Scenedesmaceae;;;;(FOTT) KOMÁREK;1974;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Willea irregularis;;Chlorophycées;9305.0;WILVIL;85210.0;WIL.VIL;Willea vilhelmii;R0885;;colonie;ok;8210.0;10.0;7.0;7.0;ell;1.0;1.0;693.05;256.43;32.0;22177.6;8205.87;40.0;60.0;7.0;box;0.7;0.7;8857.14;11760.0;;
+Woloszynskia coronata;Phytoplancton;Genre espèce;Lophodiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6593.0;WOZCOR;20275.0;WOZ.COR;;;;cellule;ok;5937.6;30.0;27.0;20.0;ell;0.7;0.7;9910.02;5934.6;1.0;9910.02;5934.6;;;;;;;;;;
+Woloszynskia pseudopalustris;Phytoplancton;Genre espèce;Lophodiniaceae;;;;;;;Steidinger, K.A. & Tangen, K. (1997). Dinoflagellates. In: Identifying Marine Phytoplankton. (Tomas, C.R. Eds), pp. 387-584. San Diego: Academic Press.;;;Dinophycées;6594.0;WOZPSE;20276.0;;Woloszynskia;R1665;;cellule;ok;21600.0;45.0;30.0;20.0;ell;0.8;0.8;13892.51;11304.0;1.0;13892.51;11304.0;;;;;;;;;;
+Woronichinia fusca;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;;Gomphosphaeria fusca;;Cyanobactéries;20290.0;WORFUS;11902.0;;;;;colonie;ok;565.2;4.0;3.0;3.0;ell;1.0;1.0;124.78;18.84;30.0;3743.46;565.2;15.0;15.0;15.0;trel;0.2;1.0;2211.34;353.25;Moyennes bibliographie;
+Woronichinia naegeliana;Phytoplancton;Genre espèce;Merismopediaceae;;;;(Unger) Elenkin;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;6345.0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Woronichinia naegeliana f. cellulaire;Phytoplancton;Genre espèce;Merismopediaceae;;;;(UNGER) ELENKIN;1933;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;11901.0;WOR.NAE;;;;cellule;ok;28.2;6.0;3.0;3.0;ell;1.0;1.0;181.64;28.26;1.0;181.64;28.26;;;;;;;;;;
+Woronichinia naegeliana f. coloniale;Phytoplancton;Genre espèce;Merismopediaceae;;;;(UNGER) ELENKIN;1933;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;11900.0;WOR.NAE;;;;colonie;ok;2714.0;6.0;3.0;3.0;ell;1.0;1.0;181.64;28.26;64.0;11625.22;1808.64;25.0;25.0;25.0;trel;0.2;1.0;6114.8;1635.42;;
+Woronichinia ruzickae;Phytoplancton;Genre espèce;Merismopediaceae;;;;Komarek et Hindak;1988;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;;11903.0;WOR.RUZ;;;;colonie;ok;5887.5;5.0;2.5;2.5;ell;1.0;1.0;127.57;16.35;45.0;5740.83;735.94;25.0;30.0;30.0;trel;0.5;1.0;7337.75;5887.5;Moyenne bibliographie;
+Woronichinia sp.;Phytoplancton;Genre espèce;Merismopediaceae;;;espèce;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;;WORSPX;11910.0;WOR.SPX;;;;colonie;ok;1313.6;5.0;2.8;2.8;ell;1.0;1.0;142.88;20.51;64.0;9144.5;1312.94;35.0;30.0;30.0;trel;0.2;1.0;10257.44;3297.0;;
+Xanthidium alpinum;Phytoplancton;Genre espèce;Desmidiaceae;;;;Schmidle;1895;;Bibliotheca phycologica 102;;;Zygophycées;;;93102.0;XAN.ALP;;;;cellule;ok;772.2;13.0;12.0;5.5;box;0.9;0.9;652.22;772.2;1.0;652.22;772.2;;;;;;;;;Moyennes bibliographie;
+Xanthidium antilopaeum;Phytoplancton;Genre espèce;Desmidiaceae;;;;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;5519.0;XANANT;93101.0;XAN.ANT;;;;cellule;ok;93828.9;70.0;64.0;40.0;ell;1.0;1.0;36074.9;93781.33;1.0;36074.9;93781.33;;;;;;;;;;
+Xanthophyceae;Phytoplancton;Classe;Ochrophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Xanthophycée indéterminée;Phytoplancton;Classe;Ochrophyta;;;classe;;;;Ott, D.W. & Oldham-Ott, C.K. (2003). Eustigmatophyte, Raphidophyte, And Tribophyte. In: Freshwater Algae of North America, Ecology and Classification. (Wehr, J.D. & Sheath, R.G. Eds), pp. 423-470. San Diego: Academic Press.;;;Xantophycées;;;60000.0;;;;;cellule;ok;1500.135;15.0;15.0;13.0;trel;0.98;1.0;2067.08;1500.14;1.0;2067.08;1500.14;;;;;;;;;Données Jean-Claude Druart;
+Zygnema sp.;Phytoplancton;Genre espèce;Zygnemataceae;;;espèce;;;;Brook, A.J. & Johnson, L.R. (2002). Order Zygnemales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 479-593. Cambridge: Cambridge University Press.;;;Zygophycées;;ZYGSPX;90100.0;ZYG.SPX;;;;filament;ok;31415.9;20.0;20.0;20.0;tub;1.0;1.0;1884.0;6280.0;5.0;9420.0;31400.0;100.0;20.0;20.0;tub;1.0;1.0;6908.0;31400.0;;
+Zygnemataceae;Phytoplancton;Famille;Zygnematales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Zygnematales;Phytoplancton;Ordre;Zygnematophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Zygnematophyceae;Phytoplancton;Classe;Charophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
diff --git a/src/test/resources/data/pattern/taxons_du_phytoplancton_reduit-test.csv b/src/test/resources/data/pattern/taxons_du_phytoplancton_reduit-test.csv
new file mode 100644
index 000000000..afbd884b2
--- /dev/null
+++ b/src/test/resources/data/pattern/taxons_du_phytoplancton_reduit-test.csv
@@ -0,0 +1,3 @@
+nom du taxon déterminé;theme;nom du niveau de taxon;nom du taxon superieur;code sandre du taxon;code sandre du taxon supérieur;pt_niveau incertitude de détermination;pt_Auteur de la description;pt_Année de la description;pt_Référence de la description;pt_Références relatives à ce taxon;pt_Synonyme ancien;pt_Synonyme récent;pt_Classe algale sensu Bourrelly;pt_Code Sandre;pt_Code taxa Cemagref;pt_Code INRA;pt_code INRA lettres;pt_Rebecca name;pt_Code Rebecca;pt_Code Omnidia;pt_Unité de comptage du taxon;pt_Erreur sur le biovolume;pt_valeur du biovolume spécifique choisi pour le taxon;pt_Longueur de la cellule;pt_Largeur de la cellule;pt_Epaisseur de la cellule;pt_Forme géométrique de la cellule;pt_Facteur à multiplier à la forme géométrique pour avoir le biovolume de la cellule;pt_Facteur à diviser à la forme géométrique pour avoir la surface de la cellule;pt_Surface de la cellule;pt_Biovolume de la cellule;pt_Nombre de cellule par colonie;pt_Surface cumulée des cellules;pt_biovolume cumulé des cellules;pt_Longueur de la colonie (prends en compte la gelée);pt_Largeur de la colonie (prends en compte la gelée);pt_Epaisseur de la colonie (prends en compte la gelée);pt_Forme géométrique de la colonie;pt_Facteur à multiplier à la forme géométrique pour avoir le biovolume de la colonie (sans prendre en compte la gelée);pt_Facteur à diviser à la forme géométrique pour avoir la surface de la colonie (en prenant en compte la gelée);pt_Surface de la colonie;pt_Biovolume de la colonie;pt_Notes sur les biovolumes;pt_Notes libres;Code Sandre;Synonyme ancien;Synonyme récent;Année de la description;Auteur de la description;Classe algale sensu Bourrelly;Référence de la description;Références relatives à ce taxon;niveau incertitude de détermination;Notes libres
+Eukaryota;Phytoplancton;Domaine;;;;1;toto;2004;r-2004;;;;;;;;;;;;;;;;2;7;carré;1;2;24;;200;;;;;;;;;;;;;;;;;;;;;;
+Prokaryota;Phytoplancton;Domaine;;;;7;titi;2007;r-2007;;;;;;;;;;;;;;;;4;9;losange;2;3;30;;9000;;;;;;;;;;;;;;;;;;;;;;
diff --git a/src/test/resources/data/pattern/taxons_du_phytoplancton_test.csv b/src/test/resources/data/pattern/taxons_du_phytoplancton_test.csv
new file mode 100644
index 000000000..753ba7e74
--- /dev/null
+++ b/src/test/resources/data/pattern/taxons_du_phytoplancton_test.csv
@@ -0,0 +1,68 @@
+nom du taxon déterminé;theme;nom du niveau de taxon;nom du taxon superieur;code sandre du taxon;code sandre du taxon supérieur;pt_niveau incertitude de détermination;pt_Auteur de la description;pt_Année de la description;pt_Référence de la description;pt_Références relatives à ce taxon;pt_Synonyme ancien;pt_Synonyme récent;pt_Classe algale sensu Bourrelly;pt_Code Sandre;pt_Code taxa Cemagref;pt_Code INRA;pt_code INRA lettres;pt_Rebecca name;pt_Code Rebecca;pt_Code Omnidia;pt_Unité de comptage du taxon;pt_Erreur sur le biovolume;pt_valeur du biovolume spécifique choisi pour le taxon;pt_Longueur de la cellule;pt_Largeur de la cellule;pt_Epaisseur de la cellule;pt_Forme géométrique de la cellule;pt_Facteur à multiplier à la forme géométrique pour avoir le biovolume de la cellule;pt_Facteur à diviser à la forme géométrique pour avoir la surface de la cellule;pt_Surface de la cellule;pt_Biovolume de la cellule;pt_Nombre de cellule par colonie;pt_Surface cumulée des cellules;pt_biovolume cumulé des cellules;pt_Longueur de la colonie (prends en compte la gelée);pt_Largeur de la colonie (prends en compte la gelée);pt_Epaisseur de la colonie (prends en compte la gelée);pt_Forme géométrique de la colonie;pt_Facteur à multiplier à la forme géométrique pour avoir le biovolume de la colonie (sans prendre en compte la gelée);pt_Facteur à diviser à la forme géométrique pour avoir la surface de la colonie (en prenant en compte la gelée);pt_Surface de la colonie;pt_Biovolume de la colonie;pt_Notes sur les biovolumes;pt_Notes libres;Code Sandre;Synonyme ancien;Synonyme récent;Année de la description;Auteur de la description;Classe algale sensu Bourrelly;Référence de la description;Références relatives à ce taxon;niveau incertitude de détermination;Notes libres
+Eukaryota;Phytoplancton;Domaine;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Aphanocapsa holsatica colonie 10 µm;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;;;;Cyanobactéries;;;10677.0;APA.HOL;Aphanocapsa holsatica;R1415;;colonie;ok;10.466666;1.5;1.5;1.5;trel;;;28.53;1.77;6.0;171.16;10.6;10.0;10.0;10.0;trel;;;990.07;10.47;Moyenne Annecy;
+Asterionella formosa;Phytoplancton;Genre espèce;Fragilariaceae;;;;HASSALL;1856;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;4860.0;ASTFOR;70710.0;AST.FOR;Asterionella formosa;R0135;AFOR;cellule;ok;260.0;65.0;2.0;2.0;box;;;528.0;260.0;1.0;528.0;260.0;;;;;;;;;;
+Bacillariophyceae;Phytoplancton;Classe;Bacillariophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Bacillariophyta;Phytoplancton;Embranchement;Heterokonta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Bacteria;Phytoplancton;Règne;Prokaryota;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlamydomonadaceae;Phytoplancton;Famille;Volvocales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlamydomonas conica;Phytoplancton;Genre espèce;Chlamydomonadaceae;;;;;;;Pentecost, A. (2002). Order Volvocales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 303-327. Cambridge: Cambridge University Press.;;;Chlorophycées;6017.0;CHLCON;80131.0;CHL.CON;Chlamydomonas;R0941;;cellule;ok;1681.2;19.0;13.0;13.0;ell;;;2421.36;1680.42;1.0;2421.36;1680.42;;;;;;;;;;
+Chlorellaceae;Phytoplancton;Famille;Chlorococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlorella vulgaris;Phytoplancton;Genre espèce;Chlorellaceae;;;;BEIJERINCK;1890;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;Chlorella + Choricystis;;Chlorophycées;5933.0;CLLVUL;83110.0;CLL.VUL;Chlorella vulgaris;R0504;;cellule;ok;4.2;2.0;2.0;2.0;ell;;;46.6;4.19;1.0;46.6;4.19;;;;;;;;;;
+Chlorococcales;Phytoplancton;Ordre;Chlorophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlorodendraceae;Phytoplancton;Famille;Chlorodendrales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlorodendrales;Phytoplancton;Ordre;Prasinophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlorophyceae;Phytoplancton;Classe;Chlorophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chlorophyta;Phytoplancton;Embranchement;Viridaeplantae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Choricystis minor;Phytoplancton;Genre espèce;Chlorellaceae;;;;;;;G. Huber-Pestalozzi, J. Komarek, and B. Fott. Das Phytoplankton des Süsswassers, systematik und biologie. 7. Teil, 1.Hälfte, Chlorophyceae Ordnung: Chlorococcales, 1983. 1044 pages;;;Chlorophycées;10245.0;CCTMIN;86300.0;;Choricystis minor;R0516;;cellule;ok;9.4;3.0;2.0;2.0;ell;;;64.6;6.28;1.0;64.6;6.28;;;;;;;;;;
+Chromista;Phytoplancton;Règne;Eukaryota;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chromobiota;Phytoplancton;Sous-règne;Chromista;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chroococcales;Phytoplancton;Ordre;Cyanobacteries;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Coscinodiscophyceae;Phytoplancton;Classe;Bacillariophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptista;Phytoplancton;Règne;Chromista;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptomonadaceae;Phytoplancton;Famille;Cryptomonadales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptomonadales;Phytoplancton;Ordre;Cryptophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptomonas sp.;Phytoplancton;Genre espèce;Cryptomonadaceae;;;espèce;;;;Kugrens, P. & Clay, B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds), pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;6269.0;CRYSPX;30100.0;CRY.SPX;Cryptomonas;R1394;;cellule;ok;1368.5;22.0;11.0;9.0;ell;;;2160.63;1139.82;1.0;2160.63;1139.82;;;;;;;;;;
+Cryptophyceae;Phytoplancton;Classe;Cryptophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptophyta;Phytoplancton;Embranchement;Cryptista;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cyanobacteria;Phytoplancton;Embranchement;Negibacteria;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cyanobacteries;Phytoplancton;Classe;Cyanobacteria;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cyclotella costei;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8615.0;CYCCOS;70204.0;CYC.CYC;Cyclotella;R0053;CCOS;cellule;ok;254.34;9.0;9.0;4.0;tub;;;279.46;572.27;1.0;279.46;572.27;;;;;;;;;;
+Erkenia subaequiciliata;Phytoplancton;Genre espèce;Prymnesiaceae;;;;SKUJA;1948;;Systema Naturae (2000) - Taxonomicon;Chrysochromulina;;Chrysophycées;6149.0;ERKSUB;51200.0;ERK.SUB;Erkenia subaequiciliata;R1095;;cellule;ok;35.0;4.5;4.5;3.0;ell;;;159.73;34.97;1.0;159.73;34.97;;;;;;;;;;
+Fragilariaceae;Phytoplancton;Famille;Fragilariales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Fragilaria crotonensis;Phytoplancton;Genre espèce;Fragilariaceae;;;;KITTON;1869;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;6666.0;FRACRO;70620.0;FRA.CRO;Fragilaria crotonensis;R0223;FCRO;cellule;ok;432.0;90.0;3.0;2.0;box;;;1140.0;432.0;1.0;1140.0;432.0;;;;;;;;;;
+Fragilariales;Phytoplancton;Ordre;Fragilariophycidae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Fragilaria ulna var. angustissima;Phytoplancton;Genre espèce;Fragilariaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;Synedra acus var. angustissima;;Diatomées;6717.0;;70810.0;;Fragilaria ulna v. angustissima;R0249;FUAN;cellule;ok;2400.0;200.0;5.0;4.0;box;;;6066.67;2400.0;1.0;6066.67;2400.0;;;;;;;;;;
+Fragilariophycidae;Phytoplancton;Sous-classe;Bacillariophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Heterokonta;Phytoplancton;Infra-règne;Chromobiota;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Merismopediaceae;Phytoplancton;Famille;Chroococcales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Naviculaceae;Phytoplancton;Famille;Naviculales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Naviculales;Phytoplancton;Ordre;Bacillariophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Navicula sp.;Phytoplancton;Genre espèce;Naviculaceae;;;espèce;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;;NAVSPX;71400.0;NAV.SPX;Navicula;R0335;NASP;cellule;ok;336.0;30.0;8.0;2.0;box;;;902.86;336.0;1.0;902.86;336.0;;;;;;;;;;
+Negibacteria;Phytoplancton;Sous-règne;Bacteria;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Opalozoa;Phytoplancton;Embranchement;Heterokonta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Oscillatoriales;Phytoplancton;Ordre;Cyanobacteries;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Plantae;Phytoplancton;Règne;Eukaryota;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prasinophyceae;Phytoplancton;Classe;Chlorophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prasiolaceae;Phytoplancton;Famille;Prasiolales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prasiolales;Phytoplancton;Ordre;Trebouxiophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prokaryota;Phytoplancton;Domaine;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prymnesiaceae;Phytoplancton;Famille;Prymnesiales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prymnesiales;Phytoplancton;Ordre;Prymnesiophycidae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prymnesiophyceae;Phytoplancton;Classe;Opalozoa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Prymnesiophycidae;Phytoplancton;Sous-classe;Prymnesiophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pseudanabaenaceae;Phytoplancton;Famille;Oscillatoriales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pseudanabaena limnetica;Phytoplancton;Genre espèce;Pseudanabaenaceae;;;;(LEMMERMANN) KOMÁREK;1974;;Komarek J & Anagnostidis, 2005, Cyanoprokaryota. 2, teil: Oscillatoriales. Susswasserflora von Mitteleuropa 19/2, Budel, B, Gartner G, Krienitz L, Schagerl M (eds), 759pp.;;;Cyanobactéries;6459.0;PSELIM;10940.0;PSE.LIM;Oscillatoria limnetica;R1591;;filament;ok;283.5;7.0;1.9;1.9;tub;;;47.43;19.84;14.3;678.24;283.67;100.0;1.9;1.9;tub;;;602.27;283.39;;
+Pyrenomonadaceae;Phytoplancton;Famille;Pyrenomonadales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pyrenomonadales;Phytoplancton;Ordre;Cryptophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Rhodomonas minuta;Phytoplancton;Genre espèce;Pyrenomonadaceae;;;;;;;Kugrens, P. & Clay, B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds), pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;;RHDMIN;30210.0;;Rhodomonas;R1409;;cellule;ok;527.8;14.0;10.0;8.0;ell;;;1244.11;586.13;1.0;1244.11;586.13;;;;;;;;;;
+Rhodomonas minuta var. nannoplanctica;Phytoplancton;Genre espèce;Pyrenomonadaceae;;;;;;;Kugrens, P. & Clay, B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds), pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;;RHDMNA;30220.0;;Rhodomonas;R1409;;cellule;ok;70.9;9.0;4.7;4.0;ell;;;389.46;88.55;1.0;389.46;88.55;;;;;;;;;;
+Stephanodiscaceae;Phytoplancton;Famille;Thalassiosirales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Stephanodiscus neoastraea;Phytoplancton;Genre espèce;Stephanodiscaceae;;;;;;;F. E. Round, R. M. Crawford and D. G. Mann The Diatom: Biology and morphology of the genera, University Press, Cambridge (1990).;;;Diatomées;8754.0;STENEO;70310.0;;Stephanodiscus neoastraea;R0083;SNEO;cellule;ok;6773.3;28.0;28.0;11.0;box;;;2800.0;8624.0;1.0;2800.0;8624.0;;;;;;;;;;
+Stichococcus bacillaris;Phytoplancton;Genre espèce;Prasiolaceae;;;;(NÄGELI) NÄGELI;1849;;John, D.M. (2002). Orders Chaetophorales, Klebshormidiales, Microsporales, Ulotrichales. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 433-468. Cambridge: Cambridge University Press.;;;Chlorophycées;6004.0;STCBAC;89900.0;STC.BAC;;;;cellule;ok;47.0;12.0;2.5;2.5;tub;;;104.01;58.88;1.0;104.01;58.88;;;;;;;;;détermination dans le Bourget et Léman pas certaine;
+Synechocystis parvula;Phytoplancton;Genre espèce;Merismopediaceae;;;;;;;Komarek J & Anagnostidis, 1998, Cyanoprokaryota. 1, teil: Chroococcales. Susswasserflora von Mitteleuropa 19/1, Ettel H, Gartner G, Heynig H, Mollenhauer D (eds), 548pp.;;;Cyanobactéries;20271.0;SYYPAR;11321.0;;;;;cellule;ok;0.26794666;0.8;0.8;0.8;ell;;;10.86;0.27;1.0;10.86;0.27;;;;;;;;;Mesures effectuées sur lac Montriond 2007;
+Tetraselmis cordiformis;Phytoplancton;Genre espèce;Chlorodendraceae;;;;(CARTER) F.STEIN;1878;;Moestrup, Ø. (2002). Phylum Prasinophyta. In: The Freshwater Algal Flora of the British Isles. An identification guide to freshwater and terrestrial algae. (John, D.M., Whitton, B.A. & Brook, A.J. Eds), pp. 281-286. Cambridge: Cambridge University Press.;;;Chlorophycées;5981.0;TESCOR;80210.0;TES.COR;Tetraselmis cordiformis;R0996;;cellule;ok;1131.0;18.0;15.0;8.0;ell;;;2086.46;1130.4;1.0;2086.46;1130.4;;;;;;;;;Moyennes bibliographie;
+Thalassiosirales;Phytoplancton;Ordre;Coscinodiscophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Trebouxiophyceae;Phytoplancton;Classe;Chlorophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Viridaeplantae;Phytoplancton;Sous-règne;Plantae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Volvocales;Phytoplancton;Ordre;Chlorophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
diff --git a/src/test/resources/data/recursivite/recusivite.yaml b/src/test/resources/data/recursivite/recusivite.yaml
index fbc63057a..8f14544d1 100644
--- a/src/test/resources/data/recursivite/recusivite.yaml
+++ b/src/test/resources/data/recursivite/recusivite.yaml
@@ -118,17 +118,10 @@ OA_data:
         en: '{nom}'
     OA_naturalKey: [nom]
     OA_validations:
-      nomDuTaxonDetermine:
-        OA_required: true
-        OA_i18n:
-          fr: "nom du taxon déterminé"
-        OA_checker:
-          OA_name: OA_string
-        OA_columns: [ nom ]
       nomDuTaxonSuperieur:
         OA_i18n:
           fr: "nom du taxon superieur"
-        OA_required: true
+        OA_required: false
         OA_checker:
           OA_name: OA_reference
           OA_params:
@@ -136,6 +129,13 @@ OA_data:
               OA_name: taxon
               OA_isRecursive: true
         OA_columns: [ taxon_superieur ]
+      nomDuTaxonDetermine:
+        OA_required: true
+        OA_i18n:
+          fr: "nom du taxon déterminé"
+        OA_checker:
+          OA_name: OA_string
+        OA_columns: [ nom ]
     OA_basicComponents:
       nom:
         OA_importHeader: nom du taxon déterminé
diff --git a/src/test/resources/data/recursivite/taxons_du_phytoplancton-reduit-pour-recursivite.csv b/src/test/resources/data/recursivite/taxons_du_phytoplancton-reduit-pour-recursivite.csv
new file mode 100644
index 000000000..70eafb6c0
--- /dev/null
+++ b/src/test/resources/data/recursivite/taxons_du_phytoplancton-reduit-pour-recursivite.csv
@@ -0,0 +1,10 @@
+nom du taxon déterminé;theme;nom du niveau de taxon;nom du taxon superieur;code sandre du taxon;code sandre du taxon supérieur;pt_niveau incertitude de détermination;pt_Auteur de la description;pt_Année de la description;pt_Référence de la description;pt_Références relatives à ce taxon;pt_Synonyme ancien;pt_Synonyme récent;pt_Classe algale sensu Bourrelly;pt_Code Sandre;pt_Code taxa Cemagref;pt_Code INRA;pt_code INRA lettres;pt_Rebecca name;pt_Code Rebecca;pt_Code Omnidia;pt_Unité de comptage du taxon;pt_Erreur sur le biovolume;pt_valeur du biovolume spécifique choisi pour le taxon;pt_Longueur de la cellule;pt_Largeur de la cellule;pt_Epaisseur de la cellule;pt_Forme géométrique de la cellule;pt_Facteur à multiplier à la forme géométrique pour avoir le biovolume de la cellule;pt_Facteur à diviser à la forme géométrique pour avoir la surface de la cellule;pt_Surface de la cellule;pt_Biovolume de la cellule;pt_Nombre de cellule par colonie;pt_Surface cumulée des cellules;pt_biovolume cumulé des cellules;pt_Longueur de la colonie (prends en compte la gelée);pt_Largeur de la colonie (prends en compte la gelée);pt_Epaisseur de la colonie (prends en compte la gelée);pt_Forme géométrique de la colonie;pt_Facteur à multiplier à la forme géométrique pour avoir le biovolume de la colonie (sans prendre en compte la gelée);pt_Facteur à diviser à la forme géométrique pour avoir la surface de la colonie (en prenant en compte la gelée);pt_Surface de la colonie;pt_Biovolume de la colonie;pt_Notes sur les biovolumes;pt_Notes libres;Code Sandre;Synonyme ancien;Synonyme récent;Année de la description;Auteur de la description;Classe algale sensu Bourrelly;Référence de la description;Références relatives à ce taxon;niveau incertitude de détermination;Notes libres
+Chroomonas cf coerulea;Phytoplancton;Genre espèce;Chroomonadaceae;;;espèce;;;;;;;Cryptophycées;;;30320.0;;;;;cellule;ok;109.9;7.0;6.0;5.0;trel;1.0;1.0;386.61;109.9;1.0;386.61;109.9;;;;;;;;;JCD;;;;;;;;;;;
+Chroomonas sp.;Phytoplancton;Genre espèce;Chroomonadaceae;;;espèce;;;;Kugrens; P. & Clay; B.L. (2002). Cryptomonads. In: Freshwater Algae of North America. ( Eds); pp. 715-755. San Diego: Academic Press.;;;Cryptophycées;;CHMSPX;30310.0;CHM.SPX;Chroomonas;R1375;;cellule;ok;796.4;13.0;13.0;9.0;ell;1.0;1.0;1422.3;795.99;1.0;1422.3;795.99;;;;;;;;;;;;;;;;;
+Chroomonadaceae;Phytoplancton;Famille;Pyrenomonadales;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Pyrenomonadales;Phytoplancton;Ordre;Cryptophyceae;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptophyceae;Phytoplancton;Classe;Cryptophyta;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptophyta;Phytoplancton;Embranchement;Cryptista;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Cryptista;Phytoplancton;Règne;Chromista;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Chromista;Phytoplancton;Règne;Eukaryota;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+Eukaryota;Phytoplancton;Domaine;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
diff --git a/ui/cypress/fixtures/applications/errors/errors.json b/ui/cypress/fixtures/applications/errors/errors.json
index 2c8988cf2..0324bc33c 100644
--- a/ui/cypress/fixtures/applications/errors/errors.json
+++ b/ui/cypress/fixtures/applications/errors/errors.json
@@ -1 +1 @@
-{"testUnknownReferenceNameForChecker":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > sites > OA_basicComponents > tze_type_nom > OA_checker > OA_params > OA_reference > OA_name","referenceName":"tr_type_de_sites"}},"time":"2024-03-16T07:18:29.796140188","type":"REACTIVE_ERROR"}],"testUnexpectedNameTagInComputedComponents":[{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > pem > OA_computedComponents > site_bassin > OA_tags","notExpectedDomainTags":["contextt"]}},"time":"2024-03-16T07:18:53.249873206","type":"REACTIVE_ERROR"}],"testUnknownReferenceNameForDynamicColumns":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_reference","referenceName":"type_de_site"}},"time":"2024-03-16T07:18:40.197589258","type":"REACTIVE_ERROR"}],"testmissingComponentNameForAuthorization":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_component"}},"time":"2024-03-16T07:18:24.947782447","type":"REACTIVE_ERROR"}],"testMissingOrBadTypeVersionApplication":[{"errortype":"ValidationError","result":{"message":"badVersionPattern","params":{"givenVersion":"deux","path":"OA_application"}},"time":"2024-03-16T07:18:25.740085048","type":"REACTIVE_ERROR"}],"testUnexpectedReferencesForComputation":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_computedComponents > site_bassin > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-16T07:18:20.771659229","type":"REACTIVE_ERROR"}],"testmissingRequiredValueInTimeScopeInSubmission":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_timeScope > OA_component"}},"time":"2024-03-16T07:18:49.19519568","type":"REACTIVE_ERROR"}],"testMissingNameApplication":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_application > OA_name"}},"time":"2024-03-16T07:18:55.191439133","type":"REACTIVE_ERROR"}],"testUnexpectedReferencesForDefaultValue":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_basicComponents > chemin > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-16T07:18:24.072744717","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-16T07:18:24.073572102","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_references","referenceName":"proj"}},"time":"2024-03-16T07:19:00.788715006","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataI18ndisplay":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > especes > OA_i18nDisplay > OA_pattern"}},"time":"2024-03-16T07:19:03.192784072","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataI18n":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > especes > OA_i18n"}},"time":"2024-03-16T07:18:44.23282857","type":"REACTIVE_ERROR"}],"testUnexpectedSections":[{"errortype":"ValidationError","result":{"message":"unexpectedSections","params":{"expectedSections":["OA_version","OA_application","OA_data","OA_additionalFiles","OA_rightsRequest","OA_tags"],"path":"OA_version > OA_application > OA_data > OA_unexpectedTag > OA_rightsRequest > OA_tags","unexpectedSections":["OA_unexpectedTag"]}},"time":"2024-03-16T07:18:41.308280531","type":"REACTIVE_ERROR"}],"testBadEnumSectionTypeInSubmission":[{"errortype":"ValidationError","result":{"message":"badEnumSectionType","params":{"givenValue":"OA_REPOSITORYY","path":"OA_data > pem > OA_submission > OA_strategy","acceptedValues":["OA_INSERTION","OA_REPOSITORY"]}},"time":"2024-03-16T07:18:28.355621712","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInRightsRequestDescription":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_rightsRequest > OA_description > OA_i18n"}},"time":"2024-03-16T07:18:56.659467793","type":"REACTIVE_ERROR"}],"testUnknownNameAuthorizationScopeInFileNameSubmission":[{"errortype":"ValidationError","result":{"message":"unknownNameAuthorizationScope","params":{"path":"OA_submission > OA_fileName > OA_authorizationScopes > proj","unknownAuthorizationScope":"proj","knownAuthorizationScope":["projet","localization"]}},"time":"2024-03-16T07:18:56.109130815","type":"REACTIVE_ERROR"}],"testMissingMandatorySectionsInConstantComponents":[{"errortype":"ValidationError","result":{"message":"missingMandatoriesSections","params":{"missingMandatoriesSections":["OA_rowNumber"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_columnNumber"}},"time":"2024-03-16T07:18:42.893119486","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataI18ncolumns":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > especes > OA_i18nColumns > esp_definition_fr"}},"time":"2024-03-16T07:18:58.981713272","type":"REACTIVE_ERROR"}],"testInvalidMinMaxForCheckerDate":[{"errortype":"ValidationError","result":{"message":"invalidMinMaxForCheckerDate","params":{"declaredPattern":"dd/MM/yyyy","path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params","declaredMinValue":"12/31/1980","declaredMaxValue":"31/12/2024"}},"time":"2024-03-16T07:18:21.977942794","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"invalidMinMaxForCheckerDate","params":{"declaredPattern":"dd/MM/yyyy","path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params","declaredMinValue":"31/12/1980","declaredMaxValue":"12/31/2024"}},"time":"2024-03-16T07:18:46.228473499","type":"REACTIVE_ERROR"}],"testBadNameApplication":[{"errortype":"ValidationError","result":{"message":"unsupportedNameApplication","params":{"path":"OA_application","nameApplication":"F4KE app!cat°"}},"time":"2024-03-16T07:18:39.629513152","type":"REACTIVE_ERROR"}],"testBadVersionApplication":[{"errortype":"ValidationError","result":{"message":"badVersionPattern","params":{"givenVersion":"-2","path":"OA_application"}},"time":"2024-03-16T07:18:35.715768513","type":"REACTIVE_ERROR"}],"testUnknownColumnNumberToFirstRowLineInConstantComponents":[{"errortype":"ValidationError","result":{"message":"negativeConstantImportHeaderColumnNumber","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_importHeaderTarget > OA_columnNumber"}},"time":"2024-03-16T07:18:46.752092564","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"negativeConstantImportHeaderColumnNumber","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_columnNumber"}},"time":"2024-03-16T07:19:03.639687504","type":"REACTIVE_ERROR"}],"testBadBuilderVersion":[{"errortype":"ValidationError","result":{"message":"unsupportedOpenadomVersion","params":{"path":"OA_version","actualVersion":"2","expectedVersion":"2.0.1"}},"time":"2024-03-16T07:18:36.291154783","type":"REACTIVE_ERROR"}],"testMissingReferenceNameForChecker":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > sites > OA_basicComponents > tze_type_nom > OA_checker > OA_params > OA_reference > OA_name","referenceName":"toto"}},"time":"2024-03-16T07:18:26.812589124","type":"REACTIVE_ERROR"}],"testBadNameTag":[{"errortype":"ValidationError","result":{"message":"badTagsPatterns","params":{"path":"OA_data > especes","acceptedTagPatterns":["__HIDDEN__","__REFERENCE__","test","context","no-tag","__DATA__","__ORDER_([0-9]*)__"]}},"time":"2024-03-16T07:18:40.760132658","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"badTagsPatterns","params":{"path":"OA_data > type_de_sites","acceptedTagPatterns":["__HIDDEN__","__REFERENCE__","test","context","no-tag","__DATA__","__ORDER_([0-9]*)__"]}},"time":"2024-03-16T07:18:40.761400539","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"badTagsPatterns","params":{"path":"OA_data > sites","acceptedTagPatterns":["__HIDDEN__","__REFERENCE__","test","context","no-tag","__DATA__","__ORDER_([0-9]*)__"]}},"time":"2024-03-16T07:18:40.7617496","type":"REACTIVE_ERROR"}],"testReturnMultiplesErrors":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > site > OA_basicComponents > zet_chemin_parent > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-16T07:18:59.429063757","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_basicComponents > chemin > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-16T07:18:59.429484565","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_basicComponents > chemin > OA_defaultValue > OA_references","referenceName":"sites"}},"time":"2024-03-16T07:18:59.429523469","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_computedComponents > site_bassin > OA_checker > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-16T07:18:59.429760913","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_computedComponents > site_bassin > OA_defaultValue > OA_references","referenceName":"sites"}},"time":"2024-03-16T07:18:59.429798993","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-16T07:18:59.429988023","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_defaultValue > OA_references","referenceName":"sites"}},"time":"2024-03-16T07:18:59.430026744","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"reference > OA_validations > reference > OA_validations > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-16T07:18:59.430294352","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["site","especes","type_de_sites","projet","pem"],"path":"reference > OA_validations > reference > OA_validations > OA_checker > OA_params > OA_reference > OA_name","referenceName":"sites"}},"time":"2024-03-16T07:18:59.430484067","type":"REACTIVE_ERROR"}],"testEmptyFile":[{"errortype":"ValidationError","result":{"message":"emptyFile","params":{}},"time":"2024-03-16T07:18:39.091762985","type":"REACTIVE_ERROR"}],"testunknownComponentNameForAuthorization":[{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":"proj","knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_component"}},"time":"2024-03-16T07:18:37.952111273","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"undefinedComponentForAuthorizationScopeAuthorization","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScope > projet","componentName":"proj"}},"time":"2024-03-16T07:18:37.95291474","type":"REACTIVE_ERROR"}],"testMissingNameChecker":[{"errortype":"ValidationError","result":{"message":"missingCheckerName","params":{"path":"OA_data > sites > OA_basicComponents > tze_type_nom","acceptedCheckerNames":["OA_reference","OA_float","OA_date","OA_groovyExpression","OA_boolean","OA_integer","OA_string"]}},"time":"2024-03-16T07:18:45.694082853","type":"REACTIVE_ERROR"}],"testMissingComponentNameValidation":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_validations > reference > OA_columns"}},"time":"2024-03-16T07:18:44.685290989","type":"REACTIVE_ERROR"}],"testInvalidPatternForCheckerDate":[{"errortype":"ValidationError","result":{"message":"invalidPatternForCheckerDate","params":{"badPattern":"bb/MM/yyyy","path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params > OA_pattern"}},"time":"2024-03-16T07:18:31.764816311","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInAuthorizationScopes":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_i18n"}},"time":"2024-03-16T07:18:52.207248788","type":"REACTIVE_ERROR"}],"testunknownComponentInTimeScopeInSubmission":[{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":"dates","knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_submission > OA_authorization > OA_timeScope > OA_component"}},"time":"2024-03-16T07:18:34.59342909","type":"REACTIVE_ERROR"}],"testMissingPatternForCheckerDate":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params > OA_pattern"}},"time":"2024-03-16T07:18:30.550471448","type":"REACTIVE_ERROR"}],"testUnexpectedReferencesForDefaultValueInConstantComponents":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-16T07:18:52.706827177","type":"REACTIVE_ERROR"}],"testSuperieurImportHeaderRowNumberToFirstRowLineInConstantComponents":[{"errortype":"ValidationError","result":{"message":"badConstantImportHeaderRowNumber","params":{"givenRowNumber":8,"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_rowNumber","firstRowLine":7}},"time":"2024-03-16T07:18:35.201718059","type":"REACTIVE_ERROR"}],"testNegativeImportHeaderRowNumberInConstantComponents":[{"errortype":"ValidationError","result":{"message":"negativeConstantImportHeaderRowNumber","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_rowNumber"}},"time":"2024-03-16T07:18:27.576712892","type":"REACTIVE_ERROR"}],"testUnexpectedNameTagInData":[{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > especes","notExpectedDomainTags":["contxet"]}},"time":"2024-03-16T07:19:02.245610335","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > type_de_sites","notExpectedDomainTags":["contxet"]}},"time":"2024-03-16T07:19:02.246540993","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > sites","notExpectedDomainTags":["contxet"]}},"time":"2024-03-16T07:19:02.246776131","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataDynamicComponents":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_exportHeader > OA_i18n"}},"time":"2024-03-16T07:18:58.045150333","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInTags":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_tags > test"}},"time":"2024-03-16T07:18:33.495430822","type":"REACTIVE_ERROR"}],"testNegativeColumnNumberToFirstRowLineInConstantComponents":[{"errortype":"ValidationError","result":{"message":"negativeConstantImportHeaderColumnNumber","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_columnNumber"}},"time":"2024-03-16T07:18:59.905767344","type":"REACTIVE_ERROR"}],"testUnExpectedReservedTagPatternForDomainTag":[{"errortype":"ValidationError","result":{"message":"illegalDomainTagPattern","params":{"reservedTagNames":["HiddenTag[tagDefinition=HIDDEN_TAG]"],"path":"OA_tags","expectedPattern":"^[a-z][a-z_0-9]*[a-z0-9]$"}},"time":"2024-03-16T07:18:54.724788209","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > especes","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:54.725207342","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > projet","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:54.726005542","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > type_de_sites","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:54.726541093","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > sites","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:54.727127532","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_tags","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:54.727960421","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test"],"path":"OA_data > pem","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:54.728102095","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataInConstantComponentsExportheaderI18n":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_exportHeader > OA_i18n"}},"time":"2024-03-16T07:18:50.743584129","type":"REACTIVE_ERROR"}],"testMissingRequiredSections":[{"errortype":"ValidationError","result":{"message":"missingVersionApplication","params":{"path":"","actualVersion":"2.0.1"}},"time":"2024-03-16T07:18:51.753298101","type":"REACTIVE_ERROR"}],"testMissingReferencesForAuthorization":[{"errortype":"ValidationError","result":{"message":"invalidComponentReferenceForAuthorizationScopeAuthorization","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet","componentName":"projet"}},"time":"2024-03-16T07:18:37.360140537","type":"REACTIVE_ERROR"}],"testMissingRequiredValueForChecker":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > sites > OA_basicComponents > tze_type_nom > OA_checker > OA_params > OA_reference > OA_name"}},"time":"2024-03-16T07:18:32.356996931","type":"REACTIVE_ERROR"}],"testMissingAnyMandatorySectionsInConstantComponents":[{"errortype":"ValidationError","result":{"message":"missingAnyMandatoriesSections","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_importHeaderTarget > OA_rowNumber","anyMandatorySections":["OA_columnName","OA_columnNumber"]}},"time":"2024-03-16T07:18:55.63480413","type":"REACTIVE_ERROR"}],"testMissingBuilderVersion":[{"errortype":"ValidationError","result":{"message":"missingVersionApplication","params":{"path":"OA_version","expectedVersion":"2.0.1"}},"time":"2024-03-16T07:18:50.223125218","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInAuthorizationScopesExportheader":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_exportHeader"}},"time":"2024-03-16T07:18:43.683936504","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataExportheaderI18n":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > especes > OA_computedComponents > my_computed_column > OA_exportHeader > OA_i18n"}},"time":"2024-03-16T07:18:23.199323733","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInApplication":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_application > OA_i18n"}},"time":"2024-03-16T07:18:48.168767883","type":"REACTIVE_ERROR"}],"testUnknownCheckerName":[{"errortype":"ValidationError","result":{"message":"unknownCheckerName","params":{"path":"OA_data > sites > OA_basicComponents > tze_type_nom","checkerName":"reference","acceptedCheckerNames":["OA_reference","OA_float","OA_date","OA_groovyExpression","OA_boolean","OA_integer","OA_string"]}},"time":"2024-03-16T07:18:36.778089037","type":"REACTIVE_ERROR"}],"testUnknownReferenceColumnToLookForHeaderInDataDynamicComponents":[{"errortype":"ValidationError","result":{"message":"unknownReferenceColumnToLookForHeader","params":{"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_referenceColumnToLookForHeader","listColumnsNameReference":["tze_definition_en","tze_definition_fr","tze_nom_en","tze_nom_fr","tze_nom_key"],"columnNameReference":"nom_key","referenceName":"type_de_sites"}},"time":"2024-03-16T07:18:29.110921762","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataGroups":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_dataGroups > number"}},"time":"2024-03-16T07:19:01.231347015","type":"REACTIVE_ERROR"}],"testBadNameTagInDynamicComponents":[{"errortype":"ValidationError","result":{"message":"badTagsPatterns","params":{"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_tags","acceptedTagPatterns":["__HIDDEN__","__REFERENCE__","test","context","no-tag","__DATA__","__ORDER_([0-9]*)__"]}},"time":"2024-03-16T07:18:49.77577599","type":"REACTIVE_ERROR"}],"testMissingRequiredValueForAuthorization":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_references"}},"time":"2024-03-16T07:18:38.550926202","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInValidation":[{"errortype":"ValidationError","result":{"message":"duplicatedComponentName","params":{"duplicatedPathes":["OA_data > pem > OA_constantComponents > tel_date","OA_data > pem > OA_patternComponents > tel_value > OA_components > tel_date"],"path":"OA_data > pem > OA_patternComponents > tel_value > OA_components > tel_date","componentName":"tel_date"}},"time":"2024-03-16T07:18:32.918550388","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"invalidConfigurationFile","params":null},"time":"2024-03-16T07:18:41.789504144","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":"zet_nom_ke","knownComponents":["tze_type_nom","zet_description_en","zet_nom_fr","zet_nom_key","zet_nom_en","zet_chemin_parent","zet_description_fr"],"path":"OA_data > sites > OA_i18nColumns"}},"time":"2024-03-16T07:18:42.253684562","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"duplicatedComponentHeader","params":{"duplicatedPathes":["OA_data > sites > OA_basicComponents > zet_nom_key > OA_importHeader > OA_headerName","OA_data > sites > OA_basicComponents > zet_chemin_parent"],"header":"zet_chemin_parent","path":"OA_data > sites > OA_basicComponents > zet_chemin_parent"}},"time":"2024-03-16T07:18:53.694175608","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > pem > OA_validations > reference"}},"time":"2024-03-16T07:18:54.205921828","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"duplicatedComponentName","params":{"duplicatedPathes":["OA_data > pem > OA_constantComponents > tel_experimental_site","OA_data > pem > OA_patternComponents > tel_experimental_site"],"path":"OA_data > pem > OA_patternComponents > tel_experimental_site","componentName":"tel_experimental_site"}},"time":"2024-03-16T07:18:57.58018769","type":"REACTIVE_ERROR"}],"testMissingAnyMandatoriesSectionsForAuthorization":[{"errortype":"ValidationError","result":{"message":"missingAnyMandatoriesSections","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_exportHeader > OA_i18n","anyMandatorySections":["OA_component","OA_references"]}},"time":"2024-03-16T07:18:57.115800685","type":"REACTIVE_ERROR"}],"testInvalidNaturalKey":[{"errortype":"ValidationError","result":{"message":"invalidNaturalKey","params":{"path":"OA_data > especes","invalidNaturalKeyElements":["espNom"],"expectedComponentLabel":["colonne_homonyme_entre_referentiels","esp_definition_en","my_computed_column","esp_nom","esp_definition_fr"]}},"time":"2024-03-16T07:18:48.630342007","type":"REACTIVE_ERROR"}],"testInvalidDurationForCheckerDate":[{"errortype":"ValidationError","result":{"message":"invalidDurationCheckerDate","params":{"declaredDuration":"1 Yearss","path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params"}},"time":"2024-03-16T07:19:00.346689767","type":"REACTIVE_ERROR"}],"testMissingRequiredValueForDynamicColumns":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_reference"}},"time":"2024-03-16T07:19:02.71774226","type":"REACTIVE_ERROR"}],"testUnexpectedNameTagInBasicComponent":[{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > pem > OA_basicComponents > projet > OA_tags","notExpectedDomainTags":["testz"]}},"time":"2024-03-16T07:18:47.683381517","type":"REACTIVE_ERROR"}],"testunknownComponentNameValidation":[{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":"sites","knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_validations > reference > OA_columns"}},"time":"2024-03-16T07:18:47.217009461","type":"REACTIVE_ERROR"}],"testNotExpectedTagsInConstantComponents":[{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":["test","context"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_tags","notExpectedDomainTags":["testz"]}},"time":"2024-03-16T07:18:45.167883731","type":"REACTIVE_ERROR"}],"testunknownComponentInDataGroupsInSubmission":[{"errortype":"ValidationError","result":{"message":"unknownComponentForComponentName","params":{"unknownComponent":["ordre_affichag"],"knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_submission > OA_authorization > OA_dataGroups > OA_component"}},"time":"2024-03-16T07:18:51.261720047","type":"REACTIVE_ERROR"}],"testMissingComponentNameInColumnsForAuthorization":[{"errortype":"ValidationError","result":{"message":"missingComponentForComponentName","params":{"knownComponents":["date","bassin","espece","chemin","tel_experimental_network","is_float_value","site_bassin","tel_experimental_site","site","projet","ordre_affichage","plateforme"],"path":"OA_data > pem > OA_validations > reference > OA_columns"}},"time":"2024-03-16T07:19:01.71616522","type":"REACTIVE_ERROR"}],"testBadDomaineTagPattern":[{"errortype":"ValidationError","result":{"message":"badDomainTagPattern","params":{"path":"OA_tags","domainTagPattern":"^[a-z][a-z_0-9]*[a-z0-9]$"}},"time":"2024-03-16T07:18:58.550242375","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"illegalDomainTagPattern","params":{"reservedTagNames":["NoTag[tagDefinition=NO_TAG]"],"path":"OA_tags","expectedPattern":"^[a-z][a-z_0-9]*[a-z0-9]$"}},"time":"2024-03-16T07:18:58.550330948","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > especes","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:58.55046305","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > especes > OA_basicComponents > esp_nom > OA_tags","notExpectedDomainTags":["test"]}},"time":"2024-03-16T07:18:58.55096084","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > projet","notExpectedDomainTags":["test","context"]}},"time":"2024-03-16T07:18:58.55117576","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > type_de_sites","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:58.55143434","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > sites","notExpectedDomainTags":["context"]}},"time":"2024-03-16T07:18:58.5517075","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_tags","notExpectedDomainTags":["test","context"]}},"time":"2024-03-16T07:18:58.552496619","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > pem","notExpectedDomainTags":["test","context"]}},"time":"2024-03-16T07:18:58.552602901","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > pem > OA_basicComponents > projet > OA_tags","notExpectedDomainTags":["test"]}},"time":"2024-03-16T07:18:58.552883813","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"notExpectedDomainTags","params":{"expectedDomainTags":[],"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_tags","notExpectedDomainTags":["test"]}},"time":"2024-03-16T07:18:58.553481777","type":"REACTIVE_ERROR"}]}
\ No newline at end of file
+{"testMissingReferenceNameForChecker":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > sites > OA_basicComponents > tze_type_nom > OA_checker > OA_params > OA_reference > OA_name","referenceName":"toto"}},"time":"2024-03-16T14:00:04.336237475","type":"REACTIVE_ERROR"}],"testUnknownReferenceNameForChecker":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > sites > OA_basicComponents > tze_type_nom > OA_checker > OA_params > OA_reference > OA_name","referenceName":"tr_type_de_sites"}},"time":"2024-03-16T14:00:06.616472429","type":"REACTIVE_ERROR"}],"testNegativeImportHeaderRowNumberInConstantComponents":[{"errortype":"ValidationError","result":{"message":"negativeConstantImportHeaderRowNumber","params":{"path":"OA_data > pem > OA_constantComponents > tel_experimental_network > OA_importHeaderTarget > OA_rowNumber"}},"time":"2024-03-16T14:00:04.927191985","type":"REACTIVE_ERROR"}],"testUnsuportedI18nKeyLanguageInDataExportheaderI18n":[{"errortype":"ValidationError","result":{"message":"unsuportedI18nKeyLanguage","params":{"path":"OA_data > especes > OA_computedComponents > my_computed_column > OA_exportHeader > OA_i18n"}},"time":"2024-03-16T14:00:01.865736812","type":"REACTIVE_ERROR"}],"testUnknownReferenceColumnToLookForHeaderInDataDynamicComponents":[{"errortype":"ValidationError","result":{"message":"unknownReferenceColumnToLookForHeader","params":{"path":"OA_data > sites > OA_dynamicComponents > proprieteDeTaxon > OA_referenceColumnToLookForHeader","listColumnsNameReference":["tze_definition_en","tze_definition_fr","tze_nom_en","tze_nom_fr","tze_nom_key"],"columnNameReference":"nom_key","referenceName":"type_de_sites"}},"time":"2024-03-16T14:00:06.117112402","type":"REACTIVE_ERROR"}],"testmissingComponentNameForAuthorization":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_submission > OA_authorization > OA_authorizationScopes > projet > OA_component"}},"time":"2024-03-16T14:00:03.07507196","type":"REACTIVE_ERROR"}],"testInvalidMinMaxForCheckerDate":[{"errortype":"ValidationError","result":{"message":"invalidMinMaxForCheckerDate","params":{"declaredPattern":"dd/MM/yyyy","path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params","declaredMinValue":"12/31/1980","declaredMaxValue":"31/12/2024"}},"time":"2024-03-16T14:00:01.280955939","type":"REACTIVE_ERROR"}],"testBadEnumSectionTypeInSubmission":[{"errortype":"ValidationError","result":{"message":"badEnumSectionType","params":{"givenValue":"OA_REPOSITORYY","path":"OA_data > pem > OA_submission > OA_strategy","acceptedValues":["OA_INSERTION","OA_REPOSITORY"]}},"time":"2024-03-16T14:00:05.45034669","type":"REACTIVE_ERROR"}],"testMissingOrBadTypeVersionApplication":[{"errortype":"ValidationError","result":{"message":"badVersionPattern","params":{"givenVersion":"deux","path":"OA_application"}},"time":"2024-03-16T14:00:03.725885458","type":"REACTIVE_ERROR"}],"testUnexpectedReferencesForComputation":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_computedComponents > site_bassin > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-16T14:00:00.637517936","type":"REACTIVE_ERROR"}],"testMissingPatternForCheckerDate":[{"errortype":"ValidationError","result":{"message":"missingRequiredValue","params":{"path":"OA_data > pem > OA_basicComponents > date > OA_checker > OA_params > OA_pattern"}},"time":"2024-03-16T14:00:07.204627249","type":"REACTIVE_ERROR"}],"testUnexpectedReferencesForDefaultValue":[{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_basicComponents > chemin > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-16T14:00:02.511610725","type":"REACTIVE_ERROR"},{"errortype":"ValidationError","result":{"message":"unknownReferenceName","params":{"allDataNames":["especes","type_de_sites","projet","pem","sites"],"path":"OA_data > pem > OA_constantComponents > tel_experimental_site > OA_defaultValue > OA_references","referenceName":"site"}},"time":"2024-03-16T14:00:02.512205608","type":"REACTIVE_ERROR"}]}
\ No newline at end of file
diff --git a/ui/cypress/fixtures/applications/ore/monsore/changeMonsore.txt b/ui/cypress/fixtures/applications/ore/monsore/changeMonsore.txt
index 2a4ad0d84..2a988b924 100644
--- a/ui/cypress/fixtures/applications/ore/monsore/changeMonsore.txt
+++ b/ui/cypress/fixtures/applications/ore/monsore/changeMonsore.txt
@@ -1,19 +1,19 @@
-{"result":0.0,"time":[2024,3,16,7,54,25,385523971],"type":"REACTIVE_PROGRESS"}
-{"result":"application.ChangeConfiguration.configuration.rights.checking","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,417066208],"type":"REACTIVE_INFO"}
-{"result":"application.ChangeConfiguration.configuration.rights.ok","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,422712407],"type":"REACTIVE_INFO"}
-{"result":0.02,"time":[2024,3,16,7,54,25,422768835],"type":"REACTIVE_PROGRESS"}
-{"result":"application.ChangeConfiguration.configuration.parsingConfiguration.forSingle","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,422804987],"type":"REACTIVE_INFO"}
-{"result":"application.ChangeConfiguration.configuration.testYamlIsvalid","params":null,"time":[2024,3,16,7,54,25,422815369],"type":"REACTIVE_INFO"}
-{"result":"application.ChangeConfiguration.configuration.yamlIsvalid","params":null,"time":[2024,3,16,7,54,25,422821879],"type":"REACTIVE_INFO"}
-{"result":"application.ChangeConfiguration.configuration.versionIsValid","params":null,"time":[2024,3,16,7,54,25,422827130],"type":"REACTIVE_INFO"}
-{"result":0.03,"time":[2024,3,16,7,54,25,422832219],"type":"REACTIVE_PROGRESS"}
-{"result":"application.ChangeConfiguration.configuration.Starting parsing of configuration","params":{},"time":[2024,3,16,7,54,25,436174286],"type":"REACTIVE_INFO"}
-{"result":0.0,"time":[2024,3,16,7,54,25,436225556],"type":"REACTIVE_PROGRESS"}
-{"result":0.0,"time":[2024,3,16,7,54,25,436232137],"type":"REACTIVE_PROGRESS"}
-{"result":"application.ChangeConfiguration.configuration.CheckSyntax.startValidation.start","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,465967990],"type":"REACTIVE_INFO"}
-{"result":"application.configuration.create.register.start","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,466020302],"type":"REACTIVE_INFO"}
-{"result":"application.ChangeConfiguration.configuration.parsingConfiguration.endparsing","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,466041753],"type":"REACTIVE_INFO"}
-{"result":"application.register","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,478752034],"type":"REACTIVE_INFO"}
-{"result":"application.migrate.start","params":{"oldVersion":"3.0.1","application":"monsore","newVersion":"3.0.2"},"time":[2024,3,16,7,54,25,486832581],"type":"REACTIVE_INFO"}
-{"result":"6b6c3451-24f3-4d8f-af99-3017ddd65cea","time":[2024,3,16,7,54,25,490181608],"type":"REACTIVE_RESULT"}
-{"result":1.0,"time":[2024,3,16,7,54,25,490236293],"type":"REACTIVE_PROGRESS"}
+{"result":0.0,"time":[2024,3,16,14,0,31,482939339],"type":"REACTIVE_PROGRESS"}
+{"result":"application.ChangeConfiguration.configuration.rights.checking","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,540538168],"type":"REACTIVE_INFO"}
+{"result":"application.ChangeConfiguration.configuration.rights.ok","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,547921427],"type":"REACTIVE_INFO"}
+{"result":0.02,"time":[2024,3,16,14,0,31,547989391],"type":"REACTIVE_PROGRESS"}
+{"result":"application.ChangeConfiguration.configuration.parsingConfiguration.forSingle","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,548048691],"type":"REACTIVE_INFO"}
+{"result":"application.ChangeConfiguration.configuration.testYamlIsvalid","params":null,"time":[2024,3,16,14,0,31,548087622],"type":"REACTIVE_INFO"}
+{"result":"application.ChangeConfiguration.configuration.yamlIsvalid","params":null,"time":[2024,3,16,14,0,31,548101462],"type":"REACTIVE_INFO"}
+{"result":"application.ChangeConfiguration.configuration.versionIsValid","params":null,"time":[2024,3,16,14,0,31,548117394],"type":"REACTIVE_INFO"}
+{"result":0.03,"time":[2024,3,16,14,0,31,548145424],"type":"REACTIVE_PROGRESS"}
+{"result":"application.ChangeConfiguration.configuration.Starting parsing of configuration","params":{},"time":[2024,3,16,14,0,31,577883704],"type":"REACTIVE_INFO"}
+{"result":0.0,"time":[2024,3,16,14,0,31,577968246],"type":"REACTIVE_PROGRESS"}
+{"result":0.0,"time":[2024,3,16,14,0,31,577991733],"type":"REACTIVE_PROGRESS"}
+{"result":"application.ChangeConfiguration.configuration.CheckSyntax.startValidation.start","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,607381200],"type":"REACTIVE_INFO"}
+{"result":"application.configuration.create.register.start","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,607451736],"type":"REACTIVE_INFO"}
+{"result":"application.ChangeConfiguration.configuration.parsingConfiguration.endparsing","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,607485666],"type":"REACTIVE_INFO"}
+{"result":"application.register","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,624342231],"type":"REACTIVE_INFO"}
+{"result":"application.migrate.start","params":{"application":"monsore","newVersion":"3.0.2","oldVersion":"3.0.1"},"time":[2024,3,16,14,0,31,640139375],"type":"REACTIVE_INFO"}
+{"result":"e63a1c0a-991a-4907-81dd-2fce2cf81f56","time":[2024,3,16,14,0,31,644333713],"type":"REACTIVE_RESULT"}
+{"result":1.0,"time":[2024,3,16,14,0,31,644421517],"type":"REACTIVE_PROGRESS"}
diff --git a/ui/cypress/fixtures/applications/ore/monsore/createMonsore.txt b/ui/cypress/fixtures/applications/ore/monsore/createMonsore.txt
index 9e87e93f4..1a5f40d51 100644
--- a/ui/cypress/fixtures/applications/ore/monsore/createMonsore.txt
+++ b/ui/cypress/fixtures/applications/ore/monsore/createMonsore.txt
@@ -1,22 +1,22 @@
-{"result":0.0,"time":[2024,3,16,7,54,25,175397943],"type":"REACTIVE_PROGRESS"}
-{"result":"application.createConfiguration.configuration.rights.checking","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,179627546],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.configuration.rights.ok","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,185184573],"type":"REACTIVE_INFO"}
-{"result":0.02,"time":[2024,3,16,7,54,25,185234413],"type":"REACTIVE_PROGRESS"}
-{"result":"application.createConfiguration.configuration.parsingConfiguration.forSingle","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,185253268],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.configuration.testYamlIsvalid","params":null,"time":[2024,3,16,7,54,25,185259025],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.configuration.yamlIsvalid","params":null,"time":[2024,3,16,7,54,25,185263045],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.configuration.versionIsValid","params":null,"time":[2024,3,16,7,54,25,185267025],"type":"REACTIVE_INFO"}
-{"result":0.03,"time":[2024,3,16,7,54,25,185270222],"type":"REACTIVE_PROGRESS"}
-{"result":"application.createConfiguration.configuration.Starting parsing of configuration","params":{},"time":[2024,3,16,7,54,25,210967752],"type":"REACTIVE_INFO"}
-{"result":0.0,"time":[2024,3,16,7,54,25,211047805],"type":"REACTIVE_PROGRESS"}
-{"result":0.0,"time":[2024,3,16,7,54,25,211058662],"type":"REACTIVE_PROGRESS"}
-{"result":"application.createConfiguration.configuration.CheckSyntax.startValidation.start","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,235647409],"type":"REACTIVE_INFO"}
-{"result":"application.configuration.create.register.start","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,235707368],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.configuration.parsingConfiguration.endparsing","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,235730757],"type":"REACTIVE_INFO"}
-{"result":"application.register","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,376005438],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.viewCreation.start","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,376060431],"type":"REACTIVE_INFO"}
-{"result":0.5,"time":[2024,3,16,7,54,25,376070206],"type":"REACTIVE_PROGRESS"}
-{"result":"application.createConfiguration.viewCreation.end","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,376076371],"type":"REACTIVE_INFO"}
-{"result":"6b6c3451-24f3-4d8f-af99-3017ddd65cea","time":[2024,3,16,7,54,25,376080110],"type":"REACTIVE_RESULT"}
-{"result":1.0,"time":[2024,3,16,7,54,25,376090433],"type":"REACTIVE_PROGRESS"}
-{"result":1.0,"time":[2024,3,16,7,54,25,376097578],"type":"REACTIVE_PROGRESS"}
+{"result":0.0,"time":[2024,3,16,14,0,31,210004791],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.configuration.rights.checking","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,216805629],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.configuration.rights.ok","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,224570577],"type":"REACTIVE_INFO"}
+{"result":0.02,"time":[2024,3,16,14,0,31,224880908],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.configuration.parsingConfiguration.forSingle","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,225000753],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.configuration.testYamlIsvalid","params":null,"time":[2024,3,16,14,0,31,225038829],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.configuration.yamlIsvalid","params":null,"time":[2024,3,16,14,0,31,225075437],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.configuration.versionIsValid","params":null,"time":[2024,3,16,14,0,31,225094266],"type":"REACTIVE_INFO"}
+{"result":0.03,"time":[2024,3,16,14,0,31,225113186],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.configuration.Starting parsing of configuration","params":{},"time":[2024,3,16,14,0,31,258316454],"type":"REACTIVE_INFO"}
+{"result":0.0,"time":[2024,3,16,14,0,31,258380991],"type":"REACTIVE_PROGRESS"}
+{"result":0.0,"time":[2024,3,16,14,0,31,258393970],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.configuration.CheckSyntax.startValidation.start","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,279341233],"type":"REACTIVE_INFO"}
+{"result":"application.configuration.create.register.start","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,279410413],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.configuration.parsingConfiguration.endparsing","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,279652561],"type":"REACTIVE_INFO"}
+{"result":"application.register","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,470003038],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.viewCreation.start","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,470113565],"type":"REACTIVE_INFO"}
+{"result":0.5,"time":[2024,3,16,14,0,31,470399508],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.viewCreation.end","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,470452646],"type":"REACTIVE_INFO"}
+{"result":"e63a1c0a-991a-4907-81dd-2fce2cf81f56","time":[2024,3,16,14,0,31,470472591],"type":"REACTIVE_RESULT"}
+{"result":1.0,"time":[2024,3,16,14,0,31,470659004],"type":"REACTIVE_PROGRESS"}
+{"result":1.0,"time":[2024,3,16,14,0,31,470700883],"type":"REACTIVE_PROGRESS"}
diff --git a/ui/cypress/fixtures/applications/ore/monsore/validateMonsore.txt b/ui/cypress/fixtures/applications/ore/monsore/validateMonsore.txt
index 02cc010ec..500ffefb0 100644
--- a/ui/cypress/fixtures/applications/ore/monsore/validateMonsore.txt
+++ b/ui/cypress/fixtures/applications/ore/monsore/validateMonsore.txt
@@ -1,10 +1,10 @@
-{"result":"application.createConfiguration.testYamlIsvalid","params":null,"time":[2024,3,16,7,54,25,79189553],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.yamlIsvalid","params":null,"time":[2024,3,16,7,54,25,79465274],"type":"REACTIVE_INFO"}
-{"result":"application.createConfiguration.versionIsValid","params":null,"time":[2024,3,16,7,54,25,79485691],"type":"REACTIVE_INFO"}
-{"result":0.01,"time":[2024,3,16,7,54,25,79493067],"type":"REACTIVE_PROGRESS"}
-{"result":"application.createConfiguration.Starting parsing of configuration","params":{},"time":[2024,3,16,7,54,25,98333111],"type":"REACTIVE_INFO"}
-{"result":0.0,"time":[2024,3,16,7,54,25,98598974],"type":"REACTIVE_PROGRESS"}
-{"result":0.0,"time":[2024,3,16,7,54,25,98616194],"type":"REACTIVE_PROGRESS"}
-{"result":"application.createConfiguration.CheckSyntax.startValidation.start","params":{"applicationName":"monsore"},"time":[2024,3,16,7,54,25,125199815],"type":"REACTIVE_INFO"}
-{"result":{"id":"4cd68688-9973-40b6-bd42-0cf258df119c","creationDate":null,"updateDate":null,"name":"monsore","version":null,"data":["themes","especes","variables","type_de_sites","site_theme_datatype","unites","projet","valeurs_qualitatives","type_de_fichiers","variables_et_unites_par_types_de_donnees","pem","sites"],"additionalFiles":["fichiers","utilisateurs"],"configuration":{"version":{"version":"2.0.1","runTimeVersion":{}},"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"},{"tagDefinition":"DOMAIN_TAG","tagName":"data"},{"tagDefinition":"DOMAIN_TAG","tagName":"test"},{"tagDefinition":"DOMAIN_TAG","tagName":"unit"},{"tagDefinition":"DOMAIN_TAG","tagName":"temporal"}],"i18n":{"tags":{"unit":{"en":"unit","fr":"unité"},"data":{"en":"data","fr":"données"},"test":{"en":"test","fr":"test"},"context":{"en":"context","fr":"contexte"},"temporal":{"en":"temporality","fr":"temporalité"}},"application":{"en":"SOERE my SOERE","fr":"SOERE mon SOERE"},"data":{"themes":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"description_fr":{"en":"description_en","fr":"description_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Thematic","fr":"Thème"}},"variables":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"nom_key":{"en":"nom_en","fr":"nom_fr"},"definition_fr":{"en":"definition_en","fr":"definition_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Variables","fr":"Variables"}},"especes":{"validations":{},"components":{"my_computed_column":{"exportHeader":{"en":"computed column","fr":"colonne calculée"}},"esp_definition_en":{"exportHeader":{"en":"definition","fr":"definition"}},"esp_definition_fr":{"exportHeader":{"en":"définition","fr":"définition"}},"esp_nom":{"exportHeader":{"en":"code","fr":"code"}}},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"esp_definition_fr":{"en":"esp_definition_en","fr":"esp_definition_fr"}},"i18nDisplay":{"en":"{esp_nom}","fr":"{esp_nom}"},"i18n":{"en":"Species","fr":"Espèces"}},"site_theme_datatype":{"validations":{"checkDatatype":{"fr":"test"},"projetRef":{"fr":"référence au projet"},"sitesRef":{"fr":"référence au site"},"themesRef":{"fr":"référence au theme"}},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{},"i18nDisplay":{"en":"projet name: {projet}, site name : {site}, theme name : {theme}, data type name : {datatype}","fr":"nom du projet: {projet}, nom du site : {site}, nom du thème : {theme}, nom du type de données : {datatype}"},"i18n":{"en":"Data types by site and project","fr":"Types de données par site et projet"}},"type_de_sites":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"tze_nom_key":{"en":"tze_nom_en","fr":"tze_nom_fr"},"tze_definition_fr":{"en":"tze_definition_en","fr":"tze_definition_fr"}},"i18nDisplay":{"en":"{tze_nom_key}","fr":"{tze_nom_key}"},"i18n":{"en":"Sites types","fr":"Types de sites"}},"unites":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"code_key":{"en":"code_en","fr":"code_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{nom_key} ({code_key})","fr":"{nom_key} ({code_key})"},"i18n":{"en":"Units","fr":"Unités"}},"projet":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"nom_key":{"en":"nom_en","fr":"nom_fr"},"definition_fr":{"en":"definition_en","fr":"definition_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Project","fr":"Projet"}},"valeurs_qualitatives":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"valeur_key":{"en":"valeur_en","fr":"valeur_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{valeur_key}","fr":"{valeur_key}"},"i18n":{"en":"Qualitative values","fr":"Valeurs qualitatives"}},"variables_et_unites_par_types_de_donnees":{"validations":{"checkDatatype":{"fr":"test"},"uniteRef":{"fr":"référence à l'unité'"},"variableRef":{"fr":"référence à la variable"}},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{},"i18nDisplay":{"en":"datatype name : {datatype}, variable name : {variable}, : unit name {unite}","fr":"nom du type de données : {datatype}, nom de la variable : {variable}, : nom de l'unité {unite}"},"i18n":{"fr":"référence à la variable"}},"type_de_fichiers":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"description_fr":{"en":"description_en","fr":"description_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Files types","fr":"Types de fichiers"}},"pem":{"validations":{"unitOfIndividus":{"fr":"vérifie l'unité du nombre d'individus"},"unitOfColor":{"fr":"vérifie l'unité de la couleur des individus"}},"components":{"color_value":{"exportHeader":{"en":"United colors","fr":"Couleur des individus"}},"individusNumbervalue":{"exportHeader":{"fr":"Nombre d'individus"}}},"submissions":{"authorizationScopes":{"localization":{"en":"site","fr":"site"},"projet":{"en":"project","fr":"projet"}},"datagroups":{"qualitatif":{"en":"Qualitative","fr":"Qualitatif"},"quantitatif":{"en":"Quantitative","fr":"Quantitatif"}}},"i18nColumns":{},"i18nDisplay":{"en":"TRap in ascent","fr":"Piégeage en montée"},"i18n":{"en":"Trap in ascent","fr":"Piégeage en Montée"}},"sites":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"zet_nom_key":{"en":"zet_nom_en","fr":"zet_nom_fr"},"zet_description_fr":{"en":"zet_description_en","fr":"zet_description_fr"}},"i18nDisplay":{"en":"{zet_nom_key}","fr":"{zet_nom_key}"},"i18n":{"en":"Site","fr":"Site"}}},"rightsrequest":{"description":{"en":"You can request rights to the monsore application by filling out this form","fr":"Vous pouvez demander des droits à l'application monsore en remplissant ce formulaire"},"fields":{"endDate":{"en":"Project end date","fr":"Date de fin du projet"},"organization":{"en":"Name of research organization","fr":"Nom de l'organisme de recherche"},"project":{"en":"Description of the research project","fr":"Description du projet de recherche"},"startDate":{"en":"Project start date","fr":"Date de début du projet"}}},"additionalFiles":{"utilisateurs":{"i18n":{"en":"User","fr":"Users"},"fields":{"nom":{"en":"Name","fr":"Nom"},"prenom":{"en":"Surname","fr":"Prénom"}}},"fichiers":{"i18n":{"en":"Files","fr":"Fichiers"},"fields":{"date":{"en":"Date","fr":"Date"},"site":{"en":"Place","fr":"Site"},"poids":{"en":"Weight","fr":"Poids"},"nom":{"en":"Name","fr":"Nom"},"age":{"en":"Age","fr":"Age"}}}}},"applicationDescription":{"name":"monsore","version":{"version":"3.0.1","runTimeVersion":{}},"defaultLanguage":"fr","comment":"Fichier de test de l'application brokenADOM"},"dataDescription":{"themes":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_fr":{"type":"BasicComponent","componentKey":"description_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_fr","exportHeaderName":"description_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_en":{"type":"BasicComponent","componentKey":"description_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_en","exportHeaderName":"description_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"especes":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["esp_nom"],"componentDescriptions":{"colonne_homonyme_entre_referentiels":{"type":"BasicComponent","componentKey":"colonne_homonyme_entre_referentiels","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"colonne_homonyme_entre_referentiels","exportHeaderName":"colonne_homonyme_entre_referentiels","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"esp_definition_en":{"type":"BasicComponent","componentKey":"esp_definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"esp_definition_en","exportHeaderName":"esp_definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"my_computed_column":{"type":"ComputedComponent","componentKey":"my_computed_column","tags":[{"tagDefinition":"HIDDEN_TAG"}],"exportHeaderName":"my_computed_column","required":false,"mandatory":"OPTIONAL","checker":null,"computationChecker":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"my value\";\n","references":null,"codify":false,"data":null},"submissionAuthorizationScope":null,"hidden":true,"chartDescription":null},"esp_nom":{"type":"BasicComponent","componentKey":"esp_nom","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"test"}],"importHeader":"esp_nom","exportHeaderName":"esp_nom","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"esp_definition_fr":{"type":"BasicComponent","componentKey":"esp_definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"esp_definition_fr","exportHeaderName":"esp_definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"variables":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_en":{"type":"BasicComponent","componentKey":"definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_en","exportHeaderName":"definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"is_qualitative":{"type":"BasicComponent","componentKey":"is_qualitative","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"isQualitative","exportHeaderName":"is_qualitative","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_fr":{"type":"BasicComponent","componentKey":"definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_fr","exportHeaderName":"definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"type_de_sites":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["tze_nom_key"],"componentDescriptions":{"tze_nom_key":{"type":"BasicComponent","componentKey":"tze_nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_nom_key","exportHeaderName":"tze_nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_nom_fr":{"type":"BasicComponent","componentKey":"tze_nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_nom_fr","exportHeaderName":"tze_nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_definition_fr":{"type":"BasicComponent","componentKey":"tze_definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_definition_fr","exportHeaderName":"tze_definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_nom_en":{"type":"BasicComponent","componentKey":"tze_nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_nom_en","exportHeaderName":"tze_nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_definition_en":{"type":"BasicComponent","componentKey":"tze_definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_definition_en","exportHeaderName":"tze_definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"site_theme_datatype":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["projet","site","theme","datatype"],"componentDescriptions":{"site":{"type":"BasicComponent","componentKey":"site","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du site","exportHeaderName":"site","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"theme":{"type":"BasicComponent","componentKey":"theme","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du thème","exportHeaderName":"theme","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"projet":{"type":"BasicComponent","componentKey":"projet","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du projet","exportHeaderName":"projet","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"datatype":{"type":"BasicComponent","componentKey":"datatype","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du type de données","exportHeaderName":"datatype","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{"projetRef":{"checkers":[{"type":"ReferenceChecker","componentKey":"projetRef","multiplicity":"ONE","required":false,"refType":"projet","isRecursive":false,"isParent":false}],"tags":[{"tagDefinition":"NO_TAG"}],"columns":["projet"],"required":false,"mandatory":"OPTIONAL"},"sitesRef":{"checkers":[{"type":"ReferenceChecker","componentKey":"sitesRef","multiplicity":"ONE","required":false,"refType":"sites","isRecursive":false,"isParent":false}],"tags":[{"tagDefinition":"NO_TAG"}],"columns":["site"],"required":false,"mandatory":"OPTIONAL"},"themesRef":{"checkers":[{"type":"ReferenceChecker","componentKey":"themesRef","multiplicity":"ONE","required":false,"refType":"themes","isRecursive":false,"isParent":false}],"tags":[{"tagDefinition":"NO_TAG"}],"columns":["theme"],"required":false,"mandatory":"OPTIONAL"},"checkDatatype":{"checkers":[{"type":"GroovyExpressionChecker","multiplicity":"ONE","required":false,"expression":"String datatype = Arrays.stream((String)datum.datatype).split(\"_\")\n                .collect{it.substring(0, 1)}\n                .join(); \n                return application.getDataType().contains(datatype);\n","references":null,"codify":true,"data":null}],"tags":[{"tagDefinition":"NO_TAG"}],"columns":["datatype"],"required":false,"mandatory":"OPTIONAL"}},"depends":[],"migrations":null,"hidden":false,"order":9999},"unites":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["nom_key"],"componentDescriptions":{"code_en":{"type":"BasicComponent","componentKey":"code_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"code_en","exportHeaderName":"code_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"code_key":{"type":"BasicComponent","componentKey":"code_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"code_key","exportHeaderName":"code_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"code_fr":{"type":"BasicComponent","componentKey":"code_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"code_fr","exportHeaderName":"code_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"projet":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"},{"tagDefinition":"DOMAIN_TAG","tagName":"test"},{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_en":{"type":"BasicComponent","componentKey":"definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_en","exportHeaderName":"definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"colonne_homonyme_entre_referentiels":{"type":"BasicComponent","componentKey":"colonne_homonyme_entre_referentiels","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"colonne_homonyme_entre_referentiels","exportHeaderName":"colonne_homonyme_entre_referentiels","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_fr":{"type":"BasicComponent","componentKey":"definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_fr","exportHeaderName":"definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"valeurs_qualitatives":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["nom_key","valeur_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"valeur_en":{"type":"BasicComponent","componentKey":"valeur_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"valeur_en","exportHeaderName":"valeur_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"valeur_key":{"type":"BasicComponent","componentKey":"valeur_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"valeur_key","exportHeaderName":"valeur_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"valeur_fr":{"type":"BasicComponent","componentKey":"valeur_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"valeur_fr","exportHeaderName":"valeur_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"type_de_fichiers":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"HIDDEN_TAG"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_fr":{"type":"BasicComponent","componentKey":"description_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_fr","exportHeaderName":"description_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_en":{"type":"BasicComponent","componentKey":"description_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_en","exportHeaderName":"description_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"variables_et_unites_par_types_de_donnees":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["datatype","variable"],"componentDescriptions":{"variable":{"type":"BasicComponent","componentKey":"variable","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom de la variable","exportHeaderName":"variable","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"datatype":{"type":"BasicComponent","componentKey":"datatype","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du type de données","exportHeaderName":"datatype","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"unite":{"type":"BasicComponent","componentKey":"unite","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom de l'unité","exportHeaderName":"unite","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{"variableRef":{"checkers":[{"type":"ReferenceChecker","componentKey":"variableRef","multiplicity":"ONE","required":false,"refType":"variables","isRecursive":false,"isParent":false}],"tags":[{"tagDefinition":"NO_TAG"}],"columns":["variable"],"required":false,"mandatory":"OPTIONAL"},"uniteRef":{"checkers":[{"type":"ReferenceChecker","componentKey":"uniteRef","multiplicity":"ONE","required":false,"refType":"unites","isRecursive":false,"isParent":false}],"tags":[{"tagDefinition":"NO_TAG"}],"columns":["unite"],"required":false,"mandatory":"OPTIONAL"},"checkDatatype":{"checkers":[{"type":"GroovyExpressionChecker","multiplicity":"ONE","required":false,"expression":"String datatype = Arrays.stream((String)(datum.datatype).split(\"_\")) .collect{it.substring(0, 1)} .join();  return  application.getDataType().contains(datatype);\n","references":null,"codify":true,"data":null}],"tags":[{"tagDefinition":"NO_TAG"}],"columns":["datatype"],"required":false,"mandatory":"OPTIONAL"}},"depends":[],"migrations":null,"hidden":false,"order":9999},"pem":{"separator":";","headerLine":4,"firstRowLine":5,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"ORDER_TAG","tagOrder":2},{"tagDefinition":"DOMAIN_TAG","tagName":"data"},{"tagDefinition":"DOMAIN_TAG","tagName":"test"},{"tagDefinition":"DOMAIN_TAG","tagName":"context"},{"tagDefinition":"DATA_TAG"}],"naturalKey":["projet","site","plateforme","date","espece"],"componentDescriptions":{"date":{"type":"BasicComponent","componentKey":"date","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":true,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"ORDER_TAG","tagOrder":1},{"tagDefinition":"DOMAIN_TAG","tagName":"temporal"}],"importHeader":"date","exportHeaderName":"date","required":true,"mandatory":"OPTIONAL","checker":{"type":"DateChecker","multiplicity":"ONE","required":true,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"site":{"type":"BasicComponent","componentKey":"site","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"site","exportHeaderName":"site","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"site","multiplicity":"ONE","required":false,"refType":"sites","isRecursive":false,"isParent":false},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"__projet__":{"type":"AuthorizationScopeComponent","componentKey":null,"authorizationScopeName":"projet","references":"projet","component":"projet","exportHeaderName":"projet","submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"individusNumber_unit":{"type":"ComputedComponent","componentKey":"individusNumber_unit","tags":[{"tagDefinition":"NO_TAG"}],"exportHeaderName":null,"required":true,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"individusNumber_unit","multiplicity":"ONE","required":true,"refType":"unites","isRecursive":false,"isParent":false},"computationChecker":{"type":"ComputationChecker","multiplicity":"ONE","required":true,"expression":"'sans_unite'","references":null,"codify":false,"data":null},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"projet":{"type":"BasicComponent","componentKey":"projet","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"ORDER_TAG","tagOrder":2},{"tagDefinition":"DOMAIN_TAG","tagName":"test"}],"importHeader":"projet","exportHeaderName":"projet","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"projet","multiplicity":"ONE","required":false,"refType":"projet","isRecursive":false,"isParent":false},"submissionAuthorizationScope":"projet","hidden":false,"chartDescription":null},"espece":{"type":"BasicComponent","componentKey":"espece","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"espece","exportHeaderName":"espece","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"espece","multiplicity":"ONE","required":false,"refType":"especes","isRecursive":false,"isParent":false},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"plateforme":{"type":"BasicComponent","componentKey":"plateforme","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"plateforme","exportHeaderName":"plateforme","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"color_value":{"type":"BasicComponent","componentKey":"color_value","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"Couleur des individus","exportHeaderName":"color_value","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"color_value","multiplicity":"ONE","required":false,"refType":"valeurs_qualitatives","isRecursive":false,"isParent":false},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"individusNumbervalue":{"type":"BasicComponent","componentKey":"individusNumbervalue","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return 0","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"Nombre d'individus","exportHeaderName":"individusNumbervalue","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"color_unit":{"type":"ComputedComponent","componentKey":"color_unit","tags":[{"tagDefinition":"NO_TAG"}],"exportHeaderName":null,"required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"color_unit","multiplicity":"ONE","required":false,"refType":"unites","isRecursive":false,"isParent":false},"computationChecker":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"'sans_unite'","references":null,"codify":false,"data":null},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":{"strategy":"OA_REPOSITORY","fileNameParsing":{"pattern":"(.*)_(.*)_(.*)_(.*).csv","authorizationScopes":{"localization":1,"projet":2},"startDate":null,"endDate":null},"authorization":{"authorizationScopes":{"projet":{"references":"projet","component":"projet"},"localization":{"references":"sites","component":null}},"timescope":{"component":"date"},"datagroups":{"datagroups":{"qualitatif":["color_unit"],"quantitatif":["individusNumbervalue"]}}}},"validations":{"unitOfColor":{"checkers":[],"tags":[{"tagDefinition":"NO_TAG"}],"columns":null,"required":false,"mandatory":"OPTIONAL"},"unitOfIndividus":{"checkers":[],"tags":[{"tagDefinition":"NO_TAG"}],"columns":null,"required":true,"mandatory":"OPTIONAL"}},"depends":[{"type":"DependsReferences","references":"sites","component":"site"},{"type":"DependsReferences","references":"unites","component":"individusNumber_unit"},{"type":"DependsReferences","references":"projet","component":"projet"},{"type":"DependsReferences","references":"especes","component":"espece"},{"type":"DependsReferences","references":"valeurs_qualitatives","component":"color_value"},{"type":"DependsReferences","references":"unites","component":"color_unit"}],"migrations":null,"hidden":false,"order":2},"sites":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["zet_chemin_parent","zet_nom_key"],"componentDescriptions":{"tze_type_nom":{"type":"BasicComponent","componentKey":"tze_type_nom","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":true,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_type_nom","exportHeaderName":"tze_type_nom","required":true,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"tze_type_nom","multiplicity":"ONE","required":true,"refType":"type_de_sites","isRecursive":false,"isParent":true},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_description_en":{"type":"BasicComponent","componentKey":"zet_description_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_description_en","exportHeaderName":"zet_description_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_nom_fr":{"type":"BasicComponent","componentKey":"zet_nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_nom_fr","exportHeaderName":"zet_nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_nom_key":{"type":"BasicComponent","componentKey":"zet_nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_nom_key","exportHeaderName":"zet_nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_nom_en":{"type":"BasicComponent","componentKey":"zet_nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_nom_en","exportHeaderName":"zet_nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_description_fr":{"type":"BasicComponent","componentKey":"zet_description_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_description_fr","exportHeaderName":"zet_description_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_chemin_parent":{"type":"BasicComponent","componentKey":"zet_chemin_parent","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_chemin_parent","exportHeaderName":"zet_chemin_parent","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"zet_chemin_parent","multiplicity":"ONE","required":false,"refType":"sites","isRecursive":true,"isParent":true},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[{"type":"DependsParent","references":"type_de_sites","component":"tze_type_nom"},{"type":"DependsParent","references":"sites","component":"zet_chemin_parent"}],"migrations":null,"hidden":false,"order":9999}},"rightsRequest":{"format":{"organization":{"type":"RightsRequestField","required":true,"checker":{"type":"StringChecker","multiplicity":"ONE","required":true,"pattern":".*"}},"project":{"type":"RightsRequestField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":".*"}},"startDate":{"type":"RightsRequestField","required":false,"checker":{"type":"DateChecker","multiplicity":"ONE","required":false,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null}},"endDate":{"type":"RightsRequestField","required":false,"checker":{"type":"DateChecker","multiplicity":"ONE","required":false,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null}}}},"additionalFiles":{"fichiers":{"format":{"nom":{"type":"AdditionalFileField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":"[a-z]*"}},"date":{"type":"AdditionalFileField","required":false,"checker":{"type":"DateChecker","multiplicity":"ONE","required":false,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null}},"age":{"type":"AdditionalFileField","required":false,"checker":{"type":"IntegerChecker","multiplicity":"ONE","required":false,"min":-2147483648,"max":2147483647}},"poids":{"type":"AdditionalFileField","required":false,"checker":{"type":"FloatChecker","multiplicity":"ONE","required":false,"min":10.0,"max":100.0}},"site":{"type":"AdditionalFileField","required":true,"checker":{"type":"ReferenceChecker","componentKey":"site","multiplicity":"ONE","required":true,"refType":"sites","isRecursive":false,"isParent":false}}}},"utilisateurs":{"format":{"nom":{"type":"AdditionalFileField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":"[a-z]*"}},"prenom":{"type":"AdditionalFileField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":"[a-z]*"}}}}},"hierarchicalNodes":[{"nodeName":"especes","componentKey":"espece","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"projet","componentKey":"projet","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"pem","componentKey":"individusNumber_unit","parent":null,"children":[],"depends":["projet","sites","especes","valeurs_qualitatives","unites","type_de_sites"],"order":2,"isRecursive":false},{"nodeName":"themes","componentKey":"theme","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"site_theme_datatype","componentKey":"theme","parent":null,"children":[],"depends":["projet","sites","themes","type_de_sites"],"order":9999,"isRecursive":false},{"nodeName":"type_de_fichiers","componentKey":null,"parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"type_de_sites","componentKey":"tze_type_nom","parent":null,"children":[{"nodeName":"sites","componentKey":"zet_chemin_parent","parent":"type_de_sites","children":[],"depends":["type_de_sites"],"order":9999,"isRecursive":true}],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"unites","componentKey":"individusNumber_unit","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"valeurs_qualitatives","componentKey":"color_value","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"variables","componentKey":"variable","parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"variables_et_unites_par_types_de_donnees","componentKey":"unite","parent":null,"children":[],"depends":["variables","unites"],"order":9999,"isRecursive":false}],"requiredAuthorizationsAttributes":["localization","projet"],"hiddenData":["type_de_fichiers"]},"configFile":null},"time":[2024,3,16,7,54,25,125580263],"type":"REACTIVE_RESULT"}
-{"result":1.0,"time":[2024,3,16,7,54,25,125605635],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.testYamlIsvalid","params":null,"time":[2024,3,16,14,0,30,907558577],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.yamlIsvalid","params":null,"time":[2024,3,16,14,0,30,908098398],"type":"REACTIVE_INFO"}
+{"result":"application.createConfiguration.versionIsValid","params":null,"time":[2024,3,16,14,0,30,908119711],"type":"REACTIVE_INFO"}
+{"result":0.01,"time":[2024,3,16,14,0,30,908828028],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.Starting parsing of configuration","params":{},"time":[2024,3,16,14,0,31,70519980],"type":"REACTIVE_INFO"}
+{"result":0.0,"time":[2024,3,16,14,0,31,71130020],"type":"REACTIVE_PROGRESS"}
+{"result":0.0,"time":[2024,3,16,14,0,31,71621113],"type":"REACTIVE_PROGRESS"}
+{"result":"application.createConfiguration.CheckSyntax.startValidation.start","params":{"applicationName":"monsore"},"time":[2024,3,16,14,0,31,146951406],"type":"REACTIVE_INFO"}
+{"result":{"id":"9af1fc37-1431-4274-a13c-59732e30d8b0","creationDate":null,"updateDate":null,"name":"monsore","version":null,"data":["themes","especes","variables","type_de_sites","site_theme_datatype","unites","projet","valeurs_qualitatives","type_de_fichiers","variables_et_unites_par_types_de_donnees","pem","sites"],"additionalFiles":["fichiers","utilisateurs"],"configuration":{"version":{"version":"2.0.1","runTimeVersion":{}},"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"},{"tagDefinition":"DOMAIN_TAG","tagName":"data"},{"tagDefinition":"DOMAIN_TAG","tagName":"test"},{"tagDefinition":"DOMAIN_TAG","tagName":"unit"},{"tagDefinition":"DOMAIN_TAG","tagName":"temporal"}],"i18n":{"tags":{"unit":{"en":"unit","fr":"unité"},"data":{"en":"data","fr":"données"},"test":{"en":"test","fr":"test"},"context":{"en":"context","fr":"contexte"},"temporal":{"en":"temporality","fr":"temporalité"}},"application":{"en":"SOERE my SOERE","fr":"SOERE mon SOERE"},"data":{"themes":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"description_fr":{"en":"description_en","fr":"description_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Thematic","fr":"Thème"}},"variables":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"nom_key":{"en":"nom_en","fr":"nom_fr"},"definition_fr":{"en":"definition_en","fr":"definition_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Variables","fr":"Variables"}},"especes":{"validations":{},"components":{"my_computed_column":{"exportHeader":{"en":"computed column","fr":"colonne calculée"}},"esp_definition_en":{"exportHeader":{"en":"definition","fr":"definition"}},"esp_definition_fr":{"exportHeader":{"en":"définition","fr":"définition"}},"esp_nom":{"exportHeader":{"en":"code","fr":"code"}}},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"esp_definition_fr":{"en":"esp_definition_en","fr":"esp_definition_fr"}},"i18nDisplay":{"en":"{esp_nom}","fr":"{esp_nom}"},"i18n":{"en":"Species","fr":"Espèces"}},"site_theme_datatype":{"validations":{"checkDatatype":{"fr":"test"},"projetRef":{"fr":"référence au projet"},"sitesRef":{"fr":"référence au site"},"themesRef":{"fr":"référence au theme"}},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{},"i18nDisplay":{"en":"projet name: {projet}, site name : {site}, theme name : {theme}, data type name : {datatype}","fr":"nom du projet: {projet}, nom du site : {site}, nom du thème : {theme}, nom du type de données : {datatype}"},"i18n":{"en":"Data types by site and project","fr":"Types de données par site et projet"}},"type_de_sites":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"tze_nom_key":{"en":"tze_nom_en","fr":"tze_nom_fr"},"tze_definition_fr":{"en":"tze_definition_en","fr":"tze_definition_fr"}},"i18nDisplay":{"en":"{tze_nom_key}","fr":"{tze_nom_key}"},"i18n":{"en":"Sites types","fr":"Types de sites"}},"unites":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"code_key":{"en":"code_en","fr":"code_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{nom_key} ({code_key})","fr":"{nom_key} ({code_key})"},"i18n":{"en":"Units","fr":"Unités"}},"projet":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"nom_key":{"en":"nom_en","fr":"nom_fr"},"definition_fr":{"en":"definition_en","fr":"definition_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Project","fr":"Projet"}},"valeurs_qualitatives":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"valeur_key":{"en":"valeur_en","fr":"valeur_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{valeur_key}","fr":"{valeur_key}"},"i18n":{"en":"Qualitative values","fr":"Valeurs qualitatives"}},"variables_et_unites_par_types_de_donnees":{"validations":{"checkDatatype":{"fr":"test"},"uniteRef":{"fr":"référence à l'unité'"},"variableRef":{"fr":"référence à la variable"}},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{},"i18nDisplay":{"en":"datatype name : {datatype}, variable name : {variable}, : unit name {unite}","fr":"nom du type de données : {datatype}, nom de la variable : {variable}, : nom de l'unité {unite}"},"i18n":{"fr":"référence à la variable"}},"type_de_fichiers":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"description_fr":{"en":"description_en","fr":"description_fr"},"nom_key":{"en":"nom_en","fr":"nom_fr"}},"i18nDisplay":{"en":"{nom_key}","fr":"{nom_key}"},"i18n":{"en":"Files types","fr":"Types de fichiers"}},"pem":{"validations":{"unitOfIndividus":{"fr":"vérifie l'unité du nombre d'individus"},"unitOfColor":{"fr":"vérifie l'unité de la couleur des individus"}},"components":{"color_value":{"exportHeader":{"en":"United colors","fr":"Couleur des individus"}},"individusNumbervalue":{"exportHeader":{"fr":"Nombre d'individus"}}},"submissions":{"authorizationScopes":{"localization":{"en":"site","fr":"site"},"projet":{"en":"project","fr":"projet"}},"datagroups":{"qualitatif":{"en":"Qualitative","fr":"Qualitatif"},"quantitatif":{"en":"Quantitative","fr":"Quantitatif"}}},"i18nColumns":{},"i18nDisplay":{"en":"TRap in ascent","fr":"Piégeage en montée"},"i18n":{"en":"Trap in ascent","fr":"Piégeage en Montée"}},"sites":{"validations":{},"components":{},"submissions":{"authorizationScopes":{},"datagroups":{}},"i18nColumns":{"zet_nom_key":{"en":"zet_nom_en","fr":"zet_nom_fr"},"zet_description_fr":{"en":"zet_description_en","fr":"zet_description_fr"}},"i18nDisplay":{"en":"{zet_nom_key}","fr":"{zet_nom_key}"},"i18n":{"en":"Site","fr":"Site"}}},"rightsrequest":{"description":{"en":"You can request rights to the monsore application by filling out this form","fr":"Vous pouvez demander des droits à l'application monsore en remplissant ce formulaire"},"fields":{"endDate":{"en":"Project end date","fr":"Date de fin du projet"},"organization":{"en":"Name of research organization","fr":"Nom de l'organisme de recherche"},"project":{"en":"Description of the research project","fr":"Description du projet de recherche"},"startDate":{"en":"Project start date","fr":"Date de début du projet"}}},"additionalFiles":{"utilisateurs":{"i18n":{"en":"User","fr":"Users"},"fields":{"nom":{"en":"Name","fr":"Nom"},"prenom":{"en":"Surname","fr":"Prénom"}}},"fichiers":{"i18n":{"en":"Files","fr":"Fichiers"},"fields":{"date":{"en":"Date","fr":"Date"},"site":{"en":"Place","fr":"Site"},"poids":{"en":"Weight","fr":"Poids"},"nom":{"en":"Name","fr":"Nom"},"age":{"en":"Age","fr":"Age"}}}}},"applicationDescription":{"name":"monsore","version":{"version":"3.0.1","runTimeVersion":{}},"defaultLanguage":"fr","comment":"Fichier de test de l'application brokenADOM"},"dataDescription":{"themes":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_fr":{"type":"BasicComponent","componentKey":"description_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_fr","exportHeaderName":"description_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_en":{"type":"BasicComponent","componentKey":"description_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_en","exportHeaderName":"description_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"especes":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["esp_nom"],"componentDescriptions":{"colonne_homonyme_entre_referentiels":{"type":"BasicComponent","componentKey":"colonne_homonyme_entre_referentiels","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"colonne_homonyme_entre_referentiels","exportHeaderName":"colonne_homonyme_entre_referentiels","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"esp_definition_en":{"type":"BasicComponent","componentKey":"esp_definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"esp_definition_en","exportHeaderName":"esp_definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"my_computed_column":{"type":"ComputedComponent","componentKey":"my_computed_column","tags":[{"tagDefinition":"HIDDEN_TAG"}],"exportHeaderName":"my_computed_column","required":false,"mandatory":"OPTIONAL","checker":null,"computationChecker":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"my value\";\n","references":null,"codify":false,"data":null},"submissionAuthorizationScope":null,"hidden":true,"chartDescription":null},"esp_nom":{"type":"BasicComponent","componentKey":"esp_nom","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"test"}],"importHeader":"esp_nom","exportHeaderName":"esp_nom","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"esp_definition_fr":{"type":"BasicComponent","componentKey":"esp_definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"esp_definition_fr","exportHeaderName":"esp_definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"variables":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_en":{"type":"BasicComponent","componentKey":"definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_en","exportHeaderName":"definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"is_qualitative":{"type":"BasicComponent","componentKey":"is_qualitative","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"isQualitative","exportHeaderName":"is_qualitative","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_fr":{"type":"BasicComponent","componentKey":"definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_fr","exportHeaderName":"definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"type_de_sites":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["tze_nom_key"],"componentDescriptions":{"tze_nom_key":{"type":"BasicComponent","componentKey":"tze_nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_nom_key","exportHeaderName":"tze_nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_nom_fr":{"type":"BasicComponent","componentKey":"tze_nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_nom_fr","exportHeaderName":"tze_nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_definition_fr":{"type":"BasicComponent","componentKey":"tze_definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_definition_fr","exportHeaderName":"tze_definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_nom_en":{"type":"BasicComponent","componentKey":"tze_nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_nom_en","exportHeaderName":"tze_nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"tze_definition_en":{"type":"BasicComponent","componentKey":"tze_definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_definition_en","exportHeaderName":"tze_definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"site_theme_datatype":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["projet","site","theme","datatype"],"componentDescriptions":{"site":{"type":"BasicComponent","componentKey":"site","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du site","exportHeaderName":"site","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"theme":{"type":"BasicComponent","componentKey":"theme","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du thème","exportHeaderName":"theme","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"projet":{"type":"BasicComponent","componentKey":"projet","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du projet","exportHeaderName":"projet","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"datatype":{"type":"BasicComponent","componentKey":"datatype","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du type de données","exportHeaderName":"datatype","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{"projetRef":{"checkers":{"projet":{"type":"ReferenceChecker","componentKey":"projet","multiplicity":"ONE","required":false,"refType":"projet","isRecursive":false,"isParent":false}},"tags":[{"tagDefinition":"NO_TAG"}],"columns":["projet"],"required":false,"mandatory":"OPTIONAL"},"sitesRef":{"checkers":{"site":{"type":"ReferenceChecker","componentKey":"site","multiplicity":"ONE","required":false,"refType":"sites","isRecursive":false,"isParent":false}},"tags":[{"tagDefinition":"NO_TAG"}],"columns":["site"],"required":false,"mandatory":"OPTIONAL"},"themesRef":{"checkers":{"theme":{"type":"ReferenceChecker","componentKey":"theme","multiplicity":"ONE","required":false,"refType":"themes","isRecursive":false,"isParent":false}},"tags":[{"tagDefinition":"NO_TAG"}],"columns":["theme"],"required":false,"mandatory":"OPTIONAL"},"checkDatatype":{"checkers":{"datatype":{"type":"GroovyExpressionChecker","multiplicity":"ONE","required":false,"expression":"String datatype = Arrays.stream((String)datum.datatype).split(\"_\")\n                .collect{it.substring(0, 1)}\n                .join(); \n                return application.getDataType().contains(datatype);\n","references":null,"codify":true,"data":null}},"tags":[{"tagDefinition":"NO_TAG"}],"columns":["datatype"],"required":false,"mandatory":"OPTIONAL"}},"depends":[],"migrations":null,"hidden":false,"order":9999},"unites":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["nom_key"],"componentDescriptions":{"code_en":{"type":"BasicComponent","componentKey":"code_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"code_en","exportHeaderName":"code_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"code_key":{"type":"BasicComponent","componentKey":"code_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"code_key","exportHeaderName":"code_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"code_fr":{"type":"BasicComponent","componentKey":"code_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"code_fr","exportHeaderName":"code_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"projet":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"},{"tagDefinition":"DOMAIN_TAG","tagName":"test"},{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_en":{"type":"BasicComponent","componentKey":"definition_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_en","exportHeaderName":"definition_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"colonne_homonyme_entre_referentiels":{"type":"BasicComponent","componentKey":"colonne_homonyme_entre_referentiels","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"colonne_homonyme_entre_referentiels","exportHeaderName":"colonne_homonyme_entre_referentiels","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"definition_fr":{"type":"BasicComponent","componentKey":"definition_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"definition_fr","exportHeaderName":"definition_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"valeurs_qualitatives":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["nom_key","valeur_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"valeur_en":{"type":"BasicComponent","componentKey":"valeur_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"valeur_en","exportHeaderName":"valeur_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"valeur_key":{"type":"BasicComponent","componentKey":"valeur_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"valeur_key","exportHeaderName":"valeur_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"valeur_fr":{"type":"BasicComponent","componentKey":"valeur_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"valeur_fr","exportHeaderName":"valeur_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"type_de_fichiers":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"HIDDEN_TAG"}],"naturalKey":["nom_key"],"componentDescriptions":{"nom_key":{"type":"BasicComponent","componentKey":"nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_key","exportHeaderName":"nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_en":{"type":"BasicComponent","componentKey":"nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_en","exportHeaderName":"nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"nom_fr":{"type":"BasicComponent","componentKey":"nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom_fr","exportHeaderName":"nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_fr":{"type":"BasicComponent","componentKey":"description_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_fr","exportHeaderName":"description_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"description_en":{"type":"BasicComponent","componentKey":"description_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"description_en","exportHeaderName":"description_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[],"migrations":null,"hidden":false,"order":9999},"variables_et_unites_par_types_de_donnees":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"data"}],"naturalKey":["datatype","variable"],"componentDescriptions":{"variable":{"type":"BasicComponent","componentKey":"variable","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom de la variable","exportHeaderName":"variable","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"datatype":{"type":"BasicComponent","componentKey":"datatype","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom du type de données","exportHeaderName":"datatype","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"unite":{"type":"BasicComponent","componentKey":"unite","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"nom de l'unité","exportHeaderName":"unite","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{"variableRef":{"checkers":{"variable":{"type":"ReferenceChecker","componentKey":"variable","multiplicity":"ONE","required":false,"refType":"variables","isRecursive":false,"isParent":false}},"tags":[{"tagDefinition":"NO_TAG"}],"columns":["variable"],"required":false,"mandatory":"OPTIONAL"},"uniteRef":{"checkers":{"unite":{"type":"ReferenceChecker","componentKey":"unite","multiplicity":"ONE","required":false,"refType":"unites","isRecursive":false,"isParent":false}},"tags":[{"tagDefinition":"NO_TAG"}],"columns":["unite"],"required":false,"mandatory":"OPTIONAL"},"checkDatatype":{"checkers":{"datatype":{"type":"GroovyExpressionChecker","multiplicity":"ONE","required":false,"expression":"String datatype = Arrays.stream((String)(datum.datatype).split(\"_\")) .collect{it.substring(0, 1)} .join();  return  application.getDataType().contains(datatype);\n","references":null,"codify":true,"data":null}},"tags":[{"tagDefinition":"NO_TAG"}],"columns":["datatype"],"required":false,"mandatory":"OPTIONAL"}},"depends":[],"migrations":null,"hidden":false,"order":9999},"pem":{"separator":";","headerLine":4,"firstRowLine":5,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"ORDER_TAG","tagOrder":2},{"tagDefinition":"DOMAIN_TAG","tagName":"data"},{"tagDefinition":"DOMAIN_TAG","tagName":"test"},{"tagDefinition":"DOMAIN_TAG","tagName":"context"},{"tagDefinition":"DATA_TAG"}],"naturalKey":["projet","site","plateforme","date","espece"],"componentDescriptions":{"date":{"type":"BasicComponent","componentKey":"date","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":true,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"ORDER_TAG","tagOrder":1},{"tagDefinition":"DOMAIN_TAG","tagName":"temporal"}],"importHeader":"date","exportHeaderName":"date","required":true,"mandatory":"OPTIONAL","checker":{"type":"DateChecker","multiplicity":"ONE","required":true,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"site":{"type":"BasicComponent","componentKey":"site","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"site","exportHeaderName":"site","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"site","multiplicity":"ONE","required":false,"refType":"sites","isRecursive":false,"isParent":false},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"__projet__":{"type":"AuthorizationScopeComponent","componentKey":null,"authorizationScopeName":"projet","references":"projet","component":"projet","exportHeaderName":"projet","submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"individusNumber_unit":{"type":"ComputedComponent","componentKey":"individusNumber_unit","tags":[{"tagDefinition":"NO_TAG"}],"exportHeaderName":null,"required":true,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"individusNumber_unit","multiplicity":"ONE","required":true,"refType":"unites","isRecursive":false,"isParent":false},"computationChecker":{"type":"ComputationChecker","multiplicity":"ONE","required":true,"expression":"'sans_unite'","references":null,"codify":false,"data":null},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"projet":{"type":"BasicComponent","componentKey":"projet","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"ORDER_TAG","tagOrder":2},{"tagDefinition":"DOMAIN_TAG","tagName":"test"}],"importHeader":"projet","exportHeaderName":"projet","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"projet","multiplicity":"ONE","required":false,"refType":"projet","isRecursive":false,"isParent":false},"submissionAuthorizationScope":"projet","hidden":false,"chartDescription":null},"espece":{"type":"BasicComponent","componentKey":"espece","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"espece","exportHeaderName":"espece","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"espece","multiplicity":"ONE","required":false,"refType":"especes","isRecursive":false,"isParent":false},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"plateforme":{"type":"BasicComponent","componentKey":"plateforme","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"plateforme","exportHeaderName":"plateforme","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"color_value":{"type":"BasicComponent","componentKey":"color_value","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"Couleur des individus","exportHeaderName":"color_value","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"color_value","multiplicity":"ONE","required":false,"refType":"valeurs_qualitatives","isRecursive":false,"isParent":false},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"individusNumbervalue":{"type":"BasicComponent","componentKey":"individusNumbervalue","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return 0","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"Nombre d'individus","exportHeaderName":"individusNumbervalue","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"color_unit":{"type":"ComputedComponent","componentKey":"color_unit","tags":[{"tagDefinition":"NO_TAG"}],"exportHeaderName":null,"required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"color_unit","multiplicity":"ONE","required":false,"refType":"unites","isRecursive":false,"isParent":false},"computationChecker":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"'sans_unite'","references":null,"codify":false,"data":null},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":{"strategy":"OA_REPOSITORY","fileNameParsing":{"pattern":"(.*)_(.*)_(.*)_(.*).csv","authorizationScopes":{"localization":1,"projet":2},"startDate":null,"endDate":null},"authorization":{"authorizationScopes":{"projet":{"references":"projet","component":"projet"},"localization":{"references":"sites","component":null}},"timescope":{"component":"date"},"datagroups":{"datagroups":{"qualitatif":["color_unit"],"quantitatif":["individusNumbervalue"]}}}},"validations":{"unitOfColor":{"checkers":{},"tags":[{"tagDefinition":"NO_TAG"}],"columns":null,"required":false,"mandatory":"OPTIONAL"},"unitOfIndividus":{"checkers":{},"tags":[{"tagDefinition":"NO_TAG"}],"columns":null,"required":true,"mandatory":"OPTIONAL"}},"depends":[{"type":"DependsReferences","references":"sites","component":"site"},{"type":"DependsReferences","references":"unites","component":"individusNumber_unit"},{"type":"DependsReferences","references":"projet","component":"projet"},{"type":"DependsReferences","references":"especes","component":"espece"},{"type":"DependsReferences","references":"valeurs_qualitatives","component":"color_value"},{"type":"DependsReferences","references":"unites","component":"color_unit"}],"migrations":null,"hidden":false,"order":2},"sites":{"separator":";","headerLine":1,"firstRowLine":2,"allowUnexpectedColumns":false,"tags":[{"tagDefinition":"DOMAIN_TAG","tagName":"context"}],"naturalKey":["zet_chemin_parent","zet_nom_key"],"componentDescriptions":{"tze_type_nom":{"type":"BasicComponent","componentKey":"tze_type_nom","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":true,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"tze_type_nom","exportHeaderName":"tze_type_nom","required":true,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"tze_type_nom","multiplicity":"ONE","required":true,"refType":"type_de_sites","isRecursive":false,"isParent":true},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_description_en":{"type":"BasicComponent","componentKey":"zet_description_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_description_en","exportHeaderName":"zet_description_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_nom_fr":{"type":"BasicComponent","componentKey":"zet_nom_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_nom_fr","exportHeaderName":"zet_nom_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_nom_key":{"type":"BasicComponent","componentKey":"zet_nom_key","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_nom_key","exportHeaderName":"zet_nom_key","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_nom_en":{"type":"BasicComponent","componentKey":"zet_nom_en","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_nom_en","exportHeaderName":"zet_nom_en","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_description_fr":{"type":"BasicComponent","componentKey":"zet_description_fr","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_description_fr","exportHeaderName":"zet_description_fr","required":false,"mandatory":"OPTIONAL","checker":null,"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null},"zet_chemin_parent":{"type":"BasicComponent","componentKey":"zet_chemin_parent","defaultValue":{"type":"ComputationChecker","multiplicity":"ONE","required":false,"expression":"return \"\";","references":null,"codify":false,"data":null},"tags":[{"tagDefinition":"NO_TAG"}],"importHeader":"zet_chemin_parent","exportHeaderName":"zet_chemin_parent","required":false,"mandatory":"OPTIONAL","checker":{"type":"ReferenceChecker","componentKey":"zet_chemin_parent","multiplicity":"ONE","required":false,"refType":"sites","isRecursive":true,"isParent":true},"submissionAuthorizationScope":null,"hidden":false,"chartDescription":null}},"submission":null,"validations":{},"depends":[{"type":"DependsParent","references":"type_de_sites","component":"tze_type_nom"},{"type":"DependsParent","references":"sites","component":"zet_chemin_parent"}],"migrations":null,"hidden":false,"order":9999}},"rightsRequest":{"format":{"organization":{"type":"RightsRequestField","required":true,"checker":{"type":"StringChecker","multiplicity":"ONE","required":true,"pattern":".*"}},"project":{"type":"RightsRequestField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":".*"}},"startDate":{"type":"RightsRequestField","required":false,"checker":{"type":"DateChecker","multiplicity":"ONE","required":false,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null}},"endDate":{"type":"RightsRequestField","required":false,"checker":{"type":"DateChecker","multiplicity":"ONE","required":false,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null}}}},"additionalFiles":{"fichiers":{"format":{"nom":{"type":"AdditionalFileField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":"[a-z]*"}},"date":{"type":"AdditionalFileField","required":false,"checker":{"type":"DateChecker","multiplicity":"ONE","required":false,"pattern":"dd/MM/yyyy","min":[-999999999,1,1,0,0],"max":[999999999,12,31,23,59,59,999999999],"duration":null}},"age":{"type":"AdditionalFileField","required":false,"checker":{"type":"IntegerChecker","multiplicity":"ONE","required":false,"min":-2147483648,"max":2147483647}},"poids":{"type":"AdditionalFileField","required":false,"checker":{"type":"FloatChecker","multiplicity":"ONE","required":false,"min":10.0,"max":100.0}},"site":{"type":"AdditionalFileField","required":true,"checker":{"type":"ReferenceChecker","componentKey":"site","multiplicity":"ONE","required":true,"refType":"sites","isRecursive":false,"isParent":false}}}},"utilisateurs":{"format":{"nom":{"type":"AdditionalFileField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":"[a-z]*"}},"prenom":{"type":"AdditionalFileField","required":false,"checker":{"type":"StringChecker","multiplicity":"ONE","required":false,"pattern":"[a-z]*"}}}}},"hierarchicalNodes":[{"nodeName":"especes","componentKey":null,"columnToLookUpForRecursive":null,"parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"projet","componentKey":null,"columnToLookUpForRecursive":null,"parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"pem","componentKey":null,"columnToLookUpForRecursive":null,"parent":null,"children":[],"depends":["projet","sites","especes","valeurs_qualitatives","unites","type_de_sites"],"order":2,"isRecursive":false},{"nodeName":"themes","componentKey":null,"columnToLookUpForRecursive":null,"parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"site_theme_datatype","componentKey":null,"columnToLookUpForRecursive":null,"parent":null,"children":[],"depends":["projet","sites","themes","type_de_sites"],"order":9999,"isRecursive":false},{"nodeName":"type_de_fichiers","componentKey":null,"columnToLookUpForRecursive":null,"parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"type_de_sites","componentKey":"tze_type_nom","columnToLookUpForRecursive":null,"parent":null,"children":[{"nodeName":"sites","componentKey":"zet_chemin_parent","columnToLookUpForRecursive":"zet_chemin_parent","parent":"type_de_sites","children":[],"depends":["type_de_sites"],"order":9999,"isRecursive":true}],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"unites","componentKey":null,"columnToLookUpForRecursive":null,"parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"valeurs_qualitatives","componentKey":null,"columnToLookUpForRecursive":null,"parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"variables","componentKey":null,"columnToLookUpForRecursive":null,"parent":null,"children":[],"depends":[],"order":9999,"isRecursive":false},{"nodeName":"variables_et_unites_par_types_de_donnees","componentKey":null,"columnToLookUpForRecursive":null,"parent":null,"children":[],"depends":["variables","unites"],"order":9999,"isRecursive":false}],"requiredAuthorizationsAttributes":["localization","projet"],"hiddenData":["type_de_fichiers"]},"configFile":null},"time":[2024,3,16,14,0,31,147826281],"type":"REACTIVE_RESULT"}
+{"result":1.0,"time":[2024,3,16,14,0,31,148034780],"type":"REACTIVE_PROGRESS"}
-- 
GitLab