r1784 - in trunk/tutti-service/src: main/java/fr/ifremer/tutti/service/pupitri test/java/fr/ifremer/tutti/service/pupitri test/resources/pupitri
Author: tchemit Date: 2014-05-15 18:25:26 +0200 (Thu, 15 May 2014) New Revision: 1784 Url: http://forge.codelutin.com/projects/tutti/repository/revisions/1784 Log: refs #5079 (report from version 3.4.3) Added: trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/pupitri/PupitriImportServiceAno5079Test.java trunk/tutti-service/src/test/resources/pupitri/ano-5079.car trunk/tutti-service/src/test/resources/pupitri/ano-5079.tnk trunk/tutti-service/src/test/resources/pupitri/ano-5079.tuttiProtocol Modified: trunk/tutti-service/src/main/java/fr/ifremer/tutti/service/pupitri/PupitriImportResult.java Modified: trunk/tutti-service/src/main/java/fr/ifremer/tutti/service/pupitri/PupitriImportResult.java =================================================================== --- trunk/tutti-service/src/main/java/fr/ifremer/tutti/service/pupitri/PupitriImportResult.java 2014-05-15 16:24:29 UTC (rev 1783) +++ trunk/tutti-service/src/main/java/fr/ifremer/tutti/service/pupitri/PupitriImportResult.java 2014-05-15 16:25:26 UTC (rev 1784) @@ -252,7 +252,7 @@ float melagRatio = 1f; if (useMelag) { - melagRatio = melagSortedWeight.floatValue() * melagTotalWeight.floatValue(); + melagRatio = melagSortedWeight.floatValue() / melagTotalWeight.floatValue(); } Iterator<PupitriCatch> iterator = catches.iterator(); Added: trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/pupitri/PupitriImportServiceAno5079Test.java =================================================================== --- trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/pupitri/PupitriImportServiceAno5079Test.java (rev 0) +++ trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/pupitri/PupitriImportServiceAno5079Test.java 2014-05-15 16:25:26 UTC (rev 1784) @@ -0,0 +1,162 @@ +package fr.ifremer.tutti.service.pupitri; + +/* + * #%L + * Tutti :: Service + * $Id$ + * $HeadURL: https://svn.codelutin.com/tutti/branches/3.3.6/tutti-service/src/test/java/f... $ + * %% + * Copyright (C) 2012 - 2013 Ifremer + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import fr.ifremer.tutti.TuttiConfigurationOption; +import fr.ifremer.tutti.persistence.entities.data.BatchContainer; +import fr.ifremer.tutti.persistence.entities.data.CatchBatch; +import fr.ifremer.tutti.persistence.entities.data.FishingOperation; +import fr.ifremer.tutti.persistence.entities.data.SpeciesBatch; +import fr.ifremer.tutti.persistence.entities.protocol.TuttiProtocol; +import fr.ifremer.tutti.persistence.entities.referential.Species; +import fr.ifremer.tutti.persistence.entities.referential.SpeciesBean; +import fr.ifremer.tutti.service.DecoratorService; +import fr.ifremer.tutti.service.PersistenceService; +import fr.ifremer.tutti.service.ServiceDbResource; +import fr.ifremer.tutti.service.TuttiServiceContext; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.junit.Assert; +import org.junit.Before; +import org.junit.ClassRule; +import org.junit.Test; +import org.nuiton.decorator.Decorator; + +import java.io.File; +import java.io.IOException; +import java.util.List; +import java.util.Set; + +/** + * @author tchemit <chemit@codelutin.com> + * @since 3.0-rc-2 + */ +public class PupitriImportServiceAno5079Test { + + /** Logger. */ + private static final Log log = LogFactory.getLog(PupitriImportServiceAno5079Test.class); + + @ClassRule + public static final ServiceDbResource dbResource = + ServiceDbResource.writeDb("dbExport"); + + public static final String PROGRAM_ID = "CAM-TEST_ELEVATION"; + + public static final String CRUISE_ID = "100003"; + + public static final String OPERATION_1_ID = "100112"; + + public static final String OPERATION_2_ID = "100113"; + + public static final String OPERATION_3_ID = "100115"; + + protected PupitriImportExportService service; + + protected PersistenceService persistenceService; + + protected DecoratorService decoratorService; + + protected ServiceDbResource.DataContext dataContext; + + @Before + public void setUp() throws Exception { + + TuttiServiceContext serviceContext = dbResource.getServiceContext(); + + persistenceService = serviceContext.getService(PersistenceService.class); + + decoratorService = serviceContext.getService(DecoratorService.class); + + dbResource.openDataContext(); + + service = serviceContext.getService(PupitriImportExportService.class); + + dataContext = dbResource.loadContext(PROGRAM_ID, CRUISE_ID, 3, + OPERATION_2_ID, + OPERATION_1_ID, + OPERATION_3_ID); + } + + @Test + public void importPupitri() throws IOException { + + // Import MELA-NGE species + SpeciesBean melagSpecies = new SpeciesBean(); + melagSpecies.setName("MELA-NGE"); + List<Species> specieses = persistenceService.importTemporarySpecies(Lists.<Species>newArrayList(melagSpecies)); + specieses.get(0).setRefTaxCode(melagSpecies.getName()); + + File trunk = dbResource.copyClassPathResource("pupitri/ano-5079.tnk", "pupitri.tnk"); + File carroussel = dbResource.copyClassPathResource("pupitri/ano-5079.car", "pupitri.car"); + File protocol = dbResource.copyClassPathResource("pupitri/ano-5079.tuttiProtocol", "ano-5079.tuttiProtocol"); + dbResource.getConfig().getApplicationConfig().setOption(TuttiConfigurationOption.DB_PROTOCOL_DIRECTORY.getKey(), protocol.getParentFile().getAbsolutePath()); + TuttiProtocol protocol1 = persistenceService.getProtocol("ano-5079"); + persistenceService.setProtocol(protocol1); + + FishingOperation operation = dataContext.operations.get(1); + CatchBatch catchBatch = persistenceService.getCatchBatchFromFishingOperation(operation.getId()); + catchBatch.setFishingOperation(operation); + + BatchContainer<SpeciesBatch> rootSpeciesBatch = persistenceService.getRootSpeciesBatch(operation.getId(), false); + Assert.assertEquals(3, rootSpeciesBatch.sizeChildren()); + int nbNotAdded = service.importPupitri(trunk, carroussel, operation, catchBatch).getNbCarrousselNotImported(); + Assert.assertEquals(0, nbNotAdded); + BatchContainer<SpeciesBatch> rootSpeciesBatchAfter = persistenceService.getRootSpeciesBatch(operation.getId(), false); + Assert.assertEquals(5, rootSpeciesBatchAfter.sizeChildren()); + + Set<Integer> unexpectedSpecies = Sets.newHashSet( + ); + Set<Integer> expectedSpecies = Sets.newHashSet( + 15948, // ALLO-TEZ + 30902, // TRIG-LUC + 17374, // EUTR-GUR + 16816, // ENGR-ENC + 17116 // TRAC-TRU + ); + + Decorator<Species> speciesDecorator = decoratorService.getDecoratorByType(Species.class); + + for (SpeciesBatch speciesBatch : rootSpeciesBatchAfter.getChildren()) { + + Species species = speciesBatch.getSpecies(); + Integer speciesId = species.getIdAsInt(); + boolean remove = expectedSpecies.remove(speciesId); + if (log.isInfoEnabled()) { + log.info("Species : " + speciesId + " : " + speciesDecorator.toString(species)); + } + if (!remove) { + unexpectedSpecies.add(speciesId); + if (log.isWarnEnabled()) { + log.warn("Unexpected Species " + speciesId); + } + } + } + + Assert.assertTrue("Expected species not found: " + expectedSpecies, expectedSpecies.isEmpty()); + Assert.assertTrue("Unexpected species found: " + unexpectedSpecies, unexpectedSpecies.isEmpty()); + } +} Property changes on: trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/pupitri/PupitriImportServiceAno5079Test.java ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision Added: svn:eol-style + native Added: trunk/tutti-service/src/test/resources/pupitri/ano-5079.car =================================================================== --- trunk/tutti-service/src/test/resources/pupitri/ano-5079.car (rev 0) +++ trunk/tutti-service/src/test/resources/pupitri/ano-5079.car 2014-05-15 16:25:26 UTC (rev 1784) @@ -0,0 +1,14 @@ +$TSMES,27/11/13,07:58:47.624,BLCAR, 0,A,1,002,ALLO-TEZ,T,VAT,2.0, +$TSMES,27/11/13,08:09:31.330,BLCAR, 0,A,1,002,ALLO-TEZ,T,VAT,2.0, +$TSMES,27/11/13,08:10:04.519,BLCAR, 0,A,1,002,ALLO-TEZ,T,VAT,6.0, +$TSMES,27/11/13,08:10:26.922,BLCAR, 0,A,1,002,MELA-NGE,0,VAT,30.0, +$TSMES,27/11/13,08:10:52.724,BLCAR, 0,A,1,001,MELA-NGE,0,VAT,10.0, +$TSMES,27/11/13,08:12:08.170,BLCAR, 0,A,1,001,MELA-NGE,0,VAT,60.0, +$TSMES,27/11/13,08:13:05.607,BLCAR, 0,A,1,001,TRIG-LUC,G,VAT,2.5, +$TSMES,27/11/13,08:13:25.383,BLCAR, 0,A,1,001,TRIG-LUC,P,VAT,1.2, +$TSMES,27/11/13,08:13:57.072,BLCAR, 0,A,1,001,ENGR-ENC,0,VAT,6.5, +$TSMES,27/11/13,08:13:57.072,BLCAR, 0,A,1,001,ENGR-ENC,0,VAT,1.3, +$TSMES,27/11/13,08:10:26.922,BLCAR, 0,A,1,002,TRAC-TRU,H,VAT,200.0, +$TSMES,27/11/13,07:58:47.624,BLCAR, 0,A,1,002,EUTR-GUR,T,VAT,14.0, +$TSMES,27/11/13,08:09:31.330,BLCAR, 0,A,1,002,EUTR-GUR,T,VAT,4.0, +$TSMES,27/11/13,08:10:04.519,BLCAR, 0,A,1,002,EUTR-GUR,T,VAT,2.0, Added: trunk/tutti-service/src/test/resources/pupitri/ano-5079.tnk =================================================================== --- trunk/tutti-service/src/test/resources/pupitri/ano-5079.tnk (rev 0) +++ trunk/tutti-service/src/test/resources/pupitri/ano-5079.tnk 2014-05-15 16:25:26 UTC (rev 1784) @@ -0,0 +1,5 @@ +$TSMES,27/11/13,07:51:44.085,BLTNK, 0,A,1,VAT,0024.0, +$TSMES,27/11/13,07:57:15.228,BLTNK, 0,A,1,VAT,0011.0, +$TSMES,27/11/13,08:00:23.810,BLTNK, 0,A,1,VAT,0019.0, +$TSMES,27/11/13,08:01:30.046,BLTNK, 0,A,1,VAT,0006.0, +$TSMES,27/11/13,08:01:30.046,BLTNK, 0,A,1,VNT,800, Added: trunk/tutti-service/src/test/resources/pupitri/ano-5079.tuttiProtocol =================================================================== --- trunk/tutti-service/src/test/resources/pupitri/ano-5079.tuttiProtocol (rev 0) +++ trunk/tutti-service/src/test/resources/pupitri/ano-5079.tuttiProtocol 2014-05-15 16:25:26 UTC (rev 1784) @@ -0,0 +1,2691 @@ +id: 1dfc60e5-089f-4aea-bb87-27ed66e507a2 +name: protocole PELGAS 2014 version du 17042014 +benthos: +- !SpeciesProtocol + id: 989a5b5a-9f10-43e4-a1c2-34a1337e1d49 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7 + speciesSurveyCode: MBPORIF + weightEnabled: true +- !SpeciesProtocol + id: 84626f0e-3790-40c0-a98c-b862cbdbef8e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6129 + speciesSurveyCode: AXININF + weightEnabled: true +- !SpeciesProtocol + id: ff16ccda-ce86-49e1-b4a6-ddf419d3d7a3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4656 + speciesSurveyCode: SUBEFIC + weightEnabled: true +- !SpeciesProtocol + id: 76cbc9d3-88ea-41f5-97b1-a17e1c491cf6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12027 + speciesSurveyCode: DESMFRU + weightEnabled: true +- !SpeciesProtocol + id: 6213f6f6-4ac3-409a-98eb-7830acd6c268 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12 + speciesSurveyCode: CLHYDRZ + weightEnabled: true +- !SpeciesProtocol + id: 28ff5808-f01b-4157-b826-8b35879600ec + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4622 + speciesSurveyCode: ABIEABI + weightEnabled: true +- !SpeciesProtocol + id: 216ad594-12de-4e12-bf5e-2fb8db613f29 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4685 + speciesSurveyCode: HYDAFAL + weightEnabled: true +- !SpeciesProtocol + id: c3533411-cf9d-4b13-85e8-362fd5bcf1eb + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4682 + speciesSurveyCode: NEMEANT + weightEnabled: true +- !SpeciesProtocol + id: 65b0845d-8928-46fc-8839-c6d58ef0bfc7 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4667 + speciesSurveyCode: NEMERAM + weightEnabled: true +- !SpeciesProtocol + id: caaf8a03-e3d8-49f4-8521-0fab642816d1 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4736 + speciesSurveyCode: HLECHAL + weightEnabled: true +- !SpeciesProtocol + id: 03025db8-5a34-4eda-982e-d5b715b5edce + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 131 + speciesSurveyCode: CLANTHO + weightEnabled: true +- !SpeciesProtocol + id: 2488e3b8-9dbb-40fa-a925-93013374673e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4386 + speciesSurveyCode: ALCYGLO + weightEnabled: true +- !SpeciesProtocol + id: 5506c164-e8e5-40f9-8a42-56f8c578b62e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3021 + speciesSurveyCode: ALCYDIG + weightEnabled: true +- !SpeciesProtocol + id: e5443772-9d8e-497d-9605-4e2acb83d252 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6804 + speciesSurveyCode: FUNIQUA + weightEnabled: true +- !SpeciesProtocol + id: 3f75c3c9-24da-4412-ac7d-cfbc7ffdb2b4 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3949 + speciesSurveyCode: VERE + weightEnabled: true +- !SpeciesProtocol + id: 8a874879-2b21-4be1-8925-e8007d363ec3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 134 + speciesSurveyCode: PENNPHO + weightEnabled: true +- !SpeciesProtocol + id: 44a48069-67e8-4827-9178-0e3a9f0b96b8 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3006 + speciesSurveyCode: PRTOGRI + weightEnabled: true +- !SpeciesProtocol + id: 5609d619-09f1-48fe-a5df-f51333804f3d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2224 + speciesSurveyCode: ORACTIN + weightEnabled: true +- !SpeciesProtocol + id: cc4616a8-03b7-47a1-84e4-a8d6378e4423 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4734 + speciesSurveyCode: URTIEQU + weightEnabled: true +- !SpeciesProtocol + id: 55675280-da2e-4375-885c-2591c6495aa0 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4623 + speciesSurveyCode: ACTU + weightEnabled: true +- !SpeciesProtocol + id: 27ecbf57-3c4c-419d-a152-5fa4624f89a8 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4626 + speciesSurveyCode: ADAMCAR + weightEnabled: true +- !SpeciesProtocol + id: 5f7dda22-ba51-45ca-9202-76b0a74cc34f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4378 + speciesSurveyCode: CLLCPAR + weightEnabled: true +- !SpeciesProtocol + id: ba26fe28-d876-45f9-a577-7ebe16ecb1c8 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4412 + speciesSurveyCode: METRSEN + weightEnabled: true +- !SpeciesProtocol + id: cdd5cc10-9c0f-49ac-b841-1fdb457d3f57 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4731 + speciesSurveyCode: ORSCLER + weightEnabled: true +- !SpeciesProtocol + id: cdf1e0e9-006e-4817-8eb9-4403110a357c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4385 + speciesSurveyCode: CARYSMI + weightEnabled: true +- !SpeciesProtocol + id: dfe809c2-ebd8-466b-b882-74b98847a7b1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7230 + speciesSurveyCode: MADROCU + weightEnabled: true +- !SpeciesProtocol + id: 989aacda-23ab-4c58-a4f5-582643954cee + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4418 + speciesSurveyCode: EPZAINC + weightEnabled: true +- !SpeciesProtocol + id: a728eb38-8612-4dcb-8cb1-4319a5ee1f3d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7327 + speciesSurveyCode: EPZAPAG + weightEnabled: true +- !SpeciesProtocol + id: af9dee2e-4517-451a-b571-80c121bd39be + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 142 + speciesSurveyCode: MBNEMRT + weightEnabled: true +- !SpeciesProtocol + id: 65c9f56a-2781-4619-a02f-eb0bedb632a5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 145 + speciesSurveyCode: MBSIPUN + weightEnabled: true +- !SpeciesProtocol + id: f8f43e6a-e46e-4622-930d-871bafaad772 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 147 + speciesSurveyCode: SIPUNUD + weightEnabled: true +- !SpeciesProtocol + id: e66d505a-5f0e-4cab-b231-df3e032accb2 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 150 + speciesSurveyCode: MBANNEL + weightEnabled: true +- !SpeciesProtocol + id: 37efa1ad-d3a1-4f9e-96f9-c93e072af47a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 155 + speciesSurveyCode: APHRACU + weightEnabled: true +- !SpeciesProtocol + id: 59f5d30c-99a2-4228-9cb2-c130a7c76d50 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4298 + speciesSurveyCode: LAET + weightEnabled: true +- !SpeciesProtocol + id: 82fde4c9-5f35-4cf4-84e0-799c7456b2a1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3240 + speciesSurveyCode: DIOPNEA + weightEnabled: true +- !SpeciesProtocol + id: 6aacf530-df90-4a4d-81e4-a9c524480fcb + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3241 + speciesSurveyCode: HYALTUB + weightEnabled: true +- !SpeciesProtocol + id: bbb3d4f7-858a-451f-bde3-57a30744e222 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7125 + speciesSurveyCode: FMCHAEO + weightEnabled: true +- !SpeciesProtocol + id: 9ce7e309-c466-4468-a96b-4c67785e5579 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 211 + speciesSurveyCode: STERSCU + weightEnabled: true +- !SpeciesProtocol + id: d3966eb6-ea5a-4d98-be32-e66638e6e1d8 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 156 + speciesSurveyCode: OWENFUS + weightEnabled: true +- !SpeciesProtocol + id: fd94c664-eb35-4db1-9bd1-f126a9d05cb5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 203 + speciesSurveyCode: LANICON + weightEnabled: true +- !SpeciesProtocol + id: 6e0ebaa6-771e-47d9-a3ef-319916c719c1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3032 + speciesSurveyCode: FMSABED + weightEnabled: true +- !SpeciesProtocol + id: 25d9896e-8cd5-4dc2-bd14-b105b1116058 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 209 + speciesSurveyCode: FMSERPU + weightEnabled: true +- !SpeciesProtocol + id: 2becd9d4-c5b4-4990-914e-f3086c2fd249 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 224 + speciesSurveyCode: MBBRYOZ + weightEnabled: true +- !SpeciesProtocol + id: 82aae651-83bd-48bd-8526-5a409a53fb20 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6222 + speciesSurveyCode: FMPHIDO + weightEnabled: true +- !SpeciesProtocol + id: f0106aab-f9b5-4827-aa50-9d531298d0a0 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6669 + speciesSurveyCode: PENPFAS + weightEnabled: true +- !SpeciesProtocol + id: 002430a1-3473-4099-b658-b52becf8ec21 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4762 + speciesSurveyCode: CELL + weightEnabled: true +- !SpeciesProtocol + id: 3aee0e2d-ca54-445f-bf4e-0ed611f915e5 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3549 + speciesSurveyCode: FLUTFOL + weightEnabled: true +- !SpeciesProtocol + id: 81ca9c83-c83c-49ee-b444-71b6aa21e307 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3974 + speciesSurveyCode: ALCD + weightEnabled: true +- !SpeciesProtocol + id: b7be7cbf-2d5e-4903-ae9f-a4914ae296c6 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4766 + speciesSurveyCode: PORECOM + weightEnabled: true +- !SpeciesProtocol + id: f92ee59b-e445-411c-8914-8c7133d3a272 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3669 + speciesSurveyCode: MBBRACH + weightEnabled: true +- !SpeciesProtocol + id: 7f6a5405-939d-4a01-a6bb-f329fb046ed6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3671 + speciesSurveyCode: GRYPVIT + weightEnabled: true +- !SpeciesProtocol + id: 78dd6350-b860-4b81-9803-8b79fcf1d73d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4180 + speciesSurveyCode: TERB + weightEnabled: true +- !SpeciesProtocol + id: a7d84a45-5ff6-4af3-8f4b-c01deb37b751 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3670 + speciesSurveyCode: MEGETRU + weightEnabled: true +- !SpeciesProtocol + id: f9891954-04df-4dd1-b637-cfd34dd7327c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 226 + speciesSurveyCode: CLGASTE + weightEnabled: true +- !SpeciesProtocol + id: 91a5d539-234b-4f0d-a550-f1ba37f80c28 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 246 + speciesSurveyCode: CALSGRA + weightEnabled: true +- !SpeciesProtocol + id: b1803b8e-0bad-459b-b718-960ade49c36b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 247 + speciesSurveyCode: CALSZIZ + weightEnabled: true +- !SpeciesProtocol + id: f32f258b-7134-41a6-9a0c-e8846baf1633 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 250 + speciesSurveyCode: TURRCOM + weightEnabled: true +- !SpeciesProtocol + id: 109d62f8-c2e2-4fbd-8d93-5c802516a5e7 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 261 + speciesSurveyCode: APORPES + weightEnabled: true +- !SpeciesProtocol + id: b2519e73-09fc-4165-a405-0eac08ed5d60 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 262 + speciesSurveyCode: APORSER + weightEnabled: true +- !SpeciesProtocol + id: 11b23a77-9b05-4567-9dd1-5b942668721b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 267 + speciesSurveyCode: CALYCHI + weightEnabled: true +- !SpeciesProtocol + id: f472b4a5-590b-4656-b71a-167ff9daa2ce + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 268 + speciesSurveyCode: CREPFOR + weightEnabled: true +- !SpeciesProtocol + id: 89db31b3-4ed1-4fdd-90c7-f39dc2d00f07 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6263 + speciesSurveyCode: CAPUUNG + weightEnabled: true +- !SpeciesProtocol + id: ca5a767e-7836-4d6a-8e0f-73c7959d7632 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7104 + speciesSurveyCode: LAMEPER + weightEnabled: true +- !SpeciesProtocol + id: 476ab9db-85d9-48b6-98a6-fdf65aca41cd + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 276 + speciesSurveyCode: EUSPCAT + weightEnabled: true +- !SpeciesProtocol + id: 7ed4f6bc-df72-4e76-97d6-5d70923c49e0 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 277 + speciesSurveyCode: EUSPFUS + weightEnabled: true +- !SpeciesProtocol + id: d7909669-ee5d-4cac-a38b-76a34d34aa86 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 281 + speciesSurveyCode: GALERUG + weightEnabled: true +- !SpeciesProtocol + id: 3c703451-146f-48d7-8816-e0827087b756 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 282 + speciesSurveyCode: PHALSAB + weightEnabled: true +- !SpeciesProtocol + id: 265172ad-5b4d-47b0-b6d6-a6e863891275 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 287 + speciesSurveyCode: RANEOLE + weightEnabled: true +- !SpeciesProtocol + id: 8b492300-dcf1-4911-8189-1fce036ab824 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 293 + speciesSurveyCode: OCENERI + weightEnabled: true +- !SpeciesProtocol + id: 766e5a8f-db4c-492f-9152-042d9a11072e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 300 + speciesSurveyCode: BUCCUND + weightEnabled: true +- !SpeciesProtocol + id: 23a528fc-2178-4a2d-91d1-42a64c937929 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 301 + speciesSurveyCode: BUCCHUM + weightEnabled: true +- !SpeciesProtocol + id: b6106a22-1ac0-4c23-b3b5-9daaad1f0106 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4253 + speciesSurveyCode: COLUGRA + weightEnabled: true +- !SpeciesProtocol + id: a7fcb417-e4ce-4dc9-a04c-649b01d63f29 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4405 + speciesSurveyCode: NEPUANT + weightEnabled: true +- !SpeciesProtocol + id: 19d00c18-6ed3-45ab-a2f7-8b8b2d0363f2 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 305 + speciesSurveyCode: NASSRET + weightEnabled: true +- !SpeciesProtocol + id: 0bb68b54-adff-4d2d-9368-2ce6a31a439f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 317 + speciesSurveyCode: PHILAPE + weightEnabled: true +- !SpeciesProtocol + id: 44704454-3200-413f-996a-ac7bb0f1fe6a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 318 + speciesSurveyCode: SCAHLIG + weightEnabled: true +- !SpeciesProtocol + id: 6d81b4d9-8c7d-42f0-8342-5fd1038e5da9 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7098 + speciesSurveyCode: GATORUB + weightEnabled: true +- !SpeciesProtocol + id: 2f633cd6-a29f-4fc7-a02a-4bec657c08b2 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7486 + speciesSurveyCode: BERTPLU + weightEnabled: true +- !SpeciesProtocol + id: 2e62b161-1853-4516-884a-6fc5d82404e5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4209 + speciesSurveyCode: PLBRMEM + weightEnabled: true +- !SpeciesProtocol + id: 0b51100e-4765-412b-973e-acccb0280463 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3200 + speciesSurveyCode: APLY + weightEnabled: true +- !SpeciesProtocol + id: ce31c54d-efa3-46ae-8058-32b44e021f63 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 326 + speciesSurveyCode: DORSPSD + weightEnabled: true +- !SpeciesProtocol + id: 283e24ad-a5ea-4d3e-aabc-887dc674580b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2418 + speciesSurveyCode: JORUTOM + weightEnabled: true +- !SpeciesProtocol + id: da3c9e8c-a629-4984-bd87-172dde2428b1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 11779 + speciesSurveyCode: ROSARUB + weightEnabled: true +- !SpeciesProtocol + id: 651370d2-b7c3-4e49-ad9c-337c5fc35566 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7482 + speciesSurveyCode: KALORAM + weightEnabled: true +- !SpeciesProtocol + id: dc15eeae-fc2c-44a4-985f-5937d8a7acdb + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6138 + speciesSurveyCode: DENRFRO + weightEnabled: true +- !SpeciesProtocol + id: 05510ddf-1f25-455e-a3bd-dd36edfe2576 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 331 + speciesSurveyCode: ARMILOV + weightEnabled: true +- !SpeciesProtocol + id: 0ad547d4-aa23-45cf-ae2c-fe0fc449458f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7481 + speciesSurveyCode: AOLL + weightEnabled: true +- !SpeciesProtocol + id: 05220d2c-99ca-48ff-959f-62e63589395f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 336 + speciesSurveyCode: CLBIVAL + weightEnabled: true +- !SpeciesProtocol + id: bf1a1d05-da18-4f31-87c5-3108fcc8a660 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 342 + speciesSurveyCode: GLYCGLY + weightEnabled: true +- !SpeciesProtocol + id: f79ae81f-93fb-4c6d-808f-32e4a830e18a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 353 + speciesSurveyCode: ATRIPEC + weightEnabled: true +- !SpeciesProtocol + id: 43f6b3a4-cfc7-4f6d-ae93-b1c69c9fc003 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 355 + speciesSurveyCode: PTERHIR + weightEnabled: true +- !SpeciesProtocol + id: a9c382ab-fc99-4663-b1cd-6469e9b6958d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 365 + speciesSurveyCode: AEQUOPE + weightEnabled: true +- !SpeciesProtocol + id: a52ea601-bf26-471a-b088-c59b7aacd979 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6139 + speciesSurveyCode: PALLTIG + weightEnabled: true +- !SpeciesProtocol + id: 793506b7-d7aa-4879-bfa0-2b1b5a4c6444 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3599 + speciesSurveyCode: PSMUCLA + weightEnabled: true +- !SpeciesProtocol + id: f9db6b7e-7cad-4772-abf2-a82dd78c4083 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4297 + speciesSurveyCode: PSMUPES + weightEnabled: true +- !SpeciesProtocol + id: 37124c64-ed41-4ca5-b29f-e033bc64b445 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3608 + speciesSurveyCode: FMANOMI + weightEnabled: true +- !SpeciesProtocol + id: 06119baf-d533-4e43-a149-997612a897aa + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3614 + speciesSurveyCode: NEOPCOC + weightEnabled: true +- !SpeciesProtocol + id: 7aa0938a-d76c-44f9-8e0c-5804421dbfdb + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4632 + speciesSurveyCode: ASTASUL + weightEnabled: true +- !SpeciesProtocol + id: 6fd2e097-7db8-4b77-a824-82e6c239d28f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 380 + speciesSurveyCode: ACANECH + weightEnabled: true +- !SpeciesProtocol + id: 3bd11b7c-de97-4d93-b2f8-b4f98f5a564f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 387 + speciesSurveyCode: LAEVCRA + weightEnabled: true +- !SpeciesProtocol + id: cca34349-e043-4c0b-ac3a-4e3e5b5ec3f8 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 394 + speciesSurveyCode: SPISELL + weightEnabled: true +- !SpeciesProtocol + id: 0eb3526d-dd5b-4c22-8d6d-af1bf7ee5be1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3643 + speciesSurveyCode: ARCOBAL + weightEnabled: true +- !SpeciesProtocol + id: 8f96c388-58e7-4e90-91df-a4a5ecc507c6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3646 + speciesSurveyCode: ARCTISL + weightEnabled: true +- !SpeciesProtocol + id: 7f04acf2-f3a6-4b29-ad84-e2c0056f37f6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 427 + speciesSurveyCode: GLOUHUM + weightEnabled: true +- !SpeciesProtocol + id: bf87ad01-24d9-480e-93e2-88bc851f58c1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3015 + speciesSurveyCode: TIMCOVA + weightEnabled: true +- !SpeciesProtocol + id: 6ba06670-9ff2-4f24-8a34-ae6b648f92d6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 440 + speciesSurveyCode: CALLCHI + weightEnabled: true +- !SpeciesProtocol + id: 97500864-f17d-4244-888d-0d4b5c83357b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 431 + speciesSurveyCode: VENUCAS + weightEnabled: true +- !SpeciesProtocol + id: 819f6b9f-cdfc-4df7-aa83-40bf79f5b71c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6674 + speciesSurveyCode: XYLODOR + weightEnabled: true +- !SpeciesProtocol + id: 773a47ca-2162-4e23-bb20-ad0073ca151d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 460 + speciesSurveyCode: CLSCAPH + weightEnabled: true +- !SpeciesProtocol + id: b3e846cc-8364-489e-b5b5-aef6cf35479f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4397 + speciesSurveyCode: ANTA + weightEnabled: true +- !SpeciesProtocol + id: 31370962-3adb-456a-807d-51a56b7036da + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 464 + speciesSurveyCode: CLCEPHA + weightEnabled: true +- !SpeciesProtocol + id: c2066e15-c1c9-4ace-9c1e-6249a90f25bd + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 471 + speciesSurveyCode: ROSSMAC + weightEnabled: true +- !SpeciesProtocol + id: 2786c330-cbc9-483e-a5e3-b3bd0b3ebd40 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 470 + speciesSurveyCode: FMSEPIO + weightEnabled: true +- !SpeciesProtocol + id: af0698ba-edcc-4a4c-9ca8-69f399b392e4 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 484 + speciesSurveyCode: SEPENEG + weightEnabled: true +- !SpeciesProtocol + id: 1995b1de-2d5b-4201-bd48-754baf8db1cd + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 486 + speciesSurveyCode: SEPEOWE + weightEnabled: true +- !SpeciesProtocol + id: fe05b4c0-1311-4477-ab39-52738e4147d6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 475 + speciesSurveyCode: RONDMIN + weightEnabled: true +- !SpeciesProtocol + id: c9bd7ff3-d485-4677-bb18-19da8af1f4d0 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 478 + speciesSurveyCode: SEPOATL + weightEnabled: true +- !SpeciesProtocol + id: a123cd2f-1813-4054-8072-0566a570f415 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7674 + speciesSurveyCode: SEPOPFE + weightEnabled: true +- !SpeciesProtocol + id: 753420c3-d6ec-4501-a93b-96b28a5b22ed + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 480 + speciesSurveyCode: SEPOLIG + weightEnabled: true +- !SpeciesProtocol + id: 2a97bc20-56a9-4487-baed-797ecd271b5f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7182 + speciesSurveyCode: SEPOTRI + weightEnabled: true +- !SpeciesProtocol + id: a7ead586-4b80-4856-ad9c-3293337e40a2 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 528 + speciesSurveyCode: CLPYCNO + weightEnabled: true +- !SpeciesProtocol + id: fe0d569d-c9f9-4b25-a4af-6ea3a509b054 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4665 + speciesSurveyCode: PYCNLIT + weightEnabled: true +- !SpeciesProtocol + id: 5fc56d22-a074-4155-b25d-195358969437 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 712 + speciesSurveyCode: SCCIRIP + weightEnabled: true +- !SpeciesProtocol + id: f2ab7464-e4d7-4c24-b751-d2fac1075765 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 715 + speciesSurveyCode: SCALSCA + weightEnabled: true +- !SpeciesProtocol + id: c728e0fe-66cf-4965-be30-2abf2e9eae27 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6839 + speciesSurveyCode: ORMYSID + weightEnabled: true +- !SpeciesProtocol + id: 61e30ed9-e4cd-4374-9edf-f3eb0a1f0c09 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 829 + speciesSurveyCode: ORSTOMA + weightEnabled: true +- !SpeciesProtocol + id: 9d786885-29d6-429b-aa9a-85df9efd6738 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 833 + speciesSurveyCode: RISSDES + weightEnabled: true +- !SpeciesProtocol + id: ad9f1a77-fa67-429e-b36f-a6a26af23dc6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 846 + speciesSurveyCode: SODENDR + weightEnabled: true +- !SpeciesProtocol + id: 922735c9-8e76-49e7-a3b1-94a0562fdb1a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 855 + speciesSurveyCode: PAPELON + weightEnabled: true +- !SpeciesProtocol + id: 65d437f3-772e-462f-9710-5cea3e583482 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 848 + speciesSurveyCode: ARISFOL + weightEnabled: true +- !SpeciesProtocol + id: 312801d6-cf40-44e7-a41a-8d366f910b4b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4613 + speciesSurveyCode: ARIAEDW + weightEnabled: true +- !SpeciesProtocol + id: 2b365e2c-ca3d-4894-bda5-d5406f677159 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 858 + speciesSurveyCode: SOLOMEM + weightEnabled: true +- !SpeciesProtocol + id: 5ac3c44b-dc42-442e-8f58-91814882e5a0 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 862 + speciesSurveyCode: SRGIROB + weightEnabled: true +- !SpeciesProtocol + id: 29329eeb-bbe3-47b5-8460-47d31304cb83 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 864 + speciesSurveyCode: IOCARID + weightEnabled: true +- !SpeciesProtocol + id: 90f45d7d-5156-4508-ae0e-8b96c81b44c7 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 867 + speciesSurveyCode: PASIMUL + weightEnabled: true +- !SpeciesProtocol + id: 59b10dad-8434-4711-bc6f-97b75df69c1d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 868 + speciesSurveyCode: PASISIV + weightEnabled: true +- !SpeciesProtocol + id: 9efb2b72-187f-4d3a-8027-b5dfe6a84c7e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7329 + speciesSurveyCode: PASITAR + weightEnabled: true +- !SpeciesProtocol + id: ae59b858-bec6-4862-b332-ffa5a1697c57 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 872 + speciesSurveyCode: ACAPPEL + weightEnabled: true +- !SpeciesProtocol + id: 6d3f8dc4-4b4a-4de5-be04-0eca30e3cf10 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6807 + speciesSurveyCode: SYSTDEB + weightEnabled: true +- !SpeciesProtocol + id: 81d0bb9b-bd15-4112-9e34-0910aef4f132 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 920 + speciesSurveyCode: PALOSER + weightEnabled: true +- !SpeciesProtocol + id: a4ae0aa6-e470-4fe3-a174-4c61a12edb74 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 907 + speciesSurveyCode: ALPHGLA + weightEnabled: true +- !SpeciesProtocol + id: 18636e75-0c64-41cc-ab13-1ca842bcb1f6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4675 + speciesSurveyCode: SPITLIL + weightEnabled: true +- !SpeciesProtocol + id: 0f1871bd-ba7c-4fce-8a4d-73a91c2a2853 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 911 + speciesSurveyCode: PROC + weightEnabled: true +- !SpeciesProtocol + id: 1785f2cb-ea68-4e43-bcb4-a4ba53f1e050 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 886 + speciesSurveyCode: CHLOCRA + weightEnabled: true +- !SpeciesProtocol + id: f3751ae1-8b8e-4c5d-9633-69407970bd0b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 878 + speciesSurveyCode: PANSMON + weightEnabled: true +- !SpeciesProtocol + id: 99e6e63f-e08b-4cef-9d34-50fc3aea3734 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3195 + speciesSurveyCode: DICHBON + weightEnabled: true +- !SpeciesProtocol + id: 5b782537-c384-452a-9cd9-69886d15aadc + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7201 + speciesSurveyCode: ATLAPRO + weightEnabled: true +- !SpeciesProtocol + id: 4b3cc4f3-f284-4ae8-a65a-2b8fa40470dd + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 883 + speciesSurveyCode: PLEKHET + weightEnabled: true +- !SpeciesProtocol + id: 4fcce5af-e57c-40d8-b3a4-3facf1082f79 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 884 + speciesSurveyCode: PLEKMAR + weightEnabled: true +- !SpeciesProtocol + id: 3cc9b67c-f421-470f-a83e-203b81f399a9 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 931 + speciesSurveyCode: CRAGCRA + weightEnabled: true +- !SpeciesProtocol + id: d914a4bf-c5f2-4b80-a656-a22364285dd3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 932 + speciesSurveyCode: CRAGALM + weightEnabled: true +- !SpeciesProtocol + id: 29c5cda2-bb5d-438a-81d7-e94d3624a420 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 934 + speciesSurveyCode: PONPSPI + weightEnabled: true +- !SpeciesProtocol + id: 1b10220a-7cd1-4723-97ad-1ea4c1dd2ecc + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 941 + speciesSurveyCode: PHICECH + weightEnabled: true +- !SpeciesProtocol + id: f23b70fd-a41e-436d-b90f-e1398c4c9c2f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 953 + speciesSurveyCode: POLCTYP + weightEnabled: true +- !SpeciesProtocol + id: 14268ee3-b162-414a-a86e-2e88edea3b20 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 962 + speciesSurveyCode: SCYLARC + weightEnabled: true +- !SpeciesProtocol + id: 9ba1702b-cb9e-4883-ae6f-37790bc0f670 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 966 + speciesSurveyCode: CALRMAC + weightEnabled: true +- !SpeciesProtocol + id: 6ea2a010-58bf-4481-aff6-cb0eed1a4169 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 971 + speciesSurveyCode: JAXENOC + weightEnabled: true +- !SpeciesProtocol + id: dcec5bbe-b243-4941-a9a2-ba10e156ea58 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7274 + speciesSurveyCode: UFGALAT + weightEnabled: true +- !SpeciesProtocol + id: e2d71b93-30f8-4cfe-9e97-5bddeb5d4889 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1009 + speciesSurveyCode: GALA + weightEnabled: true +- !SpeciesProtocol + id: 890a2ef7-9749-4bf5-96d6-46274c3f2115 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1015 + speciesSurveyCode: MUNI + weightEnabled: true +- !SpeciesProtocol + id: 2aa88601-9705-48a1-a516-b7799fa04580 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1023 + speciesSurveyCode: PISILON + weightEnabled: true +- !SpeciesProtocol + id: 8a0908d2-adc9-4a5d-95ed-201c4a346dbf + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2167 + speciesSurveyCode: UFPAGUR + weightEnabled: true +- !SpeciesProtocol + id: 3068cf19-c7a0-40b1-9f65-aa8afe3a1944 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 987 + speciesSurveyCode: DIOGPUG + weightEnabled: true +- !SpeciesProtocol + id: 6315e6ca-9153-48da-b409-0a8b2a27805a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7330 + speciesSurveyCode: PRPGPIL + weightEnabled: true +- !SpeciesProtocol + id: 2289f435-b5f6-49a2-881f-ae9b0b82d055 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1005 + speciesSurveyCode: ANAPHYN + weightEnabled: true +- !SpeciesProtocol + id: 72016d20-c737-475f-8d27-190106d485ad + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1007 + speciesSurveyCode: ANAPLAE + weightEnabled: true +- !SpeciesProtocol + id: 3dcd0791-467d-4ba5-8cef-2a368fa67243 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 998 + speciesSurveyCode: PAGUALA + weightEnabled: true +- !SpeciesProtocol + id: 325c361a-d6d2-48f7-aae2-d5d062fa256e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 995 + speciesSurveyCode: PAGUBER + weightEnabled: true +- !SpeciesProtocol + id: 5e5f1f51-5e4f-483a-b74f-50124678f921 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7270 + speciesSurveyCode: PAGUCAR + weightEnabled: true +- !SpeciesProtocol + id: c5a37516-9ed2-450d-ad9a-7e158086ec81 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 997 + speciesSurveyCode: PAGUCUA + weightEnabled: true +- !SpeciesProtocol + id: c88a5426-3694-4d87-8b05-18271ae7c528 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 999 + speciesSurveyCode: PAGUEXC + weightEnabled: true +- !SpeciesProtocol + id: c65bc92d-7316-4b8c-a721-3fdbbc4ba7d7 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1000 + speciesSurveyCode: PAGUFOR + weightEnabled: true +- !SpeciesProtocol + id: 365da8b2-8251-4c1d-88ca-2bb57abcabc4 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 994 + speciesSurveyCode: PAGUPRI + weightEnabled: true +- !SpeciesProtocol + id: 349c3226-706d-4b32-8b6f-a51c60c9cd67 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1026 + speciesSurveyCode: IOBRACY + weightEnabled: true +- !SpeciesProtocol + id: f07f647d-ab77-41c2-aa0b-98cb8ed626b2 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1119 + speciesSurveyCode: EURYASP + weightEnabled: true +- !SpeciesProtocol + id: 0845bced-01b2-40e2-8bc4-6fa6ed35d2a9 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1122 + speciesSurveyCode: ERGACLO + weightEnabled: true +- !SpeciesProtocol + id: e341cb34-972f-4998-91c5-25087c70506c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1128 + speciesSurveyCode: INACDOR + weightEnabled: true +- !SpeciesProtocol + id: 69172196-29a0-42f9-8b24-c7ce85025839 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1126 + speciesSurveyCode: INACLEP + weightEnabled: true +- !SpeciesProtocol + id: f009cc4f-6224-471c-beb8-84edbd67b50f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1131 + speciesSurveyCode: MACR + weightEnabled: true +- !SpeciesProtocol + id: c88d0817-c6d6-4fd0-aafa-1405bfd1895d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1135 + speciesSurveyCode: MACRTEN + weightEnabled: true +- !SpeciesProtocol + id: 5dde1e20-92df-4e3b-9949-67e6c409fbc2 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1038 + speciesSurveyCode: EBALTUB + weightEnabled: true +- !SpeciesProtocol + id: 32a51a35-6608-4e33-b815-eb4dff065495 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4435 + speciesSurveyCode: EBALGRA + weightEnabled: true +- !SpeciesProtocol + id: 433f9867-ed01-44cb-9048-26661b920c31 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1044 + speciesSurveyCode: CORSCAS + weightEnabled: true +- !SpeciesProtocol + id: 91ffcc32-963d-4547-9f28-ff5e3cfb73d3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1050 + speciesSurveyCode: ATELROT + weightEnabled: true +- !SpeciesProtocol + id: 894dc837-0fbd-49ca-b58d-521454f8f5ec + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1051 + speciesSurveyCode: ATELUND + weightEnabled: true +- !SpeciesProtocol + id: 0340daac-fd37-4e78-9f6c-b7f07f732d28 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1047 + speciesSurveyCode: THIASCU + weightEnabled: true +- !SpeciesProtocol + id: c5c1a2fa-205e-47c3-876b-41b53bac15ba + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1062 + speciesSurveyCode: PORTLAT + weightEnabled: true +- !SpeciesProtocol + id: 55432868-bb9c-4a84-b506-7cbaebd02a77 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1071 + speciesSurveyCode: LIOCARC + weightEnabled: true +- !SpeciesProtocol + id: cd60e98a-3aea-4120-98d4-8c6fdde2244a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1068 + speciesSurveyCode: LIOCPUS + weightEnabled: true +- !SpeciesProtocol + id: 286d991c-7fcc-4b7e-95da-787297f5ce17 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1069 + speciesSurveyCode: LIOCDEP + weightEnabled: true +- !SpeciesProtocol + id: afaeee56-1ed5-47cd-8d64-8590cc58b8af + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1070 + speciesSurveyCode: LIOCHOL + weightEnabled: true +- !SpeciesProtocol + id: 9976ef63-a0be-4504-b626-a01aa39ca638 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1074 + speciesSurveyCode: LIOCMAR + weightEnabled: true +- !SpeciesProtocol + id: 001b4115-8e46-4b0d-abb2-244b8dc900ea + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1075 + speciesSurveyCode: LIOCVER + weightEnabled: true +- !SpeciesProtocol + id: a5b0b117-f7a6-4fbc-8909-61411a0f964c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1077 + speciesSurveyCode: POLBHEN + weightEnabled: true +- !SpeciesProtocol + id: ff0ad853-72dd-41e9-a4fe-2ead51ad0adf + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1066 + speciesSurveyCode: MCPITUB + weightEnabled: true +- !SpeciesProtocol + id: addf7e72-b60e-4613-90cb-4435249cf2c5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1076 + speciesSurveyCode: NECOPUB + weightEnabled: true +- !SpeciesProtocol + id: 092db89c-4f16-4fa5-947b-2864730361a1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4427 + speciesSurveyCode: BATYLON + weightEnabled: true +- !SpeciesProtocol + id: 5aa070cd-bbef-4c47-be94-0a6579dfa81f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1064 + speciesSurveyCode: BATYMAR + weightEnabled: true +- !SpeciesProtocol + id: c6cd15a4-3526-4cc3-8d9d-29c18d409b52 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7199 + speciesSurveyCode: DSTOMAL + weightEnabled: true +- !SpeciesProtocol + id: 3dc20a96-c455-4b0c-afcb-d059b90f66fd + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1094 + speciesSurveyCode: MONDCOU + weightEnabled: true +- !SpeciesProtocol + id: 9c4ba4b7-1bfb-4206-8aaf-b12a2a5cb91f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2208 + speciesSurveyCode: XANTPIL + weightEnabled: true +- !SpeciesProtocol + id: acc6f10b-1d27-453b-9e6d-432aae2d4d6b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1090 + speciesSurveyCode: PILUHIR + weightEnabled: true +- !SpeciesProtocol + id: f4aab96a-360d-4d39-a3e0-35e22a560aa3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1103 + speciesSurveyCode: GONERHO + weightEnabled: true +- !SpeciesProtocol + id: 751c5b01-25c4-4456-8eab-a1379752087c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1143 + speciesSurveyCode: CLCRINO + weightEnabled: true +- !SpeciesProtocol + id: c8cc259e-8301-4656-a95d-3b8e3c7821d1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4211 + speciesSurveyCode: LPTMCEL + weightEnabled: true +- !SpeciesProtocol + id: 3d152d3b-cabc-4635-86a0-61673faab7d9 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7390 + speciesSurveyCode: ANTDPET + weightEnabled: true +- !SpeciesProtocol + id: 29b51f29-8528-4ef8-af23-f50766fcea8c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1144 + speciesSurveyCode: CLASTER + weightEnabled: true +- !SpeciesProtocol + id: 5d018bb3-5b81-436f-b968-827590e001d5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3009 + speciesSurveyCode: LUIDCIL + weightEnabled: true +- !SpeciesProtocol + id: ba5d6c0a-deee-4d84-b880-b1bca74fbe5f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4414 + speciesSurveyCode: LUIDSAR + weightEnabled: true +- !SpeciesProtocol + id: 38c86fce-ff71-42eb-ad2b-9602ff311e81 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1150 + speciesSurveyCode: ASTPIRR + weightEnabled: true +- !SpeciesProtocol + id: 1b136e78-85a2-4da4-8080-6b15ca2c1503 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6809 + speciesSurveyCode: PLUTBIF + weightEnabled: true +- !SpeciesProtocol + id: 7567a748-d278-48f3-b71d-a59488530103 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12054 + speciesSurveyCode: FMBENTO + weightEnabled: true +- !SpeciesProtocol + id: 0d6011da-1950-4c3b-8281-9f58339b923e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12046 + speciesSurveyCode: ODONMED + weightEnabled: true +- !SpeciesProtocol + id: 308cab8f-25ae-4dd6-85ef-649df5cbc119 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1145 + speciesSurveyCode: ANSEPLA + weightEnabled: true +- !SpeciesProtocol + id: 4a747a0c-d565-4ea5-8855-97669f45d9a1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3026 + speciesSurveyCode: PORAPUL + weightEnabled: true +- !SpeciesProtocol + id: 63547eda-977b-4b5d-aa5c-2da7d442ab18 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7193 + speciesSurveyCode: NYMFARE + weightEnabled: true +- !SpeciesProtocol + id: 733f5c87-3941-4e69-b847-7b8c290531c3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12058 + speciesSurveyCode: PDASGRA + weightEnabled: true +- !SpeciesProtocol + id: 6b0839e6-053d-460e-8f62-aeb15138c8b2 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3685 + speciesSurveyCode: PELSPLA + weightEnabled: true +- !SpeciesProtocol + id: 8f8d36a3-0f05-40f1-99ac-27a8b03b60ae + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2404 + speciesSurveyCode: CROSPAP + weightEnabled: true +- !SpeciesProtocol + id: a2b53a2f-0c5e-4443-80ca-cd4bd80eea67 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7287 + speciesSurveyCode: PTASPUL + weightEnabled: true +- !SpeciesProtocol + id: b4b1f3fd-ad13-4f07-a7a5-3afea34a5b45 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3577 + speciesSurveyCode: HENR + weightEnabled: true +- !SpeciesProtocol + id: 0a4164cd-cb17-4f3d-83c3-7b23938dbabb + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1148 + speciesSurveyCode: ASTIRUB + weightEnabled: true +- !SpeciesProtocol + id: a5c7d7dd-39b9-4512-bf1f-b0c6a4b77b18 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1146 + speciesSurveyCode: MARHGLA + weightEnabled: true +- !SpeciesProtocol + id: 1a3af0c8-803b-4ded-a13a-ed4728515bb1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4660 + speciesSurveyCode: STIHROS + weightEnabled: true +- !SpeciesProtocol + id: 14196dc9-98f2-461a-92cd-7fa2dee11407 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12043 + speciesSurveyCode: ZOROFUL + weightEnabled: true +- !SpeciesProtocol + id: 23873b66-928c-476b-b625-85b5c4b022e5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7197 + speciesSurveyCode: HYMNCOR + weightEnabled: true +- !SpeciesProtocol + id: 2d444084-80fd-4946-b80c-1b54fdf4d380 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1151 + speciesSurveyCode: CLOPHIU + weightEnabled: true +- !SpeciesProtocol + id: da3da460-140c-4834-a242-40b1d3827f28 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6242 + speciesSurveyCode: ASTYLOV + weightEnabled: true +- !SpeciesProtocol + id: f0aba25c-64f4-48d9-8883-d915803acea5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1158 + speciesSurveyCode: OPHOFRA + weightEnabled: true +- !SpeciesProtocol + id: 28dddf54-b4bb-466d-89d5-de0603f08e3b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3550 + speciesSurveyCode: OPHOLUE + weightEnabled: true +- !SpeciesProtocol + id: 361b5b44-5599-4fde-98d6-9490eb23619f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4398 + speciesSurveyCode: OPHANIG + weightEnabled: true +- !SpeciesProtocol + id: 72e5c79b-935e-4e75-a1f6-d9a68b80fbfb + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7675 + speciesSurveyCode: OFIABRE + weightEnabled: true +- !SpeciesProtocol + id: 670a0f5f-2606-4f42-a3cd-2ed757b8f8a1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1161 + speciesSurveyCode: ACROBRA + weightEnabled: true +- !SpeciesProtocol + id: 652c6529-147a-4fe1-b7ae-283251c0b94f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4743 + speciesSurveyCode: OPOCAFF + weightEnabled: true +- !SpeciesProtocol + id: e59ec5f1-2ba3-4f2a-83fe-ebd460e85bad + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1156 + speciesSurveyCode: OPHUALB + weightEnabled: true +- !SpeciesProtocol + id: d481b194-19b4-4a8c-b77b-a301f5a2d9ac + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1155 + speciesSurveyCode: OPHUOPH + weightEnabled: true +- !SpeciesProtocol + id: 88efc6b5-2deb-4a8d-b14a-6e7db368e5b8 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 10421 + speciesSurveyCode: CLECHIN + weightEnabled: true +- !SpeciesProtocol + id: ffc6fe75-5896-4e19-93ea-c4885be5aa88 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6812 + speciesSurveyCode: CIDACID + weightEnabled: true +- !SpeciesProtocol + id: bf77466a-c53d-4161-a90e-fd04a6ef75f0 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7334 + speciesSurveyCode: ORECHTU + weightEnabled: true +- !SpeciesProtocol + id: 5534310f-112a-4d38-a253-549feb969ed4 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1173 + speciesSurveyCode: SPHAGRA + weightEnabled: true +- !SpeciesProtocol + id: 04d1089a-e48b-49b4-aef7-f2bd8ac2532e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4235 + speciesSurveyCode: GRACACU + weightEnabled: true +- !SpeciesProtocol + id: 890e6293-9835-4b92-ac92-7f8b9c67e5ee + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1168 + speciesSurveyCode: ECHNESC + weightEnabled: true +- !SpeciesProtocol + id: b60498c5-7eda-44c4-8a0d-c703a10168ad + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1169 + speciesSurveyCode: ECHNMEL + weightEnabled: true +- !SpeciesProtocol + id: ef53120a-a5d0-4191-b6d9-470946fe14b5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6130 + speciesSurveyCode: ECHNELE + weightEnabled: true +- !SpeciesProtocol + id: b950c90a-a412-4ba2-8369-784fbae7b9f5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1172 + speciesSurveyCode: PSAMMIL + weightEnabled: true +- !SpeciesProtocol + id: b22076ea-1090-4154-aae0-69d29f008b13 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1164 + speciesSurveyCode: ECHCCOR + weightEnabled: true +- !SpeciesProtocol + id: 49a4b617-e460-4434-94f8-c4d19120d342 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7283 + speciesSurveyCode: ECHCPEN + weightEnabled: true +- !SpeciesProtocol + id: de7d186a-e8c8-4b25-85fa-7c794bdadd6a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2408 + speciesSurveyCode: SPATPUR + weightEnabled: true +- !SpeciesProtocol + id: e2c515f4-2b39-44d2-ab72-afce83801f02 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4388 + speciesSurveyCode: BRISLYR + weightEnabled: true +- !SpeciesProtocol + id: 6c13f041-c01b-4a13-949c-261ae6b9d474 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1174 + speciesSurveyCode: CLHOLOT + weightEnabled: true +- !SpeciesProtocol + id: 28c996a0-9ccf-4c6d-b66a-b339847cf505 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12032 + speciesSurveyCode: LAEGVIO + weightEnabled: true +- !SpeciesProtocol + id: 3232fbb8-015c-47d2-8e6b-43a287755bdf + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12057 + speciesSurveyCode: MESAINT + weightEnabled: true +- !SpeciesProtocol + id: eed41e02-2224-40aa-944a-37dfdf8d0349 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 11323 + speciesSurveyCode: HLTPFOR + weightEnabled: true +- !SpeciesProtocol + id: 3322c359-2444-45f6-b227-e93ef44dba9b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2203 + speciesSurveyCode: LPTOELO + weightEnabled: true +- !SpeciesProtocol + id: 382f5566-c326-486a-a54b-a1e038383215 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7673 + speciesSurveyCode: PSOLPHA + weightEnabled: true +- !SpeciesProtocol + id: 5b8c9da4-d1d0-4607-bd5d-f9792727f2ed + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1177 + speciesSurveyCode: PRSTREG + weightEnabled: true +- !SpeciesProtocol + id: d9c303a2-6879-492d-b012-b9773d015d35 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7273 + speciesSurveyCode: PRSTTRE + weightEnabled: true +- !SpeciesProtocol + id: 07068af8-e579-4820-881d-ef6a892fe8d1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3023 + speciesSurveyCode: LEPSINH + weightEnabled: true +- !SpeciesProtocol + id: efb55fb4-db56-40a3-ab65-c80aa9adb2ee + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1182 + speciesSurveyCode: CLASCID + weightEnabled: true +- !SpeciesProtocol + id: 128bd105-fe21-41d3-ae5f-e4ca874382fe + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3943 + speciesSurveyCode: ASCD + weightEnabled: true +gearUseFeaturePmfmId: +- 131 +- 828 +- 884 +- 965 +- 1434 +individualObservationPmfmId: +- 196 +- 174 +- 1435 +lengthClassesPmfmId: +- 1417 +- 285 +- 294 +- 295 +- 299 +- 301 +- 302 +- 303 +- 306 +- 307 +- 322 +- 323 +- 622 +- 662 +- 283 +- 284 +- 319 +- 318 +- 1426 +- 1427 +- 661 +- 1394 +- 1425 +- 300 +- 304 +- 1439 +species: +- !SpeciesProtocol + id: 87d435bb-32be-4ccf-b756-cb5a3a67e906 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 307 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1362 + speciesSurveyCode: ENGR-ENC +- !SpeciesProtocol + id: d046212a-673f-4a36-b36c-222fd47d0d24 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 307 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1351 + speciesSurveyCode: SARD-PIL + weightEnabled: true +- !SpeciesProtocol + id: 99f37e3b-f51f-4ad5-8bd1-22925f6fd0b6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1772 + speciesSurveyCode: SCOM-SCO + weightEnabled: true +- !SpeciesProtocol + id: 122d995b-2b9d-4469-821a-720cb3c07cc4 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1773 + speciesSurveyCode: SCOM-JAP + weightEnabled: true +- !SpeciesProtocol + id: 329534f6-a850-4e9d-bd7b-128a05a4a766 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1662 + speciesSurveyCode: TRAC-TRU + weightEnabled: true +- !SpeciesProtocol + id: dccb201e-a6ea-4438-9406-750dc35da312 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 307 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1356 + speciesSurveyCode: SPRA-SPR + weightEnabled: true +- !SpeciesProtocol + id: 19be5010-86c0-4055-a431-c3f1143d8ceb + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1553 + speciesSurveyCode: MICR-POU + weightEnabled: true +- !SpeciesProtocol + id: e2231027-ea28-4a84-b834-e34ffd297cdf + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1540 + speciesSurveyCode: MERL-MCC + weightEnabled: true +- !SpeciesProtocol + id: a3fb4524-74c3-40ab-aa64-5911876e0f26 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 300 + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 1239 + speciesSurveyCode: ALOP-VUL + weightEnabled: true +- !SpeciesProtocol + id: 39be31ee-17a6-4c39-8a7e-9eb2fdda5b35 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1488 + speciesSurveyCode: BELO-BEO + weightEnabled: true +- !SpeciesProtocol + id: 2ebce94a-40ba-438e-bb9e-5945d9de48e5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1881 + speciesSurveyCode: LIZA-RAM + weightEnabled: true +- !SpeciesProtocol + id: 3fe0b89a-e7f3-4cd2-bed7-4e5191596806 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 2036 + speciesSurveyCode: MOLA-MOL + weightEnabled: true +- !SpeciesProtocol + id: ce58052d-4cd1-485b-a76d-21904705c416 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1644 + speciesSurveyCode: DICE-LAB + weightEnabled: true +- !SpeciesProtocol + id: 0cdb7003-43f9-4ad2-ba5c-8be02108cde6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 300 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1775 + speciesSurveyCode: SARD-SAR + weightEnabled: true +- !SpeciesProtocol + id: 38ef4f79-32d7-4808-b3a2-e05e6a2fb5e0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1762 + speciesSurveyCode: ECHI-VIP + weightEnabled: true +- !SpeciesProtocol + id: 9f1b8e7e-a710-43a0-861b-38a286533a28 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1759 + speciesSurveyCode: TRAC-DRA + weightEnabled: true +- !SpeciesProtocol + id: 902064ba-b288-484e-bae5-3cae156c794a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1663 + speciesSurveyCode: TRAC-MED + weightEnabled: true +- !SpeciesProtocol + id: 994dcbf3-1442-4d4c-92f9-5f21e4cb4423 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1882 + speciesSurveyCode: LIZA-AUR + weightEnabled: true +- !SpeciesProtocol + id: f44a9aee-0ac7-4ca0-be2b-49934f01edae + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1551 + speciesSurveyCode: MERL-MNG + weightEnabled: true +- !SpeciesProtocol + id: 11020826-39c5-4016-994c-e008b895f315 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1718 + speciesSurveyCode: SPON-CAN + weightEnabled: true +- !SpeciesProtocol + id: ca12640b-361a-4967-a07f-bfe5fa80b7ad + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 507 + speciesSurveyCode: ILLE-COI + weightEnabled: true +- !SpeciesProtocol + id: 7ef3cab0-1b34-484f-b3fc-4b4ad416fe80 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1645 + speciesSurveyCode: DICE-PUN + weightEnabled: true +- !SpeciesProtocol + id: 428e4d1b-3a14-4774-a4b5-260023a2abdd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1920 + speciesSurveyCode: EUTR-GUR + weightEnabled: true +- !SpeciesProtocol + id: d0470083-b90f-4579-8e33-cec82dad814f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 307 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1414 + speciesSurveyCode: MYCT-SPP + weightEnabled: true +- !SpeciesProtocol + id: 5a99aa06-41ca-42a6-908d-3b80750896bc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 491 + speciesSurveyCode: ALLO-TEZ + weightEnabled: true +- !SpeciesProtocol + id: 0c6a402c-08bc-4070-94d4-1341ba671e5d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1698 + speciesSurveyCode: BOOP-BOO + weightEnabled: true +- !SpeciesProtocol + id: 551eee9a-e1c4-4e04-a516-0e69b9cf0b1f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 489 + speciesSurveyCode: LOLI-VUL + weightEnabled: true +- !SpeciesProtocol + id: f60671ae-9457-41a6-be8c-e0db4831c1f6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1619 + speciesSurveyCode: ZEUS-FAB + weightEnabled: true +- !SpeciesProtocol + id: 1ac63cc5-89ae-4951-892e-526011efd82c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 2049 + speciesSurveyCode: LOPH-PIS + weightEnabled: true +- !SpeciesProtocol + id: 5beec851-aa05-4dd9-a4e0-5839e990d2d2 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1913 + speciesSurveyCode: ASPI-OBS + weightEnabled: true +- !SpeciesProtocol + id: 4a716c20-fc22-4faf-bdc1-4a839d836a62 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 1242 + speciesSurveyCode: SCYL-CAN + weightEnabled: true +- !SpeciesProtocol + id: 6b785cd7-3bef-4953-9e29-f24603088a98 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1753 + speciesSurveyCode: GYMN-SEM + weightEnabled: true +- !SpeciesProtocol + id: 71e702f6-dcd3-439e-94fd-9bbe7f51944a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 7693 + speciesSurveyCode: GADI-ARG + weightEnabled: true +- !SpeciesProtocol + id: 820db288-8db6-42b5-8bea-f67da4870b6c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 508 + speciesSurveyCode: TODA-EBL + weightEnabled: true +- !SpeciesProtocol + id: 77fbbe05-bcb4-41da-9dfe-d7cfbdb95dd6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1379 + speciesSurveyCode: MAUR-MUE + weightEnabled: true +- !SpeciesProtocol + id: f987c86b-0edd-4a0d-95f6-828d7fc51d52 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1811 + speciesSurveyCode: CALL-LYR + weightEnabled: true +- !SpeciesProtocol + id: fba1a7c9-855e-4573-86c9-5788ec71588f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 12582 + speciesSurveyCode: LOLI-FOR + weightEnabled: true +- !SpeciesProtocol + id: 8ab14ec8-d89b-472b-ad74-ca43d17c604c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1558 + speciesSurveyCode: TRIS-MIN + weightEnabled: true +- !SpeciesProtocol + id: 59530a03-a37d-47d7-89ab-dd5f70326888 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 468 + speciesSurveyCode: SEPI-ELE + weightEnabled: true +- !SpeciesProtocol + id: 9dcb9d77-0867-4410-a419-2c2724cefc15 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 476 + speciesSurveyCode: SEPI-OLZ + weightEnabled: true +- !SpeciesProtocol + id: 1de07e53-dedd-48e6-b5b3-bbf0a36f21b8 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 1439 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 130 + speciesSurveyCode: AURE-AUR + weightEnabled: true +- !SpeciesProtocol + id: 0fa497ff-fb5b-42d7-ad37-f20bac25b22d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 1439 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 123 + speciesSurveyCode: CHRY-HYS + weightEnabled: true +- !SpeciesProtocol + id: 130f8de2-6a9a-4959-9f6b-7111e27b0850 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2786 + speciesSurveyCode: EUPH-AUX + weightEnabled: true +- !SpeciesProtocol + id: 86bbe608-b731-4d35-be76-81786cea1628 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 1439 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 12757 + speciesSurveyCode: GELA-CYM + weightEnabled: true +- !SpeciesProtocol + id: e765c9be-9c3e-4aaf-a63e-4e1e57b8e80c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 1439 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 12756 + speciesSurveyCode: GELA-MED + weightEnabled: true +- !SpeciesProtocol + id: 64cd732a-3463-4b20-9c47-1e253a8bf36a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 1439 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 4238 + speciesSurveyCode: GELA-RHY + weightEnabled: true +- !SpeciesProtocol + id: 4f56dbeb-6095-4402-9be5-809e5b5b1557 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3688 + speciesSurveyCode: GELA-SAL + weightEnabled: true +- !SpeciesProtocol + id: 02ff0b3e-625a-44a8-a327-1cce45b531d7 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 128 + speciesSurveyCode: CYAN-LAM + weightEnabled: true +- !SpeciesProtocol + id: c900cd42-a1fb-4bed-adc6-37f5b357911d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1782 + speciesSurveyCode: GOBI-IDX + weightEnabled: true +- !SpeciesProtocol + id: 51a70b7c-6f79-43d5-bdb2-c9d3fa98efc9 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 487 + speciesSurveyCode: LOLI-NIX + weightEnabled: true +- !SpeciesProtocol + id: c3219f9d-b5c7-4868-b5a1-71e8d4f28495 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 125 + speciesSurveyCode: PELA-NOC + weightEnabled: true +- !SpeciesProtocol + id: 0dfa9ae8-6df6-49ad-bc8a-4c53504ea275 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4142 + speciesSurveyCode: POLY-HEN + weightEnabled: true +- !SpeciesProtocol + id: c471c54b-2eb1-4cad-88da-e5060310c2ee + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 300 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 2120 + speciesSurveyCode: KATZ-PEL + weightEnabled: true +- !SpeciesProtocol + id: 318a1341-7b5f-41db-b9b7-0b196a28e13a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1664 + speciesSurveyCode: TRAC-PIC + weightEnabled: true +- !SpeciesProtocol + id: e2b520e3-409b-47c3-940c-c795283b2f9c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1879 + speciesSurveyCode: CHEL-LAB + weightEnabled: true +- !SpeciesProtocol + id: 2019f512-7421-4af4-99ee-db71c4b9af88 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1749 + speciesSurveyCode: AMMO-TOB + weightEnabled: true +- !SpeciesProtocol + id: 128597d5-c6d4-4e4b-a21a-a12d6d1ba3d6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1755 + speciesSurveyCode: HYPE-LAN + weightEnabled: true +- !SpeciesProtocol + id: b290a577-655f-45ce-893e-5bf7ead1bb1d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1624 + speciesSurveyCode: CAPR-APE + weightEnabled: true +- !SpeciesProtocol + id: a4efef88-eb3a-40f9-a1dc-29fd75f147f2 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1912 + speciesSurveyCode: ASPI-CUC + weightEnabled: true +- !SpeciesProtocol + id: 788f2fa7-2c49-4f54-82ee-b38a1ec5372e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1358 + speciesSurveyCode: ALOS-ALO + weightEnabled: true +- !SpeciesProtocol + id: a84fb6df-5a55-46ca-8295-fcb83a60f998 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1359 + speciesSurveyCode: ALOS-FAL + weightEnabled: true +- !SpeciesProtocol + id: 9adb5eeb-6d27-48ad-b058-5c24069943ff + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1395 + speciesSurveyCode: ARGE-SIL + weightEnabled: true +- !SpeciesProtocol + id: c208454d-8333-4ae0-92dc-411c53b162c8 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1394 + speciesSurveyCode: ARGE-SPH + weightEnabled: true +- !SpeciesProtocol + id: 42edd21a-bf16-4fb0-9441-c8072f140816 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1971 + speciesSurveyCode: ARNO-LAT + weightEnabled: true +- !SpeciesProtocol + id: ca5bb685-90cc-417a-b360-6262435f7937 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 2004 + speciesSurveyCode: BUGL-LUT + weightEnabled: true +- !SpeciesProtocol + id: e7a2f085-4005-4a86-af44-ce0aab89fb0e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1812 + speciesSurveyCode: CALL-MAC + weightEnabled: true +- !SpeciesProtocol + id: 12d67c6a-7aff-462a-8a3f-4156659744df + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1054 + speciesSurveyCode: CANC-PAG + weightEnabled: true +- !SpeciesProtocol + id: 44ab1cb5-9849-4997-81de-c7086dc25edb + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1866 + speciesSurveyCode: CENTR-NIG + weightEnabled: true +- !SpeciesProtocol + id: d6075e65-abc6-46d7-8e11-d0773cdfbf9c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1654 + speciesSurveyCode: CEPO-RUB + weightEnabled: true +- !SpeciesProtocol + id: 1a029bb9-5771-4c74-b8ff-2441e0ad2abc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 307 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1349 + speciesSurveyCode: CLUP-HAR + weightEnabled: true +- !SpeciesProtocol + id: 5ab2fe14-a0ba-433c-b2c4-94bb170c1e5e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1941 + speciesSurveyCode: CYCL-LUM + weightEnabled: true +- !SpeciesProtocol + id: 8faffc01-c606-4a8c-abdb-11e11407d886 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1322 + speciesSurveyCode: DASY-PAS + weightEnabled: true +- !SpeciesProtocol + id: 5dab23e4-f24e-4e2f-8438-541bf082398f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1960 + speciesSurveyCode: LEPI-WHI + weightEnabled: true +- !SpeciesProtocol + id: 7d678d86-dbc2-499c-b036-8f209bc05165 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 2050 + speciesSurveyCode: LOPH-BUD + weightEnabled: true +- !SpeciesProtocol + id: 0ee0fded-54a8-4869-b65a-cd3b8aafb7d5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1988 + speciesSurveyCode: MICR-KIT + weightEnabled: true +- !SpeciesProtocol + id: c8c5b934-cc4e-4a8b-b4a1-6010134a7895 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1566 + speciesSurveyCode: MOLV_MOL + weightEnabled: true +- !SpeciesProtocol + id: 5a39a057-d1da-4815-bb11-b0480c939768 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 1257 + speciesSurveyCode: MUST-AST + weightEnabled: true +- !SpeciesProtocol + id: 69809f47-4c5b-41f6-818f-8a6019aac3a9 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 514 + speciesSurveyCode: OCTO-VUL + weightEnabled: true +- !SpeciesProtocol + id: f668f507-8669-423b-b563-f81c1d9cddba + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1212 + speciesSurveyCode: PETR-MAR + weightEnabled: true +- !SpeciesProtocol + id: f575b385-0a64-4549-9bfd-04d7a17d3ca3 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1555 + speciesSurveyCode: POLL-POL + weightEnabled: true +- !SpeciesProtocol + id: b67ab04f-ea78-4ec6-bad0-a1b292509fa6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1556 + speciesSurveyCode: POLL-VIR + weightEnabled: true +- !SpeciesProtocol + id: 020ad00f-ef7f-4b4b-a737-7e8fec53ec57 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1804 + speciesSurveyCode: POMA-MIN + weightEnabled: true +- !SpeciesProtocol + id: 4b050fd5-91e4-4627-9882-3f6dda4ad9ed + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 1251 + speciesSurveyCode: PRIO-GLA + weightEnabled: true +- !SpeciesProtocol + id: 79a2a8df-8acd-4faf-a5e9-620c7e8e7afc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1388 + speciesSurveyCode: SALM-SAL + weightEnabled: true +- !SpeciesProtocol + id: 77ea2ff6-e118-438a-ab69-502f951b08ae + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 7695 + speciesSurveyCode: SCOM-SAU + weightEnabled: true +- !SpeciesProtocol + id: 15ab3ee8-5029-4430-9670-ef52673104ee + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 467 + speciesSurveyCode: SEPI-OFF + weightEnabled: true +- !SpeciesProtocol + id: 4582f45b-288d-4331-9d34-62ca2141c23e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1996 + speciesSurveyCode: SOLE-VUL + weightEnabled: true +- !SpeciesProtocol + id: d176bd61-4ed3-492c-bfe3-6964294a4b56 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1500 + speciesSurveyCode: SYNG-ACU + weightEnabled: true +- !SpeciesProtocol + id: 0c17f6d7-9a96-4e06-942e-5f5840dd1a59 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1921 + speciesSurveyCode: TRIG-LUC + weightEnabled: true +- !SpeciesProtocol + id: ed157bca-6ac3-4f35-8272-2b8d3f9d0779 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1560 + speciesSurveyCode: TRIS-LUS + weightEnabled: true +- !SpeciesProtocol + id: 06b8aab8-6f8e-4e92-8f72-21be1838cd2f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 2006 + speciesSurveyCode: DICO-CUN + weightEnabled: true +- !SpeciesProtocol + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: -1 + speciesSurveyCode: MELA-NGE + weightEnabled: true +vesselUseFeaturePmfmId: +- 194 +- 230 +- 782 +- 843 +- 844 +- 846 +- 847 +- 848 +- 849 +- 850 +- 851 +- 857 +- 858 +- 859 +- 861 +- 862 +- 863 +- 881 +- 882 +- 883 +- 173
participants (1)
-
tchemit@users.forge.codelutin.com